@wix/pro-gallery 1.0.44 → 1.0.46
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/context/package.json +2 -1
- package/meta/package.json +2 -1
- package/package.json +11 -5
- package/type-bundles/context.bundle.d.ts +673 -0
- package/type-bundles/index.bundle.d.ts +1576 -0
- package/type-bundles/meta.bundle.d.ts +1778 -0
@@ -0,0 +1,1778 @@
|
|
1
|
+
interface Gallery$1 {
|
2
|
+
/**
|
3
|
+
* Gallery ID.
|
4
|
+
* @readonly
|
5
|
+
*/
|
6
|
+
id?: string | null;
|
7
|
+
/** Gallery name. */
|
8
|
+
name?: string | null;
|
9
|
+
/**
|
10
|
+
* Total number of items in the gallery.
|
11
|
+
* @readonly
|
12
|
+
*/
|
13
|
+
totalItems?: number | null;
|
14
|
+
/** Media items in the gallery. */
|
15
|
+
items?: Item$1[];
|
16
|
+
/**
|
17
|
+
* Index that determines which position a gallery is displayed on the site. <br />
|
18
|
+
*
|
19
|
+
* >**Note:** If you assign the same sort order index to more than one gallery, the function fails.
|
20
|
+
*/
|
21
|
+
sortOrder?: number | null;
|
22
|
+
/**
|
23
|
+
* Date and time the gallery was created.
|
24
|
+
* @readonly
|
25
|
+
*/
|
26
|
+
createdDate?: Date;
|
27
|
+
}
|
28
|
+
interface Item$1 extends ItemMetadataOneOf$1 {
|
29
|
+
/** Details about the image. */
|
30
|
+
image?: Image$1;
|
31
|
+
/** Details about the video. */
|
32
|
+
video?: Video$1;
|
33
|
+
/** Details about the text file. */
|
34
|
+
text?: Text$1;
|
35
|
+
/**
|
36
|
+
* Item ID.
|
37
|
+
* @readonly
|
38
|
+
*/
|
39
|
+
id?: string | null;
|
40
|
+
/**
|
41
|
+
* Index that determines which position a media item is displayed in the gallery. <br />
|
42
|
+
*
|
43
|
+
* Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
|
44
|
+
*
|
45
|
+
* >**Note:** If you assign the same sort order index to more than one media item in a gallery, the function fails.
|
46
|
+
*/
|
47
|
+
sortOrder?: number | null;
|
48
|
+
/** Item title. */
|
49
|
+
title?: string | null;
|
50
|
+
/** Item description. */
|
51
|
+
description?: string | null;
|
52
|
+
/** Link from the item. You can link to Wix sites or external URLs. */
|
53
|
+
link?: Link$1;
|
54
|
+
/** @readonly */
|
55
|
+
type?: Type$1;
|
56
|
+
/**
|
57
|
+
* Date and time the item was created.
|
58
|
+
* @readonly
|
59
|
+
*/
|
60
|
+
createdDate?: Date;
|
61
|
+
/**
|
62
|
+
* Date and time the item was last updated.
|
63
|
+
* @readonly
|
64
|
+
*/
|
65
|
+
updatedDate?: Date;
|
66
|
+
/** Item tags. */
|
67
|
+
tags?: Tags$1;
|
68
|
+
}
|
69
|
+
/** @oneof */
|
70
|
+
interface ItemMetadataOneOf$1 {
|
71
|
+
/** Details about the image. */
|
72
|
+
image?: Image$1;
|
73
|
+
/** Details about the video. */
|
74
|
+
video?: Video$1;
|
75
|
+
/** Details about the text file. */
|
76
|
+
text?: Text$1;
|
77
|
+
}
|
78
|
+
interface Link$1 {
|
79
|
+
/** Display text of the link. */
|
80
|
+
text?: string | null;
|
81
|
+
/** Target URL of the link. */
|
82
|
+
url?: string | null;
|
83
|
+
}
|
84
|
+
declare enum LinkType {
|
85
|
+
UNDEFINED = "UNDEFINED",
|
86
|
+
/** external link */
|
87
|
+
EXTERNAL = "EXTERNAL",
|
88
|
+
/** for internal usage using wixLinkData */
|
89
|
+
INTERNAL = "INTERNAL"
|
90
|
+
}
|
91
|
+
/**
|
92
|
+
* The 'rel' attribute of the link. The rel attribute defines the relationship between a linked resource and the current document.
|
93
|
+
* Further reading (also about different possible rel types): https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel
|
94
|
+
* Following are the accepted 'rel' types by Wix applications.
|
95
|
+
*/
|
96
|
+
declare enum LinkRel {
|
97
|
+
/** default (not implemented) */
|
98
|
+
unknown_link_rel = "unknown_link_rel",
|
99
|
+
/** Indicates that the current document's original author or publisher does not endorse the referenced document. */
|
100
|
+
nofollow = "nofollow",
|
101
|
+
/** Instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it. */
|
102
|
+
noopener = "noopener",
|
103
|
+
/** No Referer header will be included. Additionally, has the same effect as noopener. */
|
104
|
+
noreferrer = "noreferrer",
|
105
|
+
/** Indicates a link that resulted from advertisements or paid placements. */
|
106
|
+
sponsored = "sponsored"
|
107
|
+
}
|
108
|
+
declare enum Type$1 {
|
109
|
+
UNDEFINED = "UNDEFINED",
|
110
|
+
IMAGE = "IMAGE",
|
111
|
+
VIDEO = "VIDEO",
|
112
|
+
TEXT = "TEXT"
|
113
|
+
}
|
114
|
+
interface Image$1 {
|
115
|
+
/** Information about the Wix Media image. */
|
116
|
+
imageInfo?: CommonImage;
|
117
|
+
/** Focal point of the image. */
|
118
|
+
focalPoint?: Point$1;
|
119
|
+
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
120
|
+
exif?: Record<string, any> | null;
|
121
|
+
/**
|
122
|
+
* Image compression level. <br />
|
123
|
+
*
|
124
|
+
* Min: `30` <br />
|
125
|
+
* Max: `100`
|
126
|
+
*/
|
127
|
+
quality?: number | null;
|
128
|
+
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
129
|
+
unsharpMasking?: UnsharpMasking$1;
|
130
|
+
}
|
131
|
+
declare enum ImageType {
|
132
|
+
UNDEFINED = "UNDEFINED",
|
133
|
+
WIX_MEDIA = "WIX_MEDIA",
|
134
|
+
EXTERNAL = "EXTERNAL"
|
135
|
+
}
|
136
|
+
interface CommonImage {
|
137
|
+
/** *Required.** WixMedia image ID. */
|
138
|
+
id?: string;
|
139
|
+
/**
|
140
|
+
* Image URL.
|
141
|
+
* @readonly
|
142
|
+
*/
|
143
|
+
url?: string;
|
144
|
+
/** *Required.** Original image height. */
|
145
|
+
height?: number;
|
146
|
+
/** *Required.** Original image width. */
|
147
|
+
width?: number;
|
148
|
+
/** Image alt text. */
|
149
|
+
altText?: string | null;
|
150
|
+
/** Image filename. */
|
151
|
+
filename?: string | null;
|
152
|
+
}
|
153
|
+
interface Point$1 {
|
154
|
+
/** X-coordinate of the focal point. */
|
155
|
+
x?: number;
|
156
|
+
/** Y-coordinate of the focal point. */
|
157
|
+
y?: number;
|
158
|
+
}
|
159
|
+
interface UnsharpMasking$1 {
|
160
|
+
/**
|
161
|
+
* Unsharp masking amount. Controls the sharpening strength. <br />
|
162
|
+
*
|
163
|
+
* Min: `0` <br />
|
164
|
+
* Max: `5`
|
165
|
+
*/
|
166
|
+
amount?: number | null;
|
167
|
+
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
168
|
+
radius?: number | null;
|
169
|
+
/**
|
170
|
+
* Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
|
171
|
+
*
|
172
|
+
* Min: `0` <br />
|
173
|
+
* Max: `1`
|
174
|
+
*/
|
175
|
+
threshold?: number | null;
|
176
|
+
}
|
177
|
+
interface Video$1 {
|
178
|
+
type?: VideoType$1;
|
179
|
+
/** Information about the video. */
|
180
|
+
videoInfo?: VideoV2;
|
181
|
+
/** Manually defined video duration in milliseconds. */
|
182
|
+
durationInMillis?: number | null;
|
183
|
+
}
|
184
|
+
declare enum VideoType$1 {
|
185
|
+
UNDEFINED = "UNDEFINED",
|
186
|
+
WIX_MEDIA = "WIX_MEDIA",
|
187
|
+
YOUTUBE = "YOUTUBE",
|
188
|
+
VIMEO = "VIMEO"
|
189
|
+
}
|
190
|
+
interface VideoV2 {
|
191
|
+
/** WixMedia ID. Required when associating an existing Wix Media video. */
|
192
|
+
id?: string;
|
193
|
+
/** Video URL. Required when associating a video from an external source. Supported sources: YouTube, Vimeo. */
|
194
|
+
url?: string;
|
195
|
+
/** Available resolutions for the video, starting with the optimal resolution. */
|
196
|
+
resolutions?: VideoResolution[];
|
197
|
+
/** Video filename. */
|
198
|
+
filename?: string | null;
|
199
|
+
/** Video posters. */
|
200
|
+
posters?: CommonImage[];
|
201
|
+
}
|
202
|
+
interface VideoResolution {
|
203
|
+
/** *Required.** Video URL. */
|
204
|
+
url?: string;
|
205
|
+
/** *Required.** Video height. */
|
206
|
+
height?: number;
|
207
|
+
/** *Required.** Video width. */
|
208
|
+
width?: number;
|
209
|
+
/** *Required.** Video format. For example, `mp4` or `hls`. */
|
210
|
+
format?: string;
|
211
|
+
/** Video quality. For example, `480p` or `720p`. */
|
212
|
+
quality?: string | null;
|
213
|
+
/** Video filename. */
|
214
|
+
filename?: string | null;
|
215
|
+
}
|
216
|
+
interface Text$1 {
|
217
|
+
/** Text in HTML format. */
|
218
|
+
html?: string | null;
|
219
|
+
/**
|
220
|
+
* Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
|
221
|
+
*
|
222
|
+
* __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values.
|
223
|
+
*/
|
224
|
+
css?: Record<string, any> | null;
|
225
|
+
/** Reserved for internal use. */
|
226
|
+
editorHtml?: string | null;
|
227
|
+
/** Reserved for internal use. */
|
228
|
+
editorFontId?: string | null;
|
229
|
+
}
|
230
|
+
interface Tags$1 {
|
231
|
+
/** List of tags assigned to the media item. */
|
232
|
+
values?: string[];
|
233
|
+
}
|
234
|
+
interface ListGalleriesRequest$1 {
|
235
|
+
/**
|
236
|
+
* Maximum number of media items to return. <br />
|
237
|
+
*
|
238
|
+
* Min: `1` <br />
|
239
|
+
* Max: `100` <br />
|
240
|
+
* Default: `10`
|
241
|
+
*/
|
242
|
+
itemLimit?: number | null;
|
243
|
+
/**
|
244
|
+
* Number of galleries to skip in the response. <br />
|
245
|
+
*
|
246
|
+
* Default: `0`
|
247
|
+
*/
|
248
|
+
offset?: number | null;
|
249
|
+
/**
|
250
|
+
* Maximum number of galleries to return. <br />
|
251
|
+
*
|
252
|
+
* Min: `1` <br />
|
253
|
+
* Max: `10` <br />
|
254
|
+
* Default: `10`
|
255
|
+
*/
|
256
|
+
limit?: number | null;
|
257
|
+
}
|
258
|
+
interface ListGalleriesResponse$1 {
|
259
|
+
/** Total number of galleries in the site. */
|
260
|
+
totalGalleries?: number | null;
|
261
|
+
/** List of galleries. Sorted by `createdDate`. */
|
262
|
+
galleries?: Gallery$1[];
|
263
|
+
}
|
264
|
+
interface GetGalleryRequest$1 extends GetGalleryRequestVersionOneOf$1 {
|
265
|
+
/** Gallery ID. */
|
266
|
+
galleryId: string;
|
267
|
+
/**
|
268
|
+
* Number of media items to skip in the response. <br />
|
269
|
+
*
|
270
|
+
* Default: `0`
|
271
|
+
*/
|
272
|
+
itemOffset?: number | null;
|
273
|
+
/**
|
274
|
+
* Maximum number of media items to return. <br />
|
275
|
+
*
|
276
|
+
* Min: `1` <br />
|
277
|
+
* Max: `100` <br />
|
278
|
+
* Default: `50`
|
279
|
+
*/
|
280
|
+
itemLimit?: number | null;
|
281
|
+
}
|
282
|
+
/** @oneof */
|
283
|
+
interface GetGalleryRequestVersionOneOf$1 {
|
284
|
+
}
|
285
|
+
interface GetGalleryResponse$1 {
|
286
|
+
/** Returned gallery. */
|
287
|
+
gallery?: Gallery$1;
|
288
|
+
}
|
289
|
+
interface ListGalleryItemsRequest$1 {
|
290
|
+
/** Gallery ID. */
|
291
|
+
galleryId: string;
|
292
|
+
/**
|
293
|
+
* Number of media items to skip in the response. <br />
|
294
|
+
*
|
295
|
+
* Default: `0`
|
296
|
+
*/
|
297
|
+
itemOffset?: number | null;
|
298
|
+
/**
|
299
|
+
* Maximum number of media items to return. <br />
|
300
|
+
*
|
301
|
+
* Min: `1` <br />
|
302
|
+
* Max: `100` <br />
|
303
|
+
* Default: `50`
|
304
|
+
*/
|
305
|
+
itemLimit?: number | null;
|
306
|
+
}
|
307
|
+
interface ListGalleryItemsResponse$1 {
|
308
|
+
/** List of media items in the gallery. */
|
309
|
+
items?: Item$1[];
|
310
|
+
}
|
311
|
+
interface GetGalleryItemRequest$1 {
|
312
|
+
/** Gallery ID. */
|
313
|
+
galleryId: string;
|
314
|
+
/** Item ID. */
|
315
|
+
itemId: string;
|
316
|
+
}
|
317
|
+
interface GetGalleryItemResponse$1 {
|
318
|
+
/** Returned media item. */
|
319
|
+
item?: Item$1;
|
320
|
+
}
|
321
|
+
interface CreateGalleryRequest$1 {
|
322
|
+
/** Gallery to create. */
|
323
|
+
gallery?: Gallery$1;
|
324
|
+
/** Gallery ID to clone from. */
|
325
|
+
cloneFromGalleryId?: string | null;
|
326
|
+
}
|
327
|
+
interface CreateGalleryResponse$1 {
|
328
|
+
/** Created gallery. */
|
329
|
+
gallery?: Gallery$1;
|
330
|
+
}
|
331
|
+
interface UpdateGalleryRequest$1 {
|
332
|
+
/** Gallery to update. */
|
333
|
+
gallery: Gallery$1;
|
334
|
+
}
|
335
|
+
interface UpdateGalleryResponse$1 {
|
336
|
+
/** Updated gallery. */
|
337
|
+
gallery?: Gallery$1;
|
338
|
+
}
|
339
|
+
interface DeleteGalleryRequest$1 {
|
340
|
+
/** ID of the gallery to delete. */
|
341
|
+
galleryId: string;
|
342
|
+
}
|
343
|
+
interface DeleteGalleryResponse$1 {
|
344
|
+
/**
|
345
|
+
* ID of the deleted gallery.
|
346
|
+
* @readonly
|
347
|
+
*/
|
348
|
+
galleryId?: string;
|
349
|
+
}
|
350
|
+
interface CreateGalleryItemRequest$1 {
|
351
|
+
/** Gallery ID. */
|
352
|
+
galleryId: string;
|
353
|
+
/** Media item to create. */
|
354
|
+
item: Item$1;
|
355
|
+
}
|
356
|
+
interface CreateGalleryItemResponse$1 {
|
357
|
+
/** Created media item. */
|
358
|
+
item?: Item$1;
|
359
|
+
}
|
360
|
+
interface UpdateGalleryItemRequest$1 {
|
361
|
+
/** Gallery ID. */
|
362
|
+
galleryId: string;
|
363
|
+
/** Media item to update. */
|
364
|
+
item: Item$1;
|
365
|
+
}
|
366
|
+
interface UpdateGalleryItemResponse$1 {
|
367
|
+
/** Updated media item. */
|
368
|
+
item?: Item$1;
|
369
|
+
}
|
370
|
+
interface DeleteGalleryItemRequest$1 {
|
371
|
+
/** Gallery ID. */
|
372
|
+
galleryId: string;
|
373
|
+
/** ID of the media item to delete. */
|
374
|
+
itemId: string;
|
375
|
+
}
|
376
|
+
interface DeleteGalleryItemResponse$1 {
|
377
|
+
/**
|
378
|
+
* ID of the deleted media item.
|
379
|
+
* @readonly
|
380
|
+
*/
|
381
|
+
itemId?: string;
|
382
|
+
}
|
383
|
+
interface ListGalleriesResponseNonNullableFields$1 {
|
384
|
+
galleries: {
|
385
|
+
items: {
|
386
|
+
image?: {
|
387
|
+
type: ImageType;
|
388
|
+
imageInfo?: {
|
389
|
+
id: string;
|
390
|
+
url: string;
|
391
|
+
height: number;
|
392
|
+
width: number;
|
393
|
+
};
|
394
|
+
focalPoint?: {
|
395
|
+
x: number;
|
396
|
+
y: number;
|
397
|
+
};
|
398
|
+
};
|
399
|
+
video?: {
|
400
|
+
type: VideoType$1;
|
401
|
+
videoInfo?: {
|
402
|
+
id: string;
|
403
|
+
url: string;
|
404
|
+
resolutions: {
|
405
|
+
url: string;
|
406
|
+
height: number;
|
407
|
+
width: number;
|
408
|
+
poster?: {
|
409
|
+
id: string;
|
410
|
+
url: string;
|
411
|
+
height: number;
|
412
|
+
width: number;
|
413
|
+
};
|
414
|
+
format: string;
|
415
|
+
}[];
|
416
|
+
posters: {
|
417
|
+
id: string;
|
418
|
+
url: string;
|
419
|
+
height: number;
|
420
|
+
width: number;
|
421
|
+
}[];
|
422
|
+
};
|
423
|
+
};
|
424
|
+
link?: {
|
425
|
+
type: LinkType;
|
426
|
+
wixLinkData?: {
|
427
|
+
external?: {
|
428
|
+
url: string;
|
429
|
+
};
|
430
|
+
page?: {
|
431
|
+
pageId: string;
|
432
|
+
rel: LinkRel[];
|
433
|
+
};
|
434
|
+
anchor?: {
|
435
|
+
anchorName: string;
|
436
|
+
anchorDataId: string;
|
437
|
+
pageId: string;
|
438
|
+
rel: LinkRel[];
|
439
|
+
};
|
440
|
+
dynamicPage?: {
|
441
|
+
routerId: string;
|
442
|
+
innerRoute: string;
|
443
|
+
rel: LinkRel[];
|
444
|
+
};
|
445
|
+
document?: {
|
446
|
+
docId: string;
|
447
|
+
indexable: boolean;
|
448
|
+
};
|
449
|
+
email?: {
|
450
|
+
recipient: string;
|
451
|
+
};
|
452
|
+
phone?: {
|
453
|
+
phoneNumber: string;
|
454
|
+
};
|
455
|
+
address?: {
|
456
|
+
address: string;
|
457
|
+
};
|
458
|
+
whatsApp?: {
|
459
|
+
phoneNumber: string;
|
460
|
+
};
|
461
|
+
tpaPage?: {
|
462
|
+
itemTypeIdentifier: string;
|
463
|
+
itemId: string;
|
464
|
+
pageId: string;
|
465
|
+
appDefinitionId: string;
|
466
|
+
path: string;
|
467
|
+
rel: LinkRel[];
|
468
|
+
};
|
469
|
+
};
|
470
|
+
};
|
471
|
+
type: Type$1;
|
472
|
+
tags?: {
|
473
|
+
values: string[];
|
474
|
+
};
|
475
|
+
secondaryMedia?: {
|
476
|
+
image?: {
|
477
|
+
type: ImageType;
|
478
|
+
imageInfo?: {
|
479
|
+
id: string;
|
480
|
+
url: string;
|
481
|
+
height: number;
|
482
|
+
width: number;
|
483
|
+
};
|
484
|
+
focalPoint?: {
|
485
|
+
x: number;
|
486
|
+
y: number;
|
487
|
+
};
|
488
|
+
};
|
489
|
+
};
|
490
|
+
}[];
|
491
|
+
}[];
|
492
|
+
}
|
493
|
+
interface GetGalleryResponseNonNullableFields$1 {
|
494
|
+
gallery?: {
|
495
|
+
items: {
|
496
|
+
image?: {
|
497
|
+
type: ImageType;
|
498
|
+
imageInfo?: {
|
499
|
+
id: string;
|
500
|
+
url: string;
|
501
|
+
height: number;
|
502
|
+
width: number;
|
503
|
+
};
|
504
|
+
focalPoint?: {
|
505
|
+
x: number;
|
506
|
+
y: number;
|
507
|
+
};
|
508
|
+
};
|
509
|
+
video?: {
|
510
|
+
type: VideoType$1;
|
511
|
+
videoInfo?: {
|
512
|
+
id: string;
|
513
|
+
url: string;
|
514
|
+
resolutions: {
|
515
|
+
url: string;
|
516
|
+
height: number;
|
517
|
+
width: number;
|
518
|
+
poster?: {
|
519
|
+
id: string;
|
520
|
+
url: string;
|
521
|
+
height: number;
|
522
|
+
width: number;
|
523
|
+
};
|
524
|
+
format: string;
|
525
|
+
}[];
|
526
|
+
posters: {
|
527
|
+
id: string;
|
528
|
+
url: string;
|
529
|
+
height: number;
|
530
|
+
width: number;
|
531
|
+
}[];
|
532
|
+
};
|
533
|
+
};
|
534
|
+
link?: {
|
535
|
+
type: LinkType;
|
536
|
+
wixLinkData?: {
|
537
|
+
external?: {
|
538
|
+
url: string;
|
539
|
+
};
|
540
|
+
page?: {
|
541
|
+
pageId: string;
|
542
|
+
rel: LinkRel[];
|
543
|
+
};
|
544
|
+
anchor?: {
|
545
|
+
anchorName: string;
|
546
|
+
anchorDataId: string;
|
547
|
+
pageId: string;
|
548
|
+
rel: LinkRel[];
|
549
|
+
};
|
550
|
+
dynamicPage?: {
|
551
|
+
routerId: string;
|
552
|
+
innerRoute: string;
|
553
|
+
rel: LinkRel[];
|
554
|
+
};
|
555
|
+
document?: {
|
556
|
+
docId: string;
|
557
|
+
indexable: boolean;
|
558
|
+
};
|
559
|
+
email?: {
|
560
|
+
recipient: string;
|
561
|
+
};
|
562
|
+
phone?: {
|
563
|
+
phoneNumber: string;
|
564
|
+
};
|
565
|
+
address?: {
|
566
|
+
address: string;
|
567
|
+
};
|
568
|
+
whatsApp?: {
|
569
|
+
phoneNumber: string;
|
570
|
+
};
|
571
|
+
tpaPage?: {
|
572
|
+
itemTypeIdentifier: string;
|
573
|
+
itemId: string;
|
574
|
+
pageId: string;
|
575
|
+
appDefinitionId: string;
|
576
|
+
path: string;
|
577
|
+
rel: LinkRel[];
|
578
|
+
};
|
579
|
+
};
|
580
|
+
};
|
581
|
+
type: Type$1;
|
582
|
+
tags?: {
|
583
|
+
values: string[];
|
584
|
+
};
|
585
|
+
secondaryMedia?: {
|
586
|
+
image?: {
|
587
|
+
type: ImageType;
|
588
|
+
imageInfo?: {
|
589
|
+
id: string;
|
590
|
+
url: string;
|
591
|
+
height: number;
|
592
|
+
width: number;
|
593
|
+
};
|
594
|
+
focalPoint?: {
|
595
|
+
x: number;
|
596
|
+
y: number;
|
597
|
+
};
|
598
|
+
};
|
599
|
+
};
|
600
|
+
}[];
|
601
|
+
};
|
602
|
+
}
|
603
|
+
interface ListGalleryItemsResponseNonNullableFields$1 {
|
604
|
+
items: {
|
605
|
+
image?: {
|
606
|
+
type: ImageType;
|
607
|
+
imageInfo?: {
|
608
|
+
id: string;
|
609
|
+
url: string;
|
610
|
+
height: number;
|
611
|
+
width: number;
|
612
|
+
};
|
613
|
+
focalPoint?: {
|
614
|
+
x: number;
|
615
|
+
y: number;
|
616
|
+
};
|
617
|
+
};
|
618
|
+
video?: {
|
619
|
+
type: VideoType$1;
|
620
|
+
videoInfo?: {
|
621
|
+
id: string;
|
622
|
+
url: string;
|
623
|
+
resolutions: {
|
624
|
+
url: string;
|
625
|
+
height: number;
|
626
|
+
width: number;
|
627
|
+
poster?: {
|
628
|
+
id: string;
|
629
|
+
url: string;
|
630
|
+
height: number;
|
631
|
+
width: number;
|
632
|
+
};
|
633
|
+
format: string;
|
634
|
+
}[];
|
635
|
+
posters: {
|
636
|
+
id: string;
|
637
|
+
url: string;
|
638
|
+
height: number;
|
639
|
+
width: number;
|
640
|
+
}[];
|
641
|
+
};
|
642
|
+
};
|
643
|
+
link?: {
|
644
|
+
type: LinkType;
|
645
|
+
wixLinkData?: {
|
646
|
+
external?: {
|
647
|
+
url: string;
|
648
|
+
};
|
649
|
+
page?: {
|
650
|
+
pageId: string;
|
651
|
+
rel: LinkRel[];
|
652
|
+
};
|
653
|
+
anchor?: {
|
654
|
+
anchorName: string;
|
655
|
+
anchorDataId: string;
|
656
|
+
pageId: string;
|
657
|
+
rel: LinkRel[];
|
658
|
+
};
|
659
|
+
dynamicPage?: {
|
660
|
+
routerId: string;
|
661
|
+
innerRoute: string;
|
662
|
+
rel: LinkRel[];
|
663
|
+
};
|
664
|
+
document?: {
|
665
|
+
docId: string;
|
666
|
+
indexable: boolean;
|
667
|
+
};
|
668
|
+
email?: {
|
669
|
+
recipient: string;
|
670
|
+
};
|
671
|
+
phone?: {
|
672
|
+
phoneNumber: string;
|
673
|
+
};
|
674
|
+
address?: {
|
675
|
+
address: string;
|
676
|
+
};
|
677
|
+
whatsApp?: {
|
678
|
+
phoneNumber: string;
|
679
|
+
};
|
680
|
+
tpaPage?: {
|
681
|
+
itemTypeIdentifier: string;
|
682
|
+
itemId: string;
|
683
|
+
pageId: string;
|
684
|
+
appDefinitionId: string;
|
685
|
+
path: string;
|
686
|
+
rel: LinkRel[];
|
687
|
+
};
|
688
|
+
};
|
689
|
+
};
|
690
|
+
type: Type$1;
|
691
|
+
tags?: {
|
692
|
+
values: string[];
|
693
|
+
};
|
694
|
+
secondaryMedia?: {
|
695
|
+
image?: {
|
696
|
+
type: ImageType;
|
697
|
+
imageInfo?: {
|
698
|
+
id: string;
|
699
|
+
url: string;
|
700
|
+
height: number;
|
701
|
+
width: number;
|
702
|
+
};
|
703
|
+
focalPoint?: {
|
704
|
+
x: number;
|
705
|
+
y: number;
|
706
|
+
};
|
707
|
+
};
|
708
|
+
};
|
709
|
+
}[];
|
710
|
+
}
|
711
|
+
interface GetGalleryItemResponseNonNullableFields$1 {
|
712
|
+
item?: {
|
713
|
+
image?: {
|
714
|
+
type: ImageType;
|
715
|
+
imageInfo?: {
|
716
|
+
id: string;
|
717
|
+
url: string;
|
718
|
+
height: number;
|
719
|
+
width: number;
|
720
|
+
};
|
721
|
+
focalPoint?: {
|
722
|
+
x: number;
|
723
|
+
y: number;
|
724
|
+
};
|
725
|
+
};
|
726
|
+
video?: {
|
727
|
+
type: VideoType$1;
|
728
|
+
videoInfo?: {
|
729
|
+
id: string;
|
730
|
+
url: string;
|
731
|
+
resolutions: {
|
732
|
+
url: string;
|
733
|
+
height: number;
|
734
|
+
width: number;
|
735
|
+
poster?: {
|
736
|
+
id: string;
|
737
|
+
url: string;
|
738
|
+
height: number;
|
739
|
+
width: number;
|
740
|
+
};
|
741
|
+
format: string;
|
742
|
+
}[];
|
743
|
+
posters: {
|
744
|
+
id: string;
|
745
|
+
url: string;
|
746
|
+
height: number;
|
747
|
+
width: number;
|
748
|
+
}[];
|
749
|
+
};
|
750
|
+
};
|
751
|
+
link?: {
|
752
|
+
type: LinkType;
|
753
|
+
wixLinkData?: {
|
754
|
+
external?: {
|
755
|
+
url: string;
|
756
|
+
};
|
757
|
+
page?: {
|
758
|
+
pageId: string;
|
759
|
+
rel: LinkRel[];
|
760
|
+
};
|
761
|
+
anchor?: {
|
762
|
+
anchorName: string;
|
763
|
+
anchorDataId: string;
|
764
|
+
pageId: string;
|
765
|
+
rel: LinkRel[];
|
766
|
+
};
|
767
|
+
dynamicPage?: {
|
768
|
+
routerId: string;
|
769
|
+
innerRoute: string;
|
770
|
+
rel: LinkRel[];
|
771
|
+
};
|
772
|
+
document?: {
|
773
|
+
docId: string;
|
774
|
+
indexable: boolean;
|
775
|
+
};
|
776
|
+
email?: {
|
777
|
+
recipient: string;
|
778
|
+
};
|
779
|
+
phone?: {
|
780
|
+
phoneNumber: string;
|
781
|
+
};
|
782
|
+
address?: {
|
783
|
+
address: string;
|
784
|
+
};
|
785
|
+
whatsApp?: {
|
786
|
+
phoneNumber: string;
|
787
|
+
};
|
788
|
+
tpaPage?: {
|
789
|
+
itemTypeIdentifier: string;
|
790
|
+
itemId: string;
|
791
|
+
pageId: string;
|
792
|
+
appDefinitionId: string;
|
793
|
+
path: string;
|
794
|
+
rel: LinkRel[];
|
795
|
+
};
|
796
|
+
};
|
797
|
+
};
|
798
|
+
type: Type$1;
|
799
|
+
tags?: {
|
800
|
+
values: string[];
|
801
|
+
};
|
802
|
+
secondaryMedia?: {
|
803
|
+
image?: {
|
804
|
+
type: ImageType;
|
805
|
+
imageInfo?: {
|
806
|
+
id: string;
|
807
|
+
url: string;
|
808
|
+
height: number;
|
809
|
+
width: number;
|
810
|
+
};
|
811
|
+
focalPoint?: {
|
812
|
+
x: number;
|
813
|
+
y: number;
|
814
|
+
};
|
815
|
+
};
|
816
|
+
};
|
817
|
+
};
|
818
|
+
}
|
819
|
+
interface CreateGalleryResponseNonNullableFields$1 {
|
820
|
+
gallery?: {
|
821
|
+
items: {
|
822
|
+
image?: {
|
823
|
+
type: ImageType;
|
824
|
+
imageInfo?: {
|
825
|
+
id: string;
|
826
|
+
url: string;
|
827
|
+
height: number;
|
828
|
+
width: number;
|
829
|
+
};
|
830
|
+
focalPoint?: {
|
831
|
+
x: number;
|
832
|
+
y: number;
|
833
|
+
};
|
834
|
+
};
|
835
|
+
video?: {
|
836
|
+
type: VideoType$1;
|
837
|
+
videoInfo?: {
|
838
|
+
id: string;
|
839
|
+
url: string;
|
840
|
+
resolutions: {
|
841
|
+
url: string;
|
842
|
+
height: number;
|
843
|
+
width: number;
|
844
|
+
poster?: {
|
845
|
+
id: string;
|
846
|
+
url: string;
|
847
|
+
height: number;
|
848
|
+
width: number;
|
849
|
+
};
|
850
|
+
format: string;
|
851
|
+
}[];
|
852
|
+
posters: {
|
853
|
+
id: string;
|
854
|
+
url: string;
|
855
|
+
height: number;
|
856
|
+
width: number;
|
857
|
+
}[];
|
858
|
+
};
|
859
|
+
};
|
860
|
+
link?: {
|
861
|
+
type: LinkType;
|
862
|
+
wixLinkData?: {
|
863
|
+
external?: {
|
864
|
+
url: string;
|
865
|
+
};
|
866
|
+
page?: {
|
867
|
+
pageId: string;
|
868
|
+
rel: LinkRel[];
|
869
|
+
};
|
870
|
+
anchor?: {
|
871
|
+
anchorName: string;
|
872
|
+
anchorDataId: string;
|
873
|
+
pageId: string;
|
874
|
+
rel: LinkRel[];
|
875
|
+
};
|
876
|
+
dynamicPage?: {
|
877
|
+
routerId: string;
|
878
|
+
innerRoute: string;
|
879
|
+
rel: LinkRel[];
|
880
|
+
};
|
881
|
+
document?: {
|
882
|
+
docId: string;
|
883
|
+
indexable: boolean;
|
884
|
+
};
|
885
|
+
email?: {
|
886
|
+
recipient: string;
|
887
|
+
};
|
888
|
+
phone?: {
|
889
|
+
phoneNumber: string;
|
890
|
+
};
|
891
|
+
address?: {
|
892
|
+
address: string;
|
893
|
+
};
|
894
|
+
whatsApp?: {
|
895
|
+
phoneNumber: string;
|
896
|
+
};
|
897
|
+
tpaPage?: {
|
898
|
+
itemTypeIdentifier: string;
|
899
|
+
itemId: string;
|
900
|
+
pageId: string;
|
901
|
+
appDefinitionId: string;
|
902
|
+
path: string;
|
903
|
+
rel: LinkRel[];
|
904
|
+
};
|
905
|
+
};
|
906
|
+
};
|
907
|
+
type: Type$1;
|
908
|
+
tags?: {
|
909
|
+
values: string[];
|
910
|
+
};
|
911
|
+
secondaryMedia?: {
|
912
|
+
image?: {
|
913
|
+
type: ImageType;
|
914
|
+
imageInfo?: {
|
915
|
+
id: string;
|
916
|
+
url: string;
|
917
|
+
height: number;
|
918
|
+
width: number;
|
919
|
+
};
|
920
|
+
focalPoint?: {
|
921
|
+
x: number;
|
922
|
+
y: number;
|
923
|
+
};
|
924
|
+
};
|
925
|
+
};
|
926
|
+
}[];
|
927
|
+
};
|
928
|
+
}
|
929
|
+
interface UpdateGalleryResponseNonNullableFields$1 {
|
930
|
+
gallery?: {
|
931
|
+
items: {
|
932
|
+
image?: {
|
933
|
+
type: ImageType;
|
934
|
+
imageInfo?: {
|
935
|
+
id: string;
|
936
|
+
url: string;
|
937
|
+
height: number;
|
938
|
+
width: number;
|
939
|
+
};
|
940
|
+
focalPoint?: {
|
941
|
+
x: number;
|
942
|
+
y: number;
|
943
|
+
};
|
944
|
+
};
|
945
|
+
video?: {
|
946
|
+
type: VideoType$1;
|
947
|
+
videoInfo?: {
|
948
|
+
id: string;
|
949
|
+
url: string;
|
950
|
+
resolutions: {
|
951
|
+
url: string;
|
952
|
+
height: number;
|
953
|
+
width: number;
|
954
|
+
poster?: {
|
955
|
+
id: string;
|
956
|
+
url: string;
|
957
|
+
height: number;
|
958
|
+
width: number;
|
959
|
+
};
|
960
|
+
format: string;
|
961
|
+
}[];
|
962
|
+
posters: {
|
963
|
+
id: string;
|
964
|
+
url: string;
|
965
|
+
height: number;
|
966
|
+
width: number;
|
967
|
+
}[];
|
968
|
+
};
|
969
|
+
};
|
970
|
+
link?: {
|
971
|
+
type: LinkType;
|
972
|
+
wixLinkData?: {
|
973
|
+
external?: {
|
974
|
+
url: string;
|
975
|
+
};
|
976
|
+
page?: {
|
977
|
+
pageId: string;
|
978
|
+
rel: LinkRel[];
|
979
|
+
};
|
980
|
+
anchor?: {
|
981
|
+
anchorName: string;
|
982
|
+
anchorDataId: string;
|
983
|
+
pageId: string;
|
984
|
+
rel: LinkRel[];
|
985
|
+
};
|
986
|
+
dynamicPage?: {
|
987
|
+
routerId: string;
|
988
|
+
innerRoute: string;
|
989
|
+
rel: LinkRel[];
|
990
|
+
};
|
991
|
+
document?: {
|
992
|
+
docId: string;
|
993
|
+
indexable: boolean;
|
994
|
+
};
|
995
|
+
email?: {
|
996
|
+
recipient: string;
|
997
|
+
};
|
998
|
+
phone?: {
|
999
|
+
phoneNumber: string;
|
1000
|
+
};
|
1001
|
+
address?: {
|
1002
|
+
address: string;
|
1003
|
+
};
|
1004
|
+
whatsApp?: {
|
1005
|
+
phoneNumber: string;
|
1006
|
+
};
|
1007
|
+
tpaPage?: {
|
1008
|
+
itemTypeIdentifier: string;
|
1009
|
+
itemId: string;
|
1010
|
+
pageId: string;
|
1011
|
+
appDefinitionId: string;
|
1012
|
+
path: string;
|
1013
|
+
rel: LinkRel[];
|
1014
|
+
};
|
1015
|
+
};
|
1016
|
+
};
|
1017
|
+
type: Type$1;
|
1018
|
+
tags?: {
|
1019
|
+
values: string[];
|
1020
|
+
};
|
1021
|
+
secondaryMedia?: {
|
1022
|
+
image?: {
|
1023
|
+
type: ImageType;
|
1024
|
+
imageInfo?: {
|
1025
|
+
id: string;
|
1026
|
+
url: string;
|
1027
|
+
height: number;
|
1028
|
+
width: number;
|
1029
|
+
};
|
1030
|
+
focalPoint?: {
|
1031
|
+
x: number;
|
1032
|
+
y: number;
|
1033
|
+
};
|
1034
|
+
};
|
1035
|
+
};
|
1036
|
+
}[];
|
1037
|
+
};
|
1038
|
+
}
|
1039
|
+
interface DeleteGalleryResponseNonNullableFields$1 {
|
1040
|
+
galleryId: string;
|
1041
|
+
}
|
1042
|
+
interface CreateGalleryItemResponseNonNullableFields$1 {
|
1043
|
+
item?: {
|
1044
|
+
image?: {
|
1045
|
+
type: ImageType;
|
1046
|
+
imageInfo?: {
|
1047
|
+
id: string;
|
1048
|
+
url: string;
|
1049
|
+
height: number;
|
1050
|
+
width: number;
|
1051
|
+
};
|
1052
|
+
focalPoint?: {
|
1053
|
+
x: number;
|
1054
|
+
y: number;
|
1055
|
+
};
|
1056
|
+
};
|
1057
|
+
video?: {
|
1058
|
+
type: VideoType$1;
|
1059
|
+
videoInfo?: {
|
1060
|
+
id: string;
|
1061
|
+
url: string;
|
1062
|
+
resolutions: {
|
1063
|
+
url: string;
|
1064
|
+
height: number;
|
1065
|
+
width: number;
|
1066
|
+
poster?: {
|
1067
|
+
id: string;
|
1068
|
+
url: string;
|
1069
|
+
height: number;
|
1070
|
+
width: number;
|
1071
|
+
};
|
1072
|
+
format: string;
|
1073
|
+
}[];
|
1074
|
+
posters: {
|
1075
|
+
id: string;
|
1076
|
+
url: string;
|
1077
|
+
height: number;
|
1078
|
+
width: number;
|
1079
|
+
}[];
|
1080
|
+
};
|
1081
|
+
};
|
1082
|
+
link?: {
|
1083
|
+
type: LinkType;
|
1084
|
+
wixLinkData?: {
|
1085
|
+
external?: {
|
1086
|
+
url: string;
|
1087
|
+
};
|
1088
|
+
page?: {
|
1089
|
+
pageId: string;
|
1090
|
+
rel: LinkRel[];
|
1091
|
+
};
|
1092
|
+
anchor?: {
|
1093
|
+
anchorName: string;
|
1094
|
+
anchorDataId: string;
|
1095
|
+
pageId: string;
|
1096
|
+
rel: LinkRel[];
|
1097
|
+
};
|
1098
|
+
dynamicPage?: {
|
1099
|
+
routerId: string;
|
1100
|
+
innerRoute: string;
|
1101
|
+
rel: LinkRel[];
|
1102
|
+
};
|
1103
|
+
document?: {
|
1104
|
+
docId: string;
|
1105
|
+
indexable: boolean;
|
1106
|
+
};
|
1107
|
+
email?: {
|
1108
|
+
recipient: string;
|
1109
|
+
};
|
1110
|
+
phone?: {
|
1111
|
+
phoneNumber: string;
|
1112
|
+
};
|
1113
|
+
address?: {
|
1114
|
+
address: string;
|
1115
|
+
};
|
1116
|
+
whatsApp?: {
|
1117
|
+
phoneNumber: string;
|
1118
|
+
};
|
1119
|
+
tpaPage?: {
|
1120
|
+
itemTypeIdentifier: string;
|
1121
|
+
itemId: string;
|
1122
|
+
pageId: string;
|
1123
|
+
appDefinitionId: string;
|
1124
|
+
path: string;
|
1125
|
+
rel: LinkRel[];
|
1126
|
+
};
|
1127
|
+
};
|
1128
|
+
};
|
1129
|
+
type: Type$1;
|
1130
|
+
tags?: {
|
1131
|
+
values: string[];
|
1132
|
+
};
|
1133
|
+
secondaryMedia?: {
|
1134
|
+
image?: {
|
1135
|
+
type: ImageType;
|
1136
|
+
imageInfo?: {
|
1137
|
+
id: string;
|
1138
|
+
url: string;
|
1139
|
+
height: number;
|
1140
|
+
width: number;
|
1141
|
+
};
|
1142
|
+
focalPoint?: {
|
1143
|
+
x: number;
|
1144
|
+
y: number;
|
1145
|
+
};
|
1146
|
+
};
|
1147
|
+
};
|
1148
|
+
};
|
1149
|
+
}
|
1150
|
+
interface UpdateGalleryItemResponseNonNullableFields$1 {
|
1151
|
+
item?: {
|
1152
|
+
image?: {
|
1153
|
+
type: ImageType;
|
1154
|
+
imageInfo?: {
|
1155
|
+
id: string;
|
1156
|
+
url: string;
|
1157
|
+
height: number;
|
1158
|
+
width: number;
|
1159
|
+
};
|
1160
|
+
focalPoint?: {
|
1161
|
+
x: number;
|
1162
|
+
y: number;
|
1163
|
+
};
|
1164
|
+
};
|
1165
|
+
video?: {
|
1166
|
+
type: VideoType$1;
|
1167
|
+
videoInfo?: {
|
1168
|
+
id: string;
|
1169
|
+
url: string;
|
1170
|
+
resolutions: {
|
1171
|
+
url: string;
|
1172
|
+
height: number;
|
1173
|
+
width: number;
|
1174
|
+
poster?: {
|
1175
|
+
id: string;
|
1176
|
+
url: string;
|
1177
|
+
height: number;
|
1178
|
+
width: number;
|
1179
|
+
};
|
1180
|
+
format: string;
|
1181
|
+
}[];
|
1182
|
+
posters: {
|
1183
|
+
id: string;
|
1184
|
+
url: string;
|
1185
|
+
height: number;
|
1186
|
+
width: number;
|
1187
|
+
}[];
|
1188
|
+
};
|
1189
|
+
};
|
1190
|
+
link?: {
|
1191
|
+
type: LinkType;
|
1192
|
+
wixLinkData?: {
|
1193
|
+
external?: {
|
1194
|
+
url: string;
|
1195
|
+
};
|
1196
|
+
page?: {
|
1197
|
+
pageId: string;
|
1198
|
+
rel: LinkRel[];
|
1199
|
+
};
|
1200
|
+
anchor?: {
|
1201
|
+
anchorName: string;
|
1202
|
+
anchorDataId: string;
|
1203
|
+
pageId: string;
|
1204
|
+
rel: LinkRel[];
|
1205
|
+
};
|
1206
|
+
dynamicPage?: {
|
1207
|
+
routerId: string;
|
1208
|
+
innerRoute: string;
|
1209
|
+
rel: LinkRel[];
|
1210
|
+
};
|
1211
|
+
document?: {
|
1212
|
+
docId: string;
|
1213
|
+
indexable: boolean;
|
1214
|
+
};
|
1215
|
+
email?: {
|
1216
|
+
recipient: string;
|
1217
|
+
};
|
1218
|
+
phone?: {
|
1219
|
+
phoneNumber: string;
|
1220
|
+
};
|
1221
|
+
address?: {
|
1222
|
+
address: string;
|
1223
|
+
};
|
1224
|
+
whatsApp?: {
|
1225
|
+
phoneNumber: string;
|
1226
|
+
};
|
1227
|
+
tpaPage?: {
|
1228
|
+
itemTypeIdentifier: string;
|
1229
|
+
itemId: string;
|
1230
|
+
pageId: string;
|
1231
|
+
appDefinitionId: string;
|
1232
|
+
path: string;
|
1233
|
+
rel: LinkRel[];
|
1234
|
+
};
|
1235
|
+
};
|
1236
|
+
};
|
1237
|
+
type: Type$1;
|
1238
|
+
tags?: {
|
1239
|
+
values: string[];
|
1240
|
+
};
|
1241
|
+
secondaryMedia?: {
|
1242
|
+
image?: {
|
1243
|
+
type: ImageType;
|
1244
|
+
imageInfo?: {
|
1245
|
+
id: string;
|
1246
|
+
url: string;
|
1247
|
+
height: number;
|
1248
|
+
width: number;
|
1249
|
+
};
|
1250
|
+
focalPoint?: {
|
1251
|
+
x: number;
|
1252
|
+
y: number;
|
1253
|
+
};
|
1254
|
+
};
|
1255
|
+
};
|
1256
|
+
};
|
1257
|
+
}
|
1258
|
+
interface DeleteGalleryItemResponseNonNullableFields$1 {
|
1259
|
+
itemId: string;
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
interface Gallery {
|
1263
|
+
/**
|
1264
|
+
* Gallery ID.
|
1265
|
+
* @readonly
|
1266
|
+
*/
|
1267
|
+
_id?: string | null;
|
1268
|
+
/** Gallery name. */
|
1269
|
+
name?: string | null;
|
1270
|
+
/**
|
1271
|
+
* Total number of items in the gallery.
|
1272
|
+
* @readonly
|
1273
|
+
*/
|
1274
|
+
totalItems?: number | null;
|
1275
|
+
/** Media items in the gallery. */
|
1276
|
+
items?: Item[];
|
1277
|
+
/**
|
1278
|
+
* Index that determines which position a gallery is displayed on the site. <br />
|
1279
|
+
*
|
1280
|
+
* >**Note:** If you assign the same sort order index to more than one gallery, the function fails.
|
1281
|
+
*/
|
1282
|
+
sortOrder?: number | null;
|
1283
|
+
/**
|
1284
|
+
* Date and time the gallery was created.
|
1285
|
+
* @readonly
|
1286
|
+
*/
|
1287
|
+
_createdDate?: Date;
|
1288
|
+
}
|
1289
|
+
interface Item extends ItemMetadataOneOf {
|
1290
|
+
/** Details about the image. */
|
1291
|
+
image?: Image;
|
1292
|
+
/** Details about the video. */
|
1293
|
+
video?: Video;
|
1294
|
+
/** Details about the text file. */
|
1295
|
+
text?: Text;
|
1296
|
+
/**
|
1297
|
+
* Item ID.
|
1298
|
+
* @readonly
|
1299
|
+
*/
|
1300
|
+
_id?: string | null;
|
1301
|
+
/**
|
1302
|
+
* Index that determines which position a media item is displayed in the gallery. <br />
|
1303
|
+
*
|
1304
|
+
* Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
|
1305
|
+
*
|
1306
|
+
* >**Note:** If you assign the same sort order index to more than one media item in a gallery, the function fails.
|
1307
|
+
*/
|
1308
|
+
sortOrder?: number | null;
|
1309
|
+
/** Item title. */
|
1310
|
+
title?: string | null;
|
1311
|
+
/** Item description. */
|
1312
|
+
description?: string | null;
|
1313
|
+
/** Link from the item. You can link to Wix sites or external URLs. */
|
1314
|
+
link?: Link;
|
1315
|
+
/** @readonly */
|
1316
|
+
type?: Type;
|
1317
|
+
/**
|
1318
|
+
* Date and time the item was created.
|
1319
|
+
* @readonly
|
1320
|
+
*/
|
1321
|
+
_createdDate?: Date;
|
1322
|
+
/**
|
1323
|
+
* Date and time the item was last updated.
|
1324
|
+
* @readonly
|
1325
|
+
*/
|
1326
|
+
_updatedDate?: Date;
|
1327
|
+
/** Item tags. */
|
1328
|
+
tags?: Tags;
|
1329
|
+
}
|
1330
|
+
/** @oneof */
|
1331
|
+
interface ItemMetadataOneOf {
|
1332
|
+
/** Details about the image. */
|
1333
|
+
image?: Image;
|
1334
|
+
/** Details about the video. */
|
1335
|
+
video?: Video;
|
1336
|
+
/** Details about the text file. */
|
1337
|
+
text?: Text;
|
1338
|
+
}
|
1339
|
+
interface Link {
|
1340
|
+
/** Display text of the link. */
|
1341
|
+
text?: string | null;
|
1342
|
+
/** Target URL of the link. */
|
1343
|
+
url?: string | null;
|
1344
|
+
}
|
1345
|
+
declare enum Type {
|
1346
|
+
UNDEFINED = "UNDEFINED",
|
1347
|
+
IMAGE = "IMAGE",
|
1348
|
+
VIDEO = "VIDEO",
|
1349
|
+
TEXT = "TEXT"
|
1350
|
+
}
|
1351
|
+
interface Image {
|
1352
|
+
/** The image's Wix media URL in the following format: `'wix:image://v1/<uri>/<filename>#originWidth=<width>&originHeight=<height>[&watermark=<watermark_manifest_string>]'`. */
|
1353
|
+
imageInfo?: string;
|
1354
|
+
/** Focal point of the image. */
|
1355
|
+
focalPoint?: Point;
|
1356
|
+
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
1357
|
+
exif?: Record<string, any> | null;
|
1358
|
+
/**
|
1359
|
+
* Image compression level. <br />
|
1360
|
+
*
|
1361
|
+
* Min: `30` <br />
|
1362
|
+
* Max: `100`
|
1363
|
+
*/
|
1364
|
+
quality?: number | null;
|
1365
|
+
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
1366
|
+
unsharpMasking?: UnsharpMasking;
|
1367
|
+
}
|
1368
|
+
interface Point {
|
1369
|
+
/** X-coordinate of the focal point. */
|
1370
|
+
x?: number;
|
1371
|
+
/** Y-coordinate of the focal point. */
|
1372
|
+
y?: number;
|
1373
|
+
}
|
1374
|
+
interface UnsharpMasking {
|
1375
|
+
/**
|
1376
|
+
* Unsharp masking amount. Controls the sharpening strength. <br />
|
1377
|
+
*
|
1378
|
+
* Min: `0` <br />
|
1379
|
+
* Max: `5`
|
1380
|
+
*/
|
1381
|
+
amount?: number | null;
|
1382
|
+
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
1383
|
+
radius?: number | null;
|
1384
|
+
/**
|
1385
|
+
* Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
|
1386
|
+
*
|
1387
|
+
* Min: `0` <br />
|
1388
|
+
* Max: `1`
|
1389
|
+
*/
|
1390
|
+
threshold?: number | null;
|
1391
|
+
}
|
1392
|
+
interface Video {
|
1393
|
+
type?: VideoType;
|
1394
|
+
/**
|
1395
|
+
* The video's URL. Either a Wix media URL, or a supported https external URL in the following formats:
|
1396
|
+
*
|
1397
|
+
* Wix Media: `'wix:video://v1/6e6ea4_461425d7e7db4d5487a28e00c5ba6244/9e6ea4_461425d7e7db4d5487a28e00c5ba6277#posterUri=9e6ea4_461425d7e7db4d5487a28e00c5ba6277f000.jpg&posterWidth=960&posterHeight=540'`
|
1398
|
+
*
|
1399
|
+
* Vimeo: `'https://vimeo.com/378840916'`
|
1400
|
+
*
|
1401
|
+
* Youtube: `'https://www.youtube.com/results?search_query=uplifting+upbeat+music'`
|
1402
|
+
*/
|
1403
|
+
videoInfo?: string;
|
1404
|
+
/** Manually defined video duration in milliseconds. */
|
1405
|
+
durationInMillis?: number | null;
|
1406
|
+
}
|
1407
|
+
declare enum VideoType {
|
1408
|
+
UNDEFINED = "UNDEFINED",
|
1409
|
+
WIX_MEDIA = "WIX_MEDIA",
|
1410
|
+
YOUTUBE = "YOUTUBE",
|
1411
|
+
VIMEO = "VIMEO"
|
1412
|
+
}
|
1413
|
+
interface Text {
|
1414
|
+
/** Text in HTML format. */
|
1415
|
+
html?: string | null;
|
1416
|
+
/**
|
1417
|
+
* Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
|
1418
|
+
*
|
1419
|
+
* __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values.
|
1420
|
+
*/
|
1421
|
+
css?: Record<string, any> | null;
|
1422
|
+
/** Reserved for internal use. */
|
1423
|
+
editorHtml?: string | null;
|
1424
|
+
/** Reserved for internal use. */
|
1425
|
+
editorFontId?: string | null;
|
1426
|
+
}
|
1427
|
+
interface Tags {
|
1428
|
+
/** List of tags assigned to the media item. */
|
1429
|
+
values?: string[];
|
1430
|
+
}
|
1431
|
+
interface ListGalleriesRequest {
|
1432
|
+
/** Number of galleries to list. Defaults to 10. */
|
1433
|
+
itemLimit?: number | null;
|
1434
|
+
/** Number of galleries to skip in the returns. Defaults to 0. */
|
1435
|
+
offset?: number | null;
|
1436
|
+
/** Number of galleries to list. Defaults to 10. */
|
1437
|
+
limit?: number | null;
|
1438
|
+
}
|
1439
|
+
interface ListGalleriesResponse {
|
1440
|
+
/** Total number of galleries in the site. */
|
1441
|
+
totalGalleries?: number | null;
|
1442
|
+
/** List of galleries. Sorted by `_createdDate`. */
|
1443
|
+
galleries?: Gallery[];
|
1444
|
+
}
|
1445
|
+
interface GetGalleryRequest extends GetGalleryRequestVersionOneOf {
|
1446
|
+
/** Gallery ID. */
|
1447
|
+
galleryId: string;
|
1448
|
+
/** Number of media items to skip in the returns. Defaults to 0. */
|
1449
|
+
itemOffset?: number | null;
|
1450
|
+
/**
|
1451
|
+
* Maximum number of media items to return. <br />
|
1452
|
+
*
|
1453
|
+
* Min: `1` <br />
|
1454
|
+
* Max: `100` <br />
|
1455
|
+
* Default: `50`
|
1456
|
+
*/
|
1457
|
+
itemLimit?: number | null;
|
1458
|
+
}
|
1459
|
+
/** @oneof */
|
1460
|
+
interface GetGalleryRequestVersionOneOf {
|
1461
|
+
}
|
1462
|
+
interface GetGalleryResponse {
|
1463
|
+
/** Returned gallery. */
|
1464
|
+
gallery?: Gallery;
|
1465
|
+
}
|
1466
|
+
interface ListGalleryItemsRequest {
|
1467
|
+
/** Gallery ID. */
|
1468
|
+
galleryId: string;
|
1469
|
+
/** Number of media items to skip in the returns. Defaults to 0. */
|
1470
|
+
itemOffset?: number | null;
|
1471
|
+
/**
|
1472
|
+
* Maximum number of media items to return. <br />
|
1473
|
+
*
|
1474
|
+
* Min: `1` <br />
|
1475
|
+
* Max: `100` <br />
|
1476
|
+
* Default: `50`
|
1477
|
+
*/
|
1478
|
+
itemLimit?: number | null;
|
1479
|
+
}
|
1480
|
+
interface ListGalleryItemsResponse {
|
1481
|
+
/** List of media items in the gallery. */
|
1482
|
+
items?: Item[];
|
1483
|
+
}
|
1484
|
+
interface GetGalleryItemRequest {
|
1485
|
+
/** Gallery ID. */
|
1486
|
+
galleryId: string;
|
1487
|
+
/** Item ID. */
|
1488
|
+
itemId: string;
|
1489
|
+
}
|
1490
|
+
interface GetGalleryItemResponse {
|
1491
|
+
/** Returned media item. */
|
1492
|
+
item?: Item;
|
1493
|
+
}
|
1494
|
+
interface CreateGalleryRequest {
|
1495
|
+
/** Gallery to create. */
|
1496
|
+
gallery?: Gallery;
|
1497
|
+
/** Gallery ID to clone from. */
|
1498
|
+
cloneFromGalleryId?: string | null;
|
1499
|
+
}
|
1500
|
+
interface CreateGalleryResponse {
|
1501
|
+
/** Created gallery. */
|
1502
|
+
gallery?: Gallery;
|
1503
|
+
}
|
1504
|
+
interface UpdateGalleryRequest {
|
1505
|
+
/** Gallery to update. */
|
1506
|
+
gallery: Gallery;
|
1507
|
+
}
|
1508
|
+
interface UpdateGalleryResponse {
|
1509
|
+
/** Updated gallery. */
|
1510
|
+
gallery?: Gallery;
|
1511
|
+
}
|
1512
|
+
interface DeleteGalleryRequest {
|
1513
|
+
/** ID of the gallery to delete. */
|
1514
|
+
galleryId: string;
|
1515
|
+
}
|
1516
|
+
interface DeleteGalleryResponse {
|
1517
|
+
/**
|
1518
|
+
* ID of the deleted gallery.
|
1519
|
+
* @readonly
|
1520
|
+
*/
|
1521
|
+
galleryId?: string;
|
1522
|
+
}
|
1523
|
+
interface CreateGalleryItemRequest {
|
1524
|
+
/** Gallery ID. */
|
1525
|
+
galleryId: string;
|
1526
|
+
/** Media item to create. */
|
1527
|
+
item: Item;
|
1528
|
+
}
|
1529
|
+
interface CreateGalleryItemResponse {
|
1530
|
+
/** Created media item. */
|
1531
|
+
item?: Item;
|
1532
|
+
}
|
1533
|
+
interface UpdateGalleryItemRequest {
|
1534
|
+
/** Gallery ID. */
|
1535
|
+
galleryId: string;
|
1536
|
+
/** The information for the media item being updated. */
|
1537
|
+
item: Item;
|
1538
|
+
}
|
1539
|
+
interface UpdateGalleryItemResponse {
|
1540
|
+
/** Updated media item. */
|
1541
|
+
item?: Item;
|
1542
|
+
}
|
1543
|
+
interface DeleteGalleryItemRequest {
|
1544
|
+
/** Gallery ID. */
|
1545
|
+
galleryId: string;
|
1546
|
+
/** ID of the media item to delete. */
|
1547
|
+
itemId: string;
|
1548
|
+
}
|
1549
|
+
interface DeleteGalleryItemResponse {
|
1550
|
+
/**
|
1551
|
+
* ID of the deleted media item.
|
1552
|
+
* @readonly
|
1553
|
+
*/
|
1554
|
+
itemId?: string;
|
1555
|
+
}
|
1556
|
+
interface ListGalleriesResponseNonNullableFields {
|
1557
|
+
galleries: {
|
1558
|
+
items: {
|
1559
|
+
image?: {
|
1560
|
+
imageInfo: string;
|
1561
|
+
focalPoint?: {
|
1562
|
+
x: number;
|
1563
|
+
y: number;
|
1564
|
+
};
|
1565
|
+
};
|
1566
|
+
video?: {
|
1567
|
+
type: VideoType;
|
1568
|
+
videoInfo: string;
|
1569
|
+
};
|
1570
|
+
type: Type;
|
1571
|
+
tags?: {
|
1572
|
+
values: string[];
|
1573
|
+
};
|
1574
|
+
}[];
|
1575
|
+
}[];
|
1576
|
+
}
|
1577
|
+
interface GetGalleryResponseNonNullableFields {
|
1578
|
+
gallery?: {
|
1579
|
+
items: {
|
1580
|
+
image?: {
|
1581
|
+
imageInfo: string;
|
1582
|
+
focalPoint?: {
|
1583
|
+
x: number;
|
1584
|
+
y: number;
|
1585
|
+
};
|
1586
|
+
};
|
1587
|
+
video?: {
|
1588
|
+
type: VideoType;
|
1589
|
+
videoInfo: string;
|
1590
|
+
};
|
1591
|
+
type: Type;
|
1592
|
+
tags?: {
|
1593
|
+
values: string[];
|
1594
|
+
};
|
1595
|
+
}[];
|
1596
|
+
};
|
1597
|
+
}
|
1598
|
+
interface ListGalleryItemsResponseNonNullableFields {
|
1599
|
+
items: {
|
1600
|
+
image?: {
|
1601
|
+
imageInfo: string;
|
1602
|
+
focalPoint?: {
|
1603
|
+
x: number;
|
1604
|
+
y: number;
|
1605
|
+
};
|
1606
|
+
};
|
1607
|
+
video?: {
|
1608
|
+
type: VideoType;
|
1609
|
+
videoInfo: string;
|
1610
|
+
};
|
1611
|
+
type: Type;
|
1612
|
+
tags?: {
|
1613
|
+
values: string[];
|
1614
|
+
};
|
1615
|
+
}[];
|
1616
|
+
}
|
1617
|
+
interface GetGalleryItemResponseNonNullableFields {
|
1618
|
+
item?: {
|
1619
|
+
image?: {
|
1620
|
+
imageInfo: string;
|
1621
|
+
focalPoint?: {
|
1622
|
+
x: number;
|
1623
|
+
y: number;
|
1624
|
+
};
|
1625
|
+
};
|
1626
|
+
video?: {
|
1627
|
+
type: VideoType;
|
1628
|
+
videoInfo: string;
|
1629
|
+
};
|
1630
|
+
type: Type;
|
1631
|
+
tags?: {
|
1632
|
+
values: string[];
|
1633
|
+
};
|
1634
|
+
};
|
1635
|
+
}
|
1636
|
+
interface CreateGalleryResponseNonNullableFields {
|
1637
|
+
gallery?: {
|
1638
|
+
items: {
|
1639
|
+
image?: {
|
1640
|
+
imageInfo: string;
|
1641
|
+
focalPoint?: {
|
1642
|
+
x: number;
|
1643
|
+
y: number;
|
1644
|
+
};
|
1645
|
+
};
|
1646
|
+
video?: {
|
1647
|
+
type: VideoType;
|
1648
|
+
videoInfo: string;
|
1649
|
+
};
|
1650
|
+
type: Type;
|
1651
|
+
tags?: {
|
1652
|
+
values: string[];
|
1653
|
+
};
|
1654
|
+
}[];
|
1655
|
+
};
|
1656
|
+
}
|
1657
|
+
interface UpdateGalleryResponseNonNullableFields {
|
1658
|
+
gallery?: {
|
1659
|
+
items: {
|
1660
|
+
image?: {
|
1661
|
+
imageInfo: string;
|
1662
|
+
focalPoint?: {
|
1663
|
+
x: number;
|
1664
|
+
y: number;
|
1665
|
+
};
|
1666
|
+
};
|
1667
|
+
video?: {
|
1668
|
+
type: VideoType;
|
1669
|
+
videoInfo: string;
|
1670
|
+
};
|
1671
|
+
type: Type;
|
1672
|
+
tags?: {
|
1673
|
+
values: string[];
|
1674
|
+
};
|
1675
|
+
}[];
|
1676
|
+
};
|
1677
|
+
}
|
1678
|
+
interface DeleteGalleryResponseNonNullableFields {
|
1679
|
+
galleryId: string;
|
1680
|
+
}
|
1681
|
+
interface CreateGalleryItemResponseNonNullableFields {
|
1682
|
+
item?: {
|
1683
|
+
image?: {
|
1684
|
+
imageInfo: string;
|
1685
|
+
focalPoint?: {
|
1686
|
+
x: number;
|
1687
|
+
y: number;
|
1688
|
+
};
|
1689
|
+
};
|
1690
|
+
video?: {
|
1691
|
+
type: VideoType;
|
1692
|
+
videoInfo: string;
|
1693
|
+
};
|
1694
|
+
type: Type;
|
1695
|
+
tags?: {
|
1696
|
+
values: string[];
|
1697
|
+
};
|
1698
|
+
};
|
1699
|
+
}
|
1700
|
+
interface UpdateGalleryItemResponseNonNullableFields {
|
1701
|
+
item?: {
|
1702
|
+
image?: {
|
1703
|
+
imageInfo: string;
|
1704
|
+
focalPoint?: {
|
1705
|
+
x: number;
|
1706
|
+
y: number;
|
1707
|
+
};
|
1708
|
+
};
|
1709
|
+
video?: {
|
1710
|
+
type: VideoType;
|
1711
|
+
videoInfo: string;
|
1712
|
+
};
|
1713
|
+
type: Type;
|
1714
|
+
tags?: {
|
1715
|
+
values: string[];
|
1716
|
+
};
|
1717
|
+
};
|
1718
|
+
}
|
1719
|
+
interface DeleteGalleryItemResponseNonNullableFields {
|
1720
|
+
itemId: string;
|
1721
|
+
}
|
1722
|
+
|
1723
|
+
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
1724
|
+
getUrl: (context: any) => string;
|
1725
|
+
httpMethod: K;
|
1726
|
+
path: string;
|
1727
|
+
pathParams: M;
|
1728
|
+
__requestType: T;
|
1729
|
+
__originalRequestType: S;
|
1730
|
+
__responseType: Q;
|
1731
|
+
__originalResponseType: R;
|
1732
|
+
};
|
1733
|
+
declare function listGalleries(): __PublicMethodMetaInfo<'GET', {}, ListGalleriesRequest, ListGalleriesRequest$1, ListGalleriesResponse & ListGalleriesResponseNonNullableFields, ListGalleriesResponse$1 & ListGalleriesResponseNonNullableFields$1>;
|
1734
|
+
declare function getGallery(): __PublicMethodMetaInfo<'GET', {
|
1735
|
+
galleryId: string;
|
1736
|
+
}, GetGalleryRequest, GetGalleryRequest$1, GetGalleryResponse & GetGalleryResponseNonNullableFields, GetGalleryResponse$1 & GetGalleryResponseNonNullableFields$1>;
|
1737
|
+
declare function listGalleryItems(): __PublicMethodMetaInfo<'GET', {
|
1738
|
+
galleryId: string;
|
1739
|
+
}, ListGalleryItemsRequest, ListGalleryItemsRequest$1, ListGalleryItemsResponse & ListGalleryItemsResponseNonNullableFields, ListGalleryItemsResponse$1 & ListGalleryItemsResponseNonNullableFields$1>;
|
1740
|
+
declare function getGalleryItem(): __PublicMethodMetaInfo<'GET', {
|
1741
|
+
galleryId: string;
|
1742
|
+
itemId: string;
|
1743
|
+
}, GetGalleryItemRequest, GetGalleryItemRequest$1, GetGalleryItemResponse & GetGalleryItemResponseNonNullableFields, GetGalleryItemResponse$1 & GetGalleryItemResponseNonNullableFields$1>;
|
1744
|
+
declare function createGallery(): __PublicMethodMetaInfo<'POST', {}, CreateGalleryRequest, CreateGalleryRequest$1, CreateGalleryResponse & CreateGalleryResponseNonNullableFields, CreateGalleryResponse$1 & CreateGalleryResponseNonNullableFields$1>;
|
1745
|
+
declare function updateGallery(): __PublicMethodMetaInfo<'PATCH', {
|
1746
|
+
galleryId: string;
|
1747
|
+
}, UpdateGalleryRequest, UpdateGalleryRequest$1, UpdateGalleryResponse & UpdateGalleryResponseNonNullableFields, UpdateGalleryResponse$1 & UpdateGalleryResponseNonNullableFields$1>;
|
1748
|
+
declare function deleteGallery(): __PublicMethodMetaInfo<'DELETE', {
|
1749
|
+
galleryId: string;
|
1750
|
+
}, DeleteGalleryRequest, DeleteGalleryRequest$1, DeleteGalleryResponse & DeleteGalleryResponseNonNullableFields, DeleteGalleryResponse$1 & DeleteGalleryResponseNonNullableFields$1>;
|
1751
|
+
declare function createGalleryItem(): __PublicMethodMetaInfo<'POST', {
|
1752
|
+
galleryId: string;
|
1753
|
+
}, CreateGalleryItemRequest, CreateGalleryItemRequest$1, CreateGalleryItemResponse & CreateGalleryItemResponseNonNullableFields, CreateGalleryItemResponse$1 & CreateGalleryItemResponseNonNullableFields$1>;
|
1754
|
+
declare function updateGalleryItem(): __PublicMethodMetaInfo<'PATCH', {
|
1755
|
+
galleryId: string;
|
1756
|
+
itemId: string;
|
1757
|
+
}, UpdateGalleryItemRequest, UpdateGalleryItemRequest$1, UpdateGalleryItemResponse & UpdateGalleryItemResponseNonNullableFields, UpdateGalleryItemResponse$1 & UpdateGalleryItemResponseNonNullableFields$1>;
|
1758
|
+
declare function deleteGalleryItem(): __PublicMethodMetaInfo<'DELETE', {
|
1759
|
+
galleryId: string;
|
1760
|
+
itemId: string;
|
1761
|
+
}, DeleteGalleryItemRequest, DeleteGalleryItemRequest$1, DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields, DeleteGalleryItemResponse$1 & DeleteGalleryItemResponseNonNullableFields$1>;
|
1762
|
+
|
1763
|
+
type meta___PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = __PublicMethodMetaInfo<K, M, T, S, Q, R>;
|
1764
|
+
declare const meta_createGallery: typeof createGallery;
|
1765
|
+
declare const meta_createGalleryItem: typeof createGalleryItem;
|
1766
|
+
declare const meta_deleteGallery: typeof deleteGallery;
|
1767
|
+
declare const meta_deleteGalleryItem: typeof deleteGalleryItem;
|
1768
|
+
declare const meta_getGallery: typeof getGallery;
|
1769
|
+
declare const meta_getGalleryItem: typeof getGalleryItem;
|
1770
|
+
declare const meta_listGalleries: typeof listGalleries;
|
1771
|
+
declare const meta_listGalleryItems: typeof listGalleryItems;
|
1772
|
+
declare const meta_updateGallery: typeof updateGallery;
|
1773
|
+
declare const meta_updateGalleryItem: typeof updateGalleryItem;
|
1774
|
+
declare namespace meta {
|
1775
|
+
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_createGallery as createGallery, meta_createGalleryItem as createGalleryItem, meta_deleteGallery as deleteGallery, meta_deleteGalleryItem as deleteGalleryItem, meta_getGallery as getGallery, meta_getGalleryItem as getGalleryItem, meta_listGalleries as listGalleries, meta_listGalleryItems as listGalleryItems, meta_updateGallery as updateGallery, meta_updateGalleryItem as updateGalleryItem };
|
1776
|
+
}
|
1777
|
+
|
1778
|
+
export { meta as proGallery };
|