@wix/pro-gallery 1.0.50 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +951 -193
- package/type-bundles/index.bundle.d.ts +144 -290
- package/type-bundles/meta.bundle.d.ts +245 -1130
@@ -81,6 +81,153 @@ interface Link {
|
|
81
81
|
/** Target URL of the link. */
|
82
82
|
url?: string | null;
|
83
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
|
+
/** The link object generated by panels in the editor and used by applications in Wix */
|
92
|
+
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
|
+
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
|
+
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
|
+
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
|
+
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
|
+
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
|
+
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
|
+
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
|
+
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
|
+
interface PhoneLink {
|
205
|
+
/** The phone number we want to link to */
|
206
|
+
phoneNumber?: string;
|
207
|
+
}
|
208
|
+
interface AddressLink {
|
209
|
+
/** An address that we can link to */
|
210
|
+
address?: string;
|
211
|
+
}
|
212
|
+
interface WhatsAppLink {
|
213
|
+
/** The whatsApp phone number we want to connect with */
|
214
|
+
phoneNumber?: string;
|
215
|
+
}
|
216
|
+
/** Link to a TPA page */
|
217
|
+
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
|
+
}
|
84
231
|
declare enum Type {
|
85
232
|
UNDEFINED = "UNDEFINED",
|
86
233
|
IMAGE = "IMAGE",
|
@@ -104,6 +251,11 @@ interface Image {
|
|
104
251
|
/** [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. */
|
105
252
|
unsharpMasking?: UnsharpMasking;
|
106
253
|
}
|
254
|
+
declare enum ImageType {
|
255
|
+
UNDEFINED = "UNDEFINED",
|
256
|
+
WIX_MEDIA = "WIX_MEDIA",
|
257
|
+
EXTERNAL = "EXTERNAL"
|
258
|
+
}
|
107
259
|
interface Point {
|
108
260
|
/** X-coordinate of the focal point. */
|
109
261
|
x?: number;
|
@@ -149,6 +301,20 @@ declare enum VideoType {
|
|
149
301
|
YOUTUBE = "YOUTUBE",
|
150
302
|
VIMEO = "VIMEO"
|
151
303
|
}
|
304
|
+
interface VideoResolution {
|
305
|
+
/** *Required.** Video URL. */
|
306
|
+
url?: string;
|
307
|
+
/** *Required.** Video height. */
|
308
|
+
height?: number;
|
309
|
+
/** *Required.** Video width. */
|
310
|
+
width?: number;
|
311
|
+
/** *Required.** Video format. For example, `mp4` or `hls`. */
|
312
|
+
format?: string;
|
313
|
+
/** Video quality. For example, `480p` or `720p`. */
|
314
|
+
quality?: string | null;
|
315
|
+
/** Video filename. */
|
316
|
+
filename?: string | null;
|
317
|
+
}
|
152
318
|
interface Text {
|
153
319
|
/** Text in HTML format. */
|
154
320
|
html?: string | null;
|
@@ -167,6 +333,230 @@ interface Tags {
|
|
167
333
|
/** List of tags assigned to the media item. */
|
168
334
|
values?: string[];
|
169
335
|
}
|
336
|
+
interface SecondaryMedia extends SecondaryMediaMetadataOneOf {
|
337
|
+
/** secondary media photo metadata (optional) */
|
338
|
+
image?: Image;
|
339
|
+
/** secondary media text metadata (optional) */
|
340
|
+
text?: Text;
|
341
|
+
}
|
342
|
+
/** @oneof */
|
343
|
+
interface SecondaryMediaMetadataOneOf {
|
344
|
+
/** secondary media photo metadata (optional) */
|
345
|
+
image?: Image;
|
346
|
+
/** secondary media text metadata (optional) */
|
347
|
+
text?: Text;
|
348
|
+
}
|
349
|
+
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
350
|
+
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
351
|
+
metaSiteId?: string;
|
352
|
+
/** Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! */
|
353
|
+
siteId?: string;
|
354
|
+
/** Invalidate by App */
|
355
|
+
app?: App;
|
356
|
+
/** Invalidate by page id */
|
357
|
+
page?: Page;
|
358
|
+
/** Invalidate by URI path */
|
359
|
+
uri?: URI;
|
360
|
+
/** Invalidate by file (for media files such as PDFs) */
|
361
|
+
file?: File;
|
362
|
+
/** tell us why you're invalidating the cache. You don't need to add your app name */
|
363
|
+
reason?: string | null;
|
364
|
+
/** Is local DS */
|
365
|
+
localDc?: boolean;
|
366
|
+
}
|
367
|
+
/** @oneof */
|
368
|
+
interface InvalidateCacheGetByOneOf {
|
369
|
+
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
370
|
+
metaSiteId?: string;
|
371
|
+
/** Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! */
|
372
|
+
siteId?: string;
|
373
|
+
/** Invalidate by App */
|
374
|
+
app?: App;
|
375
|
+
/** Invalidate by page id */
|
376
|
+
page?: Page;
|
377
|
+
/** Invalidate by URI path */
|
378
|
+
uri?: URI;
|
379
|
+
/** Invalidate by file (for media files such as PDFs) */
|
380
|
+
file?: File;
|
381
|
+
}
|
382
|
+
interface App {
|
383
|
+
/** The AppDefId */
|
384
|
+
appDefId?: string;
|
385
|
+
/** The instance Id */
|
386
|
+
instanceId?: string;
|
387
|
+
}
|
388
|
+
interface Page {
|
389
|
+
/** the msid the page is on */
|
390
|
+
metaSiteId?: string;
|
391
|
+
/** Invalidate by Page ID */
|
392
|
+
pageId?: string;
|
393
|
+
}
|
394
|
+
interface URI {
|
395
|
+
/** the msid the URI is on */
|
396
|
+
metaSiteId?: string;
|
397
|
+
/** URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes */
|
398
|
+
uriPath?: string;
|
399
|
+
}
|
400
|
+
interface File {
|
401
|
+
/** the msid the file is related to */
|
402
|
+
metaSiteId?: string;
|
403
|
+
/** Invalidate by filename (for media files such as PDFs) */
|
404
|
+
fileName?: string;
|
405
|
+
}
|
406
|
+
interface GalleryPublished {
|
407
|
+
/**
|
408
|
+
* id of the gallery that will be published
|
409
|
+
* @readonly
|
410
|
+
*/
|
411
|
+
galleryId?: string;
|
412
|
+
isRc?: boolean;
|
413
|
+
/** @readonly */
|
414
|
+
newRevision?: Date;
|
415
|
+
/** @readonly */
|
416
|
+
oldRevision?: Date;
|
417
|
+
}
|
418
|
+
interface CleanDeletedGalleriesEvent {
|
419
|
+
/** @readonly */
|
420
|
+
instanceId?: string;
|
421
|
+
/** @readonly */
|
422
|
+
metaSiteId?: string;
|
423
|
+
/** @readonly */
|
424
|
+
htmlSiteRevision?: string;
|
425
|
+
/** @readonly */
|
426
|
+
timeSitePublished?: Date;
|
427
|
+
}
|
428
|
+
interface ProgallerypublisherPublishGalleryRequest {
|
429
|
+
/** id of the gallery that will be published */
|
430
|
+
galleryId?: string;
|
431
|
+
}
|
432
|
+
interface ProgallerypublisherPublishGalleryResponse {
|
433
|
+
}
|
434
|
+
interface PublishGalleryItemRequest {
|
435
|
+
/** id of the gallery that will be published */
|
436
|
+
galleryId?: string;
|
437
|
+
/** id of the item that will be published */
|
438
|
+
itemId?: string;
|
439
|
+
}
|
440
|
+
interface PublishGalleryItemResponse {
|
441
|
+
}
|
442
|
+
interface PublishGalleryItemsRequest {
|
443
|
+
/** id of the gallery that will be published */
|
444
|
+
galleryId?: string;
|
445
|
+
/** ids of the items that will be published */
|
446
|
+
itemIds?: string[];
|
447
|
+
}
|
448
|
+
interface PublishGalleryItemsResponse {
|
449
|
+
}
|
450
|
+
interface Empty {
|
451
|
+
}
|
452
|
+
interface HtmlSitePublished {
|
453
|
+
/** Application instance ID */
|
454
|
+
appInstanceId?: string;
|
455
|
+
/** Application type */
|
456
|
+
appType?: string;
|
457
|
+
/** Revision */
|
458
|
+
revision?: string;
|
459
|
+
/** MSID */
|
460
|
+
metaSiteId?: string | null;
|
461
|
+
/** optional branch id if publish is done from branch */
|
462
|
+
branchId?: string | null;
|
463
|
+
/** The site's last transactionId */
|
464
|
+
lastTransactionId?: string | null;
|
465
|
+
/** A list of the site's pages */
|
466
|
+
pages?: EventsPage[];
|
467
|
+
/** Site's publish date */
|
468
|
+
publishDate?: string;
|
469
|
+
}
|
470
|
+
interface EventsPage {
|
471
|
+
/** Page's Id */
|
472
|
+
_id?: string;
|
473
|
+
}
|
474
|
+
interface HtmlSiteRCPublished {
|
475
|
+
/** Application instance ID */
|
476
|
+
appInstanceId?: string;
|
477
|
+
/** Revision */
|
478
|
+
revision?: string;
|
479
|
+
/** Optional branch Id */
|
480
|
+
branchId?: string | null;
|
481
|
+
}
|
482
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
483
|
+
/** Information about a newly-created gallery. */
|
484
|
+
createdEvent?: EntityCreatedEvent;
|
485
|
+
updatedEvent?: EntityUpdatedEvent;
|
486
|
+
deletedEvent?: EntityDeletedEvent;
|
487
|
+
actionEvent?: ActionEvent;
|
488
|
+
/**
|
489
|
+
* Unique event ID.
|
490
|
+
* Allows clients to ignore duplicate webhooks.
|
491
|
+
*/
|
492
|
+
_id?: string;
|
493
|
+
/**
|
494
|
+
* Assumes actions are also always typed to an entity_type
|
495
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
496
|
+
*/
|
497
|
+
entityFqdn?: string;
|
498
|
+
/**
|
499
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
500
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
501
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
502
|
+
*/
|
503
|
+
slug?: string;
|
504
|
+
/** ID of the entity associated with the event. */
|
505
|
+
entityId?: string;
|
506
|
+
/** Event timestamp. */
|
507
|
+
eventTime?: Date;
|
508
|
+
/**
|
509
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
510
|
+
* (for example, GDPR).
|
511
|
+
*/
|
512
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
513
|
+
/** If present, indicates the action that triggered the event. */
|
514
|
+
originatedFrom?: string | null;
|
515
|
+
/**
|
516
|
+
* A sequence number defining the order of updates to the underlying entity.
|
517
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
518
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
519
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
520
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
521
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
522
|
+
*/
|
523
|
+
entityEventSequence?: string | null;
|
524
|
+
}
|
525
|
+
/** @oneof */
|
526
|
+
interface DomainEventBodyOneOf {
|
527
|
+
createdEvent?: EntityCreatedEvent;
|
528
|
+
updatedEvent?: EntityUpdatedEvent;
|
529
|
+
deletedEvent?: EntityDeletedEvent;
|
530
|
+
actionEvent?: ActionEvent;
|
531
|
+
}
|
532
|
+
interface EntityCreatedEvent {
|
533
|
+
entity?: string;
|
534
|
+
}
|
535
|
+
interface EntityUpdatedEvent {
|
536
|
+
/**
|
537
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
538
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
539
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
540
|
+
*/
|
541
|
+
currentEntity?: string;
|
542
|
+
}
|
543
|
+
interface EntityDeletedEvent {
|
544
|
+
/** Entity that was deleted */
|
545
|
+
deletedEntity?: string | null;
|
546
|
+
}
|
547
|
+
interface ActionEvent {
|
548
|
+
body?: string;
|
549
|
+
}
|
550
|
+
interface MessageEnvelope {
|
551
|
+
/** App instance ID. */
|
552
|
+
instanceId?: string | null;
|
553
|
+
/** Event type. */
|
554
|
+
eventType?: string;
|
555
|
+
/** The identification type and identity data. */
|
556
|
+
identity?: IdentificationData;
|
557
|
+
/** Stringify payload. */
|
558
|
+
data?: string;
|
559
|
+
}
|
170
560
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
171
561
|
/** ID of a site visitor that has not logged in to the site. */
|
172
562
|
anonymousVisitorId?: string;
|
@@ -197,6 +587,141 @@ declare enum WebhookIdentityType {
|
|
197
587
|
WIX_USER = "WIX_USER",
|
198
588
|
APP = "APP"
|
199
589
|
}
|
590
|
+
interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
|
591
|
+
/** insert/update documents */
|
592
|
+
update?: DocumentUpdateOperation;
|
593
|
+
/** delete by document ids */
|
594
|
+
deleteByIds?: DeleteByIdsOperation;
|
595
|
+
/** delete documents matching filter */
|
596
|
+
deleteByFilter?: DeleteByFilterOperation;
|
597
|
+
/** update documents matching filter */
|
598
|
+
updateByFilter?: UpdateByFilterOperation;
|
599
|
+
/** update only existing documents */
|
600
|
+
updateExisting?: UpdateExistingOperation;
|
601
|
+
/** application which owns documents */
|
602
|
+
appDefId?: string | null;
|
603
|
+
/** type of the documents */
|
604
|
+
documentType?: string | null;
|
605
|
+
/** language of the documents */
|
606
|
+
language?: string | null;
|
607
|
+
/** site documents belong to */
|
608
|
+
msId?: string | null;
|
609
|
+
}
|
610
|
+
/** @oneof */
|
611
|
+
interface UpdateDocumentsEventOperationOneOf {
|
612
|
+
/** insert/update documents */
|
613
|
+
update?: DocumentUpdateOperation;
|
614
|
+
/** delete by document ids */
|
615
|
+
deleteByIds?: DeleteByIdsOperation;
|
616
|
+
/** delete documents matching filter */
|
617
|
+
deleteByFilter?: DeleteByFilterOperation;
|
618
|
+
/** update documents matching filter */
|
619
|
+
updateByFilter?: UpdateByFilterOperation;
|
620
|
+
/** update only existing documents */
|
621
|
+
updateExisting?: UpdateExistingOperation;
|
622
|
+
}
|
623
|
+
interface DocumentUpdateOperation {
|
624
|
+
/** documents to index or update */
|
625
|
+
documents?: IndexDocument[];
|
626
|
+
}
|
627
|
+
interface IndexDocument {
|
628
|
+
/** data bag with non-searchable fields (url, image) */
|
629
|
+
payload?: DocumentPayload;
|
630
|
+
/** what type of users should documents be visible to */
|
631
|
+
exposure?: Enum;
|
632
|
+
/** document with mandatory fields (id, title, description) and with fields specific to the type of the document */
|
633
|
+
document?: Record<string, any> | null;
|
634
|
+
/** what member groups is the document exposed to. Used only with GROUP_PROTECTED exposure */
|
635
|
+
permittedMemberGroups?: string[];
|
636
|
+
/** if true SEO is disabled for this document */
|
637
|
+
seoHidden?: boolean | null;
|
638
|
+
/** if true the page is a lightbox popup */
|
639
|
+
isPopup?: boolean | null;
|
640
|
+
}
|
641
|
+
interface DocumentPayload {
|
642
|
+
/** url of the page representing the document */
|
643
|
+
url?: string | null;
|
644
|
+
/** image which represents the document */
|
645
|
+
documentImage?: DocumentImage;
|
646
|
+
}
|
647
|
+
interface DocumentImage {
|
648
|
+
/** the name of the image */
|
649
|
+
name?: string;
|
650
|
+
/** the width of the image */
|
651
|
+
width?: number;
|
652
|
+
/** the height of the image */
|
653
|
+
height?: number;
|
654
|
+
}
|
655
|
+
declare enum Enum {
|
656
|
+
/** Default value. Means that permission not set */
|
657
|
+
UNKNOWN = "UNKNOWN",
|
658
|
+
/** Protected exposure. Exposed to members and owners */
|
659
|
+
PROTECTED = "PROTECTED",
|
660
|
+
/** Private exposure. Exposed to owners */
|
661
|
+
PRIVATE = "PRIVATE",
|
662
|
+
/** Public exposure. Visible to everyone */
|
663
|
+
PUBLIC = "PUBLIC",
|
664
|
+
/** Used for partial updates, to state that exposure is not changing */
|
665
|
+
UNCHANGED = "UNCHANGED",
|
666
|
+
/** Protected to members of permitted groups and owners */
|
667
|
+
GROUP_PROTECTED = "GROUP_PROTECTED"
|
668
|
+
}
|
669
|
+
interface DeleteByIdsOperation {
|
670
|
+
/** ids of the documents to delete */
|
671
|
+
documentIds?: string[];
|
672
|
+
}
|
673
|
+
interface DeleteByFilterOperation {
|
674
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
675
|
+
filter?: Record<string, any> | null;
|
676
|
+
}
|
677
|
+
interface UpdateByFilterOperation {
|
678
|
+
/** documents matching this filter will be updated */
|
679
|
+
filter?: Record<string, any> | null;
|
680
|
+
/** partial document to apply */
|
681
|
+
document?: IndexDocument;
|
682
|
+
}
|
683
|
+
interface UpdateExistingOperation {
|
684
|
+
/** documents to update */
|
685
|
+
documents?: IndexDocument[];
|
686
|
+
}
|
687
|
+
interface SearchIndexingNotification {
|
688
|
+
/** new state of indexing for the site specified in ms_id */
|
689
|
+
indexState?: SearchIndexingNotificationState;
|
690
|
+
/** type of the document the notification is targeted for. Applies to all types if not provided */
|
691
|
+
documentType?: string | null;
|
692
|
+
/** languaInternalDocumentUpdateByFilterOperationge the notification is targeted for. Applies to all languages if not provided */
|
693
|
+
language?: string | null;
|
694
|
+
/** site for which notification is targeted */
|
695
|
+
msId?: string | null;
|
696
|
+
}
|
697
|
+
declare enum SearchIndexingNotificationState {
|
698
|
+
/** default state */
|
699
|
+
Unknown = "Unknown",
|
700
|
+
/** metasite does not require site search indexing */
|
701
|
+
Off = "Off",
|
702
|
+
/** metasite requires site search indexing */
|
703
|
+
On = "On"
|
704
|
+
}
|
705
|
+
interface ListGalleriesItemsRequest {
|
706
|
+
/** IDs of the media items to retrieve. */
|
707
|
+
itemsId?: ItemId[];
|
708
|
+
}
|
709
|
+
interface ItemId {
|
710
|
+
/** Gallery ID. */
|
711
|
+
galleryId?: string;
|
712
|
+
/** Item ID. */
|
713
|
+
itemId?: string;
|
714
|
+
}
|
715
|
+
interface ListGalleriesItemsResponse {
|
716
|
+
/** Retrieved media items. */
|
717
|
+
itemsInGalleries?: ItemsInGallery[];
|
718
|
+
}
|
719
|
+
interface ItemsInGallery {
|
720
|
+
/** Gallery ID. */
|
721
|
+
galleryId?: string;
|
722
|
+
/** Retrieved media items. */
|
723
|
+
items?: Item[];
|
724
|
+
}
|
200
725
|
interface GalleryItemCreated {
|
201
726
|
/** Created gallery item. */
|
202
727
|
item?: Item;
|
@@ -209,19 +734,98 @@ interface GalleryItemDeleted {
|
|
209
734
|
/** ID of the deleted gallery item. */
|
210
735
|
itemId?: string;
|
211
736
|
}
|
737
|
+
interface ListGalleriesRequest {
|
738
|
+
/** Number of galleries to list. Defaults to `10`. */
|
739
|
+
itemLimit?: number | null;
|
740
|
+
/** Number of galleries to skip in the returns. Defaults to `0`. */
|
741
|
+
offset?: number | null;
|
742
|
+
/** Number of galleries to list. Defaults to `10`. */
|
743
|
+
limit?: number | null;
|
744
|
+
}
|
745
|
+
declare enum State {
|
746
|
+
UNDEFINED = "UNDEFINED",
|
747
|
+
/** The gallery in the Editor segment */
|
748
|
+
SAVED = "SAVED",
|
749
|
+
/** The gallery in the LiveSite segment */
|
750
|
+
PUBLISHED = "PUBLISHED"
|
751
|
+
}
|
212
752
|
interface ListGalleriesResponse {
|
213
753
|
/** Total number of galleries in the site. */
|
214
754
|
totalGalleries?: number | null;
|
215
755
|
/** List of galleries. Sorted by `_createdDate`. */
|
216
756
|
galleries?: Gallery[];
|
217
757
|
}
|
758
|
+
interface GetGalleryRequest extends GetGalleryRequestVersionOneOf {
|
759
|
+
/** Gallery ID. */
|
760
|
+
galleryId: string;
|
761
|
+
/** Number of media items to skip in the returns. Defaults to `0`. */
|
762
|
+
itemOffset?: number | null;
|
763
|
+
/**
|
764
|
+
* Maximum number of media items to return. <br />
|
765
|
+
*
|
766
|
+
* Min: `1` <br />
|
767
|
+
* Max: `100` <br />
|
768
|
+
* Default: `50`
|
769
|
+
*/
|
770
|
+
itemLimit?: number | null;
|
771
|
+
}
|
218
772
|
/** @oneof */
|
219
773
|
interface GetGalleryRequestVersionOneOf {
|
220
774
|
}
|
775
|
+
interface GetGalleryResponse {
|
776
|
+
/** Returned gallery. */
|
777
|
+
gallery?: Gallery;
|
778
|
+
}
|
779
|
+
interface ListGalleryItemsRequest {
|
780
|
+
/** Gallery ID. */
|
781
|
+
galleryId: string;
|
782
|
+
/** Number of media items to skip in the returns. Defaults to `0`. */
|
783
|
+
itemOffset?: number | null;
|
784
|
+
/**
|
785
|
+
* Maximum number of media items to return. <br />
|
786
|
+
*
|
787
|
+
* Min: `1` <br />
|
788
|
+
* Max: `100` <br />
|
789
|
+
* Default: `50`
|
790
|
+
*/
|
791
|
+
itemLimit?: number | null;
|
792
|
+
}
|
221
793
|
interface ListGalleryItemsResponse {
|
222
794
|
/** List of media items in the gallery. */
|
223
795
|
items?: Item[];
|
224
796
|
}
|
797
|
+
interface GetGalleryItemRequest {
|
798
|
+
/** Gallery ID. */
|
799
|
+
galleryId: string;
|
800
|
+
/** Item ID. */
|
801
|
+
itemId: string;
|
802
|
+
}
|
803
|
+
interface GetGalleryItemResponse {
|
804
|
+
/** Returned media item. */
|
805
|
+
item?: Item;
|
806
|
+
}
|
807
|
+
interface CreateGalleryRequest {
|
808
|
+
/** Gallery to create. */
|
809
|
+
gallery?: Gallery;
|
810
|
+
/** Gallery ID to clone from. */
|
811
|
+
cloneFromGalleryId?: string | null;
|
812
|
+
}
|
813
|
+
interface CreateGalleryResponse {
|
814
|
+
/** Created gallery. */
|
815
|
+
gallery?: Gallery;
|
816
|
+
}
|
817
|
+
interface UpdateGalleryRequest {
|
818
|
+
/** Gallery to update. */
|
819
|
+
gallery: Gallery;
|
820
|
+
}
|
821
|
+
interface UpdateGalleryResponse {
|
822
|
+
/** Updated gallery. */
|
823
|
+
gallery?: Gallery;
|
824
|
+
}
|
825
|
+
interface DeleteGalleryRequest {
|
826
|
+
/** ID of the gallery to delete. */
|
827
|
+
galleryId: string;
|
828
|
+
}
|
225
829
|
interface DeleteGalleryResponse {
|
226
830
|
/**
|
227
831
|
* ID of the deleted gallery.
|
@@ -229,10 +833,65 @@ interface DeleteGalleryResponse {
|
|
229
833
|
*/
|
230
834
|
galleryId?: string;
|
231
835
|
}
|
836
|
+
interface DeleteGalleryItemsRequest {
|
837
|
+
/** Gallery ID. */
|
838
|
+
galleryId: string;
|
839
|
+
/** ID of the media item to delete. */
|
840
|
+
itemsIds?: string[];
|
841
|
+
}
|
232
842
|
interface DeleteGalleryItemsResponse {
|
233
843
|
/** Gallery that previously included the deleted media item. */
|
234
844
|
gallery?: Gallery;
|
235
845
|
}
|
846
|
+
interface BulkDeleteGalleryItemsRequest {
|
847
|
+
/** Gallery ID. */
|
848
|
+
galleryId?: string;
|
849
|
+
/** ID of the media item to delete. */
|
850
|
+
itemIds?: string[];
|
851
|
+
}
|
852
|
+
interface BulkDeleteGalleryItemsResponse {
|
853
|
+
/**
|
854
|
+
* ID of the deleted media items.
|
855
|
+
* @readonly
|
856
|
+
*/
|
857
|
+
itemIds?: string[];
|
858
|
+
}
|
859
|
+
interface CreateGalleryItemRequest {
|
860
|
+
/** Gallery ID. */
|
861
|
+
galleryId: string;
|
862
|
+
/** Media item to create. */
|
863
|
+
item: Item;
|
864
|
+
}
|
865
|
+
interface CreateGalleryItemResponse {
|
866
|
+
/** Created media item. */
|
867
|
+
item?: Item;
|
868
|
+
}
|
869
|
+
interface CreateGalleryItemsRequest {
|
870
|
+
/** Gallery ID. */
|
871
|
+
galleryId?: string;
|
872
|
+
/** Media items to create. */
|
873
|
+
items?: Item[];
|
874
|
+
}
|
875
|
+
interface CreateGalleryItemsResponse {
|
876
|
+
/** Created media items. */
|
877
|
+
items?: Item[];
|
878
|
+
}
|
879
|
+
interface UpdateGalleryItemRequest {
|
880
|
+
/** Gallery ID. */
|
881
|
+
galleryId: string;
|
882
|
+
/** The information for the media item being updated. */
|
883
|
+
item: Item;
|
884
|
+
}
|
885
|
+
interface UpdateGalleryItemResponse {
|
886
|
+
/** Updated media item. */
|
887
|
+
item?: Item;
|
888
|
+
}
|
889
|
+
interface DeleteGalleryItemRequest {
|
890
|
+
/** Gallery ID. */
|
891
|
+
galleryId: string;
|
892
|
+
/** ID of the media item to delete. */
|
893
|
+
itemId: string;
|
894
|
+
}
|
236
895
|
interface DeleteGalleryItemResponse {
|
237
896
|
/**
|
238
897
|
* ID of the deleted media item.
|
@@ -240,69 +899,134 @@ interface DeleteGalleryItemResponse {
|
|
240
899
|
*/
|
241
900
|
itemId?: string;
|
242
901
|
}
|
902
|
+
interface PublishGalleryRequest {
|
903
|
+
/** ID of the gallery to publish. */
|
904
|
+
galleryId?: string;
|
905
|
+
}
|
906
|
+
interface PublishGalleryResponse {
|
907
|
+
/** Published gallery. */
|
908
|
+
gallery?: Gallery;
|
909
|
+
}
|
910
|
+
interface RestoreInfo {
|
911
|
+
deletedDate?: Date;
|
912
|
+
}
|
913
|
+
interface PointNonNullableFields {
|
914
|
+
x: number;
|
915
|
+
y: number;
|
916
|
+
}
|
917
|
+
interface ImageNonNullableFields {
|
918
|
+
type: ImageType;
|
919
|
+
imageInfo: string;
|
920
|
+
focalPoint?: PointNonNullableFields;
|
921
|
+
}
|
922
|
+
interface VideoNonNullableFields {
|
923
|
+
type: VideoType;
|
924
|
+
videoInfo: string;
|
925
|
+
}
|
926
|
+
interface ExternalLinkNonNullableFields {
|
927
|
+
url: string;
|
928
|
+
}
|
929
|
+
interface PageLinkNonNullableFields {
|
930
|
+
pageId: string;
|
931
|
+
rel: LinkRel[];
|
932
|
+
}
|
933
|
+
interface AnchorLinkNonNullableFields {
|
934
|
+
anchorName: string;
|
935
|
+
anchorDataId: string;
|
936
|
+
pageId: string;
|
937
|
+
rel: LinkRel[];
|
938
|
+
}
|
939
|
+
interface DynamicPageLinkNonNullableFields {
|
940
|
+
routerId: string;
|
941
|
+
innerRoute: string;
|
942
|
+
rel: LinkRel[];
|
943
|
+
}
|
944
|
+
interface DocumentLinkNonNullableFields {
|
945
|
+
docId: string;
|
946
|
+
indexable: boolean;
|
947
|
+
}
|
948
|
+
interface EmailLinkNonNullableFields {
|
949
|
+
recipient: string;
|
950
|
+
}
|
951
|
+
interface PhoneLinkNonNullableFields {
|
952
|
+
phoneNumber: string;
|
953
|
+
}
|
954
|
+
interface AddressLinkNonNullableFields {
|
955
|
+
address: string;
|
956
|
+
}
|
957
|
+
interface WhatsAppLinkNonNullableFields {
|
958
|
+
phoneNumber: string;
|
959
|
+
}
|
960
|
+
interface TpaPageLinkNonNullableFields {
|
961
|
+
itemTypeIdentifier: string;
|
962
|
+
itemId: string;
|
963
|
+
pageId: string;
|
964
|
+
appDefinitionId: string;
|
965
|
+
path: string;
|
966
|
+
rel: LinkRel[];
|
967
|
+
}
|
968
|
+
interface WixLinkNonNullableFields {
|
969
|
+
external?: ExternalLinkNonNullableFields;
|
970
|
+
page?: PageLinkNonNullableFields;
|
971
|
+
anchor?: AnchorLinkNonNullableFields;
|
972
|
+
dynamicPage?: DynamicPageLinkNonNullableFields;
|
973
|
+
document?: DocumentLinkNonNullableFields;
|
974
|
+
email?: EmailLinkNonNullableFields;
|
975
|
+
phone?: PhoneLinkNonNullableFields;
|
976
|
+
address?: AddressLinkNonNullableFields;
|
977
|
+
whatsApp?: WhatsAppLinkNonNullableFields;
|
978
|
+
tpaPage?: TpaPageLinkNonNullableFields;
|
979
|
+
}
|
980
|
+
interface LinkNonNullableFields {
|
981
|
+
type: LinkType;
|
982
|
+
wixLinkData?: WixLinkNonNullableFields;
|
983
|
+
}
|
984
|
+
interface TagsNonNullableFields {
|
985
|
+
values: string[];
|
986
|
+
}
|
987
|
+
interface SecondaryMediaNonNullableFields {
|
988
|
+
image?: ImageNonNullableFields;
|
989
|
+
}
|
990
|
+
interface ItemNonNullableFields {
|
991
|
+
image?: ImageNonNullableFields;
|
992
|
+
video?: VideoNonNullableFields;
|
993
|
+
link?: LinkNonNullableFields;
|
994
|
+
type: Type;
|
995
|
+
tags?: TagsNonNullableFields;
|
996
|
+
secondaryMedia?: SecondaryMediaNonNullableFields;
|
997
|
+
}
|
998
|
+
interface GalleryNonNullableFields {
|
999
|
+
items: ItemNonNullableFields[];
|
1000
|
+
}
|
243
1001
|
interface ListGalleriesResponseNonNullableFields {
|
244
|
-
galleries:
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
focalPoint?: {
|
249
|
-
x: number;
|
250
|
-
y: number;
|
251
|
-
};
|
252
|
-
};
|
253
|
-
video?: {
|
254
|
-
type: VideoType;
|
255
|
-
videoInfo: string;
|
256
|
-
};
|
257
|
-
type: Type;
|
258
|
-
tags?: {
|
259
|
-
values: string[];
|
260
|
-
};
|
261
|
-
}[];
|
262
|
-
}[];
|
1002
|
+
galleries: GalleryNonNullableFields[];
|
1003
|
+
}
|
1004
|
+
interface GetGalleryResponseNonNullableFields {
|
1005
|
+
gallery?: GalleryNonNullableFields;
|
263
1006
|
}
|
264
1007
|
interface ListGalleryItemsResponseNonNullableFields {
|
265
|
-
items:
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
videoInfo: string;
|
276
|
-
};
|
277
|
-
type: Type;
|
278
|
-
tags?: {
|
279
|
-
values: string[];
|
280
|
-
};
|
281
|
-
}[];
|
1008
|
+
items: ItemNonNullableFields[];
|
1009
|
+
}
|
1010
|
+
interface GetGalleryItemResponseNonNullableFields {
|
1011
|
+
item?: ItemNonNullableFields;
|
1012
|
+
}
|
1013
|
+
interface CreateGalleryResponseNonNullableFields {
|
1014
|
+
gallery?: GalleryNonNullableFields;
|
1015
|
+
}
|
1016
|
+
interface UpdateGalleryResponseNonNullableFields {
|
1017
|
+
gallery?: GalleryNonNullableFields;
|
282
1018
|
}
|
283
1019
|
interface DeleteGalleryResponseNonNullableFields {
|
284
1020
|
galleryId: string;
|
285
1021
|
}
|
286
1022
|
interface DeleteGalleryItemsResponseNonNullableFields {
|
287
|
-
gallery?:
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
};
|
295
|
-
};
|
296
|
-
video?: {
|
297
|
-
type: VideoType;
|
298
|
-
videoInfo: string;
|
299
|
-
};
|
300
|
-
type: Type;
|
301
|
-
tags?: {
|
302
|
-
values: string[];
|
303
|
-
};
|
304
|
-
}[];
|
305
|
-
};
|
1023
|
+
gallery?: GalleryNonNullableFields;
|
1024
|
+
}
|
1025
|
+
interface CreateGalleryItemResponseNonNullableFields {
|
1026
|
+
item?: ItemNonNullableFields;
|
1027
|
+
}
|
1028
|
+
interface UpdateGalleryItemResponseNonNullableFields {
|
1029
|
+
item?: ItemNonNullableFields;
|
306
1030
|
}
|
307
1031
|
interface DeleteGalleryItemResponseNonNullableFields {
|
308
1032
|
itemId: string;
|
@@ -511,7 +1235,8 @@ interface DeleteGalleryItemIdentifiers {
|
|
511
1235
|
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
512
1236
|
interface HttpClient {
|
513
1237
|
request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
|
514
|
-
fetchWithAuth:
|
1238
|
+
fetchWithAuth: typeof fetch;
|
1239
|
+
wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
|
515
1240
|
}
|
516
1241
|
type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
|
517
1242
|
type HttpResponse<T = any> = {
|
@@ -551,144 +1276,177 @@ declare global {
|
|
551
1276
|
}
|
552
1277
|
}
|
553
1278
|
|
554
|
-
declare function
|
555
|
-
|
556
|
-
|
557
|
-
image?: {
|
558
|
-
imageInfo: string;
|
559
|
-
focalPoint?: {
|
560
|
-
x: number;
|
561
|
-
y: number;
|
562
|
-
} | undefined;
|
563
|
-
} | undefined;
|
564
|
-
video?: {
|
565
|
-
type: VideoType;
|
566
|
-
videoInfo: string;
|
567
|
-
} | undefined;
|
568
|
-
type: Type;
|
569
|
-
tags?: {
|
570
|
-
values: string[];
|
571
|
-
} | undefined;
|
572
|
-
}[];
|
573
|
-
}>;
|
574
|
-
declare function listGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: ListGalleryItemsOptions) => Promise<ListGalleryItemsResponse & ListGalleryItemsResponseNonNullableFields>;
|
575
|
-
declare function getGalleryItem$1(httpClient: HttpClient): (identifiers: GetGalleryItemIdentifiers) => Promise<Item & {
|
576
|
-
image?: {
|
577
|
-
imageInfo: string;
|
578
|
-
focalPoint?: {
|
579
|
-
x: number;
|
580
|
-
y: number;
|
581
|
-
} | undefined;
|
582
|
-
} | undefined;
|
583
|
-
video?: {
|
584
|
-
type: VideoType;
|
585
|
-
videoInfo: string;
|
586
|
-
} | undefined;
|
587
|
-
type: Type;
|
588
|
-
tags?: {
|
589
|
-
values: string[];
|
590
|
-
} | undefined;
|
591
|
-
}>;
|
592
|
-
declare function createGallery$1(httpClient: HttpClient): (options?: CreateGalleryOptions) => Promise<Gallery & {
|
593
|
-
items: {
|
594
|
-
image?: {
|
595
|
-
imageInfo: string;
|
596
|
-
focalPoint?: {
|
597
|
-
x: number;
|
598
|
-
y: number;
|
599
|
-
} | undefined;
|
600
|
-
} | undefined;
|
601
|
-
video?: {
|
602
|
-
type: VideoType;
|
603
|
-
videoInfo: string;
|
604
|
-
} | undefined;
|
605
|
-
type: Type;
|
606
|
-
tags?: {
|
607
|
-
values: string[];
|
608
|
-
} | undefined;
|
609
|
-
}[];
|
610
|
-
}>;
|
611
|
-
declare function updateGallery$1(httpClient: HttpClient): (_id: string | null, gallery: UpdateGallery) => Promise<Gallery & {
|
612
|
-
items: {
|
613
|
-
image?: {
|
614
|
-
imageInfo: string;
|
615
|
-
focalPoint?: {
|
616
|
-
x: number;
|
617
|
-
y: number;
|
618
|
-
} | undefined;
|
619
|
-
} | undefined;
|
620
|
-
video?: {
|
621
|
-
type: VideoType;
|
622
|
-
videoInfo: string;
|
623
|
-
} | undefined;
|
624
|
-
type: Type;
|
625
|
-
tags?: {
|
626
|
-
values: string[];
|
627
|
-
} | undefined;
|
628
|
-
}[];
|
629
|
-
}>;
|
630
|
-
declare function deleteGallery$1(httpClient: HttpClient): (galleryId: string) => Promise<DeleteGalleryResponse & DeleteGalleryResponseNonNullableFields>;
|
631
|
-
declare function deleteGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: DeleteGalleryItemsOptions) => Promise<DeleteGalleryItemsResponse & DeleteGalleryItemsResponseNonNullableFields>;
|
632
|
-
declare function createGalleryItem$1(httpClient: HttpClient): (galleryId: string, item: Item) => Promise<Item & {
|
633
|
-
image?: {
|
634
|
-
imageInfo: string;
|
635
|
-
focalPoint?: {
|
636
|
-
x: number;
|
637
|
-
y: number;
|
638
|
-
} | undefined;
|
639
|
-
} | undefined;
|
640
|
-
video?: {
|
641
|
-
type: VideoType;
|
642
|
-
videoInfo: string;
|
643
|
-
} | undefined;
|
644
|
-
type: Type;
|
645
|
-
tags?: {
|
646
|
-
values: string[];
|
647
|
-
} | undefined;
|
648
|
-
}>;
|
649
|
-
declare function updateGalleryItem$1(httpClient: HttpClient): (identifiers: UpdateGalleryItemIdentifiers, item: UpdateGalleryItem) => Promise<Item & {
|
650
|
-
image?: {
|
651
|
-
imageInfo: string;
|
652
|
-
focalPoint?: {
|
653
|
-
x: number;
|
654
|
-
y: number;
|
655
|
-
} | undefined;
|
656
|
-
} | undefined;
|
657
|
-
video?: {
|
658
|
-
type: VideoType;
|
659
|
-
videoInfo: string;
|
660
|
-
} | undefined;
|
661
|
-
type: Type;
|
662
|
-
tags?: {
|
663
|
-
values: string[];
|
664
|
-
} | undefined;
|
665
|
-
}>;
|
666
|
-
declare function deleteGalleryItem$1(httpClient: HttpClient): (identifiers: DeleteGalleryItemIdentifiers) => Promise<DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields>;
|
667
|
-
declare const onGalleryCreated$1: EventDefinition<GalleryCreatedEnvelope, "wix.pro_gallery.gallery_v2_created">;
|
668
|
-
declare const onGalleryUpdated$1: EventDefinition<GalleryUpdatedEnvelope, "wix.pro_gallery.gallery_v2_updated">;
|
669
|
-
declare const onGalleryDeleted$1: EventDefinition<GalleryDeletedEnvelope, "wix.pro_gallery.gallery_v2_deleted">;
|
670
|
-
declare const onGalleryItemCreated$1: EventDefinition<GalleryItemCreatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_created">;
|
671
|
-
declare const onGalleryItemUpdated$1: EventDefinition<GalleryItemUpdatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_updated">;
|
672
|
-
declare const onGalleryItemDeleted$1: EventDefinition<GalleryItemDeletedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_deleted">;
|
1279
|
+
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
1280
|
+
|
1281
|
+
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
673
1282
|
|
674
|
-
declare const listGalleries:
|
675
|
-
declare const getGallery:
|
676
|
-
declare const listGalleryItems:
|
677
|
-
declare const getGalleryItem:
|
678
|
-
declare const createGallery:
|
679
|
-
declare const updateGallery:
|
680
|
-
declare const deleteGallery:
|
681
|
-
declare const deleteGalleryItems:
|
682
|
-
declare const createGalleryItem:
|
683
|
-
declare const updateGalleryItem:
|
684
|
-
declare const deleteGalleryItem:
|
685
|
-
declare const onGalleryCreated:
|
686
|
-
declare const onGalleryUpdated:
|
687
|
-
declare const onGalleryDeleted:
|
688
|
-
declare const onGalleryItemCreated:
|
689
|
-
declare const onGalleryItemUpdated:
|
690
|
-
declare const onGalleryItemDeleted:
|
1283
|
+
declare const listGalleries: ReturnType<typeof createRESTModule<typeof publicListGalleries>>;
|
1284
|
+
declare const getGallery: ReturnType<typeof createRESTModule<typeof publicGetGallery>>;
|
1285
|
+
declare const listGalleryItems: ReturnType<typeof createRESTModule<typeof publicListGalleryItems>>;
|
1286
|
+
declare const getGalleryItem: ReturnType<typeof createRESTModule<typeof publicGetGalleryItem>>;
|
1287
|
+
declare const createGallery: ReturnType<typeof createRESTModule<typeof publicCreateGallery>>;
|
1288
|
+
declare const updateGallery: ReturnType<typeof createRESTModule<typeof publicUpdateGallery>>;
|
1289
|
+
declare const deleteGallery: ReturnType<typeof createRESTModule<typeof publicDeleteGallery>>;
|
1290
|
+
declare const deleteGalleryItems: ReturnType<typeof createRESTModule<typeof publicDeleteGalleryItems>>;
|
1291
|
+
declare const createGalleryItem: ReturnType<typeof createRESTModule<typeof publicCreateGalleryItem>>;
|
1292
|
+
declare const updateGalleryItem: ReturnType<typeof createRESTModule<typeof publicUpdateGalleryItem>>;
|
1293
|
+
declare const deleteGalleryItem: ReturnType<typeof createRESTModule<typeof publicDeleteGalleryItem>>;
|
1294
|
+
declare const onGalleryCreated: ReturnType<typeof createEventModule<typeof publicOnGalleryCreated>>;
|
1295
|
+
declare const onGalleryUpdated: ReturnType<typeof createEventModule<typeof publicOnGalleryUpdated>>;
|
1296
|
+
declare const onGalleryDeleted: ReturnType<typeof createEventModule<typeof publicOnGalleryDeleted>>;
|
1297
|
+
declare const onGalleryItemCreated: ReturnType<typeof createEventModule<typeof publicOnGalleryItemCreated>>;
|
1298
|
+
declare const onGalleryItemUpdated: ReturnType<typeof createEventModule<typeof publicOnGalleryItemUpdated>>;
|
1299
|
+
declare const onGalleryItemDeleted: ReturnType<typeof createEventModule<typeof publicOnGalleryItemDeleted>>;
|
691
1300
|
|
1301
|
+
type context_ActionEvent = ActionEvent;
|
1302
|
+
type context_AddressLink = AddressLink;
|
1303
|
+
type context_AnchorLink = AnchorLink;
|
1304
|
+
type context_App = App;
|
1305
|
+
type context_BaseEventMetadata = BaseEventMetadata;
|
1306
|
+
type context_BulkDeleteGalleryItemsRequest = BulkDeleteGalleryItemsRequest;
|
1307
|
+
type context_BulkDeleteGalleryItemsResponse = BulkDeleteGalleryItemsResponse;
|
1308
|
+
type context_CleanDeletedGalleriesEvent = CleanDeletedGalleriesEvent;
|
1309
|
+
type context_CreateGalleryItemRequest = CreateGalleryItemRequest;
|
1310
|
+
type context_CreateGalleryItemResponse = CreateGalleryItemResponse;
|
1311
|
+
type context_CreateGalleryItemResponseNonNullableFields = CreateGalleryItemResponseNonNullableFields;
|
1312
|
+
type context_CreateGalleryItemsRequest = CreateGalleryItemsRequest;
|
1313
|
+
type context_CreateGalleryItemsResponse = CreateGalleryItemsResponse;
|
1314
|
+
type context_CreateGalleryOptions = CreateGalleryOptions;
|
1315
|
+
type context_CreateGalleryRequest = CreateGalleryRequest;
|
1316
|
+
type context_CreateGalleryResponse = CreateGalleryResponse;
|
1317
|
+
type context_CreateGalleryResponseNonNullableFields = CreateGalleryResponseNonNullableFields;
|
1318
|
+
type context_DeleteByFilterOperation = DeleteByFilterOperation;
|
1319
|
+
type context_DeleteByIdsOperation = DeleteByIdsOperation;
|
1320
|
+
type context_DeleteGalleryItemIdentifiers = DeleteGalleryItemIdentifiers;
|
1321
|
+
type context_DeleteGalleryItemRequest = DeleteGalleryItemRequest;
|
1322
|
+
type context_DeleteGalleryItemResponse = DeleteGalleryItemResponse;
|
1323
|
+
type context_DeleteGalleryItemResponseNonNullableFields = DeleteGalleryItemResponseNonNullableFields;
|
1324
|
+
type context_DeleteGalleryItemsOptions = DeleteGalleryItemsOptions;
|
1325
|
+
type context_DeleteGalleryItemsRequest = DeleteGalleryItemsRequest;
|
1326
|
+
type context_DeleteGalleryItemsResponse = DeleteGalleryItemsResponse;
|
1327
|
+
type context_DeleteGalleryItemsResponseNonNullableFields = DeleteGalleryItemsResponseNonNullableFields;
|
1328
|
+
type context_DeleteGalleryRequest = DeleteGalleryRequest;
|
1329
|
+
type context_DeleteGalleryResponse = DeleteGalleryResponse;
|
1330
|
+
type context_DeleteGalleryResponseNonNullableFields = DeleteGalleryResponseNonNullableFields;
|
1331
|
+
type context_DocumentImage = DocumentImage;
|
1332
|
+
type context_DocumentLink = DocumentLink;
|
1333
|
+
type context_DocumentPayload = DocumentPayload;
|
1334
|
+
type context_DocumentUpdateOperation = DocumentUpdateOperation;
|
1335
|
+
type context_DomainEvent = DomainEvent;
|
1336
|
+
type context_DomainEventBodyOneOf = DomainEventBodyOneOf;
|
1337
|
+
type context_DynamicPageLink = DynamicPageLink;
|
1338
|
+
type context_EmailLink = EmailLink;
|
1339
|
+
type context_Empty = Empty;
|
1340
|
+
type context_EntityCreatedEvent = EntityCreatedEvent;
|
1341
|
+
type context_EntityDeletedEvent = EntityDeletedEvent;
|
1342
|
+
type context_EntityUpdatedEvent = EntityUpdatedEvent;
|
1343
|
+
type context_Enum = Enum;
|
1344
|
+
declare const context_Enum: typeof Enum;
|
1345
|
+
type context_EventMetadata = EventMetadata;
|
1346
|
+
type context_EventsPage = EventsPage;
|
1347
|
+
type context_ExternalLink = ExternalLink;
|
1348
|
+
type context_File = File;
|
1349
|
+
type context_Gallery = Gallery;
|
1350
|
+
type context_GalleryCreatedEnvelope = GalleryCreatedEnvelope;
|
1351
|
+
type context_GalleryDeletedEnvelope = GalleryDeletedEnvelope;
|
1352
|
+
type context_GalleryItemCreated = GalleryItemCreated;
|
1353
|
+
type context_GalleryItemCreatedEnvelope = GalleryItemCreatedEnvelope;
|
1354
|
+
type context_GalleryItemDeleted = GalleryItemDeleted;
|
1355
|
+
type context_GalleryItemDeletedEnvelope = GalleryItemDeletedEnvelope;
|
1356
|
+
type context_GalleryItemUpdated = GalleryItemUpdated;
|
1357
|
+
type context_GalleryItemUpdatedEnvelope = GalleryItemUpdatedEnvelope;
|
1358
|
+
type context_GalleryNonNullableFields = GalleryNonNullableFields;
|
1359
|
+
type context_GalleryPublished = GalleryPublished;
|
1360
|
+
type context_GalleryUpdatedEnvelope = GalleryUpdatedEnvelope;
|
1361
|
+
type context_GetGalleryItemIdentifiers = GetGalleryItemIdentifiers;
|
1362
|
+
type context_GetGalleryItemRequest = GetGalleryItemRequest;
|
1363
|
+
type context_GetGalleryItemResponse = GetGalleryItemResponse;
|
1364
|
+
type context_GetGalleryItemResponseNonNullableFields = GetGalleryItemResponseNonNullableFields;
|
1365
|
+
type context_GetGalleryOptions = GetGalleryOptions;
|
1366
|
+
type context_GetGalleryRequest = GetGalleryRequest;
|
1367
|
+
type context_GetGalleryRequestVersionOneOf = GetGalleryRequestVersionOneOf;
|
1368
|
+
type context_GetGalleryResponse = GetGalleryResponse;
|
1369
|
+
type context_GetGalleryResponseNonNullableFields = GetGalleryResponseNonNullableFields;
|
1370
|
+
type context_HtmlSitePublished = HtmlSitePublished;
|
1371
|
+
type context_HtmlSiteRCPublished = HtmlSiteRCPublished;
|
1372
|
+
type context_IdentificationData = IdentificationData;
|
1373
|
+
type context_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
|
1374
|
+
type context_Image = Image;
|
1375
|
+
type context_ImageType = ImageType;
|
1376
|
+
declare const context_ImageType: typeof ImageType;
|
1377
|
+
type context_IndexDocument = IndexDocument;
|
1378
|
+
type context_InvalidateCache = InvalidateCache;
|
1379
|
+
type context_InvalidateCacheGetByOneOf = InvalidateCacheGetByOneOf;
|
1380
|
+
type context_Item = Item;
|
1381
|
+
type context_ItemId = ItemId;
|
1382
|
+
type context_ItemMetadataOneOf = ItemMetadataOneOf;
|
1383
|
+
type context_ItemNonNullableFields = ItemNonNullableFields;
|
1384
|
+
type context_ItemsInGallery = ItemsInGallery;
|
1385
|
+
type context_Link = Link;
|
1386
|
+
type context_LinkRel = LinkRel;
|
1387
|
+
declare const context_LinkRel: typeof LinkRel;
|
1388
|
+
type context_LinkType = LinkType;
|
1389
|
+
declare const context_LinkType: typeof LinkType;
|
1390
|
+
type context_ListGalleriesItemsRequest = ListGalleriesItemsRequest;
|
1391
|
+
type context_ListGalleriesItemsResponse = ListGalleriesItemsResponse;
|
1392
|
+
type context_ListGalleriesOptions = ListGalleriesOptions;
|
1393
|
+
type context_ListGalleriesRequest = ListGalleriesRequest;
|
1394
|
+
type context_ListGalleriesResponse = ListGalleriesResponse;
|
1395
|
+
type context_ListGalleriesResponseNonNullableFields = ListGalleriesResponseNonNullableFields;
|
1396
|
+
type context_ListGalleryItemsOptions = ListGalleryItemsOptions;
|
1397
|
+
type context_ListGalleryItemsRequest = ListGalleryItemsRequest;
|
1398
|
+
type context_ListGalleryItemsResponse = ListGalleryItemsResponse;
|
1399
|
+
type context_ListGalleryItemsResponseNonNullableFields = ListGalleryItemsResponseNonNullableFields;
|
1400
|
+
type context_MessageEnvelope = MessageEnvelope;
|
1401
|
+
type context_Page = Page;
|
1402
|
+
type context_PageLink = PageLink;
|
1403
|
+
type context_PhoneLink = PhoneLink;
|
1404
|
+
type context_Point = Point;
|
1405
|
+
type context_ProgallerypublisherPublishGalleryRequest = ProgallerypublisherPublishGalleryRequest;
|
1406
|
+
type context_ProgallerypublisherPublishGalleryResponse = ProgallerypublisherPublishGalleryResponse;
|
1407
|
+
type context_PublishGalleryItemRequest = PublishGalleryItemRequest;
|
1408
|
+
type context_PublishGalleryItemResponse = PublishGalleryItemResponse;
|
1409
|
+
type context_PublishGalleryItemsRequest = PublishGalleryItemsRequest;
|
1410
|
+
type context_PublishGalleryItemsResponse = PublishGalleryItemsResponse;
|
1411
|
+
type context_PublishGalleryRequest = PublishGalleryRequest;
|
1412
|
+
type context_PublishGalleryResponse = PublishGalleryResponse;
|
1413
|
+
type context_RestoreInfo = RestoreInfo;
|
1414
|
+
type context_SearchIndexingNotification = SearchIndexingNotification;
|
1415
|
+
type context_SearchIndexingNotificationState = SearchIndexingNotificationState;
|
1416
|
+
declare const context_SearchIndexingNotificationState: typeof SearchIndexingNotificationState;
|
1417
|
+
type context_SecondaryMedia = SecondaryMedia;
|
1418
|
+
type context_SecondaryMediaMetadataOneOf = SecondaryMediaMetadataOneOf;
|
1419
|
+
type context_State = State;
|
1420
|
+
declare const context_State: typeof State;
|
1421
|
+
type context_Tags = Tags;
|
1422
|
+
type context_Text = Text;
|
1423
|
+
type context_TpaPageLink = TpaPageLink;
|
1424
|
+
type context_Type = Type;
|
1425
|
+
declare const context_Type: typeof Type;
|
1426
|
+
type context_URI = URI;
|
1427
|
+
type context_UnsharpMasking = UnsharpMasking;
|
1428
|
+
type context_UpdateByFilterOperation = UpdateByFilterOperation;
|
1429
|
+
type context_UpdateDocumentsEvent = UpdateDocumentsEvent;
|
1430
|
+
type context_UpdateDocumentsEventOperationOneOf = UpdateDocumentsEventOperationOneOf;
|
1431
|
+
type context_UpdateExistingOperation = UpdateExistingOperation;
|
1432
|
+
type context_UpdateGallery = UpdateGallery;
|
1433
|
+
type context_UpdateGalleryItem = UpdateGalleryItem;
|
1434
|
+
type context_UpdateGalleryItemIdentifiers = UpdateGalleryItemIdentifiers;
|
1435
|
+
type context_UpdateGalleryItemRequest = UpdateGalleryItemRequest;
|
1436
|
+
type context_UpdateGalleryItemResponse = UpdateGalleryItemResponse;
|
1437
|
+
type context_UpdateGalleryItemResponseNonNullableFields = UpdateGalleryItemResponseNonNullableFields;
|
1438
|
+
type context_UpdateGalleryRequest = UpdateGalleryRequest;
|
1439
|
+
type context_UpdateGalleryResponse = UpdateGalleryResponse;
|
1440
|
+
type context_UpdateGalleryResponseNonNullableFields = UpdateGalleryResponseNonNullableFields;
|
1441
|
+
type context_Video = Video;
|
1442
|
+
type context_VideoResolution = VideoResolution;
|
1443
|
+
type context_VideoType = VideoType;
|
1444
|
+
declare const context_VideoType: typeof VideoType;
|
1445
|
+
type context_WebhookIdentityType = WebhookIdentityType;
|
1446
|
+
declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
1447
|
+
type context_WhatsAppLink = WhatsAppLink;
|
1448
|
+
type context_WixLink = WixLink;
|
1449
|
+
type context_WixLinkLinkOneOf = WixLinkLinkOneOf;
|
692
1450
|
declare const context_createGallery: typeof createGallery;
|
693
1451
|
declare const context_createGalleryItem: typeof createGalleryItem;
|
694
1452
|
declare const context_deleteGallery: typeof deleteGallery;
|
@@ -707,7 +1465,7 @@ declare const context_onGalleryUpdated: typeof onGalleryUpdated;
|
|
707
1465
|
declare const context_updateGallery: typeof updateGallery;
|
708
1466
|
declare const context_updateGalleryItem: typeof updateGalleryItem;
|
709
1467
|
declare namespace context {
|
710
|
-
export { context_createGallery as createGallery, context_createGalleryItem as createGalleryItem, context_deleteGallery as deleteGallery, context_deleteGalleryItem as deleteGalleryItem, context_deleteGalleryItems as deleteGalleryItems, context_getGallery as getGallery, context_getGalleryItem as getGalleryItem, context_listGalleries as listGalleries, context_listGalleryItems as listGalleryItems, context_onGalleryCreated as onGalleryCreated, context_onGalleryDeleted as onGalleryDeleted, context_onGalleryItemCreated as onGalleryItemCreated, context_onGalleryItemDeleted as onGalleryItemDeleted, context_onGalleryItemUpdated as onGalleryItemUpdated, context_onGalleryUpdated as onGalleryUpdated, context_updateGallery as updateGallery, context_updateGalleryItem as updateGalleryItem };
|
1468
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressLink as AddressLink, type context_AnchorLink as AnchorLink, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkDeleteGalleryItemsRequest as BulkDeleteGalleryItemsRequest, type context_BulkDeleteGalleryItemsResponse as BulkDeleteGalleryItemsResponse, type context_CleanDeletedGalleriesEvent as CleanDeletedGalleriesEvent, type context_CreateGalleryItemRequest as CreateGalleryItemRequest, type context_CreateGalleryItemResponse as CreateGalleryItemResponse, type context_CreateGalleryItemResponseNonNullableFields as CreateGalleryItemResponseNonNullableFields, type context_CreateGalleryItemsRequest as CreateGalleryItemsRequest, type context_CreateGalleryItemsResponse as CreateGalleryItemsResponse, type context_CreateGalleryOptions as CreateGalleryOptions, type context_CreateGalleryRequest as CreateGalleryRequest, type context_CreateGalleryResponse as CreateGalleryResponse, type context_CreateGalleryResponseNonNullableFields as CreateGalleryResponseNonNullableFields, type context_DeleteByFilterOperation as DeleteByFilterOperation, type context_DeleteByIdsOperation as DeleteByIdsOperation, type context_DeleteGalleryItemIdentifiers as DeleteGalleryItemIdentifiers, type context_DeleteGalleryItemRequest as DeleteGalleryItemRequest, type context_DeleteGalleryItemResponse as DeleteGalleryItemResponse, type context_DeleteGalleryItemResponseNonNullableFields as DeleteGalleryItemResponseNonNullableFields, type context_DeleteGalleryItemsOptions as DeleteGalleryItemsOptions, type context_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type context_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type context_DeleteGalleryItemsResponseNonNullableFields as DeleteGalleryItemsResponseNonNullableFields, type context_DeleteGalleryRequest as DeleteGalleryRequest, type context_DeleteGalleryResponse as DeleteGalleryResponse, type context_DeleteGalleryResponseNonNullableFields as DeleteGalleryResponseNonNullableFields, type context_DocumentImage as DocumentImage, type context_DocumentLink as DocumentLink, type context_DocumentPayload as DocumentPayload, type context_DocumentUpdateOperation as DocumentUpdateOperation, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DynamicPageLink as DynamicPageLink, type context_EmailLink as EmailLink, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, context_Enum as Enum, type context_EventMetadata as EventMetadata, type context_EventsPage as EventsPage, type context_ExternalLink as ExternalLink, type context_File as File, type context_Gallery as Gallery, type context_GalleryCreatedEnvelope as GalleryCreatedEnvelope, type context_GalleryDeletedEnvelope as GalleryDeletedEnvelope, type context_GalleryItemCreated as GalleryItemCreated, type context_GalleryItemCreatedEnvelope as GalleryItemCreatedEnvelope, type context_GalleryItemDeleted as GalleryItemDeleted, type context_GalleryItemDeletedEnvelope as GalleryItemDeletedEnvelope, type context_GalleryItemUpdated as GalleryItemUpdated, type context_GalleryItemUpdatedEnvelope as GalleryItemUpdatedEnvelope, type context_GalleryNonNullableFields as GalleryNonNullableFields, type context_GalleryPublished as GalleryPublished, type context_GalleryUpdatedEnvelope as GalleryUpdatedEnvelope, type context_GetGalleryItemIdentifiers as GetGalleryItemIdentifiers, type context_GetGalleryItemRequest as GetGalleryItemRequest, type context_GetGalleryItemResponse as GetGalleryItemResponse, type context_GetGalleryItemResponseNonNullableFields as GetGalleryItemResponseNonNullableFields, type context_GetGalleryOptions as GetGalleryOptions, type context_GetGalleryRequest as GetGalleryRequest, type context_GetGalleryRequestVersionOneOf as GetGalleryRequestVersionOneOf, type context_GetGalleryResponse as GetGalleryResponse, type context_GetGalleryResponseNonNullableFields as GetGalleryResponseNonNullableFields, type context_HtmlSitePublished as HtmlSitePublished, type context_HtmlSiteRCPublished as HtmlSiteRCPublished, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, context_ImageType as ImageType, type context_IndexDocument as IndexDocument, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemId as ItemId, type context_ItemMetadataOneOf as ItemMetadataOneOf, type context_ItemNonNullableFields as ItemNonNullableFields, type context_ItemsInGallery as ItemsInGallery, type context_Link as Link, context_LinkRel as LinkRel, context_LinkType as LinkType, type context_ListGalleriesItemsRequest as ListGalleriesItemsRequest, type context_ListGalleriesItemsResponse as ListGalleriesItemsResponse, type context_ListGalleriesOptions as ListGalleriesOptions, type context_ListGalleriesRequest as ListGalleriesRequest, type context_ListGalleriesResponse as ListGalleriesResponse, type context_ListGalleriesResponseNonNullableFields as ListGalleriesResponseNonNullableFields, type context_ListGalleryItemsOptions as ListGalleryItemsOptions, type context_ListGalleryItemsRequest as ListGalleryItemsRequest, type context_ListGalleryItemsResponse as ListGalleryItemsResponse, type context_ListGalleryItemsResponseNonNullableFields as ListGalleryItemsResponseNonNullableFields, type context_MessageEnvelope as MessageEnvelope, type context_Page as Page, type context_PageLink as PageLink, type context_PhoneLink as PhoneLink, type context_Point as Point, type context_ProgallerypublisherPublishGalleryRequest as ProgallerypublisherPublishGalleryRequest, type context_ProgallerypublisherPublishGalleryResponse as ProgallerypublisherPublishGalleryResponse, type context_PublishGalleryItemRequest as PublishGalleryItemRequest, type context_PublishGalleryItemResponse as PublishGalleryItemResponse, type context_PublishGalleryItemsRequest as PublishGalleryItemsRequest, type context_PublishGalleryItemsResponse as PublishGalleryItemsResponse, type context_PublishGalleryRequest as PublishGalleryRequest, type context_PublishGalleryResponse as PublishGalleryResponse, type context_RestoreInfo as RestoreInfo, type context_SearchIndexingNotification as SearchIndexingNotification, context_SearchIndexingNotificationState as SearchIndexingNotificationState, type context_SecondaryMedia as SecondaryMedia, type context_SecondaryMediaMetadataOneOf as SecondaryMediaMetadataOneOf, context_State as State, type context_Tags as Tags, type context_Text as Text, type context_TpaPageLink as TpaPageLink, context_Type as Type, type context_URI as URI, type context_UnsharpMasking as UnsharpMasking, type context_UpdateByFilterOperation as UpdateByFilterOperation, type context_UpdateDocumentsEvent as UpdateDocumentsEvent, type context_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context_UpdateExistingOperation as UpdateExistingOperation, type context_UpdateGallery as UpdateGallery, type context_UpdateGalleryItem as UpdateGalleryItem, type context_UpdateGalleryItemIdentifiers as UpdateGalleryItemIdentifiers, type context_UpdateGalleryItemRequest as UpdateGalleryItemRequest, type context_UpdateGalleryItemResponse as UpdateGalleryItemResponse, type context_UpdateGalleryItemResponseNonNullableFields as UpdateGalleryItemResponseNonNullableFields, type context_UpdateGalleryRequest as UpdateGalleryRequest, type context_UpdateGalleryResponse as UpdateGalleryResponse, type context_UpdateGalleryResponseNonNullableFields as UpdateGalleryResponseNonNullableFields, type context_Video as Video, type context_VideoResolution as VideoResolution, context_VideoType as VideoType, context_WebhookIdentityType as WebhookIdentityType, type context_WhatsAppLink as WhatsAppLink, type context_WixLink as WixLink, type context_WixLinkLinkOneOf as WixLinkLinkOneOf, context_createGallery as createGallery, context_createGalleryItem as createGalleryItem, context_deleteGallery as deleteGallery, context_deleteGalleryItem as deleteGalleryItem, context_deleteGalleryItems as deleteGalleryItems, context_getGallery as getGallery, context_getGalleryItem as getGalleryItem, context_listGalleries as listGalleries, context_listGalleryItems as listGalleryItems, context_onGalleryCreated as onGalleryCreated, context_onGalleryDeleted as onGalleryDeleted, context_onGalleryItemCreated as onGalleryItemCreated, context_onGalleryItemDeleted as onGalleryItemDeleted, context_onGalleryItemUpdated as onGalleryItemUpdated, context_onGalleryUpdated as onGalleryUpdated, context_updateGallery as updateGallery, context_updateGalleryItem as updateGalleryItem };
|
711
1469
|
}
|
712
1470
|
|
713
1471
|
export { context as proGallery };
|