@wix/auto_sdk_media_files 1.0.87 → 1.0.88
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -4
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +14 -14
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -4
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +14 -14
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -4
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +14 -14
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -4
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +14 -14
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/schemas.js
CHANGED
|
@@ -114,7 +114,7 @@ var GetFileDescriptorResponse = z.object({
|
|
|
114
114
|
_id: z.string().describe(
|
|
115
115
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
116
116
|
).max(1e3).optional(),
|
|
117
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
117
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
118
118
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
119
119
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
120
120
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -323,7 +323,7 @@ var GetFileDescriptorsResponse = z.object({
|
|
|
323
323
|
_id: z.string().describe(
|
|
324
324
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
325
325
|
).max(1e3).optional(),
|
|
326
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
326
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
327
327
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
328
328
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
329
329
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -542,7 +542,7 @@ var UpdateFileDescriptorRequest = z.object({
|
|
|
542
542
|
_id: z.string().describe(
|
|
543
543
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
544
544
|
).max(1e3),
|
|
545
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
545
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
546
546
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
547
547
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
548
548
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -751,7 +751,7 @@ var UpdateFileDescriptorResponse = z.object({
|
|
|
751
751
|
_id: z.string().describe(
|
|
752
752
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
753
753
|
).max(1e3).optional(),
|
|
754
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
754
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
755
755
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
756
756
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
757
757
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -1022,7 +1022,7 @@ var ImportFileRequest = z.object({
|
|
|
1022
1022
|
"MODEL3D",
|
|
1023
1023
|
"OTHER"
|
|
1024
1024
|
]).optional(),
|
|
1025
|
-
displayName: z.string().describe("File name that appears in the Media Manager.").max(
|
|
1025
|
+
displayName: z.string().describe("File name that appears in the Media Manager.").max(255).optional().nullable(),
|
|
1026
1026
|
parentFolderId: z.string().describe(
|
|
1027
1027
|
"ID of the file's parent folder. <br />\nThis folder is the path root for the `filePath`. <br />\nDefault: `media-root`."
|
|
1028
1028
|
).max(100).optional().nullable(),
|
|
@@ -1053,7 +1053,7 @@ var ImportFileResponse = z.object({
|
|
|
1053
1053
|
_id: z.string().describe(
|
|
1054
1054
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
1055
1055
|
).max(1e3).optional(),
|
|
1056
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
1056
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
1057
1057
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
1058
1058
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
1059
1059
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -1273,7 +1273,7 @@ var BulkImportFilesRequest = z.object({
|
|
|
1273
1273
|
"MODEL3D",
|
|
1274
1274
|
"OTHER"
|
|
1275
1275
|
]).optional(),
|
|
1276
|
-
displayName: z.string().describe("File name that appears in the Media Manager.").max(
|
|
1276
|
+
displayName: z.string().describe("File name that appears in the Media Manager.").max(255).optional().nullable(),
|
|
1277
1277
|
parentFolderId: z.string().describe(
|
|
1278
1278
|
"ID of the file's parent folder. <br />\nThis folder is the path root for the `filePath`. <br />\nDefault: `media-root`."
|
|
1279
1279
|
).max(100).optional().nullable(),
|
|
@@ -1308,7 +1308,7 @@ var BulkImportFilesResponse = z.object({
|
|
|
1308
1308
|
_id: z.string().describe(
|
|
1309
1309
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
1310
1310
|
).max(1e3).optional(),
|
|
1311
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
1311
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
1312
1312
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
1313
1313
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
1314
1314
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -1537,7 +1537,7 @@ var BulkImportFileRequest = z.object({
|
|
|
1537
1537
|
"MODEL3D",
|
|
1538
1538
|
"OTHER"
|
|
1539
1539
|
]).optional(),
|
|
1540
|
-
displayName: z.string().describe("File name that appears in the Media Manager.").max(
|
|
1540
|
+
displayName: z.string().describe("File name that appears in the Media Manager.").max(255).optional().nullable(),
|
|
1541
1541
|
parentFolderId: z.string().describe(
|
|
1542
1542
|
"ID of the file's parent folder. <br />\nThis folder is the path root for the `filePath`. <br />\nDefault: `media-root`."
|
|
1543
1543
|
).max(100).optional().nullable(),
|
|
@@ -1592,7 +1592,7 @@ var BulkImportFileResponse = z.object({
|
|
|
1592
1592
|
_id: z.string().describe(
|
|
1593
1593
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
1594
1594
|
).max(1e3).optional(),
|
|
1595
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
1595
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
1596
1596
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
1597
1597
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
1598
1598
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -1857,7 +1857,7 @@ var ListFilesResponse = z.object({
|
|
|
1857
1857
|
_id: z.string().describe(
|
|
1858
1858
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
1859
1859
|
).max(1e3).optional(),
|
|
1860
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
1860
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
1861
1861
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
1862
1862
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
1863
1863
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -2125,7 +2125,7 @@ var SearchFilesResponse = z.object({
|
|
|
2125
2125
|
_id: z.string().describe(
|
|
2126
2126
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
2127
2127
|
).max(1e3).optional(),
|
|
2128
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
2128
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
2129
2129
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
2130
2130
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
2131
2131
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -2419,7 +2419,7 @@ var ListDeletedFilesResponse = z.object({
|
|
|
2419
2419
|
_id: z.string().describe(
|
|
2420
2420
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
2421
2421
|
).max(1e3).optional(),
|
|
2422
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
2422
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
2423
2423
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
2424
2424
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
2425
2425
|
hash: z.string().describe("File hash.").max(100).optional(),
|
|
@@ -2681,7 +2681,7 @@ var QueryFileDescriptorsResponse = z.object({
|
|
|
2681
2681
|
_id: z.string().describe(
|
|
2682
2682
|
"File ID. Generated when a file is uploaded to the Media Manager."
|
|
2683
2683
|
).max(1e3).optional(),
|
|
2684
|
-
displayName: z.string().describe("File name as it appears in the Media Manager.").max(
|
|
2684
|
+
displayName: z.string().describe("File name as it appears in the Media Manager.").max(255).optional(),
|
|
2685
2685
|
url: z.string().describe("Static URL of the file.").url().optional(),
|
|
2686
2686
|
parentFolderId: z.string().describe("ID of the file's parent folder.").max(100).optional().nullable(),
|
|
2687
2687
|
hash: z.string().describe("File hash.").max(100).optional(),
|