@wix/pro-gallery 1.0.34 → 1.0.36
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/context.d.ts +1 -1
- package/build/cjs/context.js +1 -1
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js +1 -1
- package/build/es/context.d.ts +1 -1
- package/build/es/context.js +1 -1
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/meta.d.ts +1 -1
- package/build/es/meta.js +1 -1
- package/package.json +11 -9
- package/build/cjs/index.typings.d.ts +0 -1
- package/build/cjs/index.typings.js +0 -28
- package/build/cjs/index.typings.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.context.d.ts +0 -12
- package/build/cjs/src/pro-gallery-v2-gallery.context.js +0 -115
- package/build/cjs/src/pro-gallery-v2-gallery.context.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.http.d.ts +0 -130
- package/build/cjs/src/pro-gallery-v2-gallery.http.js +0 -823
- package/build/cjs/src/pro-gallery-v2-gallery.http.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.meta.d.ts +0 -41
- package/build/cjs/src/pro-gallery-v2-gallery.meta.js +0 -218
- package/build/cjs/src/pro-gallery-v2-gallery.meta.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.public.d.ts +0 -120
- package/build/cjs/src/pro-gallery-v2-gallery.public.js +0 -82
- package/build/cjs/src/pro-gallery-v2-gallery.public.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.types.d.ts +0 -1768
- package/build/cjs/src/pro-gallery-v2-gallery.types.js +0 -82
- package/build/cjs/src/pro-gallery-v2-gallery.types.js.map +0 -1
- package/build/cjs/src/pro-gallery-v2-gallery.universal.d.ts +0 -1398
- package/build/cjs/src/pro-gallery-v2-gallery.universal.js +0 -887
- package/build/cjs/src/pro-gallery-v2-gallery.universal.js.map +0 -1
- package/build/es/index.typings.d.ts +0 -1
- package/build/es/index.typings.js +0 -2
- package/build/es/index.typings.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.context.d.ts +0 -12
- package/build/es/src/pro-gallery-v2-gallery.context.js +0 -102
- package/build/es/src/pro-gallery-v2-gallery.context.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.http.d.ts +0 -130
- package/build/es/src/pro-gallery-v2-gallery.http.js +0 -810
- package/build/es/src/pro-gallery-v2-gallery.http.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.meta.d.ts +0 -41
- package/build/es/src/pro-gallery-v2-gallery.meta.js +0 -182
- package/build/es/src/pro-gallery-v2-gallery.meta.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.public.d.ts +0 -120
- package/build/es/src/pro-gallery-v2-gallery.public.js +0 -55
- package/build/es/src/pro-gallery-v2-gallery.public.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.types.d.ts +0 -1768
- package/build/es/src/pro-gallery-v2-gallery.types.js +0 -79
- package/build/es/src/pro-gallery-v2-gallery.types.js.map +0 -1
- package/build/es/src/pro-gallery-v2-gallery.universal.d.ts +0 -1398
- package/build/es/src/pro-gallery-v2-gallery.universal.js +0 -851
- package/build/es/src/pro-gallery-v2-gallery.universal.js.map +0 -1
@@ -1,1768 +0,0 @@
|
|
1
|
-
export interface Gallery {
|
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[];
|
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
|
-
export interface Item extends ItemMetadataOneOf {
|
29
|
-
/** Details about the image. */
|
30
|
-
image?: Image;
|
31
|
-
/** Details about the video. */
|
32
|
-
video?: Video;
|
33
|
-
/** Details about the text file. */
|
34
|
-
text?: Text;
|
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;
|
54
|
-
/** @readonly */
|
55
|
-
type?: Type;
|
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;
|
68
|
-
}
|
69
|
-
/** @oneof */
|
70
|
-
export interface ItemMetadataOneOf {
|
71
|
-
/** Details about the image. */
|
72
|
-
image?: Image;
|
73
|
-
/** Details about the video. */
|
74
|
-
video?: Video;
|
75
|
-
/** Details about the text file. */
|
76
|
-
text?: Text;
|
77
|
-
}
|
78
|
-
export interface Link {
|
79
|
-
/** Display text of the link. */
|
80
|
-
text?: string | null;
|
81
|
-
/** Target URL of the link. */
|
82
|
-
url?: string | null;
|
83
|
-
}
|
84
|
-
export declare enum LinkType {
|
85
|
-
UNDEFINED = "UNDEFINED",
|
86
|
-
/** external link */
|
87
|
-
EXTERNAL = "EXTERNAL",
|
88
|
-
/** for internal usage using wixLinkData */
|
89
|
-
INTERNAL = "INTERNAL"
|
90
|
-
}
|
91
|
-
/** The link object generated by panels in the editor and used by applications in Wix */
|
92
|
-
export interface WixLink extends WixLinkLinkOneOf {
|
93
|
-
/** External link type */
|
94
|
-
external?: ExternalLink;
|
95
|
-
/** Page link type */
|
96
|
-
page?: PageLink;
|
97
|
-
/** Anchor link type */
|
98
|
-
anchor?: AnchorLink;
|
99
|
-
/** Dynamic page link type */
|
100
|
-
dynamicPage?: DynamicPageLink;
|
101
|
-
/** Document link type */
|
102
|
-
document?: DocumentLink;
|
103
|
-
/** Email link type */
|
104
|
-
email?: EmailLink;
|
105
|
-
/** Phone link type */
|
106
|
-
phone?: PhoneLink;
|
107
|
-
/** Address link type */
|
108
|
-
address?: AddressLink;
|
109
|
-
/** WhatsApp link type */
|
110
|
-
whatsApp?: WhatsAppLink;
|
111
|
-
/** TPA link type */
|
112
|
-
tpaPage?: TpaPageLink;
|
113
|
-
}
|
114
|
-
/** @oneof */
|
115
|
-
export interface WixLinkLinkOneOf {
|
116
|
-
/** External link type */
|
117
|
-
external?: ExternalLink;
|
118
|
-
/** Page link type */
|
119
|
-
page?: PageLink;
|
120
|
-
/** Anchor link type */
|
121
|
-
anchor?: AnchorLink;
|
122
|
-
/** Dynamic page link type */
|
123
|
-
dynamicPage?: DynamicPageLink;
|
124
|
-
/** Document link type */
|
125
|
-
document?: DocumentLink;
|
126
|
-
/** Email link type */
|
127
|
-
email?: EmailLink;
|
128
|
-
/** Phone link type */
|
129
|
-
phone?: PhoneLink;
|
130
|
-
/** Address link type */
|
131
|
-
address?: AddressLink;
|
132
|
-
/** WhatsApp link type */
|
133
|
-
whatsApp?: WhatsAppLink;
|
134
|
-
/** TPA link type */
|
135
|
-
tpaPage?: TpaPageLink;
|
136
|
-
}
|
137
|
-
export interface ExternalLink {
|
138
|
-
/** The url of the page */
|
139
|
-
url?: string;
|
140
|
-
/** Where this link should open, supports _self and _blank or any name the user chooses. _self means same page, _blank means new page. */
|
141
|
-
target?: string | null;
|
142
|
-
}
|
143
|
-
export interface PageLink {
|
144
|
-
/** The page id we want from the site */
|
145
|
-
pageId?: string;
|
146
|
-
/** Where this link should open, supports _self and _blank or any name the user chooses. _self means same page, _blank means new page. */
|
147
|
-
target?: string | null;
|
148
|
-
/** rel of link */
|
149
|
-
rel?: LinkRel[];
|
150
|
-
}
|
151
|
-
/**
|
152
|
-
* The 'rel' attribute of the link. The rel attribute defines the relationship between a linked resource and the current document.
|
153
|
-
* Further reading (also about different possible rel types): https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel
|
154
|
-
* Following are the accepted 'rel' types by Wix applications.
|
155
|
-
*/
|
156
|
-
export declare enum LinkRel {
|
157
|
-
/** default (not implemented) */
|
158
|
-
unknown_link_rel = "unknown_link_rel",
|
159
|
-
/** Indicates that the current document's original author or publisher does not endorse the referenced document. */
|
160
|
-
nofollow = "nofollow",
|
161
|
-
/** Instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it. */
|
162
|
-
noopener = "noopener",
|
163
|
-
/** No Referer header will be included. Additionally, has the same effect as noopener. */
|
164
|
-
noreferrer = "noreferrer",
|
165
|
-
/** Indicates a link that resulted from advertisements or paid placements. */
|
166
|
-
sponsored = "sponsored"
|
167
|
-
}
|
168
|
-
export interface AnchorLink {
|
169
|
-
/** The name of the anchor */
|
170
|
-
anchorName?: string;
|
171
|
-
/** The data id (from the JSON page) of the anchor that should be used */
|
172
|
-
anchorDataId?: string;
|
173
|
-
/** The page id we want from the site */
|
174
|
-
pageId?: string;
|
175
|
-
/** rel of link */
|
176
|
-
rel?: LinkRel[];
|
177
|
-
}
|
178
|
-
export interface DynamicPageLink {
|
179
|
-
/** The router that handles this link */
|
180
|
-
routerId?: string;
|
181
|
-
/** The path data we'd like */
|
182
|
-
innerRoute?: string;
|
183
|
-
/** The data id (from the JSON page) of the anchor that should be used */
|
184
|
-
anchorDataId?: string | null;
|
185
|
-
/** rel of link */
|
186
|
-
rel?: LinkRel[];
|
187
|
-
}
|
188
|
-
export interface DocumentLink {
|
189
|
-
/** The id of the document */
|
190
|
-
docId?: string;
|
191
|
-
/** The name of the document for download purposes */
|
192
|
-
name?: string | null;
|
193
|
-
/** If this document can be indexed by scrapers, default is false */
|
194
|
-
indexable?: boolean;
|
195
|
-
}
|
196
|
-
export interface EmailLink {
|
197
|
-
/** The email we will be sending a message to */
|
198
|
-
recipient?: string;
|
199
|
-
/** The subject of the email */
|
200
|
-
subject?: string | null;
|
201
|
-
/** The body of the email */
|
202
|
-
body?: string | null;
|
203
|
-
}
|
204
|
-
export interface PhoneLink {
|
205
|
-
/** The phone number we want to link to */
|
206
|
-
phoneNumber?: string;
|
207
|
-
}
|
208
|
-
export interface AddressLink {
|
209
|
-
/** An address that we can link to */
|
210
|
-
address?: string;
|
211
|
-
}
|
212
|
-
export interface WhatsAppLink {
|
213
|
-
/** The whatsApp phone number we want to connect with */
|
214
|
-
phoneNumber?: string;
|
215
|
-
}
|
216
|
-
/** Link to a TPA page */
|
217
|
-
export interface TpaPageLink {
|
218
|
-
/** Type of item (e.g. 'wix.stores.sub_pages.product') */
|
219
|
-
itemTypeIdentifier?: string;
|
220
|
-
/** Id of linked item */
|
221
|
-
itemId?: string;
|
222
|
-
/** Id of linked page */
|
223
|
-
pageId?: string;
|
224
|
-
/** Id of app being linked to (AppDefId) */
|
225
|
-
appDefinitionId?: string;
|
226
|
-
/** The relativepath of linked page */
|
227
|
-
path?: string;
|
228
|
-
/** rel of link */
|
229
|
-
rel?: LinkRel[];
|
230
|
-
}
|
231
|
-
export declare enum Type {
|
232
|
-
UNDEFINED = "UNDEFINED",
|
233
|
-
IMAGE = "IMAGE",
|
234
|
-
VIDEO = "VIDEO",
|
235
|
-
TEXT = "TEXT"
|
236
|
-
}
|
237
|
-
export interface Image {
|
238
|
-
/** Information about the Wix Media image. */
|
239
|
-
imageInfo?: CommonImage;
|
240
|
-
/** Focal point of the image. */
|
241
|
-
focalPoint?: Point;
|
242
|
-
/** Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). */
|
243
|
-
exif?: Record<string, any> | null;
|
244
|
-
/**
|
245
|
-
* Image compression level. <br />
|
246
|
-
*
|
247
|
-
* Min: `30` <br />
|
248
|
-
* Max: `100`
|
249
|
-
*/
|
250
|
-
quality?: number | null;
|
251
|
-
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
252
|
-
unsharpMasking?: UnsharpMasking;
|
253
|
-
}
|
254
|
-
export declare enum ImageType {
|
255
|
-
UNDEFINED = "UNDEFINED",
|
256
|
-
WIX_MEDIA = "WIX_MEDIA",
|
257
|
-
EXTERNAL = "EXTERNAL"
|
258
|
-
}
|
259
|
-
export interface CommonImage {
|
260
|
-
/** *Required.** WixMedia image ID. */
|
261
|
-
id?: string;
|
262
|
-
/**
|
263
|
-
* Image URL.
|
264
|
-
* @readonly
|
265
|
-
*/
|
266
|
-
url?: string;
|
267
|
-
/** *Required.** Original image height. */
|
268
|
-
height?: number;
|
269
|
-
/** *Required.** Original image width. */
|
270
|
-
width?: number;
|
271
|
-
/** Image alt text. */
|
272
|
-
altText?: string | null;
|
273
|
-
/** Image filename. */
|
274
|
-
filename?: string | null;
|
275
|
-
}
|
276
|
-
export interface Point {
|
277
|
-
/** X-coordinate of the focal point. */
|
278
|
-
x?: number;
|
279
|
-
/** Y-coordinate of the focal point. */
|
280
|
-
y?: number;
|
281
|
-
}
|
282
|
-
export interface UnsharpMasking {
|
283
|
-
/**
|
284
|
-
* Unsharp masking amount. Controls the sharpening strength. <br />
|
285
|
-
*
|
286
|
-
* Min: `0` <br />
|
287
|
-
* Max: `5`
|
288
|
-
*/
|
289
|
-
amount?: number | null;
|
290
|
-
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
291
|
-
radius?: number | null;
|
292
|
-
/**
|
293
|
-
* Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
|
294
|
-
*
|
295
|
-
* Min: `0` <br />
|
296
|
-
* Max: `1`
|
297
|
-
*/
|
298
|
-
threshold?: number | null;
|
299
|
-
}
|
300
|
-
export interface Video {
|
301
|
-
type?: VideoType;
|
302
|
-
/** Information about the video. */
|
303
|
-
videoInfo?: VideoV2;
|
304
|
-
/** Manually defined video duration in milliseconds. */
|
305
|
-
durationInMillis?: number | null;
|
306
|
-
}
|
307
|
-
export declare enum VideoType {
|
308
|
-
UNDEFINED = "UNDEFINED",
|
309
|
-
WIX_MEDIA = "WIX_MEDIA",
|
310
|
-
YOUTUBE = "YOUTUBE",
|
311
|
-
VIMEO = "VIMEO"
|
312
|
-
}
|
313
|
-
export interface VideoV2 {
|
314
|
-
/** WixMedia ID. Required when associating an existing Wix Media video. */
|
315
|
-
id?: string;
|
316
|
-
/** Video URL. Required when associating a video from an external source. Supported sources: YouTube, Vimeo. */
|
317
|
-
url?: string;
|
318
|
-
/** Available resolutions for the video, starting with the optimal resolution. */
|
319
|
-
resolutions?: VideoResolution[];
|
320
|
-
/** Video filename. */
|
321
|
-
filename?: string | null;
|
322
|
-
/** Video posters. */
|
323
|
-
posters?: CommonImage[];
|
324
|
-
}
|
325
|
-
export interface VideoResolution {
|
326
|
-
/** *Required.** Video URL. */
|
327
|
-
url?: string;
|
328
|
-
/** *Required.** Video height. */
|
329
|
-
height?: number;
|
330
|
-
/** *Required.** Video width. */
|
331
|
-
width?: number;
|
332
|
-
/** *Required.** Video format. For example, `mp4` or `hls`. */
|
333
|
-
format?: string;
|
334
|
-
/** Video quality. For example, `480p` or `720p`. */
|
335
|
-
quality?: string | null;
|
336
|
-
/** Video filename. */
|
337
|
-
filename?: string | null;
|
338
|
-
}
|
339
|
-
export interface Text {
|
340
|
-
/** Text in HTML format. */
|
341
|
-
html?: string | null;
|
342
|
-
/**
|
343
|
-
* Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
|
344
|
-
*
|
345
|
-
* __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.
|
346
|
-
*/
|
347
|
-
css?: Record<string, any> | null;
|
348
|
-
/** Reserved for internal use. */
|
349
|
-
editorHtml?: string | null;
|
350
|
-
/** Reserved for internal use. */
|
351
|
-
editorFontId?: string | null;
|
352
|
-
}
|
353
|
-
export interface Tags {
|
354
|
-
/** List of tags assigned to the media item. */
|
355
|
-
values?: string[];
|
356
|
-
}
|
357
|
-
export interface SecondaryMedia extends SecondaryMediaMetadataOneOf {
|
358
|
-
/** secondary media photo metadata (optional) */
|
359
|
-
image?: Image;
|
360
|
-
/** secondary media text metadata (optional) */
|
361
|
-
text?: Text;
|
362
|
-
}
|
363
|
-
/** @oneof */
|
364
|
-
export interface SecondaryMediaMetadataOneOf {
|
365
|
-
/** secondary media photo metadata (optional) */
|
366
|
-
image?: Image;
|
367
|
-
/** secondary media text metadata (optional) */
|
368
|
-
text?: Text;
|
369
|
-
}
|
370
|
-
export interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
371
|
-
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
372
|
-
metaSiteId?: string;
|
373
|
-
/** Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! */
|
374
|
-
siteId?: string;
|
375
|
-
/** Invalidate by App */
|
376
|
-
app?: App;
|
377
|
-
/** Invalidate by page id */
|
378
|
-
page?: Page;
|
379
|
-
/** Invalidate by URI path */
|
380
|
-
uri?: URI;
|
381
|
-
/** tell us why you're invalidating the cache. You don't need to add your app name */
|
382
|
-
reason?: string | null;
|
383
|
-
/** Is local DS */
|
384
|
-
localDc?: boolean;
|
385
|
-
}
|
386
|
-
/** @oneof */
|
387
|
-
export interface InvalidateCacheGetByOneOf {
|
388
|
-
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
389
|
-
metaSiteId?: string;
|
390
|
-
/** Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! */
|
391
|
-
siteId?: string;
|
392
|
-
/** Invalidate by App */
|
393
|
-
app?: App;
|
394
|
-
/** Invalidate by page id */
|
395
|
-
page?: Page;
|
396
|
-
/** Invalidate by URI path */
|
397
|
-
uri?: URI;
|
398
|
-
}
|
399
|
-
export interface App {
|
400
|
-
/** The AppDefId */
|
401
|
-
appDefId?: string;
|
402
|
-
/** The instance Id */
|
403
|
-
instanceId?: string;
|
404
|
-
}
|
405
|
-
export interface Page {
|
406
|
-
/** the msid the page is on */
|
407
|
-
metaSiteId?: string;
|
408
|
-
/** Invalidate by Page ID */
|
409
|
-
pageId?: string;
|
410
|
-
}
|
411
|
-
export interface URI {
|
412
|
-
/** the msid the URI is on */
|
413
|
-
metaSiteId?: string;
|
414
|
-
/** URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes */
|
415
|
-
uriPath?: string;
|
416
|
-
}
|
417
|
-
export interface GalleryPublished {
|
418
|
-
/**
|
419
|
-
* id of the gallery that will be published
|
420
|
-
* @readonly
|
421
|
-
*/
|
422
|
-
galleryId?: string;
|
423
|
-
isRc?: boolean;
|
424
|
-
/** @readonly */
|
425
|
-
newRevision?: Date;
|
426
|
-
/** @readonly */
|
427
|
-
oldRevision?: Date;
|
428
|
-
}
|
429
|
-
export interface CleanDeletedGalleriesEvent {
|
430
|
-
/** @readonly */
|
431
|
-
instanceId?: string;
|
432
|
-
/** @readonly */
|
433
|
-
metaSiteId?: string;
|
434
|
-
/** @readonly */
|
435
|
-
htmlSiteRevision?: string;
|
436
|
-
/** @readonly */
|
437
|
-
timeSitePublished?: Date;
|
438
|
-
}
|
439
|
-
export interface ProgallerypublisherPublishGalleryRequest {
|
440
|
-
/** id of the gallery that will be published */
|
441
|
-
galleryId?: string;
|
442
|
-
}
|
443
|
-
export interface ProgallerypublisherPublishGalleryResponse {
|
444
|
-
}
|
445
|
-
export interface PublishGalleryItemRequest {
|
446
|
-
/** id of the gallery that will be published */
|
447
|
-
galleryId?: string;
|
448
|
-
/** id of the item that will be published */
|
449
|
-
itemId?: string;
|
450
|
-
}
|
451
|
-
export interface PublishGalleryItemResponse {
|
452
|
-
}
|
453
|
-
export interface PublishGalleryItemsRequest {
|
454
|
-
/** id of the gallery that will be published */
|
455
|
-
galleryId?: string;
|
456
|
-
/** ids of the items that will be published */
|
457
|
-
itemIds?: string[];
|
458
|
-
}
|
459
|
-
export interface PublishGalleryItemsResponse {
|
460
|
-
}
|
461
|
-
export interface Empty {
|
462
|
-
}
|
463
|
-
export interface HtmlSitePublished {
|
464
|
-
/** Application instance ID */
|
465
|
-
appInstanceId?: string;
|
466
|
-
/** Application type */
|
467
|
-
appType?: string;
|
468
|
-
/** Revision */
|
469
|
-
revision?: string;
|
470
|
-
/** MSID */
|
471
|
-
metaSiteId?: string | null;
|
472
|
-
/** optional branch id if publish is done from branch */
|
473
|
-
branchId?: string | null;
|
474
|
-
/** The site's last transactionId */
|
475
|
-
lastTransactionId?: string | null;
|
476
|
-
/** A list of the site's pages */
|
477
|
-
pages?: EventsPage[];
|
478
|
-
/** Site's publish date */
|
479
|
-
publishDate?: string;
|
480
|
-
}
|
481
|
-
export interface EventsPage {
|
482
|
-
/** Page's Id */
|
483
|
-
id?: string;
|
484
|
-
}
|
485
|
-
export interface HtmlSiteRCPublished {
|
486
|
-
/** Application instance ID */
|
487
|
-
appInstanceId?: string;
|
488
|
-
/** Revision */
|
489
|
-
revision?: string;
|
490
|
-
/** Optional branch Id */
|
491
|
-
branchId?: string | null;
|
492
|
-
}
|
493
|
-
export interface DomainEvent extends DomainEventBodyOneOf {
|
494
|
-
createdEvent?: EntityCreatedEvent;
|
495
|
-
updatedEvent?: EntityUpdatedEvent;
|
496
|
-
deletedEvent?: EntityDeletedEvent;
|
497
|
-
actionEvent?: ActionEvent;
|
498
|
-
/**
|
499
|
-
* Unique event ID.
|
500
|
-
* Allows clients to ignore duplicate webhooks.
|
501
|
-
*/
|
502
|
-
id?: string;
|
503
|
-
/**
|
504
|
-
* Assumes actions are also always typed to an entity_type
|
505
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
506
|
-
*/
|
507
|
-
entityFqdn?: string;
|
508
|
-
/**
|
509
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
510
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
511
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
512
|
-
*/
|
513
|
-
slug?: string;
|
514
|
-
/** ID of the entity associated with the event. */
|
515
|
-
entityId?: string;
|
516
|
-
/** Event timestamp. */
|
517
|
-
eventTime?: Date;
|
518
|
-
/**
|
519
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
520
|
-
* (for example, GDPR).
|
521
|
-
*/
|
522
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
523
|
-
/** If present, indicates the action that triggered the event. */
|
524
|
-
originatedFrom?: string | null;
|
525
|
-
/**
|
526
|
-
* A sequence number defining the order of updates to the underlying entity.
|
527
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
528
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
529
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
530
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
531
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
532
|
-
*/
|
533
|
-
entityEventSequence?: string | null;
|
534
|
-
}
|
535
|
-
/** @oneof */
|
536
|
-
export interface DomainEventBodyOneOf {
|
537
|
-
createdEvent?: EntityCreatedEvent;
|
538
|
-
updatedEvent?: EntityUpdatedEvent;
|
539
|
-
deletedEvent?: EntityDeletedEvent;
|
540
|
-
actionEvent?: ActionEvent;
|
541
|
-
}
|
542
|
-
export interface EntityCreatedEvent {
|
543
|
-
entityAsJson?: string;
|
544
|
-
}
|
545
|
-
export interface EntityUpdatedEvent {
|
546
|
-
/**
|
547
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
548
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
549
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
550
|
-
*/
|
551
|
-
currentEntityAsJson?: string;
|
552
|
-
}
|
553
|
-
export interface EntityDeletedEvent {
|
554
|
-
/** Entity that was deleted */
|
555
|
-
deletedEntityAsJson?: string | null;
|
556
|
-
}
|
557
|
-
export interface ActionEvent {
|
558
|
-
bodyAsJson?: string;
|
559
|
-
}
|
560
|
-
export interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
|
561
|
-
/** insert/update documents */
|
562
|
-
update?: DocumentUpdateOperation;
|
563
|
-
/** delete by document ids */
|
564
|
-
deleteByIds?: DeleteByIdsOperation;
|
565
|
-
/** delete documents matching filter */
|
566
|
-
deleteByFilter?: DeleteByFilterOperation;
|
567
|
-
/** update documents matching filter */
|
568
|
-
updateByFilter?: UpdateByFilterOperation;
|
569
|
-
/** update only existing documents */
|
570
|
-
updateExisting?: UpdateExistingOperation;
|
571
|
-
/** application which owns documents */
|
572
|
-
appDefId?: string | null;
|
573
|
-
/** type of the documents */
|
574
|
-
documentType?: string | null;
|
575
|
-
/** language of the documents */
|
576
|
-
language?: string | null;
|
577
|
-
/** site documents belong to */
|
578
|
-
msId?: string | null;
|
579
|
-
}
|
580
|
-
/** @oneof */
|
581
|
-
export interface UpdateDocumentsEventOperationOneOf {
|
582
|
-
/** insert/update documents */
|
583
|
-
update?: DocumentUpdateOperation;
|
584
|
-
/** delete by document ids */
|
585
|
-
deleteByIds?: DeleteByIdsOperation;
|
586
|
-
/** delete documents matching filter */
|
587
|
-
deleteByFilter?: DeleteByFilterOperation;
|
588
|
-
/** update documents matching filter */
|
589
|
-
updateByFilter?: UpdateByFilterOperation;
|
590
|
-
/** update only existing documents */
|
591
|
-
updateExisting?: UpdateExistingOperation;
|
592
|
-
}
|
593
|
-
export interface DocumentUpdateOperation {
|
594
|
-
/** documents to index or update */
|
595
|
-
documents?: IndexDocument[];
|
596
|
-
}
|
597
|
-
export interface IndexDocument {
|
598
|
-
/** data bag with non-searchable fields (url, image) */
|
599
|
-
payload?: DocumentPayload;
|
600
|
-
/** what type of users should documents be visible to */
|
601
|
-
exposure?: Enum;
|
602
|
-
/** document with mandatory fields (id, title, description) and with fields specific to the type of the document */
|
603
|
-
document?: Record<string, any> | null;
|
604
|
-
/** what member groups is the document exposed to. Used only with GROUP_PROTECTED exposure */
|
605
|
-
permittedMemberGroups?: string[];
|
606
|
-
/** if true SEO is disabled for this document */
|
607
|
-
seoHidden?: boolean | null;
|
608
|
-
/** if true the page is a lightbox popup */
|
609
|
-
isPopup?: boolean | null;
|
610
|
-
}
|
611
|
-
export interface DocumentPayload {
|
612
|
-
/** url of the page representing the document */
|
613
|
-
url?: string | null;
|
614
|
-
/** image which represents the document */
|
615
|
-
documentImage?: DocumentImage;
|
616
|
-
}
|
617
|
-
export interface DocumentImage {
|
618
|
-
/** the name of the image */
|
619
|
-
name?: string;
|
620
|
-
/** the width of the image */
|
621
|
-
width?: number;
|
622
|
-
/** the height of the image */
|
623
|
-
height?: number;
|
624
|
-
}
|
625
|
-
export declare enum Enum {
|
626
|
-
/** Default value. Means that permission not set */
|
627
|
-
UNKNOWN = "UNKNOWN",
|
628
|
-
/** Protected exposure. Exposed to members and owners */
|
629
|
-
PROTECTED = "PROTECTED",
|
630
|
-
/** Private exposure. Exposed to owners */
|
631
|
-
PRIVATE = "PRIVATE",
|
632
|
-
/** Public exposure. Visible to everyone */
|
633
|
-
PUBLIC = "PUBLIC",
|
634
|
-
/** Used for partial updates, to state that exposure is not changing */
|
635
|
-
UNCHANGED = "UNCHANGED",
|
636
|
-
/** Protected to members of permitted groups and owners */
|
637
|
-
GROUP_PROTECTED = "GROUP_PROTECTED"
|
638
|
-
}
|
639
|
-
export interface DeleteByIdsOperation {
|
640
|
-
/** ids of the documents to delete */
|
641
|
-
documentIds?: string[];
|
642
|
-
}
|
643
|
-
export interface DeleteByFilterOperation {
|
644
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
645
|
-
filter?: Record<string, any> | null;
|
646
|
-
}
|
647
|
-
export interface UpdateByFilterOperation {
|
648
|
-
/** documents matching this filter will be updated */
|
649
|
-
filter?: Record<string, any> | null;
|
650
|
-
/** partial document to apply */
|
651
|
-
document?: IndexDocument;
|
652
|
-
}
|
653
|
-
export interface UpdateExistingOperation {
|
654
|
-
/** documents to update */
|
655
|
-
documents?: IndexDocument[];
|
656
|
-
}
|
657
|
-
export interface SearchIndexingNotification {
|
658
|
-
/** new state of indexing for the site specified in ms_id */
|
659
|
-
indexState?: SearchIndexingNotificationState;
|
660
|
-
/** type of the document the notification is targeted for. Applies to all types if not provided */
|
661
|
-
documentType?: string | null;
|
662
|
-
/** languaInternalDocumentUpdateByFilterOperationge the notification is targeted for. Applies to all languages if not provided */
|
663
|
-
language?: string | null;
|
664
|
-
/** site for which notification is targeted */
|
665
|
-
msId?: string | null;
|
666
|
-
}
|
667
|
-
export declare enum SearchIndexingNotificationState {
|
668
|
-
/** default state */
|
669
|
-
Unknown = "Unknown",
|
670
|
-
/** metasite does not require site search indexing */
|
671
|
-
Off = "Off",
|
672
|
-
/** metasite requires site search indexing */
|
673
|
-
On = "On"
|
674
|
-
}
|
675
|
-
export interface ListGalleriesItemsRequest {
|
676
|
-
/** IDs of the media items to retrieve. */
|
677
|
-
itemsId?: ItemId[];
|
678
|
-
}
|
679
|
-
export interface ItemId {
|
680
|
-
/** Gallery ID. */
|
681
|
-
galleryId?: string;
|
682
|
-
/** Item ID. */
|
683
|
-
itemId?: string;
|
684
|
-
}
|
685
|
-
export interface ListGalleriesItemsResponse {
|
686
|
-
/** Retrieved media items. */
|
687
|
-
itemsInGalleries?: ItemsInGallery[];
|
688
|
-
}
|
689
|
-
export interface ItemsInGallery {
|
690
|
-
/** Gallery ID. */
|
691
|
-
galleryId?: string;
|
692
|
-
/** Retrieved media items. */
|
693
|
-
items?: Item[];
|
694
|
-
}
|
695
|
-
export interface GalleryItemCreated {
|
696
|
-
/** Created gallery item. */
|
697
|
-
item?: Item;
|
698
|
-
}
|
699
|
-
export interface GalleryItemUpdated {
|
700
|
-
/** Updated gallery item. */
|
701
|
-
updatedItem?: Item;
|
702
|
-
}
|
703
|
-
export interface GalleryItemDeleted {
|
704
|
-
/** ID of the deleted gallery item. */
|
705
|
-
itemId?: string;
|
706
|
-
}
|
707
|
-
export interface ListGalleriesRequest {
|
708
|
-
/**
|
709
|
-
* Maximum number of media items to return. <br />
|
710
|
-
*
|
711
|
-
* Min: `1` <br />
|
712
|
-
* Max: `100` <br />
|
713
|
-
* Default: `10`
|
714
|
-
*/
|
715
|
-
itemLimit?: number | null;
|
716
|
-
/**
|
717
|
-
* Number of galleries to skip in the response. <br />
|
718
|
-
*
|
719
|
-
* Default: `0`
|
720
|
-
*/
|
721
|
-
offset?: number | null;
|
722
|
-
/**
|
723
|
-
* Maximum number of galleries to return. <br />
|
724
|
-
*
|
725
|
-
* Min: `1` <br />
|
726
|
-
* Max: `10` <br />
|
727
|
-
* Default: `10`
|
728
|
-
*/
|
729
|
-
limit?: number | null;
|
730
|
-
}
|
731
|
-
export declare enum State {
|
732
|
-
UNDEFINED = "UNDEFINED",
|
733
|
-
/** The gallery in the Editor segment */
|
734
|
-
SAVED = "SAVED",
|
735
|
-
/** The gallery in the LiveSite segment */
|
736
|
-
PUBLISHED = "PUBLISHED"
|
737
|
-
}
|
738
|
-
export interface ListGalleriesResponse {
|
739
|
-
/** Total number of galleries in the site. */
|
740
|
-
totalGalleries?: number | null;
|
741
|
-
/** List of galleries. Sorted by `createdDate`. */
|
742
|
-
galleries?: Gallery[];
|
743
|
-
}
|
744
|
-
export interface GetGalleryRequest extends GetGalleryRequestVersionOneOf {
|
745
|
-
/** Gallery ID. */
|
746
|
-
galleryId: string;
|
747
|
-
/**
|
748
|
-
* Number of media items to skip in the response. <br />
|
749
|
-
*
|
750
|
-
* Default: `0`
|
751
|
-
*/
|
752
|
-
itemOffset?: number | null;
|
753
|
-
/**
|
754
|
-
* Maximum number of media items to return. <br />
|
755
|
-
*
|
756
|
-
* Min: `1` <br />
|
757
|
-
* Max: `100` <br />
|
758
|
-
* Default: `50`
|
759
|
-
*/
|
760
|
-
itemLimit?: number | null;
|
761
|
-
}
|
762
|
-
/** @oneof */
|
763
|
-
export interface GetGalleryRequestVersionOneOf {
|
764
|
-
}
|
765
|
-
export interface GetGalleryResponse {
|
766
|
-
/** Returned gallery. */
|
767
|
-
gallery?: Gallery;
|
768
|
-
}
|
769
|
-
export interface ListGalleryItemsRequest {
|
770
|
-
/** Gallery ID. */
|
771
|
-
galleryId: string;
|
772
|
-
/**
|
773
|
-
* Number of media items to skip in the response. <br />
|
774
|
-
*
|
775
|
-
* Default: `0`
|
776
|
-
*/
|
777
|
-
itemOffset?: number | null;
|
778
|
-
/**
|
779
|
-
* Maximum number of media items to return. <br />
|
780
|
-
*
|
781
|
-
* Min: `1` <br />
|
782
|
-
* Max: `100` <br />
|
783
|
-
* Default: `50`
|
784
|
-
*/
|
785
|
-
itemLimit?: number | null;
|
786
|
-
}
|
787
|
-
export interface ListGalleryItemsResponse {
|
788
|
-
/** List of media items in the gallery. */
|
789
|
-
items?: Item[];
|
790
|
-
}
|
791
|
-
export interface GetGalleryItemRequest {
|
792
|
-
/** Gallery ID. */
|
793
|
-
galleryId: string;
|
794
|
-
/** Item ID. */
|
795
|
-
itemId: string;
|
796
|
-
}
|
797
|
-
export interface GetGalleryItemResponse {
|
798
|
-
/** Returned media item. */
|
799
|
-
item?: Item;
|
800
|
-
}
|
801
|
-
export interface CreateGalleryRequest {
|
802
|
-
/** Gallery to create. */
|
803
|
-
gallery?: Gallery;
|
804
|
-
/** Gallery ID to clone from. */
|
805
|
-
cloneFromGalleryId?: string | null;
|
806
|
-
}
|
807
|
-
export interface CreateGalleryResponse {
|
808
|
-
/** Created gallery. */
|
809
|
-
gallery?: Gallery;
|
810
|
-
}
|
811
|
-
export interface UpdateGalleryRequest {
|
812
|
-
/** Gallery to update. */
|
813
|
-
gallery: Gallery;
|
814
|
-
}
|
815
|
-
export interface UpdateGalleryResponse {
|
816
|
-
/** Updated gallery. */
|
817
|
-
gallery?: Gallery;
|
818
|
-
}
|
819
|
-
export interface DeleteGalleryRequest {
|
820
|
-
/** ID of the gallery to delete. */
|
821
|
-
galleryId: string;
|
822
|
-
}
|
823
|
-
export interface DeleteGalleryResponse {
|
824
|
-
/**
|
825
|
-
* ID of the deleted gallery.
|
826
|
-
* @readonly
|
827
|
-
*/
|
828
|
-
galleryId?: string;
|
829
|
-
}
|
830
|
-
export interface DeleteGalleryItemsRequest {
|
831
|
-
/** Gallery ID. */
|
832
|
-
galleryId?: string;
|
833
|
-
/** ID of the media item to delete. */
|
834
|
-
itemsIds?: string[];
|
835
|
-
}
|
836
|
-
export interface DeleteGalleryItemsResponse {
|
837
|
-
/** Gallery that previously included the deleted media item. */
|
838
|
-
gallery?: Gallery;
|
839
|
-
}
|
840
|
-
export interface CreateGalleryItemRequest {
|
841
|
-
/** Gallery ID. */
|
842
|
-
galleryId: string;
|
843
|
-
/** Media item to create. */
|
844
|
-
item: Item;
|
845
|
-
}
|
846
|
-
export interface CreateGalleryItemResponse {
|
847
|
-
/** Created media item. */
|
848
|
-
item?: Item;
|
849
|
-
}
|
850
|
-
export interface CreateGalleryItemsRequest {
|
851
|
-
/** Gallery ID. */
|
852
|
-
galleryId?: string;
|
853
|
-
/** Media items to create. */
|
854
|
-
items?: Item[];
|
855
|
-
}
|
856
|
-
export interface CreateGalleryItemsResponse {
|
857
|
-
/** Created media items. */
|
858
|
-
items?: Item[];
|
859
|
-
}
|
860
|
-
export interface UpdateGalleryItemRequest {
|
861
|
-
/** Gallery ID. */
|
862
|
-
galleryId: string;
|
863
|
-
/** Media item to update. */
|
864
|
-
item: Item;
|
865
|
-
}
|
866
|
-
export interface UpdateGalleryItemResponse {
|
867
|
-
/** Updated media item. */
|
868
|
-
item?: Item;
|
869
|
-
}
|
870
|
-
export interface DeleteGalleryItemRequest {
|
871
|
-
/** Gallery ID. */
|
872
|
-
galleryId: string;
|
873
|
-
/** ID of the media item to delete. */
|
874
|
-
itemId: string;
|
875
|
-
}
|
876
|
-
export interface DeleteGalleryItemResponse {
|
877
|
-
/**
|
878
|
-
* ID of the deleted media item.
|
879
|
-
* @readonly
|
880
|
-
*/
|
881
|
-
itemId?: string;
|
882
|
-
}
|
883
|
-
export interface PublishGalleryRequest {
|
884
|
-
/** ID of the gallery to publish. */
|
885
|
-
galleryId?: string;
|
886
|
-
}
|
887
|
-
export interface PublishGalleryResponse {
|
888
|
-
/** Published gallery. */
|
889
|
-
gallery?: Gallery;
|
890
|
-
}
|
891
|
-
export interface ListGalleriesResponseNonNullableFields {
|
892
|
-
galleries: {
|
893
|
-
items: {
|
894
|
-
image?: {
|
895
|
-
type: ImageType;
|
896
|
-
imageInfo?: {
|
897
|
-
id: string;
|
898
|
-
url: string;
|
899
|
-
height: number;
|
900
|
-
width: number;
|
901
|
-
};
|
902
|
-
focalPoint?: {
|
903
|
-
x: number;
|
904
|
-
y: number;
|
905
|
-
};
|
906
|
-
};
|
907
|
-
video?: {
|
908
|
-
type: VideoType;
|
909
|
-
videoInfo?: {
|
910
|
-
id: string;
|
911
|
-
url: string;
|
912
|
-
resolutions: {
|
913
|
-
url: string;
|
914
|
-
height: number;
|
915
|
-
width: number;
|
916
|
-
poster?: {
|
917
|
-
id: string;
|
918
|
-
url: string;
|
919
|
-
height: number;
|
920
|
-
width: number;
|
921
|
-
};
|
922
|
-
format: string;
|
923
|
-
}[];
|
924
|
-
posters: {
|
925
|
-
id: string;
|
926
|
-
url: string;
|
927
|
-
height: number;
|
928
|
-
width: number;
|
929
|
-
}[];
|
930
|
-
};
|
931
|
-
};
|
932
|
-
link?: {
|
933
|
-
type: LinkType;
|
934
|
-
wixLinkData?: {
|
935
|
-
external?: {
|
936
|
-
url: string;
|
937
|
-
};
|
938
|
-
page?: {
|
939
|
-
pageId: string;
|
940
|
-
rel: LinkRel[];
|
941
|
-
};
|
942
|
-
anchor?: {
|
943
|
-
anchorName: string;
|
944
|
-
anchorDataId: string;
|
945
|
-
pageId: string;
|
946
|
-
rel: LinkRel[];
|
947
|
-
};
|
948
|
-
dynamicPage?: {
|
949
|
-
routerId: string;
|
950
|
-
innerRoute: string;
|
951
|
-
rel: LinkRel[];
|
952
|
-
};
|
953
|
-
document?: {
|
954
|
-
docId: string;
|
955
|
-
indexable: boolean;
|
956
|
-
};
|
957
|
-
email?: {
|
958
|
-
recipient: string;
|
959
|
-
};
|
960
|
-
phone?: {
|
961
|
-
phoneNumber: string;
|
962
|
-
};
|
963
|
-
address?: {
|
964
|
-
address: string;
|
965
|
-
};
|
966
|
-
whatsApp?: {
|
967
|
-
phoneNumber: string;
|
968
|
-
};
|
969
|
-
tpaPage?: {
|
970
|
-
itemTypeIdentifier: string;
|
971
|
-
itemId: string;
|
972
|
-
pageId: string;
|
973
|
-
appDefinitionId: string;
|
974
|
-
path: string;
|
975
|
-
rel: LinkRel[];
|
976
|
-
};
|
977
|
-
};
|
978
|
-
};
|
979
|
-
type: Type;
|
980
|
-
tags?: {
|
981
|
-
values: string[];
|
982
|
-
};
|
983
|
-
secondaryMedia?: {
|
984
|
-
image?: {
|
985
|
-
type: ImageType;
|
986
|
-
imageInfo?: {
|
987
|
-
id: string;
|
988
|
-
url: string;
|
989
|
-
height: number;
|
990
|
-
width: number;
|
991
|
-
};
|
992
|
-
focalPoint?: {
|
993
|
-
x: number;
|
994
|
-
y: number;
|
995
|
-
};
|
996
|
-
};
|
997
|
-
};
|
998
|
-
}[];
|
999
|
-
}[];
|
1000
|
-
}
|
1001
|
-
export interface GetGalleryResponseNonNullableFields {
|
1002
|
-
gallery?: {
|
1003
|
-
items: {
|
1004
|
-
image?: {
|
1005
|
-
type: ImageType;
|
1006
|
-
imageInfo?: {
|
1007
|
-
id: string;
|
1008
|
-
url: string;
|
1009
|
-
height: number;
|
1010
|
-
width: number;
|
1011
|
-
};
|
1012
|
-
focalPoint?: {
|
1013
|
-
x: number;
|
1014
|
-
y: number;
|
1015
|
-
};
|
1016
|
-
};
|
1017
|
-
video?: {
|
1018
|
-
type: VideoType;
|
1019
|
-
videoInfo?: {
|
1020
|
-
id: string;
|
1021
|
-
url: string;
|
1022
|
-
resolutions: {
|
1023
|
-
url: string;
|
1024
|
-
height: number;
|
1025
|
-
width: number;
|
1026
|
-
poster?: {
|
1027
|
-
id: string;
|
1028
|
-
url: string;
|
1029
|
-
height: number;
|
1030
|
-
width: number;
|
1031
|
-
};
|
1032
|
-
format: string;
|
1033
|
-
}[];
|
1034
|
-
posters: {
|
1035
|
-
id: string;
|
1036
|
-
url: string;
|
1037
|
-
height: number;
|
1038
|
-
width: number;
|
1039
|
-
}[];
|
1040
|
-
};
|
1041
|
-
};
|
1042
|
-
link?: {
|
1043
|
-
type: LinkType;
|
1044
|
-
wixLinkData?: {
|
1045
|
-
external?: {
|
1046
|
-
url: string;
|
1047
|
-
};
|
1048
|
-
page?: {
|
1049
|
-
pageId: string;
|
1050
|
-
rel: LinkRel[];
|
1051
|
-
};
|
1052
|
-
anchor?: {
|
1053
|
-
anchorName: string;
|
1054
|
-
anchorDataId: string;
|
1055
|
-
pageId: string;
|
1056
|
-
rel: LinkRel[];
|
1057
|
-
};
|
1058
|
-
dynamicPage?: {
|
1059
|
-
routerId: string;
|
1060
|
-
innerRoute: string;
|
1061
|
-
rel: LinkRel[];
|
1062
|
-
};
|
1063
|
-
document?: {
|
1064
|
-
docId: string;
|
1065
|
-
indexable: boolean;
|
1066
|
-
};
|
1067
|
-
email?: {
|
1068
|
-
recipient: string;
|
1069
|
-
};
|
1070
|
-
phone?: {
|
1071
|
-
phoneNumber: string;
|
1072
|
-
};
|
1073
|
-
address?: {
|
1074
|
-
address: string;
|
1075
|
-
};
|
1076
|
-
whatsApp?: {
|
1077
|
-
phoneNumber: string;
|
1078
|
-
};
|
1079
|
-
tpaPage?: {
|
1080
|
-
itemTypeIdentifier: string;
|
1081
|
-
itemId: string;
|
1082
|
-
pageId: string;
|
1083
|
-
appDefinitionId: string;
|
1084
|
-
path: string;
|
1085
|
-
rel: LinkRel[];
|
1086
|
-
};
|
1087
|
-
};
|
1088
|
-
};
|
1089
|
-
type: Type;
|
1090
|
-
tags?: {
|
1091
|
-
values: string[];
|
1092
|
-
};
|
1093
|
-
secondaryMedia?: {
|
1094
|
-
image?: {
|
1095
|
-
type: ImageType;
|
1096
|
-
imageInfo?: {
|
1097
|
-
id: string;
|
1098
|
-
url: string;
|
1099
|
-
height: number;
|
1100
|
-
width: number;
|
1101
|
-
};
|
1102
|
-
focalPoint?: {
|
1103
|
-
x: number;
|
1104
|
-
y: number;
|
1105
|
-
};
|
1106
|
-
};
|
1107
|
-
};
|
1108
|
-
}[];
|
1109
|
-
};
|
1110
|
-
}
|
1111
|
-
export interface ListGalleryItemsResponseNonNullableFields {
|
1112
|
-
items: {
|
1113
|
-
image?: {
|
1114
|
-
type: ImageType;
|
1115
|
-
imageInfo?: {
|
1116
|
-
id: string;
|
1117
|
-
url: string;
|
1118
|
-
height: number;
|
1119
|
-
width: number;
|
1120
|
-
};
|
1121
|
-
focalPoint?: {
|
1122
|
-
x: number;
|
1123
|
-
y: number;
|
1124
|
-
};
|
1125
|
-
};
|
1126
|
-
video?: {
|
1127
|
-
type: VideoType;
|
1128
|
-
videoInfo?: {
|
1129
|
-
id: string;
|
1130
|
-
url: string;
|
1131
|
-
resolutions: {
|
1132
|
-
url: string;
|
1133
|
-
height: number;
|
1134
|
-
width: number;
|
1135
|
-
poster?: {
|
1136
|
-
id: string;
|
1137
|
-
url: string;
|
1138
|
-
height: number;
|
1139
|
-
width: number;
|
1140
|
-
};
|
1141
|
-
format: string;
|
1142
|
-
}[];
|
1143
|
-
posters: {
|
1144
|
-
id: string;
|
1145
|
-
url: string;
|
1146
|
-
height: number;
|
1147
|
-
width: number;
|
1148
|
-
}[];
|
1149
|
-
};
|
1150
|
-
};
|
1151
|
-
link?: {
|
1152
|
-
type: LinkType;
|
1153
|
-
wixLinkData?: {
|
1154
|
-
external?: {
|
1155
|
-
url: string;
|
1156
|
-
};
|
1157
|
-
page?: {
|
1158
|
-
pageId: string;
|
1159
|
-
rel: LinkRel[];
|
1160
|
-
};
|
1161
|
-
anchor?: {
|
1162
|
-
anchorName: string;
|
1163
|
-
anchorDataId: string;
|
1164
|
-
pageId: string;
|
1165
|
-
rel: LinkRel[];
|
1166
|
-
};
|
1167
|
-
dynamicPage?: {
|
1168
|
-
routerId: string;
|
1169
|
-
innerRoute: string;
|
1170
|
-
rel: LinkRel[];
|
1171
|
-
};
|
1172
|
-
document?: {
|
1173
|
-
docId: string;
|
1174
|
-
indexable: boolean;
|
1175
|
-
};
|
1176
|
-
email?: {
|
1177
|
-
recipient: string;
|
1178
|
-
};
|
1179
|
-
phone?: {
|
1180
|
-
phoneNumber: string;
|
1181
|
-
};
|
1182
|
-
address?: {
|
1183
|
-
address: string;
|
1184
|
-
};
|
1185
|
-
whatsApp?: {
|
1186
|
-
phoneNumber: string;
|
1187
|
-
};
|
1188
|
-
tpaPage?: {
|
1189
|
-
itemTypeIdentifier: string;
|
1190
|
-
itemId: string;
|
1191
|
-
pageId: string;
|
1192
|
-
appDefinitionId: string;
|
1193
|
-
path: string;
|
1194
|
-
rel: LinkRel[];
|
1195
|
-
};
|
1196
|
-
};
|
1197
|
-
};
|
1198
|
-
type: Type;
|
1199
|
-
tags?: {
|
1200
|
-
values: string[];
|
1201
|
-
};
|
1202
|
-
secondaryMedia?: {
|
1203
|
-
image?: {
|
1204
|
-
type: ImageType;
|
1205
|
-
imageInfo?: {
|
1206
|
-
id: string;
|
1207
|
-
url: string;
|
1208
|
-
height: number;
|
1209
|
-
width: number;
|
1210
|
-
};
|
1211
|
-
focalPoint?: {
|
1212
|
-
x: number;
|
1213
|
-
y: number;
|
1214
|
-
};
|
1215
|
-
};
|
1216
|
-
};
|
1217
|
-
}[];
|
1218
|
-
}
|
1219
|
-
export interface GetGalleryItemResponseNonNullableFields {
|
1220
|
-
item?: {
|
1221
|
-
image?: {
|
1222
|
-
type: ImageType;
|
1223
|
-
imageInfo?: {
|
1224
|
-
id: string;
|
1225
|
-
url: string;
|
1226
|
-
height: number;
|
1227
|
-
width: number;
|
1228
|
-
};
|
1229
|
-
focalPoint?: {
|
1230
|
-
x: number;
|
1231
|
-
y: number;
|
1232
|
-
};
|
1233
|
-
};
|
1234
|
-
video?: {
|
1235
|
-
type: VideoType;
|
1236
|
-
videoInfo?: {
|
1237
|
-
id: string;
|
1238
|
-
url: string;
|
1239
|
-
resolutions: {
|
1240
|
-
url: string;
|
1241
|
-
height: number;
|
1242
|
-
width: number;
|
1243
|
-
poster?: {
|
1244
|
-
id: string;
|
1245
|
-
url: string;
|
1246
|
-
height: number;
|
1247
|
-
width: number;
|
1248
|
-
};
|
1249
|
-
format: string;
|
1250
|
-
}[];
|
1251
|
-
posters: {
|
1252
|
-
id: string;
|
1253
|
-
url: string;
|
1254
|
-
height: number;
|
1255
|
-
width: number;
|
1256
|
-
}[];
|
1257
|
-
};
|
1258
|
-
};
|
1259
|
-
link?: {
|
1260
|
-
type: LinkType;
|
1261
|
-
wixLinkData?: {
|
1262
|
-
external?: {
|
1263
|
-
url: string;
|
1264
|
-
};
|
1265
|
-
page?: {
|
1266
|
-
pageId: string;
|
1267
|
-
rel: LinkRel[];
|
1268
|
-
};
|
1269
|
-
anchor?: {
|
1270
|
-
anchorName: string;
|
1271
|
-
anchorDataId: string;
|
1272
|
-
pageId: string;
|
1273
|
-
rel: LinkRel[];
|
1274
|
-
};
|
1275
|
-
dynamicPage?: {
|
1276
|
-
routerId: string;
|
1277
|
-
innerRoute: string;
|
1278
|
-
rel: LinkRel[];
|
1279
|
-
};
|
1280
|
-
document?: {
|
1281
|
-
docId: string;
|
1282
|
-
indexable: boolean;
|
1283
|
-
};
|
1284
|
-
email?: {
|
1285
|
-
recipient: string;
|
1286
|
-
};
|
1287
|
-
phone?: {
|
1288
|
-
phoneNumber: string;
|
1289
|
-
};
|
1290
|
-
address?: {
|
1291
|
-
address: string;
|
1292
|
-
};
|
1293
|
-
whatsApp?: {
|
1294
|
-
phoneNumber: string;
|
1295
|
-
};
|
1296
|
-
tpaPage?: {
|
1297
|
-
itemTypeIdentifier: string;
|
1298
|
-
itemId: string;
|
1299
|
-
pageId: string;
|
1300
|
-
appDefinitionId: string;
|
1301
|
-
path: string;
|
1302
|
-
rel: LinkRel[];
|
1303
|
-
};
|
1304
|
-
};
|
1305
|
-
};
|
1306
|
-
type: Type;
|
1307
|
-
tags?: {
|
1308
|
-
values: string[];
|
1309
|
-
};
|
1310
|
-
secondaryMedia?: {
|
1311
|
-
image?: {
|
1312
|
-
type: ImageType;
|
1313
|
-
imageInfo?: {
|
1314
|
-
id: string;
|
1315
|
-
url: string;
|
1316
|
-
height: number;
|
1317
|
-
width: number;
|
1318
|
-
};
|
1319
|
-
focalPoint?: {
|
1320
|
-
x: number;
|
1321
|
-
y: number;
|
1322
|
-
};
|
1323
|
-
};
|
1324
|
-
};
|
1325
|
-
};
|
1326
|
-
}
|
1327
|
-
export interface CreateGalleryResponseNonNullableFields {
|
1328
|
-
gallery?: {
|
1329
|
-
items: {
|
1330
|
-
image?: {
|
1331
|
-
type: ImageType;
|
1332
|
-
imageInfo?: {
|
1333
|
-
id: string;
|
1334
|
-
url: string;
|
1335
|
-
height: number;
|
1336
|
-
width: number;
|
1337
|
-
};
|
1338
|
-
focalPoint?: {
|
1339
|
-
x: number;
|
1340
|
-
y: number;
|
1341
|
-
};
|
1342
|
-
};
|
1343
|
-
video?: {
|
1344
|
-
type: VideoType;
|
1345
|
-
videoInfo?: {
|
1346
|
-
id: string;
|
1347
|
-
url: string;
|
1348
|
-
resolutions: {
|
1349
|
-
url: string;
|
1350
|
-
height: number;
|
1351
|
-
width: number;
|
1352
|
-
poster?: {
|
1353
|
-
id: string;
|
1354
|
-
url: string;
|
1355
|
-
height: number;
|
1356
|
-
width: number;
|
1357
|
-
};
|
1358
|
-
format: string;
|
1359
|
-
}[];
|
1360
|
-
posters: {
|
1361
|
-
id: string;
|
1362
|
-
url: string;
|
1363
|
-
height: number;
|
1364
|
-
width: number;
|
1365
|
-
}[];
|
1366
|
-
};
|
1367
|
-
};
|
1368
|
-
link?: {
|
1369
|
-
type: LinkType;
|
1370
|
-
wixLinkData?: {
|
1371
|
-
external?: {
|
1372
|
-
url: string;
|
1373
|
-
};
|
1374
|
-
page?: {
|
1375
|
-
pageId: string;
|
1376
|
-
rel: LinkRel[];
|
1377
|
-
};
|
1378
|
-
anchor?: {
|
1379
|
-
anchorName: string;
|
1380
|
-
anchorDataId: string;
|
1381
|
-
pageId: string;
|
1382
|
-
rel: LinkRel[];
|
1383
|
-
};
|
1384
|
-
dynamicPage?: {
|
1385
|
-
routerId: string;
|
1386
|
-
innerRoute: string;
|
1387
|
-
rel: LinkRel[];
|
1388
|
-
};
|
1389
|
-
document?: {
|
1390
|
-
docId: string;
|
1391
|
-
indexable: boolean;
|
1392
|
-
};
|
1393
|
-
email?: {
|
1394
|
-
recipient: string;
|
1395
|
-
};
|
1396
|
-
phone?: {
|
1397
|
-
phoneNumber: string;
|
1398
|
-
};
|
1399
|
-
address?: {
|
1400
|
-
address: string;
|
1401
|
-
};
|
1402
|
-
whatsApp?: {
|
1403
|
-
phoneNumber: string;
|
1404
|
-
};
|
1405
|
-
tpaPage?: {
|
1406
|
-
itemTypeIdentifier: string;
|
1407
|
-
itemId: string;
|
1408
|
-
pageId: string;
|
1409
|
-
appDefinitionId: string;
|
1410
|
-
path: string;
|
1411
|
-
rel: LinkRel[];
|
1412
|
-
};
|
1413
|
-
};
|
1414
|
-
};
|
1415
|
-
type: Type;
|
1416
|
-
tags?: {
|
1417
|
-
values: string[];
|
1418
|
-
};
|
1419
|
-
secondaryMedia?: {
|
1420
|
-
image?: {
|
1421
|
-
type: ImageType;
|
1422
|
-
imageInfo?: {
|
1423
|
-
id: string;
|
1424
|
-
url: string;
|
1425
|
-
height: number;
|
1426
|
-
width: number;
|
1427
|
-
};
|
1428
|
-
focalPoint?: {
|
1429
|
-
x: number;
|
1430
|
-
y: number;
|
1431
|
-
};
|
1432
|
-
};
|
1433
|
-
};
|
1434
|
-
}[];
|
1435
|
-
};
|
1436
|
-
}
|
1437
|
-
export interface UpdateGalleryResponseNonNullableFields {
|
1438
|
-
gallery?: {
|
1439
|
-
items: {
|
1440
|
-
image?: {
|
1441
|
-
type: ImageType;
|
1442
|
-
imageInfo?: {
|
1443
|
-
id: string;
|
1444
|
-
url: string;
|
1445
|
-
height: number;
|
1446
|
-
width: number;
|
1447
|
-
};
|
1448
|
-
focalPoint?: {
|
1449
|
-
x: number;
|
1450
|
-
y: number;
|
1451
|
-
};
|
1452
|
-
};
|
1453
|
-
video?: {
|
1454
|
-
type: VideoType;
|
1455
|
-
videoInfo?: {
|
1456
|
-
id: string;
|
1457
|
-
url: string;
|
1458
|
-
resolutions: {
|
1459
|
-
url: string;
|
1460
|
-
height: number;
|
1461
|
-
width: number;
|
1462
|
-
poster?: {
|
1463
|
-
id: string;
|
1464
|
-
url: string;
|
1465
|
-
height: number;
|
1466
|
-
width: number;
|
1467
|
-
};
|
1468
|
-
format: string;
|
1469
|
-
}[];
|
1470
|
-
posters: {
|
1471
|
-
id: string;
|
1472
|
-
url: string;
|
1473
|
-
height: number;
|
1474
|
-
width: number;
|
1475
|
-
}[];
|
1476
|
-
};
|
1477
|
-
};
|
1478
|
-
link?: {
|
1479
|
-
type: LinkType;
|
1480
|
-
wixLinkData?: {
|
1481
|
-
external?: {
|
1482
|
-
url: string;
|
1483
|
-
};
|
1484
|
-
page?: {
|
1485
|
-
pageId: string;
|
1486
|
-
rel: LinkRel[];
|
1487
|
-
};
|
1488
|
-
anchor?: {
|
1489
|
-
anchorName: string;
|
1490
|
-
anchorDataId: string;
|
1491
|
-
pageId: string;
|
1492
|
-
rel: LinkRel[];
|
1493
|
-
};
|
1494
|
-
dynamicPage?: {
|
1495
|
-
routerId: string;
|
1496
|
-
innerRoute: string;
|
1497
|
-
rel: LinkRel[];
|
1498
|
-
};
|
1499
|
-
document?: {
|
1500
|
-
docId: string;
|
1501
|
-
indexable: boolean;
|
1502
|
-
};
|
1503
|
-
email?: {
|
1504
|
-
recipient: string;
|
1505
|
-
};
|
1506
|
-
phone?: {
|
1507
|
-
phoneNumber: string;
|
1508
|
-
};
|
1509
|
-
address?: {
|
1510
|
-
address: string;
|
1511
|
-
};
|
1512
|
-
whatsApp?: {
|
1513
|
-
phoneNumber: string;
|
1514
|
-
};
|
1515
|
-
tpaPage?: {
|
1516
|
-
itemTypeIdentifier: string;
|
1517
|
-
itemId: string;
|
1518
|
-
pageId: string;
|
1519
|
-
appDefinitionId: string;
|
1520
|
-
path: string;
|
1521
|
-
rel: LinkRel[];
|
1522
|
-
};
|
1523
|
-
};
|
1524
|
-
};
|
1525
|
-
type: Type;
|
1526
|
-
tags?: {
|
1527
|
-
values: string[];
|
1528
|
-
};
|
1529
|
-
secondaryMedia?: {
|
1530
|
-
image?: {
|
1531
|
-
type: ImageType;
|
1532
|
-
imageInfo?: {
|
1533
|
-
id: string;
|
1534
|
-
url: string;
|
1535
|
-
height: number;
|
1536
|
-
width: number;
|
1537
|
-
};
|
1538
|
-
focalPoint?: {
|
1539
|
-
x: number;
|
1540
|
-
y: number;
|
1541
|
-
};
|
1542
|
-
};
|
1543
|
-
};
|
1544
|
-
}[];
|
1545
|
-
};
|
1546
|
-
}
|
1547
|
-
export interface DeleteGalleryResponseNonNullableFields {
|
1548
|
-
galleryId: string;
|
1549
|
-
}
|
1550
|
-
export interface CreateGalleryItemResponseNonNullableFields {
|
1551
|
-
item?: {
|
1552
|
-
image?: {
|
1553
|
-
type: ImageType;
|
1554
|
-
imageInfo?: {
|
1555
|
-
id: string;
|
1556
|
-
url: string;
|
1557
|
-
height: number;
|
1558
|
-
width: number;
|
1559
|
-
};
|
1560
|
-
focalPoint?: {
|
1561
|
-
x: number;
|
1562
|
-
y: number;
|
1563
|
-
};
|
1564
|
-
};
|
1565
|
-
video?: {
|
1566
|
-
type: VideoType;
|
1567
|
-
videoInfo?: {
|
1568
|
-
id: string;
|
1569
|
-
url: string;
|
1570
|
-
resolutions: {
|
1571
|
-
url: string;
|
1572
|
-
height: number;
|
1573
|
-
width: number;
|
1574
|
-
poster?: {
|
1575
|
-
id: string;
|
1576
|
-
url: string;
|
1577
|
-
height: number;
|
1578
|
-
width: number;
|
1579
|
-
};
|
1580
|
-
format: string;
|
1581
|
-
}[];
|
1582
|
-
posters: {
|
1583
|
-
id: string;
|
1584
|
-
url: string;
|
1585
|
-
height: number;
|
1586
|
-
width: number;
|
1587
|
-
}[];
|
1588
|
-
};
|
1589
|
-
};
|
1590
|
-
link?: {
|
1591
|
-
type: LinkType;
|
1592
|
-
wixLinkData?: {
|
1593
|
-
external?: {
|
1594
|
-
url: string;
|
1595
|
-
};
|
1596
|
-
page?: {
|
1597
|
-
pageId: string;
|
1598
|
-
rel: LinkRel[];
|
1599
|
-
};
|
1600
|
-
anchor?: {
|
1601
|
-
anchorName: string;
|
1602
|
-
anchorDataId: string;
|
1603
|
-
pageId: string;
|
1604
|
-
rel: LinkRel[];
|
1605
|
-
};
|
1606
|
-
dynamicPage?: {
|
1607
|
-
routerId: string;
|
1608
|
-
innerRoute: string;
|
1609
|
-
rel: LinkRel[];
|
1610
|
-
};
|
1611
|
-
document?: {
|
1612
|
-
docId: string;
|
1613
|
-
indexable: boolean;
|
1614
|
-
};
|
1615
|
-
email?: {
|
1616
|
-
recipient: string;
|
1617
|
-
};
|
1618
|
-
phone?: {
|
1619
|
-
phoneNumber: string;
|
1620
|
-
};
|
1621
|
-
address?: {
|
1622
|
-
address: string;
|
1623
|
-
};
|
1624
|
-
whatsApp?: {
|
1625
|
-
phoneNumber: string;
|
1626
|
-
};
|
1627
|
-
tpaPage?: {
|
1628
|
-
itemTypeIdentifier: string;
|
1629
|
-
itemId: string;
|
1630
|
-
pageId: string;
|
1631
|
-
appDefinitionId: string;
|
1632
|
-
path: string;
|
1633
|
-
rel: LinkRel[];
|
1634
|
-
};
|
1635
|
-
};
|
1636
|
-
};
|
1637
|
-
type: Type;
|
1638
|
-
tags?: {
|
1639
|
-
values: string[];
|
1640
|
-
};
|
1641
|
-
secondaryMedia?: {
|
1642
|
-
image?: {
|
1643
|
-
type: ImageType;
|
1644
|
-
imageInfo?: {
|
1645
|
-
id: string;
|
1646
|
-
url: string;
|
1647
|
-
height: number;
|
1648
|
-
width: number;
|
1649
|
-
};
|
1650
|
-
focalPoint?: {
|
1651
|
-
x: number;
|
1652
|
-
y: number;
|
1653
|
-
};
|
1654
|
-
};
|
1655
|
-
};
|
1656
|
-
};
|
1657
|
-
}
|
1658
|
-
export interface UpdateGalleryItemResponseNonNullableFields {
|
1659
|
-
item?: {
|
1660
|
-
image?: {
|
1661
|
-
type: ImageType;
|
1662
|
-
imageInfo?: {
|
1663
|
-
id: string;
|
1664
|
-
url: string;
|
1665
|
-
height: number;
|
1666
|
-
width: number;
|
1667
|
-
};
|
1668
|
-
focalPoint?: {
|
1669
|
-
x: number;
|
1670
|
-
y: number;
|
1671
|
-
};
|
1672
|
-
};
|
1673
|
-
video?: {
|
1674
|
-
type: VideoType;
|
1675
|
-
videoInfo?: {
|
1676
|
-
id: string;
|
1677
|
-
url: string;
|
1678
|
-
resolutions: {
|
1679
|
-
url: string;
|
1680
|
-
height: number;
|
1681
|
-
width: number;
|
1682
|
-
poster?: {
|
1683
|
-
id: string;
|
1684
|
-
url: string;
|
1685
|
-
height: number;
|
1686
|
-
width: number;
|
1687
|
-
};
|
1688
|
-
format: string;
|
1689
|
-
}[];
|
1690
|
-
posters: {
|
1691
|
-
id: string;
|
1692
|
-
url: string;
|
1693
|
-
height: number;
|
1694
|
-
width: number;
|
1695
|
-
}[];
|
1696
|
-
};
|
1697
|
-
};
|
1698
|
-
link?: {
|
1699
|
-
type: LinkType;
|
1700
|
-
wixLinkData?: {
|
1701
|
-
external?: {
|
1702
|
-
url: string;
|
1703
|
-
};
|
1704
|
-
page?: {
|
1705
|
-
pageId: string;
|
1706
|
-
rel: LinkRel[];
|
1707
|
-
};
|
1708
|
-
anchor?: {
|
1709
|
-
anchorName: string;
|
1710
|
-
anchorDataId: string;
|
1711
|
-
pageId: string;
|
1712
|
-
rel: LinkRel[];
|
1713
|
-
};
|
1714
|
-
dynamicPage?: {
|
1715
|
-
routerId: string;
|
1716
|
-
innerRoute: string;
|
1717
|
-
rel: LinkRel[];
|
1718
|
-
};
|
1719
|
-
document?: {
|
1720
|
-
docId: string;
|
1721
|
-
indexable: boolean;
|
1722
|
-
};
|
1723
|
-
email?: {
|
1724
|
-
recipient: string;
|
1725
|
-
};
|
1726
|
-
phone?: {
|
1727
|
-
phoneNumber: string;
|
1728
|
-
};
|
1729
|
-
address?: {
|
1730
|
-
address: string;
|
1731
|
-
};
|
1732
|
-
whatsApp?: {
|
1733
|
-
phoneNumber: string;
|
1734
|
-
};
|
1735
|
-
tpaPage?: {
|
1736
|
-
itemTypeIdentifier: string;
|
1737
|
-
itemId: string;
|
1738
|
-
pageId: string;
|
1739
|
-
appDefinitionId: string;
|
1740
|
-
path: string;
|
1741
|
-
rel: LinkRel[];
|
1742
|
-
};
|
1743
|
-
};
|
1744
|
-
};
|
1745
|
-
type: Type;
|
1746
|
-
tags?: {
|
1747
|
-
values: string[];
|
1748
|
-
};
|
1749
|
-
secondaryMedia?: {
|
1750
|
-
image?: {
|
1751
|
-
type: ImageType;
|
1752
|
-
imageInfo?: {
|
1753
|
-
id: string;
|
1754
|
-
url: string;
|
1755
|
-
height: number;
|
1756
|
-
width: number;
|
1757
|
-
};
|
1758
|
-
focalPoint?: {
|
1759
|
-
x: number;
|
1760
|
-
y: number;
|
1761
|
-
};
|
1762
|
-
};
|
1763
|
-
};
|
1764
|
-
};
|
1765
|
-
}
|
1766
|
-
export interface DeleteGalleryItemResponseNonNullableFields {
|
1767
|
-
itemId: string;
|
1768
|
-
}
|