import * as z from "zod/v3"; import { ExternalShortcut, ExternalShortcut$Outbound } from "./externalshortcut.js"; /** * Describes the request body of the /bulkindexshortcuts API call */ export type BulkIndexShortcutsRequest = { /** * Unique id that must be used for this bulk upload instance */ uploadId: string; /** * true if this is the first page of the upload. Defaults to false */ isFirstPage?: boolean | undefined; /** * true if this is the last page of the upload. Defaults to false */ isLastPage?: boolean | undefined; /** * Flag to discard previous upload attempts and start from scratch. Must be specified with isFirstPage=true */ forceRestartUpload?: boolean | undefined; /** * Batch of shortcuts information */ shortcuts: Array; }; /** @internal */ export type BulkIndexShortcutsRequest$Outbound = { uploadId: string; isFirstPage?: boolean | undefined; isLastPage?: boolean | undefined; forceRestartUpload?: boolean | undefined; shortcuts: Array; }; /** @internal */ export declare const BulkIndexShortcutsRequest$outboundSchema: z.ZodType; export declare function bulkIndexShortcutsRequestToJSON(bulkIndexShortcutsRequest: BulkIndexShortcutsRequest): string; //# sourceMappingURL=bulkindexshortcutsrequest.d.ts.map