Skip to content

DropboxMultipartOptions

Defined in: src/providers/cloud/DropboxProvider.ts:80

Upload-session tuning for the Dropbox provider.

PropertyTypeDescriptionDefined in
enabled?booleanEnable chunked uploads via upload_session/start + append_v2 + finish. Defaults to true so payloads above DropboxMultipartOptions.thresholdBytes stream in fixed-size chunks instead of being buffered into a single /2/files/upload call (which Dropbox caps at 150 MB). Set to false to force single-shot uploads.src/providers/cloud/DropboxProvider.ts:89
partSizeBytes?numberBytes per session append. Defaults to 8 MiB; must stay under Dropbox’s 150 MB request cap.src/providers/cloud/DropboxProvider.ts:93
thresholdBytes?numberPayload size threshold above which an upload session is used. Defaults to 8 MiB.src/providers/cloud/DropboxProvider.ts:91