@arke-institute/sdk 2.6.2 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{crypto-wBQ1LBgz.d.cts → crypto-BOurdm0r.d.cts} +2 -0
- package/dist/{crypto-96bEBoO_.d.ts → crypto-BP-3sfHW.d.ts} +2 -0
- package/dist/generated/index.d.cts +476 -17
- package/dist/generated/index.d.ts +476 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/operations/index.cjs +4 -4
- package/dist/operations/index.cjs.map +1 -1
- package/dist/operations/index.d.cts +2 -2
- package/dist/operations/index.d.ts +2 -2
- package/dist/operations/index.js +4 -4
- package/dist/operations/index.js.map +1 -1
- package/openapi/spec.json +645 -10
- package/openapi/version.json +1 -1
- package/package.json +1 -1
|
@@ -375,6 +375,8 @@ interface UploadOptions {
|
|
|
375
375
|
concurrency?: number;
|
|
376
376
|
/** Continue uploading even if some files fail (default: false) */
|
|
377
377
|
continueOnError?: boolean;
|
|
378
|
+
/** Maximum bytes in flight during file content upload (default: 200 MB) */
|
|
379
|
+
maxBytesInFlight?: number;
|
|
378
380
|
/** Custom note to add to created entities */
|
|
379
381
|
note?: string;
|
|
380
382
|
}
|
|
@@ -375,6 +375,8 @@ interface UploadOptions {
|
|
|
375
375
|
concurrency?: number;
|
|
376
376
|
/** Continue uploading even if some files fail (default: false) */
|
|
377
377
|
continueOnError?: boolean;
|
|
378
|
+
/** Maximum bytes in flight during file content upload (default: 200 MB) */
|
|
379
|
+
maxBytesInFlight?: number;
|
|
378
380
|
/** Custom note to add to created entities */
|
|
379
381
|
note?: string;
|
|
380
382
|
}
|