@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +49 -49
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +49 -49
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +49 -49
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +49 -49
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +49 -49
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +49 -49
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +49 -49
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +49 -49
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -804,55 +804,6 @@ declare enum WebhookIdentityType {
|
|
|
804
804
|
}
|
|
805
805
|
/** @enumType */
|
|
806
806
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
807
|
-
interface RestoreAllGalleriesEvent {
|
|
808
|
-
/**
|
|
809
|
-
* instance id of galleries to restore
|
|
810
|
-
* @format GUID
|
|
811
|
-
*/
|
|
812
|
-
instanceId?: string;
|
|
813
|
-
}
|
|
814
|
-
interface ListGalleriesItemsRequest {
|
|
815
|
-
/**
|
|
816
|
-
* IDs of the media items to retrieve.
|
|
817
|
-
* @minSize 1
|
|
818
|
-
* @maxSize 100
|
|
819
|
-
*/
|
|
820
|
-
itemsId?: ItemId[];
|
|
821
|
-
}
|
|
822
|
-
interface ItemId {
|
|
823
|
-
/**
|
|
824
|
-
* Gallery ID.
|
|
825
|
-
* @format GUID
|
|
826
|
-
*/
|
|
827
|
-
galleryId?: string;
|
|
828
|
-
/**
|
|
829
|
-
* Item ID.
|
|
830
|
-
* @format GUID
|
|
831
|
-
*/
|
|
832
|
-
itemId?: string;
|
|
833
|
-
}
|
|
834
|
-
interface ListGalleriesItemsResponse {
|
|
835
|
-
/** Retrieved media items. */
|
|
836
|
-
itemsInGalleries?: ItemsInGallery[];
|
|
837
|
-
}
|
|
838
|
-
interface ItemsInGallery {
|
|
839
|
-
/**
|
|
840
|
-
* Gallery ID.
|
|
841
|
-
* @format GUID
|
|
842
|
-
*/
|
|
843
|
-
galleryId?: string;
|
|
844
|
-
/** Retrieved media items. */
|
|
845
|
-
items?: Item[];
|
|
846
|
-
}
|
|
847
|
-
interface TriggerRestoreAllGalleriesAsyncRequest {
|
|
848
|
-
/**
|
|
849
|
-
* instance id of galleries to restore
|
|
850
|
-
* @format GUID
|
|
851
|
-
*/
|
|
852
|
-
instanceId?: string;
|
|
853
|
-
}
|
|
854
|
-
interface TriggerRestoreAllGalleriesAsyncResponse {
|
|
855
|
-
}
|
|
856
807
|
interface GalleryItemCreated {
|
|
857
808
|
/** Created gallery item. */
|
|
858
809
|
item?: Item;
|
|
@@ -1112,6 +1063,55 @@ interface PublishGalleryResponse {
|
|
|
1112
1063
|
/** Published gallery. */
|
|
1113
1064
|
gallery?: Gallery;
|
|
1114
1065
|
}
|
|
1066
|
+
interface RestoreAllGalleriesEvent {
|
|
1067
|
+
/**
|
|
1068
|
+
* instance id of galleries to restore
|
|
1069
|
+
* @format GUID
|
|
1070
|
+
*/
|
|
1071
|
+
instanceId?: string;
|
|
1072
|
+
}
|
|
1073
|
+
interface ListGalleriesItemsRequest {
|
|
1074
|
+
/**
|
|
1075
|
+
* IDs of the media items to retrieve.
|
|
1076
|
+
* @minSize 1
|
|
1077
|
+
* @maxSize 100
|
|
1078
|
+
*/
|
|
1079
|
+
itemsId?: ItemId[];
|
|
1080
|
+
}
|
|
1081
|
+
interface ItemId {
|
|
1082
|
+
/**
|
|
1083
|
+
* Gallery ID.
|
|
1084
|
+
* @format GUID
|
|
1085
|
+
*/
|
|
1086
|
+
galleryId?: string;
|
|
1087
|
+
/**
|
|
1088
|
+
* Item ID.
|
|
1089
|
+
* @format GUID
|
|
1090
|
+
*/
|
|
1091
|
+
itemId?: string;
|
|
1092
|
+
}
|
|
1093
|
+
interface ListGalleriesItemsResponse {
|
|
1094
|
+
/** Retrieved media items. */
|
|
1095
|
+
itemsInGalleries?: ItemsInGallery[];
|
|
1096
|
+
}
|
|
1097
|
+
interface ItemsInGallery {
|
|
1098
|
+
/**
|
|
1099
|
+
* Gallery ID.
|
|
1100
|
+
* @format GUID
|
|
1101
|
+
*/
|
|
1102
|
+
galleryId?: string;
|
|
1103
|
+
/** Retrieved media items. */
|
|
1104
|
+
items?: Item[];
|
|
1105
|
+
}
|
|
1106
|
+
interface TriggerRestoreAllGalleriesAsyncRequest {
|
|
1107
|
+
/**
|
|
1108
|
+
* instance id of galleries to restore
|
|
1109
|
+
* @format GUID
|
|
1110
|
+
*/
|
|
1111
|
+
instanceId?: string;
|
|
1112
|
+
}
|
|
1113
|
+
interface TriggerRestoreAllGalleriesAsyncResponse {
|
|
1114
|
+
}
|
|
1115
1115
|
interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
|
|
1116
1116
|
/** insert/update documents */
|
|
1117
1117
|
update?: DocumentUpdateOperation;
|