@wix/auto_sdk_pro-gallery_pro-gallery 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.mts +2 -2
- package/build/index.d.ts +2 -2
- package/build/index.js +13 -0
- package/build/index.js.map +1 -1
- package/build/index.mjs +12 -0
- package/build/index.mjs.map +1 -1
- package/build/internal/index.d.mts +2 -2
- package/build/internal/index.d.ts +2 -2
- package/build/internal/index.js +13 -0
- package/build/internal/index.js.map +1 -1
- package/build/internal/index.mjs +12 -0
- package/build/internal/index.mjs.map +1 -1
- package/build/internal/meta.d.mts +1 -1
- package/build/internal/meta.d.ts +1 -1
- package/build/internal/{pro-gallery-v2-gallery-pro-gallery.universal-KXp1KG3k.d.mts → pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.d.mts} +355 -86
- package/build/internal/{pro-gallery-v2-gallery-pro-gallery.universal-KXp1KG3k.d.ts → pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.d.ts} +355 -86
- package/build/meta.d.mts +1 -1
- package/build/meta.d.ts +1 -1
- package/build/{pro-gallery-v2-gallery-pro-gallery.universal-KXp1KG3k.d.mts → pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.d.mts} +355 -86
- package/build/{pro-gallery-v2-gallery-pro-gallery.universal-KXp1KG3k.d.ts → pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.d.ts} +355 -86
- package/package.json +2 -2
@@ -387,57 +387,340 @@ interface SecondaryMediaMetadataOneOf {
|
|
387
387
|
/** secondary media text metadata (optional) */
|
388
388
|
text?: Text;
|
389
389
|
}
|
390
|
-
interface
|
390
|
+
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
391
391
|
/**
|
392
|
-
*
|
392
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
393
|
+
* @format GUID
|
394
|
+
*/
|
395
|
+
metaSiteId?: string;
|
396
|
+
/**
|
397
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
398
|
+
* @format GUID
|
399
|
+
*/
|
400
|
+
siteId?: string;
|
401
|
+
/** Invalidate by App */
|
402
|
+
app?: App;
|
403
|
+
/** Invalidate by page id */
|
404
|
+
page?: Page;
|
405
|
+
/** Invalidate by URI path */
|
406
|
+
uri?: URI;
|
407
|
+
/** Invalidate by file (for media files such as PDFs) */
|
408
|
+
file?: File;
|
409
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
410
|
+
customTag?: CustomTag;
|
411
|
+
/**
|
412
|
+
* tell us why you're invalidating the cache. You don't need to add your app name
|
413
|
+
* @maxLength 256
|
414
|
+
*/
|
415
|
+
reason?: string | null;
|
416
|
+
/** Is local DS */
|
417
|
+
localDc?: boolean;
|
418
|
+
hardPurge?: boolean;
|
419
|
+
}
|
420
|
+
/** @oneof */
|
421
|
+
interface InvalidateCacheGetByOneOf {
|
422
|
+
/**
|
423
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
424
|
+
* @format GUID
|
425
|
+
*/
|
426
|
+
metaSiteId?: string;
|
427
|
+
/**
|
428
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
429
|
+
* @format GUID
|
430
|
+
*/
|
431
|
+
siteId?: string;
|
432
|
+
/** Invalidate by App */
|
433
|
+
app?: App;
|
434
|
+
/** Invalidate by page id */
|
435
|
+
page?: Page;
|
436
|
+
/** Invalidate by URI path */
|
437
|
+
uri?: URI;
|
438
|
+
/** Invalidate by file (for media files such as PDFs) */
|
439
|
+
file?: File;
|
440
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
441
|
+
customTag?: CustomTag;
|
442
|
+
}
|
443
|
+
interface App {
|
444
|
+
/**
|
445
|
+
* The AppDefId
|
446
|
+
* @minLength 1
|
447
|
+
*/
|
448
|
+
appDefId?: string;
|
449
|
+
/**
|
450
|
+
* The instance Id
|
393
451
|
* @format GUID
|
394
452
|
*/
|
395
453
|
instanceId?: string;
|
396
454
|
}
|
397
|
-
interface
|
455
|
+
interface Page {
|
398
456
|
/**
|
399
|
-
*
|
400
|
-
* @
|
401
|
-
* @maxSize 100
|
457
|
+
* the msid the page is on
|
458
|
+
* @format GUID
|
402
459
|
*/
|
403
|
-
|
460
|
+
metaSiteId?: string;
|
461
|
+
/**
|
462
|
+
* Invalidate by Page ID
|
463
|
+
* @minLength 1
|
464
|
+
*/
|
465
|
+
pageId?: string;
|
404
466
|
}
|
405
|
-
interface
|
467
|
+
interface URI {
|
406
468
|
/**
|
407
|
-
*
|
469
|
+
* the msid the URI is on
|
408
470
|
* @format GUID
|
409
471
|
*/
|
410
|
-
|
472
|
+
metaSiteId?: string;
|
411
473
|
/**
|
412
|
-
*
|
474
|
+
* URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
|
475
|
+
* @minLength 1
|
476
|
+
*/
|
477
|
+
uriPath?: string;
|
478
|
+
}
|
479
|
+
interface File {
|
480
|
+
/**
|
481
|
+
* the msid the file is related to
|
413
482
|
* @format GUID
|
414
483
|
*/
|
415
|
-
|
484
|
+
metaSiteId?: string;
|
485
|
+
/**
|
486
|
+
* Invalidate by filename (for media files such as PDFs)
|
487
|
+
* @minLength 1
|
488
|
+
* @maxLength 256
|
489
|
+
*/
|
490
|
+
fileName?: string;
|
416
491
|
}
|
417
|
-
interface
|
418
|
-
/**
|
419
|
-
|
492
|
+
interface CustomTag {
|
493
|
+
/**
|
494
|
+
* the msid the tag is related to
|
495
|
+
* @format GUID
|
496
|
+
*/
|
497
|
+
metaSiteId?: string;
|
498
|
+
/**
|
499
|
+
* Tag to invalidate by
|
500
|
+
* @minLength 1
|
501
|
+
* @maxLength 256
|
502
|
+
*/
|
503
|
+
tag?: string;
|
420
504
|
}
|
421
|
-
interface
|
505
|
+
interface GalleryPublished {
|
422
506
|
/**
|
423
|
-
*
|
507
|
+
* id of the gallery that will be published
|
508
|
+
* @readonly
|
424
509
|
* @format GUID
|
425
510
|
*/
|
426
511
|
galleryId?: string;
|
427
|
-
|
428
|
-
|
512
|
+
isRc?: boolean;
|
513
|
+
/** @readonly */
|
514
|
+
newRevision?: Date | null;
|
515
|
+
/** @readonly */
|
516
|
+
oldRevision?: Date | null;
|
429
517
|
}
|
430
|
-
interface
|
518
|
+
interface CleanDeletedGalleriesEvent {
|
431
519
|
/**
|
432
|
-
*
|
520
|
+
* @readonly
|
433
521
|
* @format GUID
|
434
522
|
*/
|
435
523
|
instanceId?: string;
|
524
|
+
/**
|
525
|
+
* @readonly
|
526
|
+
* @format GUID
|
527
|
+
*/
|
528
|
+
metaSiteId?: string;
|
529
|
+
/** @readonly */
|
530
|
+
htmlSiteRevision?: string;
|
531
|
+
/** @readonly */
|
532
|
+
timeSitePublished?: Date | null;
|
436
533
|
}
|
437
|
-
interface
|
534
|
+
interface ProgallerypublisherPublishGalleryRequest {
|
535
|
+
/**
|
536
|
+
* id of the gallery that will be published
|
537
|
+
* @format GUID
|
538
|
+
*/
|
539
|
+
galleryId?: string;
|
540
|
+
}
|
541
|
+
interface ProgallerypublisherPublishGalleryResponse {
|
542
|
+
}
|
543
|
+
interface GetActiveGalleryRevisionRequest {
|
544
|
+
/** @format GUID */
|
545
|
+
galleryId?: string;
|
546
|
+
}
|
547
|
+
interface GetActiveGalleryRevisionResponse {
|
548
|
+
galleryActiveRevision?: Date | null;
|
549
|
+
htmlSiteRevision?: string | null;
|
550
|
+
}
|
551
|
+
interface GetGalleryRevisionRequest {
|
552
|
+
/** @format GUID */
|
553
|
+
galleryId?: string;
|
554
|
+
revision?: Date | null;
|
555
|
+
}
|
556
|
+
interface GetGalleryRevisionResponse {
|
557
|
+
htmlSiteRevision?: string | null;
|
558
|
+
/** @format GUID */
|
559
|
+
instanceId?: string | null;
|
560
|
+
}
|
561
|
+
interface PublishGalleryItemRequest {
|
562
|
+
/**
|
563
|
+
* id of the gallery that will be published
|
564
|
+
* @format GUID
|
565
|
+
*/
|
566
|
+
galleryId?: string;
|
567
|
+
/**
|
568
|
+
* id of the item that will be published
|
569
|
+
* @format GUID
|
570
|
+
*/
|
571
|
+
itemId?: string;
|
572
|
+
}
|
573
|
+
interface PublishGalleryItemResponse {
|
574
|
+
}
|
575
|
+
interface PublishGalleryItemsRequest {
|
576
|
+
/**
|
577
|
+
* id of the gallery that will be published
|
578
|
+
* @format GUID
|
579
|
+
*/
|
580
|
+
galleryId?: string;
|
581
|
+
/**
|
582
|
+
* ids of the items that will be published
|
583
|
+
* @format GUID
|
584
|
+
* @minSize 1
|
585
|
+
* @maxSize 100
|
586
|
+
*/
|
587
|
+
itemIds?: string[];
|
588
|
+
}
|
589
|
+
interface PublishGalleryItemsResponse {
|
438
590
|
}
|
439
591
|
interface Empty {
|
440
592
|
}
|
593
|
+
interface HtmlSitePublished {
|
594
|
+
/**
|
595
|
+
* Application instance ID
|
596
|
+
* @maxLength 50
|
597
|
+
*/
|
598
|
+
appInstanceId?: string;
|
599
|
+
/**
|
600
|
+
* Application type
|
601
|
+
* @maxLength 100
|
602
|
+
*/
|
603
|
+
appType?: string;
|
604
|
+
/** Revision */
|
605
|
+
revision?: string;
|
606
|
+
/**
|
607
|
+
* MSID
|
608
|
+
* @maxLength 100
|
609
|
+
*/
|
610
|
+
metaSiteId?: string | null;
|
611
|
+
/**
|
612
|
+
* optional branch id if publish is done from branch
|
613
|
+
* @format GUID
|
614
|
+
*/
|
615
|
+
branchId?: string | null;
|
616
|
+
/** The site's last transactionId */
|
617
|
+
lastTransactionId?: string | null;
|
618
|
+
/** A list of the site's pages */
|
619
|
+
pages?: EventsPage[];
|
620
|
+
/** Site's publish date */
|
621
|
+
publishDate?: string;
|
622
|
+
}
|
623
|
+
interface EventsPage {
|
624
|
+
/**
|
625
|
+
* Page's Id
|
626
|
+
* @maxLength 100
|
627
|
+
*/
|
628
|
+
_id?: string;
|
629
|
+
}
|
630
|
+
interface HtmlSiteRCPublished {
|
631
|
+
/**
|
632
|
+
* Application instance ID
|
633
|
+
* @maxLength 50
|
634
|
+
*/
|
635
|
+
appInstanceId?: string;
|
636
|
+
/** Revision */
|
637
|
+
revision?: string;
|
638
|
+
/**
|
639
|
+
* Optional branch Id
|
640
|
+
* @format GUID
|
641
|
+
*/
|
642
|
+
branchId?: string | null;
|
643
|
+
/** Site's publish date */
|
644
|
+
publishDate?: string;
|
645
|
+
/** RC label */
|
646
|
+
rcLabel?: RCLabelWithLiterals;
|
647
|
+
}
|
648
|
+
declare enum RCLabel {
|
649
|
+
/** Illegal default value, exception will be thrown if used */
|
650
|
+
UNKNOWN = "UNKNOWN",
|
651
|
+
RELEASE_MANAGER = "RELEASE_MANAGER",
|
652
|
+
BLOCKS = "BLOCKS",
|
653
|
+
WIX_CLI = "WIX_CLI",
|
654
|
+
MOBILE_APP_BUILDER = "MOBILE_APP_BUILDER",
|
655
|
+
SEO = "SEO",
|
656
|
+
FEEDBACK = "FEEDBACK",
|
657
|
+
ACCESSIBILITY = "ACCESSIBILITY"
|
658
|
+
}
|
659
|
+
/** @enumType */
|
660
|
+
type RCLabelWithLiterals = RCLabel | 'UNKNOWN' | 'RELEASE_MANAGER' | 'BLOCKS' | 'WIX_CLI' | 'MOBILE_APP_BUILDER' | 'SEO' | 'FEEDBACK' | 'ACCESSIBILITY';
|
661
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
662
|
+
/** Information about a newly-created gallery. */
|
663
|
+
createdEvent?: EntityCreatedEvent;
|
664
|
+
updatedEvent?: EntityUpdatedEvent;
|
665
|
+
deletedEvent?: EntityDeletedEvent;
|
666
|
+
actionEvent?: ActionEvent;
|
667
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
668
|
+
_id?: string;
|
669
|
+
/**
|
670
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
671
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
672
|
+
*/
|
673
|
+
entityFqdn?: string;
|
674
|
+
/**
|
675
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
676
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
677
|
+
*/
|
678
|
+
slug?: string;
|
679
|
+
/** ID of the entity associated with the event. */
|
680
|
+
entityId?: string;
|
681
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
682
|
+
eventTime?: Date | null;
|
683
|
+
/**
|
684
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
685
|
+
* (for example, GDPR).
|
686
|
+
*/
|
687
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
688
|
+
/** If present, indicates the action that triggered the event. */
|
689
|
+
originatedFrom?: string | null;
|
690
|
+
/**
|
691
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
692
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
693
|
+
*/
|
694
|
+
entityEventSequence?: string | null;
|
695
|
+
}
|
696
|
+
/** @oneof */
|
697
|
+
interface DomainEventBodyOneOf {
|
698
|
+
createdEvent?: EntityCreatedEvent;
|
699
|
+
updatedEvent?: EntityUpdatedEvent;
|
700
|
+
deletedEvent?: EntityDeletedEvent;
|
701
|
+
actionEvent?: ActionEvent;
|
702
|
+
}
|
703
|
+
interface EntityCreatedEvent {
|
704
|
+
entity?: string;
|
705
|
+
}
|
706
|
+
interface RestoreInfo {
|
707
|
+
deletedDate?: Date | null;
|
708
|
+
}
|
709
|
+
interface EntityUpdatedEvent {
|
710
|
+
/**
|
711
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
712
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
713
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
714
|
+
*/
|
715
|
+
currentEntity?: string;
|
716
|
+
}
|
717
|
+
interface EntityDeletedEvent {
|
718
|
+
/** Entity that was deleted. */
|
719
|
+
deletedEntity?: string | null;
|
720
|
+
}
|
721
|
+
interface ActionEvent {
|
722
|
+
body?: string;
|
723
|
+
}
|
441
724
|
interface MessageEnvelope {
|
442
725
|
/**
|
443
726
|
* App instance ID.
|
@@ -510,6 +793,55 @@ declare enum WebhookIdentityType {
|
|
510
793
|
}
|
511
794
|
/** @enumType */
|
512
795
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
796
|
+
interface RestoreAllGalleriesEvent {
|
797
|
+
/**
|
798
|
+
* instance id of galleries to restore
|
799
|
+
* @format GUID
|
800
|
+
*/
|
801
|
+
instanceId?: string;
|
802
|
+
}
|
803
|
+
interface ListGalleriesItemsRequest {
|
804
|
+
/**
|
805
|
+
* IDs of the media items to retrieve.
|
806
|
+
* @minSize 1
|
807
|
+
* @maxSize 100
|
808
|
+
*/
|
809
|
+
itemsId?: ItemId[];
|
810
|
+
}
|
811
|
+
interface ItemId {
|
812
|
+
/**
|
813
|
+
* Gallery ID.
|
814
|
+
* @format GUID
|
815
|
+
*/
|
816
|
+
galleryId?: string;
|
817
|
+
/**
|
818
|
+
* Item ID.
|
819
|
+
* @format GUID
|
820
|
+
*/
|
821
|
+
itemId?: string;
|
822
|
+
}
|
823
|
+
interface ListGalleriesItemsResponse {
|
824
|
+
/** Retrieved media items. */
|
825
|
+
itemsInGalleries?: ItemsInGallery[];
|
826
|
+
}
|
827
|
+
interface ItemsInGallery {
|
828
|
+
/**
|
829
|
+
* Gallery ID.
|
830
|
+
* @format GUID
|
831
|
+
*/
|
832
|
+
galleryId?: string;
|
833
|
+
/** Retrieved media items. */
|
834
|
+
items?: Item[];
|
835
|
+
}
|
836
|
+
interface TriggerRestoreAllGalleriesAsyncRequest {
|
837
|
+
/**
|
838
|
+
* instance id of galleries to restore
|
839
|
+
* @format GUID
|
840
|
+
*/
|
841
|
+
instanceId?: string;
|
842
|
+
}
|
843
|
+
interface TriggerRestoreAllGalleriesAsyncResponse {
|
844
|
+
}
|
513
845
|
interface GalleryItemCreated {
|
514
846
|
/** Created gallery item. */
|
515
847
|
item?: Item;
|
@@ -767,69 +1099,6 @@ interface PublishGalleryResponse {
|
|
767
1099
|
/** Published gallery. */
|
768
1100
|
gallery?: Gallery;
|
769
1101
|
}
|
770
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
771
|
-
/** Information about a newly-created gallery. */
|
772
|
-
createdEvent?: EntityCreatedEvent;
|
773
|
-
updatedEvent?: EntityUpdatedEvent;
|
774
|
-
deletedEvent?: EntityDeletedEvent;
|
775
|
-
actionEvent?: ActionEvent;
|
776
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
777
|
-
_id?: string;
|
778
|
-
/**
|
779
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
780
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
781
|
-
*/
|
782
|
-
entityFqdn?: string;
|
783
|
-
/**
|
784
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
785
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
786
|
-
*/
|
787
|
-
slug?: string;
|
788
|
-
/** ID of the entity associated with the event. */
|
789
|
-
entityId?: string;
|
790
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
791
|
-
eventTime?: Date | null;
|
792
|
-
/**
|
793
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
794
|
-
* (for example, GDPR).
|
795
|
-
*/
|
796
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
797
|
-
/** If present, indicates the action that triggered the event. */
|
798
|
-
originatedFrom?: string | null;
|
799
|
-
/**
|
800
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
801
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
802
|
-
*/
|
803
|
-
entityEventSequence?: string | null;
|
804
|
-
}
|
805
|
-
/** @oneof */
|
806
|
-
interface DomainEventBodyOneOf {
|
807
|
-
createdEvent?: EntityCreatedEvent;
|
808
|
-
updatedEvent?: EntityUpdatedEvent;
|
809
|
-
deletedEvent?: EntityDeletedEvent;
|
810
|
-
actionEvent?: ActionEvent;
|
811
|
-
}
|
812
|
-
interface EntityCreatedEvent {
|
813
|
-
entity?: string;
|
814
|
-
}
|
815
|
-
interface RestoreInfo {
|
816
|
-
deletedDate?: Date | null;
|
817
|
-
}
|
818
|
-
interface EntityUpdatedEvent {
|
819
|
-
/**
|
820
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
821
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
822
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
823
|
-
*/
|
824
|
-
currentEntity?: string;
|
825
|
-
}
|
826
|
-
interface EntityDeletedEvent {
|
827
|
-
/** Entity that was deleted. */
|
828
|
-
deletedEntity?: string | null;
|
829
|
-
}
|
830
|
-
interface ActionEvent {
|
831
|
-
body?: string;
|
832
|
-
}
|
833
1102
|
interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
|
834
1103
|
/** insert/update documents */
|
835
1104
|
update?: DocumentUpdateOperation;
|
@@ -1205,4 +1474,4 @@ interface DeleteGalleryItemIdentifiers {
|
|
1205
1474
|
itemId: string;
|
1206
1475
|
}
|
1207
1476
|
|
1208
|
-
export { type
|
1477
|
+
export { type Text as $, type AnchorLink as A, type BulkDeleteGalleryItemsResponse as B, type CreateGalleryOptions as C, type DeleteGalleryResponse as D, Enum as E, type DynamicPageLink as F, type GetGalleryOptions as G, type DocumentLink as H, type Item as I, type EmailLink as J, type PhoneLink as K, type ListGalleriesOptions as L, type AddressLink as M, type WhatsAppLink as N, type TpaPageLink as O, type PageLink as P, type Image as Q, RCLabel as R, State as S, Type as T, type UpdateGallery as U, VideoType as V, WebhookIdentityType as W, type Point as X, type UnsharpMasking as Y, type Video as Z, type VideoResolution as _, type ListGalleriesResponse as a, type CreateGalleryItemsResponse as a$, type Tags as a0, type SecondaryMedia as a1, type SecondaryMediaMetadataOneOf as a2, type InvalidateCache as a3, type InvalidateCacheGetByOneOf as a4, type App as a5, type Page as a6, type URI as a7, type File as a8, type CustomTag as a9, type RestoreAllGalleriesEvent as aA, type ListGalleriesItemsRequest as aB, type ItemId as aC, type ListGalleriesItemsResponse as aD, type ItemsInGallery as aE, type TriggerRestoreAllGalleriesAsyncRequest as aF, type TriggerRestoreAllGalleriesAsyncResponse as aG, type GalleryItemCreated as aH, type GalleryItemUpdated as aI, type GalleryItemDeleted as aJ, type ListGalleriesRequest as aK, type GetGalleryRequest as aL, type GetGalleryRequestVersionOneOf as aM, type GetGalleryResponse as aN, type ListGalleryItemsRequest as aO, type GetGalleryItemRequest as aP, type GetGalleryItemResponse as aQ, type CreateGalleryRequest as aR, type CreateGalleryResponse as aS, type UpdateGalleryRequest as aT, type UpdateGalleryResponse as aU, type DeleteGalleryRequest as aV, type DeleteGalleryItemsRequest as aW, type BulkDeleteGalleryItemsRequest as aX, type CreateGalleryItemRequest as aY, type CreateGalleryItemResponse as aZ, type CreateGalleryItemsRequest as a_, type GalleryPublished as aa, type CleanDeletedGalleriesEvent as ab, type ProgallerypublisherPublishGalleryRequest as ac, type ProgallerypublisherPublishGalleryResponse as ad, type GetActiveGalleryRevisionRequest as ae, type GetActiveGalleryRevisionResponse as af, type GetGalleryRevisionRequest as ag, type GetGalleryRevisionResponse as ah, type PublishGalleryItemRequest as ai, type PublishGalleryItemResponse as aj, type PublishGalleryItemsRequest as ak, type PublishGalleryItemsResponse as al, type Empty as am, type HtmlSitePublished as an, type EventsPage as ao, type HtmlSiteRCPublished as ap, type DomainEvent as aq, type DomainEventBodyOneOf as ar, type EntityCreatedEvent as as, type RestoreInfo as at, type EntityUpdatedEvent as au, type EntityDeletedEvent as av, type ActionEvent as aw, type MessageEnvelope as ax, type IdentificationData as ay, type IdentificationDataIdOneOf as az, type Gallery as b, type UpdateGalleryItemRequest as b0, type UpdateGalleryItemResponse as b1, type DeleteGalleryItemRequest as b2, type PublishGalleryRequest as b3, type PublishGalleryResponse as b4, type UpdateDocumentsEvent as b5, type UpdateDocumentsEventOperationOneOf as b6, type DocumentUpdateOperation as b7, type IndexDocument as b8, type DocumentPayload as b9, type DocumentImage as ba, type DeleteByIdsOperation as bb, type DeleteByFilterOperation as bc, type UpdateByFilterOperation as bd, type UpdateExistingOperation as be, type SearchIndexingNotification as bf, type BaseEventMetadata as bg, type EventMetadata as bh, type GetGalleryOptionsVersionOneOf as bi, type ListGalleryItemsOptions as c, type ListGalleryItemsResponse as d, type GetGalleryItemIdentifiers as e, type DeleteGalleryItemsOptions as f, type DeleteGalleryItemsResponse as g, type UpdateGalleryItemIdentifiers as h, type UpdateGalleryItem as i, type DeleteGalleryItemIdentifiers as j, type DeleteGalleryItemResponse as k, type GalleryCreatedEnvelope as l, type GalleryDeletedEnvelope as m, type GalleryItemCreatedEnvelope as n, type GalleryItemDeletedEnvelope as o, type GalleryItemUpdatedEnvelope as p, type GalleryUpdatedEnvelope as q, LinkType as r, LinkRel as s, ImageType as t, SearchIndexingNotificationState as u, type ItemMetadataOneOf as v, type Link as w, type WixLink as x, type WixLinkLinkOneOf as y, type ExternalLink as z };
|
package/build/meta.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { aK as ListGalleriesRequest$1, a as ListGalleriesResponse$1, aL as GetGalleryRequest$1, aN as GetGalleryResponse$1, aO as ListGalleryItemsRequest$1, d as ListGalleryItemsResponse$1, aP as GetGalleryItemRequest$1, aQ as GetGalleryItemResponse$1, aR as CreateGalleryRequest$1, aS as CreateGalleryResponse$1, aT as UpdateGalleryRequest$1, aU as UpdateGalleryResponse$1, aV as DeleteGalleryRequest$1, D as DeleteGalleryResponse$1, aW as DeleteGalleryItemsRequest$1, g as DeleteGalleryItemsResponse$1, aX as BulkDeleteGalleryItemsRequest$1, B as BulkDeleteGalleryItemsResponse$1, aY as CreateGalleryItemRequest$1, aZ as CreateGalleryItemResponse$1, b0 as UpdateGalleryItemRequest$1, b1 as UpdateGalleryItemResponse$1, b2 as DeleteGalleryItemRequest$1, k as DeleteGalleryItemResponse$1 } from './pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.mjs';
|
2
2
|
|
3
3
|
interface Gallery {
|
4
4
|
/**
|
package/build/meta.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { aK as ListGalleriesRequest$1, a as ListGalleriesResponse$1, aL as GetGalleryRequest$1, aN as GetGalleryResponse$1, aO as ListGalleryItemsRequest$1, d as ListGalleryItemsResponse$1, aP as GetGalleryItemRequest$1, aQ as GetGalleryItemResponse$1, aR as CreateGalleryRequest$1, aS as CreateGalleryResponse$1, aT as UpdateGalleryRequest$1, aU as UpdateGalleryResponse$1, aV as DeleteGalleryRequest$1, D as DeleteGalleryResponse$1, aW as DeleteGalleryItemsRequest$1, g as DeleteGalleryItemsResponse$1, aX as BulkDeleteGalleryItemsRequest$1, B as BulkDeleteGalleryItemsResponse$1, aY as CreateGalleryItemRequest$1, aZ as CreateGalleryItemResponse$1, b0 as UpdateGalleryItemRequest$1, b1 as UpdateGalleryItemResponse$1, b2 as DeleteGalleryItemRequest$1, k as DeleteGalleryItemResponse$1 } from './pro-gallery-v2-gallery-pro-gallery.universal-CExTgtbV.js';
|
2
2
|
|
3
3
|
interface Gallery {
|
4
4
|
/**
|