@squidcloud/client
    Preparing search index...

    Interface BulkIngestionCreateUploadUrlsRequest

    Request structure for minting presigned upload URLs for direct-to-storage bulk ingestion: the caller PUTs each file's bytes straight to storage, then references it in BulkIngestionContext via stagedObjectKey, bypassing multipart upload through core.

    interface BulkIngestionCreateUploadUrlsRequest {
        files: { fileName: string }[];
    }
    Index
    files: { fileName: string }[]

    The files to mint upload URLs for (at most 500 per call).