@wix/auto_sdk_pro-gallery_pro-gallery 1.0.32 → 1.0.34

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.
@@ -830,55 +830,6 @@ declare enum WebhookIdentityType {
830
830
  }
831
831
  /** @enumType */
832
832
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
833
- interface RestoreAllGalleriesEvent {
834
- /**
835
- * instance id of galleries to restore
836
- * @format GUID
837
- */
838
- instanceId?: string;
839
- }
840
- interface ListGalleriesItemsRequest {
841
- /**
842
- * IDs of the media items to retrieve.
843
- * @minSize 1
844
- * @maxSize 100
845
- */
846
- itemsId?: ItemId[];
847
- }
848
- interface ItemId {
849
- /**
850
- * Gallery ID.
851
- * @format GUID
852
- */
853
- galleryId?: string;
854
- /**
855
- * Item ID.
856
- * @format GUID
857
- */
858
- itemId?: string;
859
- }
860
- interface ListGalleriesItemsResponse {
861
- /** Retrieved media items. */
862
- itemsInGalleries?: ItemsInGallery[];
863
- }
864
- interface ItemsInGallery {
865
- /**
866
- * Gallery ID.
867
- * @format GUID
868
- */
869
- galleryId?: string;
870
- /** Retrieved media items. */
871
- items?: Item[];
872
- }
873
- interface TriggerRestoreAllGalleriesAsyncRequest {
874
- /**
875
- * instance id of galleries to restore
876
- * @format GUID
877
- */
878
- instanceId?: string;
879
- }
880
- interface TriggerRestoreAllGalleriesAsyncResponse {
881
- }
882
833
  interface GalleryItemCreated {
883
834
  /** Created gallery item. */
884
835
  item?: Item;
@@ -1158,6 +1109,55 @@ interface PublishGalleryResponse {
1158
1109
  /** Published gallery. */
1159
1110
  gallery?: Gallery;
1160
1111
  }
1112
+ interface RestoreAllGalleriesEvent {
1113
+ /**
1114
+ * instance id of galleries to restore
1115
+ * @format GUID
1116
+ */
1117
+ instanceId?: string;
1118
+ }
1119
+ interface ListGalleriesItemsRequest {
1120
+ /**
1121
+ * IDs of the media items to retrieve.
1122
+ * @minSize 1
1123
+ * @maxSize 100
1124
+ */
1125
+ itemsId?: ItemId[];
1126
+ }
1127
+ interface ItemId {
1128
+ /**
1129
+ * Gallery ID.
1130
+ * @format GUID
1131
+ */
1132
+ galleryId?: string;
1133
+ /**
1134
+ * Item ID.
1135
+ * @format GUID
1136
+ */
1137
+ itemId?: string;
1138
+ }
1139
+ interface ListGalleriesItemsResponse {
1140
+ /** Retrieved media items. */
1141
+ itemsInGalleries?: ItemsInGallery[];
1142
+ }
1143
+ interface ItemsInGallery {
1144
+ /**
1145
+ * Gallery ID.
1146
+ * @format GUID
1147
+ */
1148
+ galleryId?: string;
1149
+ /** Retrieved media items. */
1150
+ items?: Item[];
1151
+ }
1152
+ interface TriggerRestoreAllGalleriesAsyncRequest {
1153
+ /**
1154
+ * instance id of galleries to restore
1155
+ * @format GUID
1156
+ */
1157
+ instanceId?: string;
1158
+ }
1159
+ interface TriggerRestoreAllGalleriesAsyncResponse {
1160
+ }
1161
1161
  interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
1162
1162
  /** insert/update documents */
1163
1163
  update?: DocumentUpdateOperation;