@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.
@@ -387,57 +387,340 @@ interface SecondaryMediaMetadataOneOf {
387
387
  /** secondary media text metadata (optional) */
388
388
  text?: Text;
389
389
  }
390
- interface RestoreAllGalleriesEvent {
390
+ interface InvalidateCache extends InvalidateCacheGetByOneOf {
391
391
  /**
392
- * instance id of galleries to restore
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 ListGalleriesItemsRequest {
455
+ interface Page {
398
456
  /**
399
- * IDs of the media items to retrieve.
400
- * @minSize 1
401
- * @maxSize 100
457
+ * the msid the page is on
458
+ * @format GUID
402
459
  */
403
- itemsId?: ItemId[];
460
+ metaSiteId?: string;
461
+ /**
462
+ * Invalidate by Page ID
463
+ * @minLength 1
464
+ */
465
+ pageId?: string;
404
466
  }
405
- interface ItemId {
467
+ interface URI {
406
468
  /**
407
- * Gallery ID.
469
+ * the msid the URI is on
408
470
  * @format GUID
409
471
  */
410
- galleryId?: string;
472
+ metaSiteId?: string;
411
473
  /**
412
- * Item ID.
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
- itemId?: string;
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 ListGalleriesItemsResponse {
418
- /** Retrieved media items. */
419
- itemsInGalleries?: ItemsInGallery[];
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 ItemsInGallery {
505
+ interface GalleryPublished {
422
506
  /**
423
- * Gallery ID.
507
+ * id of the gallery that will be published
508
+ * @readonly
424
509
  * @format GUID
425
510
  */
426
511
  galleryId?: string;
427
- /** Retrieved media items. */
428
- items?: Item[];
512
+ isRc?: boolean;
513
+ /** @readonly */
514
+ newRevision?: Date | null;
515
+ /** @readonly */
516
+ oldRevision?: Date | null;
429
517
  }
430
- interface TriggerRestoreAllGalleriesAsyncRequest {
518
+ interface CleanDeletedGalleriesEvent {
431
519
  /**
432
- * instance id of galleries to restore
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 TriggerRestoreAllGalleriesAsyncResponse {
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 Tags 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, type Point as R, State as S, Type as T, type UpdateGallery as U, VideoType as V, WebhookIdentityType as W, type UnsharpMasking as X, type Video as Y, type VideoResolution as Z, type Text as _, type ListGalleriesResponse as a, type SecondaryMedia as a0, type SecondaryMediaMetadataOneOf as a1, type RestoreAllGalleriesEvent as a2, type ListGalleriesItemsRequest as a3, type ItemId as a4, type ListGalleriesItemsResponse as a5, type ItemsInGallery as a6, type TriggerRestoreAllGalleriesAsyncRequest as a7, type TriggerRestoreAllGalleriesAsyncResponse as a8, type Empty as a9, type DeleteGalleryItemRequest as aA, type PublishGalleryRequest as aB, type PublishGalleryResponse as aC, type DomainEvent as aD, type DomainEventBodyOneOf as aE, type EntityCreatedEvent as aF, type RestoreInfo as aG, type EntityUpdatedEvent as aH, type EntityDeletedEvent as aI, type ActionEvent as aJ, type UpdateDocumentsEvent as aK, type UpdateDocumentsEventOperationOneOf as aL, type DocumentUpdateOperation as aM, type IndexDocument as aN, type DocumentPayload as aO, type DocumentImage as aP, type DeleteByIdsOperation as aQ, type DeleteByFilterOperation as aR, type UpdateByFilterOperation as aS, type UpdateExistingOperation as aT, type SearchIndexingNotification as aU, type BaseEventMetadata as aV, type EventMetadata as aW, type GetGalleryOptionsVersionOneOf as aX, type MessageEnvelope as aa, type IdentificationData as ab, type IdentificationDataIdOneOf as ac, type GalleryItemCreated as ad, type GalleryItemUpdated as ae, type GalleryItemDeleted as af, type ListGalleriesRequest as ag, type GetGalleryRequest as ah, type GetGalleryRequestVersionOneOf as ai, type GetGalleryResponse as aj, type ListGalleryItemsRequest as ak, type GetGalleryItemRequest as al, type GetGalleryItemResponse as am, type CreateGalleryRequest as an, type CreateGalleryResponse as ao, type UpdateGalleryRequest as ap, type UpdateGalleryResponse as aq, type DeleteGalleryRequest as ar, type DeleteGalleryItemsRequest as as, type BulkDeleteGalleryItemsRequest as at, type CreateGalleryItemRequest as au, type CreateGalleryItemResponse as av, type CreateGalleryItemsRequest as aw, type CreateGalleryItemsResponse as ax, type UpdateGalleryItemRequest as ay, type UpdateGalleryItemResponse as az, type Gallery as b, 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 };
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_pro-gallery_pro-gallery",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -49,5 +49,5 @@
49
49
  "fqdn": "wix.pro_gallery.v2.gallery"
50
50
  }
51
51
  },
52
- "falconPackageHash": "cf49f9486f0c1dc6a3fd1aea9acec3327033bd712e5b43c65e52c54e"
52
+ "falconPackageHash": "2b14d0246309100c58ff8ef3ca7bf77c547429e04457e5841e9a4917"
53
53
  }