@wix/pro-gallery 1.0.45 → 1.0.47

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.
@@ -0,0 +1,1576 @@
1
+ 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
+ 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
+ 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
+ interface Link {
79
+ /** Display text of the link. */
80
+ text?: string | null;
81
+ /** Target URL of the link. */
82
+ url?: string | null;
83
+ }
84
+ declare enum LinkType {
85
+ UNDEFINED = "UNDEFINED",
86
+ /** external link */
87
+ EXTERNAL = "EXTERNAL",
88
+ /** for internal usage using wixLinkData */
89
+ INTERNAL = "INTERNAL"
90
+ }
91
+ /** 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
+ }
231
+ declare enum Type {
232
+ UNDEFINED = "UNDEFINED",
233
+ IMAGE = "IMAGE",
234
+ VIDEO = "VIDEO",
235
+ TEXT = "TEXT"
236
+ }
237
+ interface Image {
238
+ /** The image's Wix media URL in the following format: `'wix:image://v1/<uri>/<filename>#originWidth=<width>&originHeight=<height>[&watermark=<watermark_manifest_string>]'`. */
239
+ imageInfo?: string;
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
+ declare enum ImageType {
255
+ UNDEFINED = "UNDEFINED",
256
+ WIX_MEDIA = "WIX_MEDIA",
257
+ EXTERNAL = "EXTERNAL"
258
+ }
259
+ interface Point {
260
+ /** X-coordinate of the focal point. */
261
+ x?: number;
262
+ /** Y-coordinate of the focal point. */
263
+ y?: number;
264
+ }
265
+ interface UnsharpMasking {
266
+ /**
267
+ * Unsharp masking amount. Controls the sharpening strength. <br />
268
+ *
269
+ * Min: `0` <br />
270
+ * Max: `5`
271
+ */
272
+ amount?: number | null;
273
+ /** Unsharp masking radius in pixels. Controls the sharpening width. */
274
+ radius?: number | null;
275
+ /**
276
+ * Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply. <br />
277
+ *
278
+ * Min: `0` <br />
279
+ * Max: `1`
280
+ */
281
+ threshold?: number | null;
282
+ }
283
+ interface Video {
284
+ type?: VideoType;
285
+ /**
286
+ * The video's URL. Either a Wix media URL, or a supported https external URL in the following formats:
287
+ *
288
+ * Wix Media: `'wix:video://v1/6e6ea4_461425d7e7db4d5487a28e00c5ba6244/9e6ea4_461425d7e7db4d5487a28e00c5ba6277#posterUri=9e6ea4_461425d7e7db4d5487a28e00c5ba6277f000.jpg&posterWidth=960&posterHeight=540'`
289
+ *
290
+ * Vimeo: `'https://vimeo.com/378840916'`
291
+ *
292
+ * Youtube: `'https://www.youtube.com/results?search_query=uplifting+upbeat+music'`
293
+ */
294
+ videoInfo?: string;
295
+ /** Manually defined video duration in milliseconds. */
296
+ durationInMillis?: number | null;
297
+ }
298
+ declare enum VideoType {
299
+ UNDEFINED = "UNDEFINED",
300
+ WIX_MEDIA = "WIX_MEDIA",
301
+ YOUTUBE = "YOUTUBE",
302
+ VIMEO = "VIMEO"
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
+ }
318
+ interface Text {
319
+ /** Text in HTML format. */
320
+ html?: string | null;
321
+ /**
322
+ * Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
323
+ *
324
+ * __Note:__ The object structure is customizable. See the [`listGalleryItems()`](/pro-gallery/list-gallery-items) code example for supported values.
325
+ */
326
+ css?: Record<string, any> | null;
327
+ /** Reserved for internal use. */
328
+ editorHtml?: string | null;
329
+ /** Reserved for internal use. */
330
+ editorFontId?: string | null;
331
+ }
332
+ interface Tags {
333
+ /** List of tags assigned to the media item. */
334
+ values?: string[];
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
+ }
560
+ interface IdentificationData extends IdentificationDataIdOneOf {
561
+ /** ID of a site visitor that has not logged in to the site. */
562
+ anonymousVisitorId?: string;
563
+ /** ID of a site visitor that has logged in to the site. */
564
+ memberId?: string;
565
+ /** ID of a Wix user (site owner, contributor, etc.). */
566
+ wixUserId?: string;
567
+ /** ID of an app. */
568
+ appId?: string;
569
+ /** @readonly */
570
+ identityType?: WebhookIdentityType;
571
+ }
572
+ /** @oneof */
573
+ interface IdentificationDataIdOneOf {
574
+ /** ID of a site visitor that has not logged in to the site. */
575
+ anonymousVisitorId?: string;
576
+ /** ID of a site visitor that has logged in to the site. */
577
+ memberId?: string;
578
+ /** ID of a Wix user (site owner, contributor, etc.). */
579
+ wixUserId?: string;
580
+ /** ID of an app. */
581
+ appId?: string;
582
+ }
583
+ declare enum WebhookIdentityType {
584
+ UNKNOWN = "UNKNOWN",
585
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
586
+ MEMBER = "MEMBER",
587
+ WIX_USER = "WIX_USER",
588
+ APP = "APP"
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
+ }
725
+ interface GalleryItemCreated {
726
+ /** Created gallery item. */
727
+ item?: Item;
728
+ }
729
+ interface GalleryItemUpdated {
730
+ /** Updated gallery item. */
731
+ updatedItem?: Item;
732
+ }
733
+ interface GalleryItemDeleted {
734
+ /** ID of the deleted gallery item. */
735
+ itemId?: string;
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
+ }
752
+ interface ListGalleriesResponse {
753
+ /** Total number of galleries in the site. */
754
+ totalGalleries?: number | null;
755
+ /** List of galleries. Sorted by `_createdDate`. */
756
+ galleries?: Gallery[];
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
+ }
772
+ /** @oneof */
773
+ interface GetGalleryRequestVersionOneOf {
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
+ }
793
+ interface ListGalleryItemsResponse {
794
+ /** List of media items in the gallery. */
795
+ items?: Item[];
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
+ }
829
+ interface DeleteGalleryResponse {
830
+ /**
831
+ * ID of the deleted gallery.
832
+ * @readonly
833
+ */
834
+ galleryId?: string;
835
+ }
836
+ interface DeleteGalleryItemsRequest {
837
+ /** Gallery ID. */
838
+ galleryId?: string;
839
+ /** ID of the media item to delete. */
840
+ itemsIds?: string[];
841
+ }
842
+ interface DeleteGalleryItemsResponse {
843
+ /** Gallery that previously included the deleted media item. */
844
+ gallery?: Gallery;
845
+ }
846
+ interface CreateGalleryItemRequest {
847
+ /** Gallery ID. */
848
+ galleryId: string;
849
+ /** Media item to create. */
850
+ item: Item;
851
+ }
852
+ interface CreateGalleryItemResponse {
853
+ /** Created media item. */
854
+ item?: Item;
855
+ }
856
+ interface CreateGalleryItemsRequest {
857
+ /** Gallery ID. */
858
+ galleryId?: string;
859
+ /** Media items to create. */
860
+ items?: Item[];
861
+ }
862
+ interface CreateGalleryItemsResponse {
863
+ /** Created media items. */
864
+ items?: Item[];
865
+ }
866
+ interface UpdateGalleryItemRequest {
867
+ /** Gallery ID. */
868
+ galleryId: string;
869
+ /** The information for the media item being updated. */
870
+ item: Item;
871
+ }
872
+ interface UpdateGalleryItemResponse {
873
+ /** Updated media item. */
874
+ item?: Item;
875
+ }
876
+ interface DeleteGalleryItemRequest {
877
+ /** Gallery ID. */
878
+ galleryId: string;
879
+ /** ID of the media item to delete. */
880
+ itemId: string;
881
+ }
882
+ interface DeleteGalleryItemResponse {
883
+ /**
884
+ * ID of the deleted media item.
885
+ * @readonly
886
+ */
887
+ itemId?: string;
888
+ }
889
+ interface PublishGalleryRequest {
890
+ /** ID of the gallery to publish. */
891
+ galleryId?: string;
892
+ }
893
+ interface PublishGalleryResponse {
894
+ /** Published gallery. */
895
+ gallery?: Gallery;
896
+ }
897
+ interface ListGalleriesResponseNonNullableFields {
898
+ galleries: {
899
+ items: {
900
+ image?: {
901
+ imageInfo: string;
902
+ focalPoint?: {
903
+ x: number;
904
+ y: number;
905
+ };
906
+ };
907
+ video?: {
908
+ type: VideoType;
909
+ videoInfo: string;
910
+ };
911
+ type: Type;
912
+ tags?: {
913
+ values: string[];
914
+ };
915
+ }[];
916
+ }[];
917
+ }
918
+ interface GetGalleryResponseNonNullableFields {
919
+ gallery?: {
920
+ items: {
921
+ image?: {
922
+ imageInfo: string;
923
+ focalPoint?: {
924
+ x: number;
925
+ y: number;
926
+ };
927
+ };
928
+ video?: {
929
+ type: VideoType;
930
+ videoInfo: string;
931
+ };
932
+ type: Type;
933
+ tags?: {
934
+ values: string[];
935
+ };
936
+ }[];
937
+ };
938
+ }
939
+ interface ListGalleryItemsResponseNonNullableFields {
940
+ items: {
941
+ image?: {
942
+ imageInfo: string;
943
+ focalPoint?: {
944
+ x: number;
945
+ y: number;
946
+ };
947
+ };
948
+ video?: {
949
+ type: VideoType;
950
+ videoInfo: string;
951
+ };
952
+ type: Type;
953
+ tags?: {
954
+ values: string[];
955
+ };
956
+ }[];
957
+ }
958
+ interface GetGalleryItemResponseNonNullableFields {
959
+ item?: {
960
+ image?: {
961
+ imageInfo: string;
962
+ focalPoint?: {
963
+ x: number;
964
+ y: number;
965
+ };
966
+ };
967
+ video?: {
968
+ type: VideoType;
969
+ videoInfo: string;
970
+ };
971
+ type: Type;
972
+ tags?: {
973
+ values: string[];
974
+ };
975
+ };
976
+ }
977
+ interface CreateGalleryResponseNonNullableFields {
978
+ gallery?: {
979
+ items: {
980
+ image?: {
981
+ imageInfo: string;
982
+ focalPoint?: {
983
+ x: number;
984
+ y: number;
985
+ };
986
+ };
987
+ video?: {
988
+ type: VideoType;
989
+ videoInfo: string;
990
+ };
991
+ type: Type;
992
+ tags?: {
993
+ values: string[];
994
+ };
995
+ }[];
996
+ };
997
+ }
998
+ interface UpdateGalleryResponseNonNullableFields {
999
+ gallery?: {
1000
+ items: {
1001
+ image?: {
1002
+ imageInfo: string;
1003
+ focalPoint?: {
1004
+ x: number;
1005
+ y: number;
1006
+ };
1007
+ };
1008
+ video?: {
1009
+ type: VideoType;
1010
+ videoInfo: string;
1011
+ };
1012
+ type: Type;
1013
+ tags?: {
1014
+ values: string[];
1015
+ };
1016
+ }[];
1017
+ };
1018
+ }
1019
+ interface DeleteGalleryResponseNonNullableFields {
1020
+ galleryId: string;
1021
+ }
1022
+ interface CreateGalleryItemResponseNonNullableFields {
1023
+ item?: {
1024
+ image?: {
1025
+ imageInfo: string;
1026
+ focalPoint?: {
1027
+ x: number;
1028
+ y: number;
1029
+ };
1030
+ };
1031
+ video?: {
1032
+ type: VideoType;
1033
+ videoInfo: string;
1034
+ };
1035
+ type: Type;
1036
+ tags?: {
1037
+ values: string[];
1038
+ };
1039
+ };
1040
+ }
1041
+ interface UpdateGalleryItemResponseNonNullableFields {
1042
+ item?: {
1043
+ image?: {
1044
+ imageInfo: string;
1045
+ focalPoint?: {
1046
+ x: number;
1047
+ y: number;
1048
+ };
1049
+ };
1050
+ video?: {
1051
+ type: VideoType;
1052
+ videoInfo: string;
1053
+ };
1054
+ type: Type;
1055
+ tags?: {
1056
+ values: string[];
1057
+ };
1058
+ };
1059
+ }
1060
+ interface DeleteGalleryItemResponseNonNullableFields {
1061
+ itemId: string;
1062
+ }
1063
+ interface BaseEventMetadata {
1064
+ /** App instance ID. */
1065
+ instanceId?: string | null;
1066
+ /** Event type. */
1067
+ eventType?: string;
1068
+ /** The identification type and identity data. */
1069
+ identity?: IdentificationData;
1070
+ }
1071
+ interface EventMetadata extends BaseEventMetadata {
1072
+ /**
1073
+ * Unique event ID.
1074
+ * Allows clients to ignore duplicate webhooks.
1075
+ */
1076
+ _id?: string;
1077
+ /**
1078
+ * Assumes actions are also always typed to an entity_type
1079
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1080
+ */
1081
+ entityFqdn?: string;
1082
+ /**
1083
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1084
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1085
+ * Example: created/updated/deleted/started/completed/email_opened
1086
+ */
1087
+ slug?: string;
1088
+ /** ID of the entity associated with the event. */
1089
+ entityId?: string;
1090
+ /** Event timestamp. */
1091
+ eventTime?: Date;
1092
+ /**
1093
+ * Whether the event was triggered as a result of a privacy regulation application
1094
+ * (for example, GDPR).
1095
+ */
1096
+ triggeredByAnonymizeRequest?: boolean | null;
1097
+ /** If present, indicates the action that triggered the event. */
1098
+ originatedFrom?: string | null;
1099
+ /**
1100
+ * A sequence number defining the order of updates to the underlying entity.
1101
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1102
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1103
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1104
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1105
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1106
+ */
1107
+ entityEventSequence?: string | null;
1108
+ }
1109
+ interface GalleryCreatedEnvelope {
1110
+ entity: Gallery;
1111
+ metadata: EventMetadata;
1112
+ }
1113
+ interface GalleryUpdatedEnvelope {
1114
+ entity: Gallery;
1115
+ metadata: EventMetadata;
1116
+ }
1117
+ interface GalleryDeletedEnvelope {
1118
+ metadata: EventMetadata;
1119
+ }
1120
+ interface GalleryItemCreatedEnvelope {
1121
+ data: GalleryItemCreated;
1122
+ metadata: EventMetadata;
1123
+ }
1124
+ interface GalleryItemUpdatedEnvelope {
1125
+ data: GalleryItemUpdated;
1126
+ metadata: EventMetadata;
1127
+ }
1128
+ interface GalleryItemDeletedEnvelope {
1129
+ data: GalleryItemDeleted;
1130
+ metadata: EventMetadata;
1131
+ }
1132
+ interface ListGalleriesOptions {
1133
+ /** Number of galleries to list. Defaults to `10`. */
1134
+ itemLimit?: number | null;
1135
+ /** Number of galleries to skip in the returns. Defaults to `0`. */
1136
+ offset?: number | null;
1137
+ /** Number of galleries to list. Defaults to `10`. */
1138
+ limit?: number | null;
1139
+ }
1140
+ interface GetGalleryOptions extends GetGalleryRequestVersionOneOf {
1141
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1142
+ itemOffset?: number | null;
1143
+ /**
1144
+ * Maximum number of media items to return. <br />
1145
+ *
1146
+ * Min: `1` <br />
1147
+ * Max: `100` <br />
1148
+ * Default: `50`
1149
+ */
1150
+ itemLimit?: number | null;
1151
+ }
1152
+ interface ListGalleryItemsOptions {
1153
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1154
+ itemOffset?: number | null;
1155
+ /**
1156
+ * Maximum number of media items to return. <br />
1157
+ *
1158
+ * Min: `1` <br />
1159
+ * Max: `100` <br />
1160
+ * Default: `50`
1161
+ */
1162
+ itemLimit?: number | null;
1163
+ }
1164
+ interface GetGalleryItemIdentifiers {
1165
+ /** Gallery ID. */
1166
+ galleryId: string;
1167
+ /** Item ID. */
1168
+ itemId: string;
1169
+ }
1170
+ interface CreateGalleryOptions {
1171
+ /** Gallery to create. */
1172
+ gallery?: Gallery;
1173
+ /** Gallery ID to clone from. */
1174
+ cloneFromGalleryId?: string | null;
1175
+ }
1176
+ interface UpdateGallery {
1177
+ /**
1178
+ * Gallery ID.
1179
+ * @readonly
1180
+ */
1181
+ _id?: string | null;
1182
+ /** Gallery name. */
1183
+ name?: string | null;
1184
+ /**
1185
+ * Total number of items in the gallery.
1186
+ * @readonly
1187
+ */
1188
+ totalItems?: number | null;
1189
+ /** Media items in the gallery. */
1190
+ items?: Item[];
1191
+ /**
1192
+ * Index that determines which position a gallery is displayed on the site. <br />
1193
+ *
1194
+ * >**Note:** If you assign the same sort order index to more than one gallery, the function fails.
1195
+ */
1196
+ sortOrder?: number | null;
1197
+ /**
1198
+ * Date and time the gallery was created.
1199
+ * @readonly
1200
+ */
1201
+ _createdDate?: Date;
1202
+ }
1203
+ interface UpdateGalleryItemIdentifiers {
1204
+ /** ID of the gallery containing the item to update. */
1205
+ galleryId: string;
1206
+ /**
1207
+ * ID of the item to update.
1208
+ * @readonly
1209
+ */
1210
+ itemId?: string | null;
1211
+ }
1212
+ interface UpdateGalleryItem {
1213
+ /** Details about the image. */
1214
+ image?: Image;
1215
+ /** Details about the video. */
1216
+ video?: Video;
1217
+ /** Details about the text file. */
1218
+ text?: Text;
1219
+ /**
1220
+ * Item ID.
1221
+ * @readonly
1222
+ */
1223
+ _id?: string | null;
1224
+ /**
1225
+ * Index that determines which position a media item is displayed in the gallery. <br />
1226
+ *
1227
+ * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
1228
+ *
1229
+ * >**Note:** If you assign the same sort order index to more than one media item in a gallery, the function fails.
1230
+ */
1231
+ sortOrder?: number | null;
1232
+ /** Item title. */
1233
+ title?: string | null;
1234
+ /** Item description. */
1235
+ description?: string | null;
1236
+ /** Link from the item. You can link to Wix sites or external URLs. */
1237
+ link?: Link;
1238
+ /** @readonly */
1239
+ type?: Type;
1240
+ /**
1241
+ * Date and time the item was created.
1242
+ * @readonly
1243
+ */
1244
+ _createdDate?: Date;
1245
+ /**
1246
+ * Date and time the item was last updated.
1247
+ * @readonly
1248
+ */
1249
+ _updatedDate?: Date;
1250
+ /** Item tags. */
1251
+ tags?: Tags;
1252
+ }
1253
+ interface DeleteGalleryItemIdentifiers {
1254
+ /** Gallery ID. */
1255
+ galleryId: string;
1256
+ /** ID of the media item to delete. */
1257
+ itemId: string;
1258
+ }
1259
+
1260
+ interface HttpClient {
1261
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
1262
+ }
1263
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
1264
+ type HttpResponse<T = any> = {
1265
+ data: T;
1266
+ status: number;
1267
+ statusText: string;
1268
+ headers: any;
1269
+ request?: any;
1270
+ };
1271
+ type RequestOptions<_TResponse = any, Data = any> = {
1272
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
1273
+ url: string;
1274
+ data?: Data;
1275
+ params?: URLSearchParams;
1276
+ } & APIMetadata;
1277
+ type APIMetadata = {
1278
+ methodFqn?: string;
1279
+ entityFqdn?: string;
1280
+ packageName?: string;
1281
+ };
1282
+ type EventDefinition<Payload = unknown, Type extends string = string> = {
1283
+ __type: 'event-definition';
1284
+ type: Type;
1285
+ isDomainEvent?: boolean;
1286
+ transformations?: unknown;
1287
+ __payload: Payload;
1288
+ };
1289
+ declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, _transformations?: unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
1290
+
1291
+ declare const __metadata: {
1292
+ PACKAGE_NAME: string;
1293
+ };
1294
+ declare function listGalleries(httpClient: HttpClient): (options?: ListGalleriesOptions) => Promise<ListGalleriesResponse & ListGalleriesResponseNonNullableFields>;
1295
+ declare function getGallery(httpClient: HttpClient): (galleryId: string, options?: GetGalleryOptions) => Promise<Gallery & {
1296
+ items: {
1297
+ image?: {
1298
+ imageInfo: string;
1299
+ focalPoint?: {
1300
+ x: number;
1301
+ y: number;
1302
+ } | undefined;
1303
+ } | undefined;
1304
+ video?: {
1305
+ type: VideoType;
1306
+ videoInfo: string;
1307
+ } | undefined;
1308
+ type: Type;
1309
+ tags?: {
1310
+ values: string[];
1311
+ } | undefined;
1312
+ }[];
1313
+ }>;
1314
+ declare function listGalleryItems(httpClient: HttpClient): (galleryId: string, options?: ListGalleryItemsOptions) => Promise<ListGalleryItemsResponse & ListGalleryItemsResponseNonNullableFields>;
1315
+ declare function getGalleryItem(httpClient: HttpClient): (identifiers: GetGalleryItemIdentifiers) => Promise<Item & {
1316
+ image?: {
1317
+ imageInfo: string;
1318
+ focalPoint?: {
1319
+ x: number;
1320
+ y: number;
1321
+ } | undefined;
1322
+ } | undefined;
1323
+ video?: {
1324
+ type: VideoType;
1325
+ videoInfo: string;
1326
+ } | undefined;
1327
+ type: Type;
1328
+ tags?: {
1329
+ values: string[];
1330
+ } | undefined;
1331
+ }>;
1332
+ declare function createGallery(httpClient: HttpClient): (options?: CreateGalleryOptions) => Promise<Gallery & {
1333
+ items: {
1334
+ image?: {
1335
+ imageInfo: string;
1336
+ focalPoint?: {
1337
+ x: number;
1338
+ y: number;
1339
+ } | undefined;
1340
+ } | undefined;
1341
+ video?: {
1342
+ type: VideoType;
1343
+ videoInfo: string;
1344
+ } | undefined;
1345
+ type: Type;
1346
+ tags?: {
1347
+ values: string[];
1348
+ } | undefined;
1349
+ }[];
1350
+ }>;
1351
+ declare function updateGallery(httpClient: HttpClient): (_id: string | null, gallery: UpdateGallery) => Promise<Gallery & {
1352
+ items: {
1353
+ image?: {
1354
+ imageInfo: string;
1355
+ focalPoint?: {
1356
+ x: number;
1357
+ y: number;
1358
+ } | undefined;
1359
+ } | undefined;
1360
+ video?: {
1361
+ type: VideoType;
1362
+ videoInfo: string;
1363
+ } | undefined;
1364
+ type: Type;
1365
+ tags?: {
1366
+ values: string[];
1367
+ } | undefined;
1368
+ }[];
1369
+ }>;
1370
+ declare function deleteGallery(httpClient: HttpClient): (galleryId: string) => Promise<DeleteGalleryResponse & DeleteGalleryResponseNonNullableFields>;
1371
+ declare function createGalleryItem(httpClient: HttpClient): (galleryId: string, item: Item) => Promise<Item & {
1372
+ image?: {
1373
+ imageInfo: string;
1374
+ focalPoint?: {
1375
+ x: number;
1376
+ y: number;
1377
+ } | undefined;
1378
+ } | undefined;
1379
+ video?: {
1380
+ type: VideoType;
1381
+ videoInfo: string;
1382
+ } | undefined;
1383
+ type: Type;
1384
+ tags?: {
1385
+ values: string[];
1386
+ } | undefined;
1387
+ }>;
1388
+ declare function updateGalleryItem(httpClient: HttpClient): (identifiers: UpdateGalleryItemIdentifiers, item: UpdateGalleryItem) => Promise<Item & {
1389
+ image?: {
1390
+ imageInfo: string;
1391
+ focalPoint?: {
1392
+ x: number;
1393
+ y: number;
1394
+ } | undefined;
1395
+ } | undefined;
1396
+ video?: {
1397
+ type: VideoType;
1398
+ videoInfo: string;
1399
+ } | undefined;
1400
+ type: Type;
1401
+ tags?: {
1402
+ values: string[];
1403
+ } | undefined;
1404
+ }>;
1405
+ declare function deleteGalleryItem(httpClient: HttpClient): (identifiers: DeleteGalleryItemIdentifiers) => Promise<DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields>;
1406
+ declare const onGalleryCreated: EventDefinition<GalleryCreatedEnvelope, "wix.pro_gallery.gallery_v2_created">;
1407
+ declare const onGalleryUpdated: EventDefinition<GalleryUpdatedEnvelope, "wix.pro_gallery.gallery_v2_updated">;
1408
+ declare const onGalleryDeleted: EventDefinition<GalleryDeletedEnvelope, "wix.pro_gallery.gallery_v2_deleted">;
1409
+ declare const onGalleryItemCreated: EventDefinition<GalleryItemCreatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_created">;
1410
+ declare const onGalleryItemUpdated: EventDefinition<GalleryItemUpdatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_updated">;
1411
+ declare const onGalleryItemDeleted: EventDefinition<GalleryItemDeletedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_deleted">;
1412
+
1413
+ type index_d_ActionEvent = ActionEvent;
1414
+ type index_d_AddressLink = AddressLink;
1415
+ type index_d_AnchorLink = AnchorLink;
1416
+ type index_d_App = App;
1417
+ type index_d_BaseEventMetadata = BaseEventMetadata;
1418
+ type index_d_CleanDeletedGalleriesEvent = CleanDeletedGalleriesEvent;
1419
+ type index_d_CreateGalleryItemRequest = CreateGalleryItemRequest;
1420
+ type index_d_CreateGalleryItemResponse = CreateGalleryItemResponse;
1421
+ type index_d_CreateGalleryItemResponseNonNullableFields = CreateGalleryItemResponseNonNullableFields;
1422
+ type index_d_CreateGalleryItemsRequest = CreateGalleryItemsRequest;
1423
+ type index_d_CreateGalleryItemsResponse = CreateGalleryItemsResponse;
1424
+ type index_d_CreateGalleryOptions = CreateGalleryOptions;
1425
+ type index_d_CreateGalleryRequest = CreateGalleryRequest;
1426
+ type index_d_CreateGalleryResponse = CreateGalleryResponse;
1427
+ type index_d_CreateGalleryResponseNonNullableFields = CreateGalleryResponseNonNullableFields;
1428
+ type index_d_DeleteByFilterOperation = DeleteByFilterOperation;
1429
+ type index_d_DeleteByIdsOperation = DeleteByIdsOperation;
1430
+ type index_d_DeleteGalleryItemIdentifiers = DeleteGalleryItemIdentifiers;
1431
+ type index_d_DeleteGalleryItemRequest = DeleteGalleryItemRequest;
1432
+ type index_d_DeleteGalleryItemResponse = DeleteGalleryItemResponse;
1433
+ type index_d_DeleteGalleryItemResponseNonNullableFields = DeleteGalleryItemResponseNonNullableFields;
1434
+ type index_d_DeleteGalleryItemsRequest = DeleteGalleryItemsRequest;
1435
+ type index_d_DeleteGalleryItemsResponse = DeleteGalleryItemsResponse;
1436
+ type index_d_DeleteGalleryRequest = DeleteGalleryRequest;
1437
+ type index_d_DeleteGalleryResponse = DeleteGalleryResponse;
1438
+ type index_d_DeleteGalleryResponseNonNullableFields = DeleteGalleryResponseNonNullableFields;
1439
+ type index_d_DocumentImage = DocumentImage;
1440
+ type index_d_DocumentLink = DocumentLink;
1441
+ type index_d_DocumentPayload = DocumentPayload;
1442
+ type index_d_DocumentUpdateOperation = DocumentUpdateOperation;
1443
+ type index_d_DomainEvent = DomainEvent;
1444
+ type index_d_DomainEventBodyOneOf = DomainEventBodyOneOf;
1445
+ type index_d_DynamicPageLink = DynamicPageLink;
1446
+ type index_d_EmailLink = EmailLink;
1447
+ type index_d_Empty = Empty;
1448
+ type index_d_EntityCreatedEvent = EntityCreatedEvent;
1449
+ type index_d_EntityDeletedEvent = EntityDeletedEvent;
1450
+ type index_d_EntityUpdatedEvent = EntityUpdatedEvent;
1451
+ type index_d_Enum = Enum;
1452
+ declare const index_d_Enum: typeof Enum;
1453
+ type index_d_EventMetadata = EventMetadata;
1454
+ type index_d_EventsPage = EventsPage;
1455
+ type index_d_ExternalLink = ExternalLink;
1456
+ type index_d_File = File;
1457
+ type index_d_Gallery = Gallery;
1458
+ type index_d_GalleryCreatedEnvelope = GalleryCreatedEnvelope;
1459
+ type index_d_GalleryDeletedEnvelope = GalleryDeletedEnvelope;
1460
+ type index_d_GalleryItemCreated = GalleryItemCreated;
1461
+ type index_d_GalleryItemCreatedEnvelope = GalleryItemCreatedEnvelope;
1462
+ type index_d_GalleryItemDeleted = GalleryItemDeleted;
1463
+ type index_d_GalleryItemDeletedEnvelope = GalleryItemDeletedEnvelope;
1464
+ type index_d_GalleryItemUpdated = GalleryItemUpdated;
1465
+ type index_d_GalleryItemUpdatedEnvelope = GalleryItemUpdatedEnvelope;
1466
+ type index_d_GalleryPublished = GalleryPublished;
1467
+ type index_d_GalleryUpdatedEnvelope = GalleryUpdatedEnvelope;
1468
+ type index_d_GetGalleryItemIdentifiers = GetGalleryItemIdentifiers;
1469
+ type index_d_GetGalleryItemRequest = GetGalleryItemRequest;
1470
+ type index_d_GetGalleryItemResponse = GetGalleryItemResponse;
1471
+ type index_d_GetGalleryItemResponseNonNullableFields = GetGalleryItemResponseNonNullableFields;
1472
+ type index_d_GetGalleryOptions = GetGalleryOptions;
1473
+ type index_d_GetGalleryRequest = GetGalleryRequest;
1474
+ type index_d_GetGalleryRequestVersionOneOf = GetGalleryRequestVersionOneOf;
1475
+ type index_d_GetGalleryResponse = GetGalleryResponse;
1476
+ type index_d_GetGalleryResponseNonNullableFields = GetGalleryResponseNonNullableFields;
1477
+ type index_d_HtmlSitePublished = HtmlSitePublished;
1478
+ type index_d_HtmlSiteRCPublished = HtmlSiteRCPublished;
1479
+ type index_d_IdentificationData = IdentificationData;
1480
+ type index_d_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
1481
+ type index_d_Image = Image;
1482
+ type index_d_ImageType = ImageType;
1483
+ declare const index_d_ImageType: typeof ImageType;
1484
+ type index_d_IndexDocument = IndexDocument;
1485
+ type index_d_InvalidateCache = InvalidateCache;
1486
+ type index_d_InvalidateCacheGetByOneOf = InvalidateCacheGetByOneOf;
1487
+ type index_d_Item = Item;
1488
+ type index_d_ItemId = ItemId;
1489
+ type index_d_ItemMetadataOneOf = ItemMetadataOneOf;
1490
+ type index_d_ItemsInGallery = ItemsInGallery;
1491
+ type index_d_Link = Link;
1492
+ type index_d_LinkRel = LinkRel;
1493
+ declare const index_d_LinkRel: typeof LinkRel;
1494
+ type index_d_LinkType = LinkType;
1495
+ declare const index_d_LinkType: typeof LinkType;
1496
+ type index_d_ListGalleriesItemsRequest = ListGalleriesItemsRequest;
1497
+ type index_d_ListGalleriesItemsResponse = ListGalleriesItemsResponse;
1498
+ type index_d_ListGalleriesOptions = ListGalleriesOptions;
1499
+ type index_d_ListGalleriesRequest = ListGalleriesRequest;
1500
+ type index_d_ListGalleriesResponse = ListGalleriesResponse;
1501
+ type index_d_ListGalleriesResponseNonNullableFields = ListGalleriesResponseNonNullableFields;
1502
+ type index_d_ListGalleryItemsOptions = ListGalleryItemsOptions;
1503
+ type index_d_ListGalleryItemsRequest = ListGalleryItemsRequest;
1504
+ type index_d_ListGalleryItemsResponse = ListGalleryItemsResponse;
1505
+ type index_d_ListGalleryItemsResponseNonNullableFields = ListGalleryItemsResponseNonNullableFields;
1506
+ type index_d_MessageEnvelope = MessageEnvelope;
1507
+ type index_d_Page = Page;
1508
+ type index_d_PageLink = PageLink;
1509
+ type index_d_PhoneLink = PhoneLink;
1510
+ type index_d_Point = Point;
1511
+ type index_d_ProgallerypublisherPublishGalleryRequest = ProgallerypublisherPublishGalleryRequest;
1512
+ type index_d_ProgallerypublisherPublishGalleryResponse = ProgallerypublisherPublishGalleryResponse;
1513
+ type index_d_PublishGalleryItemRequest = PublishGalleryItemRequest;
1514
+ type index_d_PublishGalleryItemResponse = PublishGalleryItemResponse;
1515
+ type index_d_PublishGalleryItemsRequest = PublishGalleryItemsRequest;
1516
+ type index_d_PublishGalleryItemsResponse = PublishGalleryItemsResponse;
1517
+ type index_d_PublishGalleryRequest = PublishGalleryRequest;
1518
+ type index_d_PublishGalleryResponse = PublishGalleryResponse;
1519
+ type index_d_SearchIndexingNotification = SearchIndexingNotification;
1520
+ type index_d_SearchIndexingNotificationState = SearchIndexingNotificationState;
1521
+ declare const index_d_SearchIndexingNotificationState: typeof SearchIndexingNotificationState;
1522
+ type index_d_SecondaryMedia = SecondaryMedia;
1523
+ type index_d_SecondaryMediaMetadataOneOf = SecondaryMediaMetadataOneOf;
1524
+ type index_d_State = State;
1525
+ declare const index_d_State: typeof State;
1526
+ type index_d_Tags = Tags;
1527
+ type index_d_Text = Text;
1528
+ type index_d_TpaPageLink = TpaPageLink;
1529
+ type index_d_Type = Type;
1530
+ declare const index_d_Type: typeof Type;
1531
+ type index_d_URI = URI;
1532
+ type index_d_UnsharpMasking = UnsharpMasking;
1533
+ type index_d_UpdateByFilterOperation = UpdateByFilterOperation;
1534
+ type index_d_UpdateDocumentsEvent = UpdateDocumentsEvent;
1535
+ type index_d_UpdateDocumentsEventOperationOneOf = UpdateDocumentsEventOperationOneOf;
1536
+ type index_d_UpdateExistingOperation = UpdateExistingOperation;
1537
+ type index_d_UpdateGallery = UpdateGallery;
1538
+ type index_d_UpdateGalleryItem = UpdateGalleryItem;
1539
+ type index_d_UpdateGalleryItemIdentifiers = UpdateGalleryItemIdentifiers;
1540
+ type index_d_UpdateGalleryItemRequest = UpdateGalleryItemRequest;
1541
+ type index_d_UpdateGalleryItemResponse = UpdateGalleryItemResponse;
1542
+ type index_d_UpdateGalleryItemResponseNonNullableFields = UpdateGalleryItemResponseNonNullableFields;
1543
+ type index_d_UpdateGalleryRequest = UpdateGalleryRequest;
1544
+ type index_d_UpdateGalleryResponse = UpdateGalleryResponse;
1545
+ type index_d_UpdateGalleryResponseNonNullableFields = UpdateGalleryResponseNonNullableFields;
1546
+ type index_d_Video = Video;
1547
+ type index_d_VideoResolution = VideoResolution;
1548
+ type index_d_VideoType = VideoType;
1549
+ declare const index_d_VideoType: typeof VideoType;
1550
+ type index_d_WebhookIdentityType = WebhookIdentityType;
1551
+ declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
1552
+ type index_d_WhatsAppLink = WhatsAppLink;
1553
+ type index_d_WixLink = WixLink;
1554
+ type index_d_WixLinkLinkOneOf = WixLinkLinkOneOf;
1555
+ declare const index_d___metadata: typeof __metadata;
1556
+ declare const index_d_createGallery: typeof createGallery;
1557
+ declare const index_d_createGalleryItem: typeof createGalleryItem;
1558
+ declare const index_d_deleteGallery: typeof deleteGallery;
1559
+ declare const index_d_deleteGalleryItem: typeof deleteGalleryItem;
1560
+ declare const index_d_getGallery: typeof getGallery;
1561
+ declare const index_d_getGalleryItem: typeof getGalleryItem;
1562
+ declare const index_d_listGalleries: typeof listGalleries;
1563
+ declare const index_d_listGalleryItems: typeof listGalleryItems;
1564
+ declare const index_d_onGalleryCreated: typeof onGalleryCreated;
1565
+ declare const index_d_onGalleryDeleted: typeof onGalleryDeleted;
1566
+ declare const index_d_onGalleryItemCreated: typeof onGalleryItemCreated;
1567
+ declare const index_d_onGalleryItemDeleted: typeof onGalleryItemDeleted;
1568
+ declare const index_d_onGalleryItemUpdated: typeof onGalleryItemUpdated;
1569
+ declare const index_d_onGalleryUpdated: typeof onGalleryUpdated;
1570
+ declare const index_d_updateGallery: typeof updateGallery;
1571
+ declare const index_d_updateGalleryItem: typeof updateGalleryItem;
1572
+ declare namespace index_d {
1573
+ export { type index_d_ActionEvent as ActionEvent, type index_d_AddressLink as AddressLink, type index_d_AnchorLink as AnchorLink, type index_d_App as App, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_CleanDeletedGalleriesEvent as CleanDeletedGalleriesEvent, type index_d_CreateGalleryItemRequest as CreateGalleryItemRequest, type index_d_CreateGalleryItemResponse as CreateGalleryItemResponse, type index_d_CreateGalleryItemResponseNonNullableFields as CreateGalleryItemResponseNonNullableFields, type index_d_CreateGalleryItemsRequest as CreateGalleryItemsRequest, type index_d_CreateGalleryItemsResponse as CreateGalleryItemsResponse, type index_d_CreateGalleryOptions as CreateGalleryOptions, type index_d_CreateGalleryRequest as CreateGalleryRequest, type index_d_CreateGalleryResponse as CreateGalleryResponse, type index_d_CreateGalleryResponseNonNullableFields as CreateGalleryResponseNonNullableFields, type index_d_DeleteByFilterOperation as DeleteByFilterOperation, type index_d_DeleteByIdsOperation as DeleteByIdsOperation, type index_d_DeleteGalleryItemIdentifiers as DeleteGalleryItemIdentifiers, type index_d_DeleteGalleryItemRequest as DeleteGalleryItemRequest, type index_d_DeleteGalleryItemResponse as DeleteGalleryItemResponse, type index_d_DeleteGalleryItemResponseNonNullableFields as DeleteGalleryItemResponseNonNullableFields, type index_d_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type index_d_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type index_d_DeleteGalleryRequest as DeleteGalleryRequest, type index_d_DeleteGalleryResponse as DeleteGalleryResponse, type index_d_DeleteGalleryResponseNonNullableFields as DeleteGalleryResponseNonNullableFields, type index_d_DocumentImage as DocumentImage, type index_d_DocumentLink as DocumentLink, type index_d_DocumentPayload as DocumentPayload, type index_d_DocumentUpdateOperation as DocumentUpdateOperation, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DynamicPageLink as DynamicPageLink, type index_d_EmailLink as EmailLink, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, index_d_Enum as Enum, type index_d_EventMetadata as EventMetadata, type index_d_EventsPage as EventsPage, type index_d_ExternalLink as ExternalLink, type index_d_File as File, type index_d_Gallery as Gallery, type index_d_GalleryCreatedEnvelope as GalleryCreatedEnvelope, type index_d_GalleryDeletedEnvelope as GalleryDeletedEnvelope, type index_d_GalleryItemCreated as GalleryItemCreated, type index_d_GalleryItemCreatedEnvelope as GalleryItemCreatedEnvelope, type index_d_GalleryItemDeleted as GalleryItemDeleted, type index_d_GalleryItemDeletedEnvelope as GalleryItemDeletedEnvelope, type index_d_GalleryItemUpdated as GalleryItemUpdated, type index_d_GalleryItemUpdatedEnvelope as GalleryItemUpdatedEnvelope, type index_d_GalleryPublished as GalleryPublished, type index_d_GalleryUpdatedEnvelope as GalleryUpdatedEnvelope, type index_d_GetGalleryItemIdentifiers as GetGalleryItemIdentifiers, type index_d_GetGalleryItemRequest as GetGalleryItemRequest, type index_d_GetGalleryItemResponse as GetGalleryItemResponse, type index_d_GetGalleryItemResponseNonNullableFields as GetGalleryItemResponseNonNullableFields, type index_d_GetGalleryOptions as GetGalleryOptions, type index_d_GetGalleryRequest as GetGalleryRequest, type index_d_GetGalleryRequestVersionOneOf as GetGalleryRequestVersionOneOf, type index_d_GetGalleryResponse as GetGalleryResponse, type index_d_GetGalleryResponseNonNullableFields as GetGalleryResponseNonNullableFields, type index_d_HtmlSitePublished as HtmlSitePublished, type index_d_HtmlSiteRCPublished as HtmlSiteRCPublished, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, index_d_ImageType as ImageType, type index_d_IndexDocument as IndexDocument, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemId as ItemId, type index_d_ItemMetadataOneOf as ItemMetadataOneOf, type index_d_ItemsInGallery as ItemsInGallery, type index_d_Link as Link, index_d_LinkRel as LinkRel, index_d_LinkType as LinkType, type index_d_ListGalleriesItemsRequest as ListGalleriesItemsRequest, type index_d_ListGalleriesItemsResponse as ListGalleriesItemsResponse, type index_d_ListGalleriesOptions as ListGalleriesOptions, type index_d_ListGalleriesRequest as ListGalleriesRequest, type index_d_ListGalleriesResponse as ListGalleriesResponse, type index_d_ListGalleriesResponseNonNullableFields as ListGalleriesResponseNonNullableFields, type index_d_ListGalleryItemsOptions as ListGalleryItemsOptions, type index_d_ListGalleryItemsRequest as ListGalleryItemsRequest, type index_d_ListGalleryItemsResponse as ListGalleryItemsResponse, type index_d_ListGalleryItemsResponseNonNullableFields as ListGalleryItemsResponseNonNullableFields, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Page as Page, type index_d_PageLink as PageLink, type index_d_PhoneLink as PhoneLink, type index_d_Point as Point, type index_d_ProgallerypublisherPublishGalleryRequest as ProgallerypublisherPublishGalleryRequest, type index_d_ProgallerypublisherPublishGalleryResponse as ProgallerypublisherPublishGalleryResponse, type index_d_PublishGalleryItemRequest as PublishGalleryItemRequest, type index_d_PublishGalleryItemResponse as PublishGalleryItemResponse, type index_d_PublishGalleryItemsRequest as PublishGalleryItemsRequest, type index_d_PublishGalleryItemsResponse as PublishGalleryItemsResponse, type index_d_PublishGalleryRequest as PublishGalleryRequest, type index_d_PublishGalleryResponse as PublishGalleryResponse, type index_d_SearchIndexingNotification as SearchIndexingNotification, index_d_SearchIndexingNotificationState as SearchIndexingNotificationState, type index_d_SecondaryMedia as SecondaryMedia, type index_d_SecondaryMediaMetadataOneOf as SecondaryMediaMetadataOneOf, index_d_State as State, type index_d_Tags as Tags, type index_d_Text as Text, type index_d_TpaPageLink as TpaPageLink, index_d_Type as Type, type index_d_URI as URI, type index_d_UnsharpMasking as UnsharpMasking, type index_d_UpdateByFilterOperation as UpdateByFilterOperation, type index_d_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d_UpdateExistingOperation as UpdateExistingOperation, type index_d_UpdateGallery as UpdateGallery, type index_d_UpdateGalleryItem as UpdateGalleryItem, type index_d_UpdateGalleryItemIdentifiers as UpdateGalleryItemIdentifiers, type index_d_UpdateGalleryItemRequest as UpdateGalleryItemRequest, type index_d_UpdateGalleryItemResponse as UpdateGalleryItemResponse, type index_d_UpdateGalleryItemResponseNonNullableFields as UpdateGalleryItemResponseNonNullableFields, type index_d_UpdateGalleryRequest as UpdateGalleryRequest, type index_d_UpdateGalleryResponse as UpdateGalleryResponse, type index_d_UpdateGalleryResponseNonNullableFields as UpdateGalleryResponseNonNullableFields, type index_d_Video as Video, type index_d_VideoResolution as VideoResolution, index_d_VideoType as VideoType, index_d_WebhookIdentityType as WebhookIdentityType, type index_d_WhatsAppLink as WhatsAppLink, type index_d_WixLink as WixLink, type index_d_WixLinkLinkOneOf as WixLinkLinkOneOf, index_d___metadata as __metadata, index_d_createGallery as createGallery, index_d_createGalleryItem as createGalleryItem, index_d_deleteGallery as deleteGallery, index_d_deleteGalleryItem as deleteGalleryItem, index_d_getGallery as getGallery, index_d_getGalleryItem as getGalleryItem, index_d_listGalleries as listGalleries, index_d_listGalleryItems as listGalleryItems, index_d_onGalleryCreated as onGalleryCreated, index_d_onGalleryDeleted as onGalleryDeleted, index_d_onGalleryItemCreated as onGalleryItemCreated, index_d_onGalleryItemDeleted as onGalleryItemDeleted, index_d_onGalleryItemUpdated as onGalleryItemUpdated, index_d_onGalleryUpdated as onGalleryUpdated, index_d_updateGallery as updateGallery, index_d_updateGalleryItem as updateGalleryItem };
1574
+ }
1575
+
1576
+ export { index_d as proGallery };