/** * Entities API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const entities: { /** @see createEntity */ readonly create: (createEntityBody: import("..").CreateEntityBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getEntities */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getEntityById */ readonly get: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see patchEntity */ readonly update: (id: string, patchEntityBody: import("..").PatchEntityBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see enableEntity */ readonly enableEntity: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see disableEntity */ readonly disableEntity: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type EntitiesApi = typeof entities; //# sourceMappingURL=entities.d.ts.map