hydrousdb 3.5.5 → 3.5.6
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/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1405,20 +1405,20 @@ declare const AUTH: {
|
|
|
1405
1405
|
declare const STORAGE: {
|
|
1406
1406
|
readonly base: "/storage";
|
|
1407
1407
|
readonly upload: "/storage/upload";
|
|
1408
|
-
readonly uploadRaw: "/storage/upload
|
|
1409
|
-
readonly uploadUrl: "/storage/upload
|
|
1410
|
-
readonly confirm: "/storage/
|
|
1411
|
-
readonly batchUploadUrls: "/storage/upload
|
|
1412
|
-
readonly batchConfirm: "/storage/
|
|
1408
|
+
readonly uploadRaw: "/storage/upload-raw";
|
|
1409
|
+
readonly uploadUrl: "/storage/upload-url";
|
|
1410
|
+
readonly confirm: "/storage/confirm";
|
|
1411
|
+
readonly batchUploadUrls: "/storage/batch-upload-urls";
|
|
1412
|
+
readonly batchConfirm: "/storage/batch-confirm";
|
|
1413
1413
|
readonly download: (encodedPath: string) => string;
|
|
1414
|
-
readonly batchDownload: "/storage/download
|
|
1414
|
+
readonly batchDownload: "/storage/batch-download";
|
|
1415
1415
|
readonly list: "/storage/list";
|
|
1416
1416
|
readonly metadata: (encodedPath: string) => string;
|
|
1417
1417
|
readonly signedUrl: "/storage/signed-url";
|
|
1418
1418
|
readonly visibility: "/storage/visibility";
|
|
1419
1419
|
readonly folder: "/storage/folder";
|
|
1420
1420
|
readonly file: "/storage/file";
|
|
1421
|
-
readonly folderDelete: "/storage/folder
|
|
1421
|
+
readonly folderDelete: "/storage/folder";
|
|
1422
1422
|
readonly move: "/storage/move";
|
|
1423
1423
|
readonly copy: "/storage/copy";
|
|
1424
1424
|
readonly stats: "/storage/stats";
|
package/dist/index.d.ts
CHANGED
|
@@ -1405,20 +1405,20 @@ declare const AUTH: {
|
|
|
1405
1405
|
declare const STORAGE: {
|
|
1406
1406
|
readonly base: "/storage";
|
|
1407
1407
|
readonly upload: "/storage/upload";
|
|
1408
|
-
readonly uploadRaw: "/storage/upload
|
|
1409
|
-
readonly uploadUrl: "/storage/upload
|
|
1410
|
-
readonly confirm: "/storage/
|
|
1411
|
-
readonly batchUploadUrls: "/storage/upload
|
|
1412
|
-
readonly batchConfirm: "/storage/
|
|
1408
|
+
readonly uploadRaw: "/storage/upload-raw";
|
|
1409
|
+
readonly uploadUrl: "/storage/upload-url";
|
|
1410
|
+
readonly confirm: "/storage/confirm";
|
|
1411
|
+
readonly batchUploadUrls: "/storage/batch-upload-urls";
|
|
1412
|
+
readonly batchConfirm: "/storage/batch-confirm";
|
|
1413
1413
|
readonly download: (encodedPath: string) => string;
|
|
1414
|
-
readonly batchDownload: "/storage/download
|
|
1414
|
+
readonly batchDownload: "/storage/batch-download";
|
|
1415
1415
|
readonly list: "/storage/list";
|
|
1416
1416
|
readonly metadata: (encodedPath: string) => string;
|
|
1417
1417
|
readonly signedUrl: "/storage/signed-url";
|
|
1418
1418
|
readonly visibility: "/storage/visibility";
|
|
1419
1419
|
readonly folder: "/storage/folder";
|
|
1420
1420
|
readonly file: "/storage/file";
|
|
1421
|
-
readonly folderDelete: "/storage/folder
|
|
1421
|
+
readonly folderDelete: "/storage/folder";
|
|
1422
1422
|
readonly move: "/storage/move";
|
|
1423
1423
|
readonly copy: "/storage/copy";
|
|
1424
1424
|
readonly stats: "/storage/stats";
|
package/dist/index.mjs
CHANGED
|
@@ -285,20 +285,20 @@ var AUTH = {
|
|
|
285
285
|
var STORAGE = {
|
|
286
286
|
base: "/storage",
|
|
287
287
|
upload: "/storage/upload",
|
|
288
|
-
uploadRaw: "/storage/upload
|
|
289
|
-
uploadUrl: "/storage/upload
|
|
290
|
-
confirm: "/storage/
|
|
291
|
-
batchUploadUrls: "/storage/upload
|
|
292
|
-
batchConfirm: "/storage/
|
|
288
|
+
uploadRaw: "/storage/upload-raw",
|
|
289
|
+
uploadUrl: "/storage/upload-url",
|
|
290
|
+
confirm: "/storage/confirm",
|
|
291
|
+
batchUploadUrls: "/storage/batch-upload-urls",
|
|
292
|
+
batchConfirm: "/storage/batch-confirm",
|
|
293
293
|
download: (encodedPath) => `/storage/download/${encodedPath}`,
|
|
294
|
-
batchDownload: "/storage/download
|
|
294
|
+
batchDownload: "/storage/batch-download",
|
|
295
295
|
list: "/storage/list",
|
|
296
296
|
metadata: (encodedPath) => `/storage/metadata/${encodedPath}`,
|
|
297
297
|
signedUrl: "/storage/signed-url",
|
|
298
298
|
visibility: "/storage/visibility",
|
|
299
299
|
folder: "/storage/folder",
|
|
300
300
|
file: "/storage/file",
|
|
301
|
-
folderDelete: "/storage/folder
|
|
301
|
+
folderDelete: "/storage/folder",
|
|
302
302
|
move: "/storage/move",
|
|
303
303
|
copy: "/storage/copy",
|
|
304
304
|
stats: "/storage/stats",
|