@wix/pro-gallery 1.0.52 → 1.0.54
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wix/pro-gallery",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.54",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
6
6
|
"access": "public"
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"type-bundles"
|
19
19
|
],
|
20
20
|
"dependencies": {
|
21
|
-
"@wix/pro-gallery_pro-gallery": "1.0.
|
21
|
+
"@wix/pro-gallery_pro-gallery": "1.0.25"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"glob": "^10.4.1",
|
@@ -27,8 +27,9 @@
|
|
27
27
|
"typescript": "^5.3.2"
|
28
28
|
},
|
29
29
|
"scripts": {
|
30
|
-
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
|
30
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles && npm run build:validate-dts",
|
31
31
|
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
32
|
+
"build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
|
32
33
|
"test": ":"
|
33
34
|
},
|
34
35
|
"wix": {
|
@@ -42,5 +43,5 @@
|
|
42
43
|
"fqdn": ""
|
43
44
|
}
|
44
45
|
},
|
45
|
-
"falconPackageHash": "
|
46
|
+
"falconPackageHash": "0fd59afafade4d0eb13169603cf73d862d05191ad94ed83ef6ef652b"
|
46
47
|
}
|
@@ -505,7 +505,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
505
505
|
slug?: string;
|
506
506
|
/** ID of the entity associated with the event. */
|
507
507
|
entityId?: string;
|
508
|
-
/** Event timestamp. */
|
508
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
509
509
|
eventTime?: Date;
|
510
510
|
/**
|
511
511
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -850,13 +850,13 @@ interface DeleteGalleryItemsResponse {
|
|
850
850
|
}
|
851
851
|
interface BulkDeleteGalleryItemsRequest {
|
852
852
|
/** Gallery ID. */
|
853
|
-
galleryId
|
854
|
-
/**
|
855
|
-
itemIds
|
853
|
+
galleryId: string;
|
854
|
+
/** IDs of the media items to delete. */
|
855
|
+
itemIds: string[];
|
856
856
|
}
|
857
857
|
interface BulkDeleteGalleryItemsResponse {
|
858
858
|
/**
|
859
|
-
*
|
859
|
+
* IDs of the deleted media items.
|
860
860
|
* @readonly
|
861
861
|
*/
|
862
862
|
itemIds?: string[];
|
@@ -1024,6 +1024,9 @@ interface DeleteGalleryResponseNonNullableFields {
|
|
1024
1024
|
interface DeleteGalleryItemsResponseNonNullableFields {
|
1025
1025
|
gallery?: GalleryNonNullableFields;
|
1026
1026
|
}
|
1027
|
+
interface BulkDeleteGalleryItemsResponseNonNullableFields {
|
1028
|
+
itemIds: string[];
|
1029
|
+
}
|
1027
1030
|
interface CreateGalleryItemResponseNonNullableFields {
|
1028
1031
|
item?: ItemNonNullableFields;
|
1029
1032
|
}
|
@@ -1060,7 +1063,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
1060
1063
|
slug?: string;
|
1061
1064
|
/** ID of the entity associated with the event. */
|
1062
1065
|
entityId?: string;
|
1063
|
-
/** Event timestamp. */
|
1066
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
1064
1067
|
eventTime?: Date;
|
1065
1068
|
/**
|
1066
1069
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -1278,27 +1281,71 @@ declare global {
|
|
1278
1281
|
}
|
1279
1282
|
}
|
1280
1283
|
|
1284
|
+
declare function listGalleries$1(httpClient: HttpClient): (options?: ListGalleriesOptions) => Promise<ListGalleriesResponse & ListGalleriesResponseNonNullableFields>;
|
1285
|
+
declare function getGallery$1(httpClient: HttpClient): (galleryId: string, options?: GetGalleryOptions) => Promise<Gallery & GalleryNonNullableFields>;
|
1286
|
+
declare function listGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: ListGalleryItemsOptions) => Promise<ListGalleryItemsResponse & ListGalleryItemsResponseNonNullableFields>;
|
1287
|
+
declare function getGalleryItem$1(httpClient: HttpClient): (identifiers: GetGalleryItemIdentifiers) => Promise<Item & ItemNonNullableFields>;
|
1288
|
+
declare function createGallery$1(httpClient: HttpClient): (options?: CreateGalleryOptions) => Promise<Gallery & GalleryNonNullableFields>;
|
1289
|
+
declare function updateGallery$1(httpClient: HttpClient): (_id: string | null, gallery: UpdateGallery) => Promise<Gallery & GalleryNonNullableFields>;
|
1290
|
+
declare function deleteGallery$1(httpClient: HttpClient): (galleryId: string) => Promise<DeleteGalleryResponse & DeleteGalleryResponseNonNullableFields>;
|
1291
|
+
declare function deleteGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: DeleteGalleryItemsOptions) => Promise<DeleteGalleryItemsResponse & DeleteGalleryItemsResponseNonNullableFields>;
|
1292
|
+
declare function bulkDeleteGalleryItems$1(httpClient: HttpClient): (galleryId: string, itemIds: string[]) => Promise<BulkDeleteGalleryItemsResponse & BulkDeleteGalleryItemsResponseNonNullableFields>;
|
1293
|
+
declare function createGalleryItem$1(httpClient: HttpClient): (galleryId: string, item: Item) => Promise<Item & ItemNonNullableFields>;
|
1294
|
+
declare function updateGalleryItem$1(httpClient: HttpClient): (identifiers: UpdateGalleryItemIdentifiers, item: UpdateGalleryItem) => Promise<Item & ItemNonNullableFields>;
|
1295
|
+
declare function deleteGalleryItem$1(httpClient: HttpClient): (identifiers: DeleteGalleryItemIdentifiers) => Promise<DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields>;
|
1296
|
+
declare const onGalleryCreated$1: EventDefinition<GalleryCreatedEnvelope, "wix.pro_gallery.gallery_v2_created">;
|
1297
|
+
declare const onGalleryUpdated$1: EventDefinition<GalleryUpdatedEnvelope, "wix.pro_gallery.gallery_v2_updated">;
|
1298
|
+
declare const onGalleryDeleted$1: EventDefinition<GalleryDeletedEnvelope, "wix.pro_gallery.gallery_v2_deleted">;
|
1299
|
+
declare const onGalleryItemCreated$1: EventDefinition<GalleryItemCreatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_created">;
|
1300
|
+
declare const onGalleryItemUpdated$1: EventDefinition<GalleryItemUpdatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_updated">;
|
1301
|
+
declare const onGalleryItemDeleted$1: EventDefinition<GalleryItemDeletedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_deleted">;
|
1302
|
+
|
1281
1303
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
1282
1304
|
|
1283
1305
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
1284
1306
|
|
1285
|
-
|
1286
|
-
declare const
|
1287
|
-
|
1288
|
-
declare const
|
1289
|
-
|
1290
|
-
declare const
|
1291
|
-
|
1292
|
-
declare const
|
1293
|
-
|
1294
|
-
declare const
|
1295
|
-
|
1296
|
-
declare const
|
1297
|
-
|
1298
|
-
declare const
|
1299
|
-
|
1300
|
-
declare const
|
1301
|
-
|
1307
|
+
type _publicListGalleriesType = typeof listGalleries$1;
|
1308
|
+
declare const listGalleries: ReturnType<typeof createRESTModule<_publicListGalleriesType>>;
|
1309
|
+
type _publicGetGalleryType = typeof getGallery$1;
|
1310
|
+
declare const getGallery: ReturnType<typeof createRESTModule<_publicGetGalleryType>>;
|
1311
|
+
type _publicListGalleryItemsType = typeof listGalleryItems$1;
|
1312
|
+
declare const listGalleryItems: ReturnType<typeof createRESTModule<_publicListGalleryItemsType>>;
|
1313
|
+
type _publicGetGalleryItemType = typeof getGalleryItem$1;
|
1314
|
+
declare const getGalleryItem: ReturnType<typeof createRESTModule<_publicGetGalleryItemType>>;
|
1315
|
+
type _publicCreateGalleryType = typeof createGallery$1;
|
1316
|
+
declare const createGallery: ReturnType<typeof createRESTModule<_publicCreateGalleryType>>;
|
1317
|
+
type _publicUpdateGalleryType = typeof updateGallery$1;
|
1318
|
+
declare const updateGallery: ReturnType<typeof createRESTModule<_publicUpdateGalleryType>>;
|
1319
|
+
type _publicDeleteGalleryType = typeof deleteGallery$1;
|
1320
|
+
declare const deleteGallery: ReturnType<typeof createRESTModule<_publicDeleteGalleryType>>;
|
1321
|
+
type _publicDeleteGalleryItemsType = typeof deleteGalleryItems$1;
|
1322
|
+
declare const deleteGalleryItems: ReturnType<typeof createRESTModule<_publicDeleteGalleryItemsType>>;
|
1323
|
+
type _publicBulkDeleteGalleryItemsType = typeof bulkDeleteGalleryItems$1;
|
1324
|
+
declare const bulkDeleteGalleryItems: ReturnType<typeof createRESTModule<_publicBulkDeleteGalleryItemsType>>;
|
1325
|
+
type _publicCreateGalleryItemType = typeof createGalleryItem$1;
|
1326
|
+
declare const createGalleryItem: ReturnType<typeof createRESTModule<_publicCreateGalleryItemType>>;
|
1327
|
+
type _publicUpdateGalleryItemType = typeof updateGalleryItem$1;
|
1328
|
+
declare const updateGalleryItem: ReturnType<typeof createRESTModule<_publicUpdateGalleryItemType>>;
|
1329
|
+
type _publicDeleteGalleryItemType = typeof deleteGalleryItem$1;
|
1330
|
+
declare const deleteGalleryItem: ReturnType<typeof createRESTModule<_publicDeleteGalleryItemType>>;
|
1331
|
+
|
1332
|
+
type _publicOnGalleryCreatedType = typeof onGalleryCreated$1;
|
1333
|
+
declare const onGalleryCreated: ReturnType<typeof createEventModule<_publicOnGalleryCreatedType>>;
|
1334
|
+
|
1335
|
+
type _publicOnGalleryUpdatedType = typeof onGalleryUpdated$1;
|
1336
|
+
declare const onGalleryUpdated: ReturnType<typeof createEventModule<_publicOnGalleryUpdatedType>>;
|
1337
|
+
|
1338
|
+
type _publicOnGalleryDeletedType = typeof onGalleryDeleted$1;
|
1339
|
+
declare const onGalleryDeleted: ReturnType<typeof createEventModule<_publicOnGalleryDeletedType>>;
|
1340
|
+
|
1341
|
+
type _publicOnGalleryItemCreatedType = typeof onGalleryItemCreated$1;
|
1342
|
+
declare const onGalleryItemCreated: ReturnType<typeof createEventModule<_publicOnGalleryItemCreatedType>>;
|
1343
|
+
|
1344
|
+
type _publicOnGalleryItemUpdatedType = typeof onGalleryItemUpdated$1;
|
1345
|
+
declare const onGalleryItemUpdated: ReturnType<typeof createEventModule<_publicOnGalleryItemUpdatedType>>;
|
1346
|
+
|
1347
|
+
type _publicOnGalleryItemDeletedType = typeof onGalleryItemDeleted$1;
|
1348
|
+
declare const onGalleryItemDeleted: ReturnType<typeof createEventModule<_publicOnGalleryItemDeletedType>>;
|
1302
1349
|
|
1303
1350
|
type context_ActionEvent = ActionEvent;
|
1304
1351
|
type context_AddressLink = AddressLink;
|
@@ -1307,6 +1354,7 @@ type context_App = App;
|
|
1307
1354
|
type context_BaseEventMetadata = BaseEventMetadata;
|
1308
1355
|
type context_BulkDeleteGalleryItemsRequest = BulkDeleteGalleryItemsRequest;
|
1309
1356
|
type context_BulkDeleteGalleryItemsResponse = BulkDeleteGalleryItemsResponse;
|
1357
|
+
type context_BulkDeleteGalleryItemsResponseNonNullableFields = BulkDeleteGalleryItemsResponseNonNullableFields;
|
1310
1358
|
type context_CleanDeletedGalleriesEvent = CleanDeletedGalleriesEvent;
|
1311
1359
|
type context_CreateGalleryItemRequest = CreateGalleryItemRequest;
|
1312
1360
|
type context_CreateGalleryItemResponse = CreateGalleryItemResponse;
|
@@ -1449,6 +1497,25 @@ declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
|
1449
1497
|
type context_WhatsAppLink = WhatsAppLink;
|
1450
1498
|
type context_WixLink = WixLink;
|
1451
1499
|
type context_WixLinkLinkOneOf = WixLinkLinkOneOf;
|
1500
|
+
type context__publicBulkDeleteGalleryItemsType = _publicBulkDeleteGalleryItemsType;
|
1501
|
+
type context__publicCreateGalleryItemType = _publicCreateGalleryItemType;
|
1502
|
+
type context__publicCreateGalleryType = _publicCreateGalleryType;
|
1503
|
+
type context__publicDeleteGalleryItemType = _publicDeleteGalleryItemType;
|
1504
|
+
type context__publicDeleteGalleryItemsType = _publicDeleteGalleryItemsType;
|
1505
|
+
type context__publicDeleteGalleryType = _publicDeleteGalleryType;
|
1506
|
+
type context__publicGetGalleryItemType = _publicGetGalleryItemType;
|
1507
|
+
type context__publicGetGalleryType = _publicGetGalleryType;
|
1508
|
+
type context__publicListGalleriesType = _publicListGalleriesType;
|
1509
|
+
type context__publicListGalleryItemsType = _publicListGalleryItemsType;
|
1510
|
+
type context__publicOnGalleryCreatedType = _publicOnGalleryCreatedType;
|
1511
|
+
type context__publicOnGalleryDeletedType = _publicOnGalleryDeletedType;
|
1512
|
+
type context__publicOnGalleryItemCreatedType = _publicOnGalleryItemCreatedType;
|
1513
|
+
type context__publicOnGalleryItemDeletedType = _publicOnGalleryItemDeletedType;
|
1514
|
+
type context__publicOnGalleryItemUpdatedType = _publicOnGalleryItemUpdatedType;
|
1515
|
+
type context__publicOnGalleryUpdatedType = _publicOnGalleryUpdatedType;
|
1516
|
+
type context__publicUpdateGalleryItemType = _publicUpdateGalleryItemType;
|
1517
|
+
type context__publicUpdateGalleryType = _publicUpdateGalleryType;
|
1518
|
+
declare const context_bulkDeleteGalleryItems: typeof bulkDeleteGalleryItems;
|
1452
1519
|
declare const context_createGallery: typeof createGallery;
|
1453
1520
|
declare const context_createGalleryItem: typeof createGalleryItem;
|
1454
1521
|
declare const context_deleteGallery: typeof deleteGallery;
|
@@ -1467,7 +1534,7 @@ declare const context_onGalleryUpdated: typeof onGalleryUpdated;
|
|
1467
1534
|
declare const context_updateGallery: typeof updateGallery;
|
1468
1535
|
declare const context_updateGalleryItem: typeof updateGalleryItem;
|
1469
1536
|
declare namespace context {
|
1470
|
-
export { type context_ActionEvent as ActionEvent, type context_AddressLink as AddressLink, type context_AnchorLink as AnchorLink, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkDeleteGalleryItemsRequest as BulkDeleteGalleryItemsRequest, type context_BulkDeleteGalleryItemsResponse as BulkDeleteGalleryItemsResponse, type context_CleanDeletedGalleriesEvent as CleanDeletedGalleriesEvent, type context_CreateGalleryItemRequest as CreateGalleryItemRequest, type context_CreateGalleryItemResponse as CreateGalleryItemResponse, type context_CreateGalleryItemResponseNonNullableFields as CreateGalleryItemResponseNonNullableFields, type context_CreateGalleryItemsRequest as CreateGalleryItemsRequest, type context_CreateGalleryItemsResponse as CreateGalleryItemsResponse, type context_CreateGalleryOptions as CreateGalleryOptions, type context_CreateGalleryRequest as CreateGalleryRequest, type context_CreateGalleryResponse as CreateGalleryResponse, type context_CreateGalleryResponseNonNullableFields as CreateGalleryResponseNonNullableFields, type context_DeleteByFilterOperation as DeleteByFilterOperation, type context_DeleteByIdsOperation as DeleteByIdsOperation, type context_DeleteGalleryItemIdentifiers as DeleteGalleryItemIdentifiers, type context_DeleteGalleryItemRequest as DeleteGalleryItemRequest, type context_DeleteGalleryItemResponse as DeleteGalleryItemResponse, type context_DeleteGalleryItemResponseNonNullableFields as DeleteGalleryItemResponseNonNullableFields, type context_DeleteGalleryItemsOptions as DeleteGalleryItemsOptions, type context_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type context_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type context_DeleteGalleryItemsResponseNonNullableFields as DeleteGalleryItemsResponseNonNullableFields, type context_DeleteGalleryRequest as DeleteGalleryRequest, type context_DeleteGalleryResponse as DeleteGalleryResponse, type context_DeleteGalleryResponseNonNullableFields as DeleteGalleryResponseNonNullableFields, type context_DocumentImage as DocumentImage, type context_DocumentLink as DocumentLink, type context_DocumentPayload as DocumentPayload, type context_DocumentUpdateOperation as DocumentUpdateOperation, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DynamicPageLink as DynamicPageLink, type context_EmailLink as EmailLink, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, context_Enum as Enum, type context_EventMetadata as EventMetadata, type context_EventsPage as EventsPage, type context_ExternalLink as ExternalLink, type context_File as File, type context_Gallery as Gallery, type context_GalleryCreatedEnvelope as GalleryCreatedEnvelope, type context_GalleryDeletedEnvelope as GalleryDeletedEnvelope, type context_GalleryItemCreated as GalleryItemCreated, type context_GalleryItemCreatedEnvelope as GalleryItemCreatedEnvelope, type context_GalleryItemDeleted as GalleryItemDeleted, type context_GalleryItemDeletedEnvelope as GalleryItemDeletedEnvelope, type context_GalleryItemUpdated as GalleryItemUpdated, type context_GalleryItemUpdatedEnvelope as GalleryItemUpdatedEnvelope, type context_GalleryNonNullableFields as GalleryNonNullableFields, type context_GalleryPublished as GalleryPublished, type context_GalleryUpdatedEnvelope as GalleryUpdatedEnvelope, type context_GetGalleryItemIdentifiers as GetGalleryItemIdentifiers, type context_GetGalleryItemRequest as GetGalleryItemRequest, type context_GetGalleryItemResponse as GetGalleryItemResponse, type context_GetGalleryItemResponseNonNullableFields as GetGalleryItemResponseNonNullableFields, type context_GetGalleryOptions as GetGalleryOptions, type context_GetGalleryRequest as GetGalleryRequest, type context_GetGalleryRequestVersionOneOf as GetGalleryRequestVersionOneOf, type context_GetGalleryResponse as GetGalleryResponse, type context_GetGalleryResponseNonNullableFields as GetGalleryResponseNonNullableFields, type context_HtmlSitePublished as HtmlSitePublished, type context_HtmlSiteRCPublished as HtmlSiteRCPublished, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, context_ImageType as ImageType, type context_IndexDocument as IndexDocument, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemId as ItemId, type context_ItemMetadataOneOf as ItemMetadataOneOf, type context_ItemNonNullableFields as ItemNonNullableFields, type context_ItemsInGallery as ItemsInGallery, type context_Link as Link, context_LinkRel as LinkRel, context_LinkType as LinkType, type context_ListGalleriesItemsRequest as ListGalleriesItemsRequest, type context_ListGalleriesItemsResponse as ListGalleriesItemsResponse, type context_ListGalleriesOptions as ListGalleriesOptions, type context_ListGalleriesRequest as ListGalleriesRequest, type context_ListGalleriesResponse as ListGalleriesResponse, type context_ListGalleriesResponseNonNullableFields as ListGalleriesResponseNonNullableFields, type context_ListGalleryItemsOptions as ListGalleryItemsOptions, type context_ListGalleryItemsRequest as ListGalleryItemsRequest, type context_ListGalleryItemsResponse as ListGalleryItemsResponse, type context_ListGalleryItemsResponseNonNullableFields as ListGalleryItemsResponseNonNullableFields, type context_MessageEnvelope as MessageEnvelope, type context_Page as Page, type context_PageLink as PageLink, type context_PhoneLink as PhoneLink, type context_Point as Point, type context_ProgallerypublisherPublishGalleryRequest as ProgallerypublisherPublishGalleryRequest, type context_ProgallerypublisherPublishGalleryResponse as ProgallerypublisherPublishGalleryResponse, type context_PublishGalleryItemRequest as PublishGalleryItemRequest, type context_PublishGalleryItemResponse as PublishGalleryItemResponse, type context_PublishGalleryItemsRequest as PublishGalleryItemsRequest, type context_PublishGalleryItemsResponse as PublishGalleryItemsResponse, type context_PublishGalleryRequest as PublishGalleryRequest, type context_PublishGalleryResponse as PublishGalleryResponse, type context_RestoreInfo as RestoreInfo, type context_SearchIndexingNotification as SearchIndexingNotification, context_SearchIndexingNotificationState as SearchIndexingNotificationState, type context_SecondaryMedia as SecondaryMedia, type context_SecondaryMediaMetadataOneOf as SecondaryMediaMetadataOneOf, context_State as State, type context_Tags as Tags, type context_Text as Text, type context_TpaPageLink as TpaPageLink, context_Type as Type, type context_URI as URI, type context_UnsharpMasking as UnsharpMasking, type context_UpdateByFilterOperation as UpdateByFilterOperation, type context_UpdateDocumentsEvent as UpdateDocumentsEvent, type context_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context_UpdateExistingOperation as UpdateExistingOperation, type context_UpdateGallery as UpdateGallery, type context_UpdateGalleryItem as UpdateGalleryItem, type context_UpdateGalleryItemIdentifiers as UpdateGalleryItemIdentifiers, type context_UpdateGalleryItemRequest as UpdateGalleryItemRequest, type context_UpdateGalleryItemResponse as UpdateGalleryItemResponse, type context_UpdateGalleryItemResponseNonNullableFields as UpdateGalleryItemResponseNonNullableFields, type context_UpdateGalleryRequest as UpdateGalleryRequest, type context_UpdateGalleryResponse as UpdateGalleryResponse, type context_UpdateGalleryResponseNonNullableFields as UpdateGalleryResponseNonNullableFields, type context_Video as Video, type context_VideoResolution as VideoResolution, context_VideoType as VideoType, context_WebhookIdentityType as WebhookIdentityType, type context_WhatsAppLink as WhatsAppLink, type context_WixLink as WixLink, type context_WixLinkLinkOneOf as WixLinkLinkOneOf, context_createGallery as createGallery, context_createGalleryItem as createGalleryItem, context_deleteGallery as deleteGallery, context_deleteGalleryItem as deleteGalleryItem, context_deleteGalleryItems as deleteGalleryItems, context_getGallery as getGallery, context_getGalleryItem as getGalleryItem, context_listGalleries as listGalleries, context_listGalleryItems as listGalleryItems, context_onGalleryCreated as onGalleryCreated, context_onGalleryDeleted as onGalleryDeleted, context_onGalleryItemCreated as onGalleryItemCreated, context_onGalleryItemDeleted as onGalleryItemDeleted, context_onGalleryItemUpdated as onGalleryItemUpdated, context_onGalleryUpdated as onGalleryUpdated, context_updateGallery as updateGallery, context_updateGalleryItem as updateGalleryItem };
|
1537
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressLink as AddressLink, type context_AnchorLink as AnchorLink, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkDeleteGalleryItemsRequest as BulkDeleteGalleryItemsRequest, type context_BulkDeleteGalleryItemsResponse as BulkDeleteGalleryItemsResponse, type context_BulkDeleteGalleryItemsResponseNonNullableFields as BulkDeleteGalleryItemsResponseNonNullableFields, type context_CleanDeletedGalleriesEvent as CleanDeletedGalleriesEvent, type context_CreateGalleryItemRequest as CreateGalleryItemRequest, type context_CreateGalleryItemResponse as CreateGalleryItemResponse, type context_CreateGalleryItemResponseNonNullableFields as CreateGalleryItemResponseNonNullableFields, type context_CreateGalleryItemsRequest as CreateGalleryItemsRequest, type context_CreateGalleryItemsResponse as CreateGalleryItemsResponse, type context_CreateGalleryOptions as CreateGalleryOptions, type context_CreateGalleryRequest as CreateGalleryRequest, type context_CreateGalleryResponse as CreateGalleryResponse, type context_CreateGalleryResponseNonNullableFields as CreateGalleryResponseNonNullableFields, type context_DeleteByFilterOperation as DeleteByFilterOperation, type context_DeleteByIdsOperation as DeleteByIdsOperation, type context_DeleteGalleryItemIdentifiers as DeleteGalleryItemIdentifiers, type context_DeleteGalleryItemRequest as DeleteGalleryItemRequest, type context_DeleteGalleryItemResponse as DeleteGalleryItemResponse, type context_DeleteGalleryItemResponseNonNullableFields as DeleteGalleryItemResponseNonNullableFields, type context_DeleteGalleryItemsOptions as DeleteGalleryItemsOptions, type context_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type context_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type context_DeleteGalleryItemsResponseNonNullableFields as DeleteGalleryItemsResponseNonNullableFields, type context_DeleteGalleryRequest as DeleteGalleryRequest, type context_DeleteGalleryResponse as DeleteGalleryResponse, type context_DeleteGalleryResponseNonNullableFields as DeleteGalleryResponseNonNullableFields, type context_DocumentImage as DocumentImage, type context_DocumentLink as DocumentLink, type context_DocumentPayload as DocumentPayload, type context_DocumentUpdateOperation as DocumentUpdateOperation, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DynamicPageLink as DynamicPageLink, type context_EmailLink as EmailLink, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, context_Enum as Enum, type context_EventMetadata as EventMetadata, type context_EventsPage as EventsPage, type context_ExternalLink as ExternalLink, type context_File as File, type context_Gallery as Gallery, type context_GalleryCreatedEnvelope as GalleryCreatedEnvelope, type context_GalleryDeletedEnvelope as GalleryDeletedEnvelope, type context_GalleryItemCreated as GalleryItemCreated, type context_GalleryItemCreatedEnvelope as GalleryItemCreatedEnvelope, type context_GalleryItemDeleted as GalleryItemDeleted, type context_GalleryItemDeletedEnvelope as GalleryItemDeletedEnvelope, type context_GalleryItemUpdated as GalleryItemUpdated, type context_GalleryItemUpdatedEnvelope as GalleryItemUpdatedEnvelope, type context_GalleryNonNullableFields as GalleryNonNullableFields, type context_GalleryPublished as GalleryPublished, type context_GalleryUpdatedEnvelope as GalleryUpdatedEnvelope, type context_GetGalleryItemIdentifiers as GetGalleryItemIdentifiers, type context_GetGalleryItemRequest as GetGalleryItemRequest, type context_GetGalleryItemResponse as GetGalleryItemResponse, type context_GetGalleryItemResponseNonNullableFields as GetGalleryItemResponseNonNullableFields, type context_GetGalleryOptions as GetGalleryOptions, type context_GetGalleryRequest as GetGalleryRequest, type context_GetGalleryRequestVersionOneOf as GetGalleryRequestVersionOneOf, type context_GetGalleryResponse as GetGalleryResponse, type context_GetGalleryResponseNonNullableFields as GetGalleryResponseNonNullableFields, type context_HtmlSitePublished as HtmlSitePublished, type context_HtmlSiteRCPublished as HtmlSiteRCPublished, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, context_ImageType as ImageType, type context_IndexDocument as IndexDocument, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemId as ItemId, type context_ItemMetadataOneOf as ItemMetadataOneOf, type context_ItemNonNullableFields as ItemNonNullableFields, type context_ItemsInGallery as ItemsInGallery, type context_Link as Link, context_LinkRel as LinkRel, context_LinkType as LinkType, type context_ListGalleriesItemsRequest as ListGalleriesItemsRequest, type context_ListGalleriesItemsResponse as ListGalleriesItemsResponse, type context_ListGalleriesOptions as ListGalleriesOptions, type context_ListGalleriesRequest as ListGalleriesRequest, type context_ListGalleriesResponse as ListGalleriesResponse, type context_ListGalleriesResponseNonNullableFields as ListGalleriesResponseNonNullableFields, type context_ListGalleryItemsOptions as ListGalleryItemsOptions, type context_ListGalleryItemsRequest as ListGalleryItemsRequest, type context_ListGalleryItemsResponse as ListGalleryItemsResponse, type context_ListGalleryItemsResponseNonNullableFields as ListGalleryItemsResponseNonNullableFields, type context_MessageEnvelope as MessageEnvelope, type context_Page as Page, type context_PageLink as PageLink, type context_PhoneLink as PhoneLink, type context_Point as Point, type context_ProgallerypublisherPublishGalleryRequest as ProgallerypublisherPublishGalleryRequest, type context_ProgallerypublisherPublishGalleryResponse as ProgallerypublisherPublishGalleryResponse, type context_PublishGalleryItemRequest as PublishGalleryItemRequest, type context_PublishGalleryItemResponse as PublishGalleryItemResponse, type context_PublishGalleryItemsRequest as PublishGalleryItemsRequest, type context_PublishGalleryItemsResponse as PublishGalleryItemsResponse, type context_PublishGalleryRequest as PublishGalleryRequest, type context_PublishGalleryResponse as PublishGalleryResponse, type context_RestoreInfo as RestoreInfo, type context_SearchIndexingNotification as SearchIndexingNotification, context_SearchIndexingNotificationState as SearchIndexingNotificationState, type context_SecondaryMedia as SecondaryMedia, type context_SecondaryMediaMetadataOneOf as SecondaryMediaMetadataOneOf, context_State as State, type context_Tags as Tags, type context_Text as Text, type context_TpaPageLink as TpaPageLink, context_Type as Type, type context_URI as URI, type context_UnsharpMasking as UnsharpMasking, type context_UpdateByFilterOperation as UpdateByFilterOperation, type context_UpdateDocumentsEvent as UpdateDocumentsEvent, type context_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context_UpdateExistingOperation as UpdateExistingOperation, type context_UpdateGallery as UpdateGallery, type context_UpdateGalleryItem as UpdateGalleryItem, type context_UpdateGalleryItemIdentifiers as UpdateGalleryItemIdentifiers, type context_UpdateGalleryItemRequest as UpdateGalleryItemRequest, type context_UpdateGalleryItemResponse as UpdateGalleryItemResponse, type context_UpdateGalleryItemResponseNonNullableFields as UpdateGalleryItemResponseNonNullableFields, type context_UpdateGalleryRequest as UpdateGalleryRequest, type context_UpdateGalleryResponse as UpdateGalleryResponse, type context_UpdateGalleryResponseNonNullableFields as UpdateGalleryResponseNonNullableFields, type context_Video as Video, type context_VideoResolution as VideoResolution, context_VideoType as VideoType, context_WebhookIdentityType as WebhookIdentityType, type context_WhatsAppLink as WhatsAppLink, type context_WixLink as WixLink, type context_WixLinkLinkOneOf as WixLinkLinkOneOf, type context__publicBulkDeleteGalleryItemsType as _publicBulkDeleteGalleryItemsType, type context__publicCreateGalleryItemType as _publicCreateGalleryItemType, type context__publicCreateGalleryType as _publicCreateGalleryType, type context__publicDeleteGalleryItemType as _publicDeleteGalleryItemType, type context__publicDeleteGalleryItemsType as _publicDeleteGalleryItemsType, type context__publicDeleteGalleryType as _publicDeleteGalleryType, type context__publicGetGalleryItemType as _publicGetGalleryItemType, type context__publicGetGalleryType as _publicGetGalleryType, type context__publicListGalleriesType as _publicListGalleriesType, type context__publicListGalleryItemsType as _publicListGalleryItemsType, type context__publicOnGalleryCreatedType as _publicOnGalleryCreatedType, type context__publicOnGalleryDeletedType as _publicOnGalleryDeletedType, type context__publicOnGalleryItemCreatedType as _publicOnGalleryItemCreatedType, type context__publicOnGalleryItemDeletedType as _publicOnGalleryItemDeletedType, type context__publicOnGalleryItemUpdatedType as _publicOnGalleryItemUpdatedType, type context__publicOnGalleryUpdatedType as _publicOnGalleryUpdatedType, type context__publicUpdateGalleryItemType as _publicUpdateGalleryItemType, type context__publicUpdateGalleryType as _publicUpdateGalleryType, context_bulkDeleteGalleryItems as bulkDeleteGalleryItems, context_createGallery as createGallery, context_createGalleryItem as createGalleryItem, context_deleteGallery as deleteGallery, context_deleteGalleryItem as deleteGalleryItem, context_deleteGalleryItems as deleteGalleryItems, context_getGallery as getGallery, context_getGalleryItem as getGalleryItem, context_listGalleries as listGalleries, context_listGalleryItems as listGalleryItems, context_onGalleryCreated as onGalleryCreated, context_onGalleryDeleted as onGalleryDeleted, context_onGalleryItemCreated as onGalleryItemCreated, context_onGalleryItemDeleted as onGalleryItemDeleted, context_onGalleryItemUpdated as onGalleryItemUpdated, context_onGalleryUpdated as onGalleryUpdated, onGalleryCreated$1 as publicOnGalleryCreated, onGalleryDeleted$1 as publicOnGalleryDeleted, onGalleryItemCreated$1 as publicOnGalleryItemCreated, onGalleryItemDeleted$1 as publicOnGalleryItemDeleted, onGalleryItemUpdated$1 as publicOnGalleryItemUpdated, onGalleryUpdated$1 as publicOnGalleryUpdated, context_updateGallery as updateGallery, context_updateGalleryItem as updateGalleryItem };
|
1471
1538
|
}
|
1472
1539
|
|
1473
1540
|
export { context as proGallery };
|
@@ -505,7 +505,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
505
505
|
slug?: string;
|
506
506
|
/** ID of the entity associated with the event. */
|
507
507
|
entityId?: string;
|
508
|
-
/** Event timestamp. */
|
508
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
509
509
|
eventTime?: Date;
|
510
510
|
/**
|
511
511
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -850,13 +850,13 @@ interface DeleteGalleryItemsResponse {
|
|
850
850
|
}
|
851
851
|
interface BulkDeleteGalleryItemsRequest {
|
852
852
|
/** Gallery ID. */
|
853
|
-
galleryId
|
854
|
-
/**
|
855
|
-
itemIds
|
853
|
+
galleryId: string;
|
854
|
+
/** IDs of the media items to delete. */
|
855
|
+
itemIds: string[];
|
856
856
|
}
|
857
857
|
interface BulkDeleteGalleryItemsResponse {
|
858
858
|
/**
|
859
|
-
*
|
859
|
+
* IDs of the deleted media items.
|
860
860
|
* @readonly
|
861
861
|
*/
|
862
862
|
itemIds?: string[];
|
@@ -1024,6 +1024,9 @@ interface DeleteGalleryResponseNonNullableFields {
|
|
1024
1024
|
interface DeleteGalleryItemsResponseNonNullableFields {
|
1025
1025
|
gallery?: GalleryNonNullableFields;
|
1026
1026
|
}
|
1027
|
+
interface BulkDeleteGalleryItemsResponseNonNullableFields {
|
1028
|
+
itemIds: string[];
|
1029
|
+
}
|
1027
1030
|
interface CreateGalleryItemResponseNonNullableFields {
|
1028
1031
|
item?: ItemNonNullableFields;
|
1029
1032
|
}
|
@@ -1060,7 +1063,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
1060
1063
|
slug?: string;
|
1061
1064
|
/** ID of the entity associated with the event. */
|
1062
1065
|
entityId?: string;
|
1063
|
-
/** Event timestamp. */
|
1066
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
1064
1067
|
eventTime?: Date;
|
1065
1068
|
/**
|
1066
1069
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -1278,27 +1281,71 @@ declare global {
|
|
1278
1281
|
}
|
1279
1282
|
}
|
1280
1283
|
|
1284
|
+
declare function listGalleries$1(httpClient: HttpClient): (options?: ListGalleriesOptions) => Promise<ListGalleriesResponse & ListGalleriesResponseNonNullableFields>;
|
1285
|
+
declare function getGallery$1(httpClient: HttpClient): (galleryId: string, options?: GetGalleryOptions) => Promise<Gallery & GalleryNonNullableFields>;
|
1286
|
+
declare function listGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: ListGalleryItemsOptions) => Promise<ListGalleryItemsResponse & ListGalleryItemsResponseNonNullableFields>;
|
1287
|
+
declare function getGalleryItem$1(httpClient: HttpClient): (identifiers: GetGalleryItemIdentifiers) => Promise<Item & ItemNonNullableFields>;
|
1288
|
+
declare function createGallery$1(httpClient: HttpClient): (options?: CreateGalleryOptions) => Promise<Gallery & GalleryNonNullableFields>;
|
1289
|
+
declare function updateGallery$1(httpClient: HttpClient): (_id: string | null, gallery: UpdateGallery) => Promise<Gallery & GalleryNonNullableFields>;
|
1290
|
+
declare function deleteGallery$1(httpClient: HttpClient): (galleryId: string) => Promise<DeleteGalleryResponse & DeleteGalleryResponseNonNullableFields>;
|
1291
|
+
declare function deleteGalleryItems$1(httpClient: HttpClient): (galleryId: string, options?: DeleteGalleryItemsOptions) => Promise<DeleteGalleryItemsResponse & DeleteGalleryItemsResponseNonNullableFields>;
|
1292
|
+
declare function bulkDeleteGalleryItems$1(httpClient: HttpClient): (galleryId: string, itemIds: string[]) => Promise<BulkDeleteGalleryItemsResponse & BulkDeleteGalleryItemsResponseNonNullableFields>;
|
1293
|
+
declare function createGalleryItem$1(httpClient: HttpClient): (galleryId: string, item: Item) => Promise<Item & ItemNonNullableFields>;
|
1294
|
+
declare function updateGalleryItem$1(httpClient: HttpClient): (identifiers: UpdateGalleryItemIdentifiers, item: UpdateGalleryItem) => Promise<Item & ItemNonNullableFields>;
|
1295
|
+
declare function deleteGalleryItem$1(httpClient: HttpClient): (identifiers: DeleteGalleryItemIdentifiers) => Promise<DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields>;
|
1296
|
+
declare const onGalleryCreated$1: EventDefinition<GalleryCreatedEnvelope, "wix.pro_gallery.gallery_v2_created">;
|
1297
|
+
declare const onGalleryUpdated$1: EventDefinition<GalleryUpdatedEnvelope, "wix.pro_gallery.gallery_v2_updated">;
|
1298
|
+
declare const onGalleryDeleted$1: EventDefinition<GalleryDeletedEnvelope, "wix.pro_gallery.gallery_v2_deleted">;
|
1299
|
+
declare const onGalleryItemCreated$1: EventDefinition<GalleryItemCreatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_created">;
|
1300
|
+
declare const onGalleryItemUpdated$1: EventDefinition<GalleryItemUpdatedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_updated">;
|
1301
|
+
declare const onGalleryItemDeleted$1: EventDefinition<GalleryItemDeletedEnvelope, "wix.pro_gallery.gallery_v2_gallery_item_deleted">;
|
1302
|
+
|
1281
1303
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
1282
1304
|
|
1283
1305
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
1284
1306
|
|
1285
|
-
|
1286
|
-
declare const
|
1287
|
-
|
1288
|
-
declare const
|
1289
|
-
|
1290
|
-
declare const
|
1291
|
-
|
1292
|
-
declare const
|
1293
|
-
|
1294
|
-
declare const
|
1295
|
-
|
1296
|
-
declare const
|
1297
|
-
|
1298
|
-
declare const
|
1299
|
-
|
1300
|
-
declare const
|
1301
|
-
|
1307
|
+
type _publicListGalleriesType = typeof listGalleries$1;
|
1308
|
+
declare const listGalleries: ReturnType<typeof createRESTModule<_publicListGalleriesType>>;
|
1309
|
+
type _publicGetGalleryType = typeof getGallery$1;
|
1310
|
+
declare const getGallery: ReturnType<typeof createRESTModule<_publicGetGalleryType>>;
|
1311
|
+
type _publicListGalleryItemsType = typeof listGalleryItems$1;
|
1312
|
+
declare const listGalleryItems: ReturnType<typeof createRESTModule<_publicListGalleryItemsType>>;
|
1313
|
+
type _publicGetGalleryItemType = typeof getGalleryItem$1;
|
1314
|
+
declare const getGalleryItem: ReturnType<typeof createRESTModule<_publicGetGalleryItemType>>;
|
1315
|
+
type _publicCreateGalleryType = typeof createGallery$1;
|
1316
|
+
declare const createGallery: ReturnType<typeof createRESTModule<_publicCreateGalleryType>>;
|
1317
|
+
type _publicUpdateGalleryType = typeof updateGallery$1;
|
1318
|
+
declare const updateGallery: ReturnType<typeof createRESTModule<_publicUpdateGalleryType>>;
|
1319
|
+
type _publicDeleteGalleryType = typeof deleteGallery$1;
|
1320
|
+
declare const deleteGallery: ReturnType<typeof createRESTModule<_publicDeleteGalleryType>>;
|
1321
|
+
type _publicDeleteGalleryItemsType = typeof deleteGalleryItems$1;
|
1322
|
+
declare const deleteGalleryItems: ReturnType<typeof createRESTModule<_publicDeleteGalleryItemsType>>;
|
1323
|
+
type _publicBulkDeleteGalleryItemsType = typeof bulkDeleteGalleryItems$1;
|
1324
|
+
declare const bulkDeleteGalleryItems: ReturnType<typeof createRESTModule<_publicBulkDeleteGalleryItemsType>>;
|
1325
|
+
type _publicCreateGalleryItemType = typeof createGalleryItem$1;
|
1326
|
+
declare const createGalleryItem: ReturnType<typeof createRESTModule<_publicCreateGalleryItemType>>;
|
1327
|
+
type _publicUpdateGalleryItemType = typeof updateGalleryItem$1;
|
1328
|
+
declare const updateGalleryItem: ReturnType<typeof createRESTModule<_publicUpdateGalleryItemType>>;
|
1329
|
+
type _publicDeleteGalleryItemType = typeof deleteGalleryItem$1;
|
1330
|
+
declare const deleteGalleryItem: ReturnType<typeof createRESTModule<_publicDeleteGalleryItemType>>;
|
1331
|
+
|
1332
|
+
type _publicOnGalleryCreatedType = typeof onGalleryCreated$1;
|
1333
|
+
declare const onGalleryCreated: ReturnType<typeof createEventModule<_publicOnGalleryCreatedType>>;
|
1334
|
+
|
1335
|
+
type _publicOnGalleryUpdatedType = typeof onGalleryUpdated$1;
|
1336
|
+
declare const onGalleryUpdated: ReturnType<typeof createEventModule<_publicOnGalleryUpdatedType>>;
|
1337
|
+
|
1338
|
+
type _publicOnGalleryDeletedType = typeof onGalleryDeleted$1;
|
1339
|
+
declare const onGalleryDeleted: ReturnType<typeof createEventModule<_publicOnGalleryDeletedType>>;
|
1340
|
+
|
1341
|
+
type _publicOnGalleryItemCreatedType = typeof onGalleryItemCreated$1;
|
1342
|
+
declare const onGalleryItemCreated: ReturnType<typeof createEventModule<_publicOnGalleryItemCreatedType>>;
|
1343
|
+
|
1344
|
+
type _publicOnGalleryItemUpdatedType = typeof onGalleryItemUpdated$1;
|
1345
|
+
declare const onGalleryItemUpdated: ReturnType<typeof createEventModule<_publicOnGalleryItemUpdatedType>>;
|
1346
|
+
|
1347
|
+
type _publicOnGalleryItemDeletedType = typeof onGalleryItemDeleted$1;
|
1348
|
+
declare const onGalleryItemDeleted: ReturnType<typeof createEventModule<_publicOnGalleryItemDeletedType>>;
|
1302
1349
|
|
1303
1350
|
type index_d_ActionEvent = ActionEvent;
|
1304
1351
|
type index_d_AddressLink = AddressLink;
|
@@ -1307,6 +1354,7 @@ type index_d_App = App;
|
|
1307
1354
|
type index_d_BaseEventMetadata = BaseEventMetadata;
|
1308
1355
|
type index_d_BulkDeleteGalleryItemsRequest = BulkDeleteGalleryItemsRequest;
|
1309
1356
|
type index_d_BulkDeleteGalleryItemsResponse = BulkDeleteGalleryItemsResponse;
|
1357
|
+
type index_d_BulkDeleteGalleryItemsResponseNonNullableFields = BulkDeleteGalleryItemsResponseNonNullableFields;
|
1310
1358
|
type index_d_CleanDeletedGalleriesEvent = CleanDeletedGalleriesEvent;
|
1311
1359
|
type index_d_CreateGalleryItemRequest = CreateGalleryItemRequest;
|
1312
1360
|
type index_d_CreateGalleryItemResponse = CreateGalleryItemResponse;
|
@@ -1449,6 +1497,25 @@ declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
1449
1497
|
type index_d_WhatsAppLink = WhatsAppLink;
|
1450
1498
|
type index_d_WixLink = WixLink;
|
1451
1499
|
type index_d_WixLinkLinkOneOf = WixLinkLinkOneOf;
|
1500
|
+
type index_d__publicBulkDeleteGalleryItemsType = _publicBulkDeleteGalleryItemsType;
|
1501
|
+
type index_d__publicCreateGalleryItemType = _publicCreateGalleryItemType;
|
1502
|
+
type index_d__publicCreateGalleryType = _publicCreateGalleryType;
|
1503
|
+
type index_d__publicDeleteGalleryItemType = _publicDeleteGalleryItemType;
|
1504
|
+
type index_d__publicDeleteGalleryItemsType = _publicDeleteGalleryItemsType;
|
1505
|
+
type index_d__publicDeleteGalleryType = _publicDeleteGalleryType;
|
1506
|
+
type index_d__publicGetGalleryItemType = _publicGetGalleryItemType;
|
1507
|
+
type index_d__publicGetGalleryType = _publicGetGalleryType;
|
1508
|
+
type index_d__publicListGalleriesType = _publicListGalleriesType;
|
1509
|
+
type index_d__publicListGalleryItemsType = _publicListGalleryItemsType;
|
1510
|
+
type index_d__publicOnGalleryCreatedType = _publicOnGalleryCreatedType;
|
1511
|
+
type index_d__publicOnGalleryDeletedType = _publicOnGalleryDeletedType;
|
1512
|
+
type index_d__publicOnGalleryItemCreatedType = _publicOnGalleryItemCreatedType;
|
1513
|
+
type index_d__publicOnGalleryItemDeletedType = _publicOnGalleryItemDeletedType;
|
1514
|
+
type index_d__publicOnGalleryItemUpdatedType = _publicOnGalleryItemUpdatedType;
|
1515
|
+
type index_d__publicOnGalleryUpdatedType = _publicOnGalleryUpdatedType;
|
1516
|
+
type index_d__publicUpdateGalleryItemType = _publicUpdateGalleryItemType;
|
1517
|
+
type index_d__publicUpdateGalleryType = _publicUpdateGalleryType;
|
1518
|
+
declare const index_d_bulkDeleteGalleryItems: typeof bulkDeleteGalleryItems;
|
1452
1519
|
declare const index_d_createGallery: typeof createGallery;
|
1453
1520
|
declare const index_d_createGalleryItem: typeof createGalleryItem;
|
1454
1521
|
declare const index_d_deleteGallery: typeof deleteGallery;
|
@@ -1467,7 +1534,7 @@ declare const index_d_onGalleryUpdated: typeof onGalleryUpdated;
|
|
1467
1534
|
declare const index_d_updateGallery: typeof updateGallery;
|
1468
1535
|
declare const index_d_updateGalleryItem: typeof updateGalleryItem;
|
1469
1536
|
declare namespace index_d {
|
1470
|
-
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_BulkDeleteGalleryItemsRequest as BulkDeleteGalleryItemsRequest, type index_d_BulkDeleteGalleryItemsResponse as BulkDeleteGalleryItemsResponse, 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_DeleteGalleryItemsOptions as DeleteGalleryItemsOptions, type index_d_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type index_d_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type index_d_DeleteGalleryItemsResponseNonNullableFields as DeleteGalleryItemsResponseNonNullableFields, 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_GalleryNonNullableFields as GalleryNonNullableFields, 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_ItemNonNullableFields as ItemNonNullableFields, 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_RestoreInfo as RestoreInfo, 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_createGallery as createGallery, index_d_createGalleryItem as createGalleryItem, index_d_deleteGallery as deleteGallery, index_d_deleteGalleryItem as deleteGalleryItem, index_d_deleteGalleryItems as deleteGalleryItems, 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 };
|
1537
|
+
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_BulkDeleteGalleryItemsRequest as BulkDeleteGalleryItemsRequest, type index_d_BulkDeleteGalleryItemsResponse as BulkDeleteGalleryItemsResponse, type index_d_BulkDeleteGalleryItemsResponseNonNullableFields as BulkDeleteGalleryItemsResponseNonNullableFields, 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_DeleteGalleryItemsOptions as DeleteGalleryItemsOptions, type index_d_DeleteGalleryItemsRequest as DeleteGalleryItemsRequest, type index_d_DeleteGalleryItemsResponse as DeleteGalleryItemsResponse, type index_d_DeleteGalleryItemsResponseNonNullableFields as DeleteGalleryItemsResponseNonNullableFields, 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_GalleryNonNullableFields as GalleryNonNullableFields, 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_ItemNonNullableFields as ItemNonNullableFields, 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_RestoreInfo as RestoreInfo, 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, type index_d__publicBulkDeleteGalleryItemsType as _publicBulkDeleteGalleryItemsType, type index_d__publicCreateGalleryItemType as _publicCreateGalleryItemType, type index_d__publicCreateGalleryType as _publicCreateGalleryType, type index_d__publicDeleteGalleryItemType as _publicDeleteGalleryItemType, type index_d__publicDeleteGalleryItemsType as _publicDeleteGalleryItemsType, type index_d__publicDeleteGalleryType as _publicDeleteGalleryType, type index_d__publicGetGalleryItemType as _publicGetGalleryItemType, type index_d__publicGetGalleryType as _publicGetGalleryType, type index_d__publicListGalleriesType as _publicListGalleriesType, type index_d__publicListGalleryItemsType as _publicListGalleryItemsType, type index_d__publicOnGalleryCreatedType as _publicOnGalleryCreatedType, type index_d__publicOnGalleryDeletedType as _publicOnGalleryDeletedType, type index_d__publicOnGalleryItemCreatedType as _publicOnGalleryItemCreatedType, type index_d__publicOnGalleryItemDeletedType as _publicOnGalleryItemDeletedType, type index_d__publicOnGalleryItemUpdatedType as _publicOnGalleryItemUpdatedType, type index_d__publicOnGalleryUpdatedType as _publicOnGalleryUpdatedType, type index_d__publicUpdateGalleryItemType as _publicUpdateGalleryItemType, type index_d__publicUpdateGalleryType as _publicUpdateGalleryType, index_d_bulkDeleteGalleryItems as bulkDeleteGalleryItems, index_d_createGallery as createGallery, index_d_createGalleryItem as createGalleryItem, index_d_deleteGallery as deleteGallery, index_d_deleteGalleryItem as deleteGalleryItem, index_d_deleteGalleryItems as deleteGalleryItems, 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, onGalleryCreated$1 as publicOnGalleryCreated, onGalleryDeleted$1 as publicOnGalleryDeleted, onGalleryItemCreated$1 as publicOnGalleryItemCreated, onGalleryItemDeleted$1 as publicOnGalleryItemDeleted, onGalleryItemUpdated$1 as publicOnGalleryItemUpdated, onGalleryUpdated$1 as publicOnGalleryUpdated, index_d_updateGallery as updateGallery, index_d_updateGalleryItem as updateGalleryItem };
|
1471
1538
|
}
|
1472
1539
|
|
1473
1540
|
export { index_d as proGallery };
|
@@ -357,6 +357,19 @@ interface DeleteGalleryItemsResponse$1 {
|
|
357
357
|
/** Gallery that previously included the deleted media item. */
|
358
358
|
gallery?: Gallery$1;
|
359
359
|
}
|
360
|
+
interface BulkDeleteGalleryItemsRequest$1 {
|
361
|
+
/** Gallery ID. */
|
362
|
+
galleryId: string;
|
363
|
+
/** IDs of the media items to delete. */
|
364
|
+
itemIds: string[];
|
365
|
+
}
|
366
|
+
interface BulkDeleteGalleryItemsResponse$1 {
|
367
|
+
/**
|
368
|
+
* IDs of the deleted media items.
|
369
|
+
* @readonly
|
370
|
+
*/
|
371
|
+
itemIds?: string[];
|
372
|
+
}
|
360
373
|
interface CreateGalleryItemRequest$1 {
|
361
374
|
/** Gallery ID. */
|
362
375
|
galleryId: string;
|
@@ -521,6 +534,9 @@ interface DeleteGalleryResponseNonNullableFields$1 {
|
|
521
534
|
interface DeleteGalleryItemsResponseNonNullableFields$1 {
|
522
535
|
gallery?: GalleryNonNullableFields$1;
|
523
536
|
}
|
537
|
+
interface BulkDeleteGalleryItemsResponseNonNullableFields$1 {
|
538
|
+
itemIds: string[];
|
539
|
+
}
|
524
540
|
interface CreateGalleryItemResponseNonNullableFields$1 {
|
525
541
|
item?: ItemNonNullableFields$1;
|
526
542
|
}
|
@@ -831,6 +847,19 @@ interface DeleteGalleryItemsResponse {
|
|
831
847
|
/** Gallery that previously included the deleted media item. */
|
832
848
|
gallery?: Gallery;
|
833
849
|
}
|
850
|
+
interface BulkDeleteGalleryItemsRequest {
|
851
|
+
/** Gallery ID. */
|
852
|
+
galleryId: string;
|
853
|
+
/** IDs of the media items to delete. */
|
854
|
+
itemIds: string[];
|
855
|
+
}
|
856
|
+
interface BulkDeleteGalleryItemsResponse {
|
857
|
+
/**
|
858
|
+
* IDs of the deleted media items.
|
859
|
+
* @readonly
|
860
|
+
*/
|
861
|
+
itemIds?: string[];
|
862
|
+
}
|
834
863
|
interface CreateGalleryItemRequest {
|
835
864
|
/** Gallery ID. */
|
836
865
|
galleryId: string;
|
@@ -976,6 +1005,9 @@ interface DeleteGalleryResponseNonNullableFields {
|
|
976
1005
|
interface DeleteGalleryItemsResponseNonNullableFields {
|
977
1006
|
gallery?: GalleryNonNullableFields;
|
978
1007
|
}
|
1008
|
+
interface BulkDeleteGalleryItemsResponseNonNullableFields {
|
1009
|
+
itemIds: string[];
|
1010
|
+
}
|
979
1011
|
interface CreateGalleryItemResponseNonNullableFields {
|
980
1012
|
item?: ItemNonNullableFields;
|
981
1013
|
}
|
@@ -1017,6 +1049,9 @@ declare function deleteGallery(): __PublicMethodMetaInfo<'DELETE', {
|
|
1017
1049
|
declare function deleteGalleryItems(): __PublicMethodMetaInfo<'DELETE', {
|
1018
1050
|
galleryId: string;
|
1019
1051
|
}, DeleteGalleryItemsRequest, DeleteGalleryItemsRequest$1, DeleteGalleryItemsResponse & DeleteGalleryItemsResponseNonNullableFields, DeleteGalleryItemsResponse$1 & DeleteGalleryItemsResponseNonNullableFields$1>;
|
1052
|
+
declare function bulkDeleteGalleryItems(): __PublicMethodMetaInfo<'POST', {
|
1053
|
+
galleryId: string;
|
1054
|
+
}, BulkDeleteGalleryItemsRequest, BulkDeleteGalleryItemsRequest$1, BulkDeleteGalleryItemsResponse & BulkDeleteGalleryItemsResponseNonNullableFields, BulkDeleteGalleryItemsResponse$1 & BulkDeleteGalleryItemsResponseNonNullableFields$1>;
|
1020
1055
|
declare function createGalleryItem(): __PublicMethodMetaInfo<'POST', {
|
1021
1056
|
galleryId: string;
|
1022
1057
|
}, CreateGalleryItemRequest, CreateGalleryItemRequest$1, CreateGalleryItemResponse & CreateGalleryItemResponseNonNullableFields, CreateGalleryItemResponse$1 & CreateGalleryItemResponseNonNullableFields$1>;
|
@@ -1030,6 +1065,7 @@ declare function deleteGalleryItem(): __PublicMethodMetaInfo<'DELETE', {
|
|
1030
1065
|
}, DeleteGalleryItemRequest, DeleteGalleryItemRequest$1, DeleteGalleryItemResponse & DeleteGalleryItemResponseNonNullableFields, DeleteGalleryItemResponse$1 & DeleteGalleryItemResponseNonNullableFields$1>;
|
1031
1066
|
|
1032
1067
|
type meta___PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = __PublicMethodMetaInfo<K, M, T, S, Q, R>;
|
1068
|
+
declare const meta_bulkDeleteGalleryItems: typeof bulkDeleteGalleryItems;
|
1033
1069
|
declare const meta_createGallery: typeof createGallery;
|
1034
1070
|
declare const meta_createGalleryItem: typeof createGalleryItem;
|
1035
1071
|
declare const meta_deleteGallery: typeof deleteGallery;
|
@@ -1042,7 +1078,7 @@ declare const meta_listGalleryItems: typeof listGalleryItems;
|
|
1042
1078
|
declare const meta_updateGallery: typeof updateGallery;
|
1043
1079
|
declare const meta_updateGalleryItem: typeof updateGalleryItem;
|
1044
1080
|
declare namespace meta {
|
1045
|
-
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_createGallery as createGallery, meta_createGalleryItem as createGalleryItem, meta_deleteGallery as deleteGallery, meta_deleteGalleryItem as deleteGalleryItem, meta_deleteGalleryItems as deleteGalleryItems, meta_getGallery as getGallery, meta_getGalleryItem as getGalleryItem, meta_listGalleries as listGalleries, meta_listGalleryItems as listGalleryItems, meta_updateGallery as updateGallery, meta_updateGalleryItem as updateGalleryItem };
|
1081
|
+
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_bulkDeleteGalleryItems as bulkDeleteGalleryItems, meta_createGallery as createGallery, meta_createGalleryItem as createGalleryItem, meta_deleteGallery as deleteGallery, meta_deleteGalleryItem as deleteGalleryItem, meta_deleteGalleryItems as deleteGalleryItems, meta_getGallery as getGallery, meta_getGalleryItem as getGalleryItem, meta_listGalleries as listGalleries, meta_listGalleryItems as listGalleryItems, meta_updateGallery as updateGallery, meta_updateGalleryItem as updateGalleryItem };
|
1046
1082
|
}
|
1047
1083
|
|
1048
1084
|
export { meta as proGallery };
|