@wix/auto_sdk_media_folders 1.0.49 → 1.0.51
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/schemas.d.ts +227 -0
- package/build/cjs/schemas.js +362 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/schemas.d.mts +227 -0
- package/build/es/schemas.mjs +306 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/schemas.d.ts +227 -0
- package/build/internal/cjs/schemas.js +362 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/schemas.d.mts +227 -0
- package/build/internal/es/schemas.mjs +306 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +12 -5
- package/schemas/package.json +3 -0
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
|
|
3
|
+
declare const CreateFolderRequest: z.ZodObject<{
|
|
4
|
+
displayName: z.ZodString;
|
|
5
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
6
|
+
parentFolderId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
|
+
}, z.core.$strip>>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
declare const CreateFolderResponse: z.ZodObject<{
|
|
10
|
+
folder: z.ZodOptional<z.ZodObject<{
|
|
11
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
12
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
13
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
14
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
15
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
16
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
17
|
+
OK: "OK";
|
|
18
|
+
DELETED: "DELETED";
|
|
19
|
+
}>>;
|
|
20
|
+
}, z.core.$strip>>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
declare const GetFolderRequest: z.ZodObject<{
|
|
23
|
+
folderId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>;
|
|
25
|
+
declare const GetFolderResponse: z.ZodObject<{
|
|
26
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
27
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
28
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
29
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
30
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
31
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
32
|
+
OK: "OK";
|
|
33
|
+
DELETED: "DELETED";
|
|
34
|
+
}>>;
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
declare const ListFoldersRequest: z.ZodObject<{
|
|
37
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
38
|
+
parentFolderId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39
|
+
sort: z.ZodOptional<z.ZodObject<{
|
|
40
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
41
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
42
|
+
ASC: "ASC";
|
|
43
|
+
DESC: "DESC";
|
|
44
|
+
}>>;
|
|
45
|
+
}, z.core.$strip>>;
|
|
46
|
+
paging: z.ZodOptional<z.ZodObject<{
|
|
47
|
+
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
48
|
+
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49
|
+
}, z.core.$strip>>;
|
|
50
|
+
}, z.core.$strip>>;
|
|
51
|
+
}, z.core.$strip>;
|
|
52
|
+
declare const ListFoldersResponse: z.ZodObject<{
|
|
53
|
+
folders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
54
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
55
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
56
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
57
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
58
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
59
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
60
|
+
OK: "OK";
|
|
61
|
+
DELETED: "DELETED";
|
|
62
|
+
}>>;
|
|
63
|
+
}, z.core.$strip>>>;
|
|
64
|
+
nextCursor: z.ZodOptional<z.ZodObject<{
|
|
65
|
+
total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
66
|
+
cursors: z.ZodOptional<z.ZodObject<{
|
|
67
|
+
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
68
|
+
}, z.core.$strip>>;
|
|
69
|
+
}, z.core.$strip>>;
|
|
70
|
+
}, z.core.$strip>;
|
|
71
|
+
declare const SearchFoldersRequest: z.ZodObject<{
|
|
72
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
73
|
+
rootFolder: z.ZodOptional<z.ZodEnum<{
|
|
74
|
+
MEDIA_ROOT: "MEDIA_ROOT";
|
|
75
|
+
TRASH_ROOT: "TRASH_ROOT";
|
|
76
|
+
VISITOR_UPLOADS_ROOT: "VISITOR_UPLOADS_ROOT";
|
|
77
|
+
}>>;
|
|
78
|
+
sort: z.ZodOptional<z.ZodObject<{
|
|
79
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
80
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
81
|
+
ASC: "ASC";
|
|
82
|
+
DESC: "DESC";
|
|
83
|
+
}>>;
|
|
84
|
+
}, z.core.$strip>>;
|
|
85
|
+
paging: z.ZodOptional<z.ZodObject<{
|
|
86
|
+
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
87
|
+
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
88
|
+
}, z.core.$strip>>;
|
|
89
|
+
search: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
90
|
+
}, z.core.$strip>>;
|
|
91
|
+
}, z.core.$strip>;
|
|
92
|
+
declare const SearchFoldersResponse: z.ZodObject<{
|
|
93
|
+
folders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
95
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
96
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
97
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
98
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
99
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
100
|
+
OK: "OK";
|
|
101
|
+
DELETED: "DELETED";
|
|
102
|
+
}>>;
|
|
103
|
+
}, z.core.$strip>>>;
|
|
104
|
+
nextCursor: z.ZodOptional<z.ZodObject<{
|
|
105
|
+
total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
106
|
+
cursors: z.ZodOptional<z.ZodObject<{
|
|
107
|
+
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
108
|
+
}, z.core.$strip>>;
|
|
109
|
+
}, z.core.$strip>>;
|
|
110
|
+
}, z.core.$strip>;
|
|
111
|
+
declare const UpdateFolderRequest: z.ZodObject<{
|
|
112
|
+
_id: z.ZodString;
|
|
113
|
+
folder: z.ZodObject<{
|
|
114
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
115
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
116
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
117
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
118
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
119
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
120
|
+
OK: "OK";
|
|
121
|
+
DELETED: "DELETED";
|
|
122
|
+
}>>;
|
|
123
|
+
}, z.core.$strip>;
|
|
124
|
+
}, z.core.$strip>;
|
|
125
|
+
declare const UpdateFolderResponse: z.ZodObject<{
|
|
126
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
127
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
128
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
129
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
130
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
131
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
132
|
+
OK: "OK";
|
|
133
|
+
DELETED: "DELETED";
|
|
134
|
+
}>>;
|
|
135
|
+
}, z.core.$strip>;
|
|
136
|
+
declare const GenerateFolderDownloadUrlRequest: z.ZodObject<{
|
|
137
|
+
folderId: z.ZodString;
|
|
138
|
+
}, z.core.$strip>;
|
|
139
|
+
declare const GenerateFolderDownloadUrlResponse: z.ZodObject<{
|
|
140
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
141
|
+
}, z.core.$strip>;
|
|
142
|
+
declare const BulkDeleteFoldersRequest: z.ZodObject<{
|
|
143
|
+
folderIds: z.ZodArray<z.ZodString>;
|
|
144
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
145
|
+
permanent: z.ZodOptional<z.ZodBoolean>;
|
|
146
|
+
}, z.core.$strip>>;
|
|
147
|
+
}, z.core.$strip>;
|
|
148
|
+
declare const BulkDeleteFoldersResponse: z.ZodObject<{}, z.core.$strip>;
|
|
149
|
+
declare const BulkRestoreFoldersFromTrashBinRequest: z.ZodObject<{
|
|
150
|
+
folderIds: z.ZodArray<z.ZodString>;
|
|
151
|
+
}, z.core.$strip>;
|
|
152
|
+
declare const BulkRestoreFoldersFromTrashBinResponse: z.ZodObject<{}, z.core.$strip>;
|
|
153
|
+
declare const ListDeletedFoldersRequest: z.ZodObject<{
|
|
154
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
155
|
+
parentFolderId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
156
|
+
sort: z.ZodOptional<z.ZodObject<{
|
|
157
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
158
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
159
|
+
ASC: "ASC";
|
|
160
|
+
DESC: "DESC";
|
|
161
|
+
}>>;
|
|
162
|
+
}, z.core.$strip>>;
|
|
163
|
+
paging: z.ZodOptional<z.ZodObject<{
|
|
164
|
+
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
165
|
+
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
166
|
+
}, z.core.$strip>>;
|
|
167
|
+
}, z.core.$strip>>;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
declare const ListDeletedFoldersResponse: z.ZodObject<{
|
|
170
|
+
folders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
171
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
172
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
173
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
174
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
175
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
176
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
177
|
+
OK: "OK";
|
|
178
|
+
DELETED: "DELETED";
|
|
179
|
+
}>>;
|
|
180
|
+
}, z.core.$strip>>>;
|
|
181
|
+
nextCursor: z.ZodOptional<z.ZodObject<{
|
|
182
|
+
total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
183
|
+
cursors: z.ZodOptional<z.ZodObject<{
|
|
184
|
+
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
185
|
+
}, z.core.$strip>>;
|
|
186
|
+
}, z.core.$strip>>;
|
|
187
|
+
}, z.core.$strip>;
|
|
188
|
+
declare const QueryFoldersRequest: z.ZodObject<{
|
|
189
|
+
query: z.ZodIntersection<z.ZodObject<{
|
|
190
|
+
filter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
191
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
192
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
193
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
194
|
+
ASC: "ASC";
|
|
195
|
+
DESC: "DESC";
|
|
196
|
+
}>>;
|
|
197
|
+
}, z.core.$strip>>>;
|
|
198
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
199
|
+
cursorPaging: z.ZodOptional<z.ZodNever>;
|
|
200
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
201
|
+
cursorPaging: z.ZodObject<{
|
|
202
|
+
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
203
|
+
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
204
|
+
}, z.core.$strip>;
|
|
205
|
+
}, z.core.$strip>]>>;
|
|
206
|
+
}, z.core.$strip>;
|
|
207
|
+
declare const QueryFoldersResponse: z.ZodObject<{
|
|
208
|
+
folders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
209
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
210
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
211
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
212
|
+
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
213
|
+
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
214
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
215
|
+
OK: "OK";
|
|
216
|
+
DELETED: "DELETED";
|
|
217
|
+
}>>;
|
|
218
|
+
}, z.core.$strip>>>;
|
|
219
|
+
pagingMetadata: z.ZodOptional<z.ZodObject<{
|
|
220
|
+
total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
221
|
+
cursors: z.ZodOptional<z.ZodObject<{
|
|
222
|
+
next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
223
|
+
}, z.core.$strip>>;
|
|
224
|
+
}, z.core.$strip>>;
|
|
225
|
+
}, z.core.$strip>;
|
|
226
|
+
|
|
227
|
+
export { BulkDeleteFoldersRequest, BulkDeleteFoldersResponse, BulkRestoreFoldersFromTrashBinRequest, BulkRestoreFoldersFromTrashBinResponse, CreateFolderRequest, CreateFolderResponse, GenerateFolderDownloadUrlRequest, GenerateFolderDownloadUrlResponse, GetFolderRequest, GetFolderResponse, ListDeletedFoldersRequest, ListDeletedFoldersResponse, ListFoldersRequest, ListFoldersResponse, QueryFoldersRequest, QueryFoldersResponse, SearchFoldersRequest, SearchFoldersResponse, UpdateFolderRequest, UpdateFolderResponse };
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
// src/media-site-media-v1-folder-folders.schemas.ts
|
|
2
|
+
import * as z from "zod";
|
|
3
|
+
var CreateFolderRequest = z.object({
|
|
4
|
+
displayName: z.string().describe("Folder name that appears in the Media Manager.").max(200),
|
|
5
|
+
options: z.object({
|
|
6
|
+
parentFolderId: z.string().describe("ID of the folder's parent folder.").max(100).optional().nullable()
|
|
7
|
+
}).describe("Options for specifying where to create a folder.").optional()
|
|
8
|
+
});
|
|
9
|
+
var CreateFolderResponse = z.object({
|
|
10
|
+
folder: z.object({
|
|
11
|
+
_id: z.string().describe(
|
|
12
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
13
|
+
).max(100).optional(),
|
|
14
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
15
|
+
parentFolderId: z.string().describe(
|
|
16
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
17
|
+
).max(100).optional(),
|
|
18
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
19
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
20
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
21
|
+
}).describe("Information about the newly created folder.").optional()
|
|
22
|
+
});
|
|
23
|
+
var GetFolderRequest = z.object({
|
|
24
|
+
folderId: z.string().describe("Folder ID.").max(100)
|
|
25
|
+
});
|
|
26
|
+
var GetFolderResponse = z.object({
|
|
27
|
+
_id: z.string().describe(
|
|
28
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
29
|
+
).max(100).optional(),
|
|
30
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
31
|
+
parentFolderId: z.string().describe(
|
|
32
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
33
|
+
).max(100).optional(),
|
|
34
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
35
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
36
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
37
|
+
});
|
|
38
|
+
var ListFoldersRequest = z.object({
|
|
39
|
+
options: z.object({
|
|
40
|
+
parentFolderId: z.string().describe(
|
|
41
|
+
"ID of the folder's parent folder.\n\nDefault: `media-root` folder."
|
|
42
|
+
).max(100).optional().nullable(),
|
|
43
|
+
sort: z.object({
|
|
44
|
+
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
45
|
+
order: z.enum(["ASC", "DESC"]).optional()
|
|
46
|
+
}).describe(
|
|
47
|
+
"Field name and order to sort by. One of:\n\n`displayName`\n`updatedDate`\n\nDefault: `updatedDate` in `desc` order."
|
|
48
|
+
).optional(),
|
|
49
|
+
paging: z.object({
|
|
50
|
+
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
51
|
+
cursor: z.string().describe(
|
|
52
|
+
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
53
|
+
).max(16e3).optional().nullable()
|
|
54
|
+
}).describe("Cursor and paging information.").optional()
|
|
55
|
+
}).describe("Options to use when listing folders from the Media Manager. ").optional()
|
|
56
|
+
});
|
|
57
|
+
var ListFoldersResponse = z.object({
|
|
58
|
+
folders: z.array(
|
|
59
|
+
z.object({
|
|
60
|
+
_id: z.string().describe(
|
|
61
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
62
|
+
).max(100).optional(),
|
|
63
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
64
|
+
parentFolderId: z.string().describe(
|
|
65
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
66
|
+
).max(100).optional(),
|
|
67
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
68
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
69
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
70
|
+
})
|
|
71
|
+
).max(200).optional(),
|
|
72
|
+
nextCursor: z.object({
|
|
73
|
+
total: z.number().int().describe(
|
|
74
|
+
"Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
|
|
75
|
+
).optional().nullable(),
|
|
76
|
+
cursors: z.object({
|
|
77
|
+
next: z.string().describe(
|
|
78
|
+
"Cursor string pointing to the next page in the list of results."
|
|
79
|
+
).max(16e3).optional().nullable()
|
|
80
|
+
}).describe(
|
|
81
|
+
"Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
|
|
82
|
+
).optional()
|
|
83
|
+
}).describe("The next cursor if it exists.").optional()
|
|
84
|
+
});
|
|
85
|
+
var SearchFoldersRequest = z.object({
|
|
86
|
+
options: z.object({
|
|
87
|
+
rootFolder: z.enum(["MEDIA_ROOT", "TRASH_ROOT", "VISITOR_UPLOADS_ROOT"]).optional(),
|
|
88
|
+
sort: z.object({
|
|
89
|
+
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
90
|
+
order: z.enum(["ASC", "DESC"]).optional()
|
|
91
|
+
}).describe(
|
|
92
|
+
"Field name and order to sort by. One of:\n\n`displayName`\n`updatedDate`\n\nDefault: `updatedDate` in `desc` order."
|
|
93
|
+
).optional(),
|
|
94
|
+
paging: z.object({
|
|
95
|
+
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
96
|
+
cursor: z.string().describe(
|
|
97
|
+
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
98
|
+
).max(16e3).optional().nullable()
|
|
99
|
+
}).describe("Cursor and paging information.").optional(),
|
|
100
|
+
search: z.string().describe(
|
|
101
|
+
"Free text to match in searchable fields.\n\nFor example, search for specific values in a folder's `displayName`."
|
|
102
|
+
).max(200).optional().nullable()
|
|
103
|
+
}).describe("Options specifying which folders to search.").optional()
|
|
104
|
+
});
|
|
105
|
+
var SearchFoldersResponse = z.object({
|
|
106
|
+
folders: z.array(
|
|
107
|
+
z.object({
|
|
108
|
+
_id: z.string().describe(
|
|
109
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
110
|
+
).max(100).optional(),
|
|
111
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
112
|
+
parentFolderId: z.string().describe(
|
|
113
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
114
|
+
).max(100).optional(),
|
|
115
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
116
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
117
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
118
|
+
})
|
|
119
|
+
).max(200).optional(),
|
|
120
|
+
nextCursor: z.object({
|
|
121
|
+
total: z.number().int().describe(
|
|
122
|
+
"Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
|
|
123
|
+
).optional().nullable(),
|
|
124
|
+
cursors: z.object({
|
|
125
|
+
next: z.string().describe(
|
|
126
|
+
"Cursor string pointing to the next page in the list of results."
|
|
127
|
+
).max(16e3).optional().nullable()
|
|
128
|
+
}).describe(
|
|
129
|
+
"Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
|
|
130
|
+
).optional()
|
|
131
|
+
}).describe("The next cursor if it exists.").optional()
|
|
132
|
+
});
|
|
133
|
+
var UpdateFolderRequest = z.object({
|
|
134
|
+
_id: z.string().describe(
|
|
135
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
136
|
+
).max(100),
|
|
137
|
+
folder: z.object({
|
|
138
|
+
_id: z.string().describe(
|
|
139
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
140
|
+
).max(100).optional(),
|
|
141
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
142
|
+
parentFolderId: z.string().describe(
|
|
143
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
144
|
+
).max(100).optional(),
|
|
145
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
146
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
147
|
+
state: z.enum(["OK", "DELETED"]).optional()
|
|
148
|
+
}).describe("Folder to update.")
|
|
149
|
+
});
|
|
150
|
+
var UpdateFolderResponse = z.object({
|
|
151
|
+
_id: z.string().describe(
|
|
152
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
153
|
+
).max(100).optional(),
|
|
154
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
155
|
+
parentFolderId: z.string().describe(
|
|
156
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
157
|
+
).max(100).optional(),
|
|
158
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
159
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
160
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
161
|
+
});
|
|
162
|
+
var GenerateFolderDownloadUrlRequest = z.object({
|
|
163
|
+
folderId: z.string().describe("Folder ID.").max(100)
|
|
164
|
+
});
|
|
165
|
+
var GenerateFolderDownloadUrlResponse = z.object({
|
|
166
|
+
downloadUrl: z.string().describe("URL for downloading a specific folder in the Media Manager.").url().optional()
|
|
167
|
+
});
|
|
168
|
+
var BulkDeleteFoldersRequest = z.object({
|
|
169
|
+
folderIds: z.array(z.string()).max(100),
|
|
170
|
+
options: z.object({
|
|
171
|
+
permanent: z.boolean().describe(
|
|
172
|
+
"Whether the specified folders are permanently deleted. <br />\nDefault: `false`"
|
|
173
|
+
).optional()
|
|
174
|
+
}).describe("Options to use when deleting folders.").optional()
|
|
175
|
+
});
|
|
176
|
+
var BulkDeleteFoldersResponse = z.object({});
|
|
177
|
+
var BulkRestoreFoldersFromTrashBinRequest = z.object({
|
|
178
|
+
folderIds: z.array(z.string()).max(100)
|
|
179
|
+
});
|
|
180
|
+
var BulkRestoreFoldersFromTrashBinResponse = z.object({});
|
|
181
|
+
var ListDeletedFoldersRequest = z.object({
|
|
182
|
+
options: z.object({
|
|
183
|
+
parentFolderId: z.string().describe("ID of the folder's parent folder.").max(100).optional().nullable(),
|
|
184
|
+
sort: z.object({
|
|
185
|
+
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
186
|
+
order: z.enum(["ASC", "DESC"]).optional()
|
|
187
|
+
}).describe(
|
|
188
|
+
"Field name and order to sort by. One of:\n* `displayName`\n* `updatedDate`\nDefault: `updatedDate` in `desc` order."
|
|
189
|
+
).optional(),
|
|
190
|
+
paging: z.object({
|
|
191
|
+
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
192
|
+
cursor: z.string().describe(
|
|
193
|
+
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
194
|
+
).max(16e3).optional().nullable()
|
|
195
|
+
}).describe("Cursor and paging information.").optional()
|
|
196
|
+
}).describe("Options to use when listing deleted folders from the trash bin.").optional()
|
|
197
|
+
});
|
|
198
|
+
var ListDeletedFoldersResponse = z.object({
|
|
199
|
+
folders: z.array(
|
|
200
|
+
z.object({
|
|
201
|
+
_id: z.string().describe(
|
|
202
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
203
|
+
).max(100).optional(),
|
|
204
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
205
|
+
parentFolderId: z.string().describe(
|
|
206
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
207
|
+
).max(100).optional(),
|
|
208
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
209
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
210
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
211
|
+
})
|
|
212
|
+
).max(200).optional(),
|
|
213
|
+
nextCursor: z.object({
|
|
214
|
+
total: z.number().int().describe(
|
|
215
|
+
"Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
|
|
216
|
+
).optional().nullable(),
|
|
217
|
+
cursors: z.object({
|
|
218
|
+
next: z.string().describe(
|
|
219
|
+
"Cursor string pointing to the next page in the list of results."
|
|
220
|
+
).max(16e3).optional().nullable()
|
|
221
|
+
}).describe(
|
|
222
|
+
"Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
|
|
223
|
+
).optional()
|
|
224
|
+
}).describe("The next cursor if it exists.").optional()
|
|
225
|
+
});
|
|
226
|
+
var QueryFoldersRequest = z.object({
|
|
227
|
+
query: z.intersection(
|
|
228
|
+
z.object({
|
|
229
|
+
filter: z.record(z.string(), z.any()).describe(
|
|
230
|
+
"Filter object.\n\nLearn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters)."
|
|
231
|
+
).optional().nullable(),
|
|
232
|
+
sort: z.array(
|
|
233
|
+
z.object({
|
|
234
|
+
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
235
|
+
order: z.enum(["ASC", "DESC"]).optional()
|
|
236
|
+
})
|
|
237
|
+
).max(1).optional()
|
|
238
|
+
}),
|
|
239
|
+
z.xor([
|
|
240
|
+
z.object({ cursorPaging: z.never().optional() }),
|
|
241
|
+
z.object({
|
|
242
|
+
cursorPaging: z.object({
|
|
243
|
+
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
244
|
+
cursor: z.string().describe(
|
|
245
|
+
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
246
|
+
).max(16e3).optional().nullable()
|
|
247
|
+
}).describe(
|
|
248
|
+
"Cursor paging options.\n\nLearn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging)."
|
|
249
|
+
)
|
|
250
|
+
})
|
|
251
|
+
])
|
|
252
|
+
).describe("Query object")
|
|
253
|
+
});
|
|
254
|
+
var QueryFoldersResponse = z.object({
|
|
255
|
+
folders: z.array(
|
|
256
|
+
z.object({
|
|
257
|
+
_id: z.string().describe(
|
|
258
|
+
"Folder ID. Generated when a folder is created in the Media Manager."
|
|
259
|
+
).max(100).optional(),
|
|
260
|
+
displayName: z.string().describe("Folder name as it appears in the Media Manager.").max(256).optional(),
|
|
261
|
+
parentFolderId: z.string().describe(
|
|
262
|
+
"ID of the folder's parent folder. <br /> Default: `media-root` folder."
|
|
263
|
+
).max(100).optional(),
|
|
264
|
+
_createdDate: z.date().describe("Date the folder was created.").optional().nullable(),
|
|
265
|
+
_updatedDate: z.date().describe("Date the folder was updated.").optional().nullable(),
|
|
266
|
+
state: z.enum(["OK", "DELETED"]).describe("State of the folder.").optional()
|
|
267
|
+
})
|
|
268
|
+
).max(200).optional(),
|
|
269
|
+
pagingMetadata: z.object({
|
|
270
|
+
total: z.number().int().describe(
|
|
271
|
+
"Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set."
|
|
272
|
+
).optional().nullable(),
|
|
273
|
+
cursors: z.object({
|
|
274
|
+
next: z.string().describe(
|
|
275
|
+
"Cursor string pointing to the next page in the list of results."
|
|
276
|
+
).max(16e3).optional().nullable()
|
|
277
|
+
}).describe(
|
|
278
|
+
"Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used."
|
|
279
|
+
).optional()
|
|
280
|
+
}).describe(
|
|
281
|
+
"The metadata for the page including the next cursor if one exist"
|
|
282
|
+
).optional()
|
|
283
|
+
});
|
|
284
|
+
export {
|
|
285
|
+
BulkDeleteFoldersRequest,
|
|
286
|
+
BulkDeleteFoldersResponse,
|
|
287
|
+
BulkRestoreFoldersFromTrashBinRequest,
|
|
288
|
+
BulkRestoreFoldersFromTrashBinResponse,
|
|
289
|
+
CreateFolderRequest,
|
|
290
|
+
CreateFolderResponse,
|
|
291
|
+
GenerateFolderDownloadUrlRequest,
|
|
292
|
+
GenerateFolderDownloadUrlResponse,
|
|
293
|
+
GetFolderRequest,
|
|
294
|
+
GetFolderResponse,
|
|
295
|
+
ListDeletedFoldersRequest,
|
|
296
|
+
ListDeletedFoldersResponse,
|
|
297
|
+
ListFoldersRequest,
|
|
298
|
+
ListFoldersResponse,
|
|
299
|
+
QueryFoldersRequest,
|
|
300
|
+
QueryFoldersResponse,
|
|
301
|
+
SearchFoldersRequest,
|
|
302
|
+
SearchFoldersResponse,
|
|
303
|
+
UpdateFolderRequest,
|
|
304
|
+
UpdateFolderResponse
|
|
305
|
+
};
|
|
306
|
+
//# sourceMappingURL=schemas.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/media-site-media-v1-folder-folders.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const CreateFolderRequest = z.object({\n displayName: z\n .string()\n .describe('Folder name that appears in the Media Manager.')\n .max(200),\n options: z\n .object({\n parentFolderId: z\n .string()\n .describe(\"ID of the folder's parent folder.\")\n .max(100)\n .optional()\n .nullable(),\n })\n .describe('Options for specifying where to create a folder.')\n .optional(),\n});\nexport const CreateFolderResponse = z.object({\n folder: z\n .object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z\n .enum(['OK', 'DELETED'])\n .describe('State of the folder.')\n .optional(),\n })\n .describe('Information about the newly created folder.')\n .optional(),\n});\nexport const GetFolderRequest = z.object({\n folderId: z.string().describe('Folder ID.').max(100),\n});\nexport const GetFolderResponse = z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z.enum(['OK', 'DELETED']).describe('State of the folder.').optional(),\n});\nexport const ListFoldersRequest = z.object({\n options: z\n .object({\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder.\\n\\nDefault: `media-root` folder.\"\n )\n .max(100)\n .optional()\n .nullable(),\n sort: z\n .object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n .describe(\n 'Field name and order to sort by. One of:\\n\\n`displayName`\\n`updatedDate`\\n\\nDefault: `updatedDate` in `desc` order.'\n )\n .optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe('Cursor and paging information.')\n .optional(),\n })\n .describe('Options to use when listing folders from the Media Manager. ')\n .optional(),\n});\nexport const ListFoldersResponse = z.object({\n folders: z\n .array(\n z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z\n .enum(['OK', 'DELETED'])\n .describe('State of the folder.')\n .optional(),\n })\n )\n .max(200)\n .optional(),\n nextCursor: z\n .object({\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('The next cursor if it exists.')\n .optional(),\n});\nexport const SearchFoldersRequest = z.object({\n options: z\n .object({\n rootFolder: z\n .enum(['MEDIA_ROOT', 'TRASH_ROOT', 'VISITOR_UPLOADS_ROOT'])\n .optional(),\n sort: z\n .object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n .describe(\n 'Field name and order to sort by. One of:\\n\\n`displayName`\\n`updatedDate`\\n\\nDefault: `updatedDate` in `desc` order.'\n )\n .optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe('Cursor and paging information.')\n .optional(),\n search: z\n .string()\n .describe(\n \"Free text to match in searchable fields.\\n\\nFor example, search for specific values in a folder's `displayName`.\"\n )\n .max(200)\n .optional()\n .nullable(),\n })\n .describe('Options specifying which folders to search.')\n .optional(),\n});\nexport const SearchFoldersResponse = z.object({\n folders: z\n .array(\n z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z\n .enum(['OK', 'DELETED'])\n .describe('State of the folder.')\n .optional(),\n })\n )\n .max(200)\n .optional(),\n nextCursor: z\n .object({\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('The next cursor if it exists.')\n .optional(),\n});\nexport const UpdateFolderRequest = z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100),\n folder: z\n .object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z.enum(['OK', 'DELETED']).optional(),\n })\n .describe('Folder to update.'),\n});\nexport const UpdateFolderResponse = z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z.enum(['OK', 'DELETED']).describe('State of the folder.').optional(),\n});\nexport const GenerateFolderDownloadUrlRequest = z.object({\n folderId: z.string().describe('Folder ID.').max(100),\n});\nexport const GenerateFolderDownloadUrlResponse = z.object({\n downloadUrl: z\n .string()\n .describe('URL for downloading a specific folder in the Media Manager.')\n .url()\n .optional(),\n});\nexport const BulkDeleteFoldersRequest = z.object({\n folderIds: z.array(z.string()).max(100),\n options: z\n .object({\n permanent: z\n .boolean()\n .describe(\n 'Whether the specified folders are permanently deleted. <br />\\nDefault: `false`'\n )\n .optional(),\n })\n .describe('Options to use when deleting folders.')\n .optional(),\n});\nexport const BulkDeleteFoldersResponse = z.object({});\nexport const BulkRestoreFoldersFromTrashBinRequest = z.object({\n folderIds: z.array(z.string()).max(100),\n});\nexport const BulkRestoreFoldersFromTrashBinResponse = z.object({});\nexport const ListDeletedFoldersRequest = z.object({\n options: z\n .object({\n parentFolderId: z\n .string()\n .describe(\"ID of the folder's parent folder.\")\n .max(100)\n .optional()\n .nullable(),\n sort: z\n .object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n .describe(\n 'Field name and order to sort by. One of:\\n* `displayName`\\n* `updatedDate`\\nDefault: `updatedDate` in `desc` order.'\n )\n .optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe('Cursor and paging information.')\n .optional(),\n })\n .describe('Options to use when listing deleted folders from the trash bin.')\n .optional(),\n});\nexport const ListDeletedFoldersResponse = z.object({\n folders: z\n .array(\n z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z\n .enum(['OK', 'DELETED'])\n .describe('State of the folder.')\n .optional(),\n })\n )\n .max(200)\n .optional(),\n nextCursor: z\n .object({\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('The next cursor if it exists.')\n .optional(),\n});\nexport const QueryFoldersRequest = z.object({\n query: z\n .intersection(\n z.object({\n filter: z\n .record(z.string(), z.any())\n .describe(\n 'Filter object.\\n\\nLearn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).'\n )\n .optional()\n .nullable(),\n sort: z\n .array(\n z.object({\n fieldName: z\n .string()\n .describe('Name of the field to sort by.')\n .max(512)\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .max(1)\n .optional(),\n }),\n z.xor([\n z.object({ cursorPaging: z.never().optional() }),\n z.object({\n cursorPaging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor paging options.\\n\\nLearn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).'\n ),\n }),\n ])\n )\n .describe('Query object'),\n});\nexport const QueryFoldersResponse = z.object({\n folders: z\n .array(\n z.object({\n _id: z\n .string()\n .describe(\n 'Folder ID. Generated when a folder is created in the Media Manager.'\n )\n .max(100)\n .optional(),\n displayName: z\n .string()\n .describe('Folder name as it appears in the Media Manager.')\n .max(256)\n .optional(),\n parentFolderId: z\n .string()\n .describe(\n \"ID of the folder's parent folder. <br /> Default: `media-root` folder.\"\n )\n .max(100)\n .optional(),\n _createdDate: z\n .date()\n .describe('Date the folder was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date the folder was updated.')\n .optional()\n .nullable(),\n state: z\n .enum(['OK', 'DELETED'])\n .describe('State of the folder.')\n .optional(),\n })\n )\n .max(200)\n .optional(),\n pagingMetadata: z\n .object({\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe(\n 'The metadata for the page including the next cursor if one exist'\n )\n .optional(),\n});\n"],"mappings":"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","names":[]}
|