/** * Items API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const items: { /** @see createItem */ readonly create: (createItemBody: import("..").CreateItemBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getItems */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see updateItem */ readonly update: (id: string, updateItemBody: import("..").UpdateItemBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteItem */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see restoreItem */ readonly restoreItem: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see permanentDeleteItem */ readonly permanentDeleteItem: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type ItemsApi = typeof items; //# sourceMappingURL=items.d.ts.map