@wix/media 1.0.106 → 1.0.107

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.
@@ -293,6 +293,7 @@ interface EnterpriseCategoryCreatedEnvelope {
293
293
  metadata: EventMetadata$3;
294
294
  }
295
295
  interface EnterpriseCategoryDeletedEnvelope {
296
+ entity: EnterpriseCategory;
296
297
  metadata: EventMetadata$3;
297
298
  }
298
299
  interface EnterpriseCategoryUpdatedEnvelope {
@@ -379,19 +380,41 @@ declare global {
379
380
  }
380
381
  }
381
382
 
383
+ declare function createCategory$1(httpClient: HttpClient): (category: EnterpriseCategory) => Promise<EnterpriseCategory & EnterpriseCategoryNonNullableFields>;
384
+ declare function deleteCategory$1(httpClient: HttpClient): (categoryId: string) => Promise<void>;
385
+ declare function updateCategory$1(httpClient: HttpClient): (_id: string, category: UpdateCategory) => Promise<EnterpriseCategory & EnterpriseCategoryNonNullableFields>;
386
+ declare function getCategory$1(httpClient: HttpClient): (categoryId: string, options?: GetCategoryOptions) => Promise<EnterpriseCategoryTree & EnterpriseCategoryTreeNonNullableFields>;
387
+ declare function enterpriseOnboarding$1(httpClient: HttpClient): (accountId: string, options?: EnterpriseOnboardingOptions) => Promise<EnterpriseOnboardingResponse & EnterpriseOnboardingResponseNonNullableFields>;
388
+ declare function getMediaManagerCategories$1(httpClient: HttpClient): () => Promise<GetMediaManagerCategoriesResponse & GetMediaManagerCategoriesResponseNonNullableFields>;
389
+ declare const onEnterpriseCategoryCreated$1: EventDefinition<EnterpriseCategoryCreatedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_category_created">;
390
+ declare const onEnterpriseCategoryDeleted$1: EventDefinition<EnterpriseCategoryDeletedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_category_deleted">;
391
+ declare const onEnterpriseCategoryUpdated$1: EventDefinition<EnterpriseCategoryUpdatedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_category_updated">;
392
+
382
393
  declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
383
394
 
384
395
  declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
385
396
 
386
- declare const createCategory: ReturnType<typeof createRESTModule$3<typeof publicCreateCategory>>;
387
- declare const deleteCategory: ReturnType<typeof createRESTModule$3<typeof publicDeleteCategory>>;
388
- declare const updateCategory: ReturnType<typeof createRESTModule$3<typeof publicUpdateCategory>>;
389
- declare const getCategory: ReturnType<typeof createRESTModule$3<typeof publicGetCategory>>;
390
- declare const enterpriseOnboarding: ReturnType<typeof createRESTModule$3<typeof publicEnterpriseOnboarding>>;
391
- declare const getMediaManagerCategories: ReturnType<typeof createRESTModule$3<typeof publicGetMediaManagerCategories>>;
392
- declare const onEnterpriseCategoryCreated: ReturnType<typeof createEventModule$3<typeof publicOnEnterpriseCategoryCreated>>;
393
- declare const onEnterpriseCategoryDeleted: ReturnType<typeof createEventModule$3<typeof publicOnEnterpriseCategoryDeleted>>;
394
- declare const onEnterpriseCategoryUpdated: ReturnType<typeof createEventModule$3<typeof publicOnEnterpriseCategoryUpdated>>;
397
+ type _publicCreateCategoryType = typeof createCategory$1;
398
+ declare const createCategory: ReturnType<typeof createRESTModule$3<_publicCreateCategoryType>>;
399
+ type _publicDeleteCategoryType = typeof deleteCategory$1;
400
+ declare const deleteCategory: ReturnType<typeof createRESTModule$3<_publicDeleteCategoryType>>;
401
+ type _publicUpdateCategoryType = typeof updateCategory$1;
402
+ declare const updateCategory: ReturnType<typeof createRESTModule$3<_publicUpdateCategoryType>>;
403
+ type _publicGetCategoryType = typeof getCategory$1;
404
+ declare const getCategory: ReturnType<typeof createRESTModule$3<_publicGetCategoryType>>;
405
+ type _publicEnterpriseOnboardingType = typeof enterpriseOnboarding$1;
406
+ declare const enterpriseOnboarding: ReturnType<typeof createRESTModule$3<_publicEnterpriseOnboardingType>>;
407
+ type _publicGetMediaManagerCategoriesType = typeof getMediaManagerCategories$1;
408
+ declare const getMediaManagerCategories: ReturnType<typeof createRESTModule$3<_publicGetMediaManagerCategoriesType>>;
409
+
410
+ type _publicOnEnterpriseCategoryCreatedType = typeof onEnterpriseCategoryCreated$1;
411
+ declare const onEnterpriseCategoryCreated: ReturnType<typeof createEventModule$3<_publicOnEnterpriseCategoryCreatedType>>;
412
+
413
+ type _publicOnEnterpriseCategoryDeletedType = typeof onEnterpriseCategoryDeleted$1;
414
+ declare const onEnterpriseCategoryDeleted: ReturnType<typeof createEventModule$3<_publicOnEnterpriseCategoryDeletedType>>;
415
+
416
+ type _publicOnEnterpriseCategoryUpdatedType = typeof onEnterpriseCategoryUpdated$1;
417
+ declare const onEnterpriseCategoryUpdated: ReturnType<typeof createEventModule$3<_publicOnEnterpriseCategoryUpdatedType>>;
395
418
 
396
419
  type index_d$3_CreateCategoryRequest = CreateCategoryRequest;
397
420
  type index_d$3_CreateCategoryResponse = CreateCategoryResponse;
@@ -424,6 +447,15 @@ type index_d$3_UpdateCategory = UpdateCategory;
424
447
  type index_d$3_UpdateCategoryRequest = UpdateCategoryRequest;
425
448
  type index_d$3_UpdateCategoryResponse = UpdateCategoryResponse;
426
449
  type index_d$3_UpdateCategoryResponseNonNullableFields = UpdateCategoryResponseNonNullableFields;
450
+ type index_d$3__publicCreateCategoryType = _publicCreateCategoryType;
451
+ type index_d$3__publicDeleteCategoryType = _publicDeleteCategoryType;
452
+ type index_d$3__publicEnterpriseOnboardingType = _publicEnterpriseOnboardingType;
453
+ type index_d$3__publicGetCategoryType = _publicGetCategoryType;
454
+ type index_d$3__publicGetMediaManagerCategoriesType = _publicGetMediaManagerCategoriesType;
455
+ type index_d$3__publicOnEnterpriseCategoryCreatedType = _publicOnEnterpriseCategoryCreatedType;
456
+ type index_d$3__publicOnEnterpriseCategoryDeletedType = _publicOnEnterpriseCategoryDeletedType;
457
+ type index_d$3__publicOnEnterpriseCategoryUpdatedType = _publicOnEnterpriseCategoryUpdatedType;
458
+ type index_d$3__publicUpdateCategoryType = _publicUpdateCategoryType;
427
459
  declare const index_d$3_createCategory: typeof createCategory;
428
460
  declare const index_d$3_deleteCategory: typeof deleteCategory;
429
461
  declare const index_d$3_enterpriseOnboarding: typeof enterpriseOnboarding;
@@ -434,7 +466,7 @@ declare const index_d$3_onEnterpriseCategoryDeleted: typeof onEnterpriseCategory
434
466
  declare const index_d$3_onEnterpriseCategoryUpdated: typeof onEnterpriseCategoryUpdated;
435
467
  declare const index_d$3_updateCategory: typeof updateCategory;
436
468
  declare namespace index_d$3 {
437
- export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$3 as BaseEventMetadata, type index_d$3_CreateCategoryRequest as CreateCategoryRequest, type index_d$3_CreateCategoryResponse as CreateCategoryResponse, type index_d$3_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, type index_d$3_DeleteCategoryRequest as DeleteCategoryRequest, type index_d$3_DeleteCategoryResponse as DeleteCategoryResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type index_d$3_EnterpriseCategory as EnterpriseCategory, type index_d$3_EnterpriseCategoryCreatedEnvelope as EnterpriseCategoryCreatedEnvelope, type index_d$3_EnterpriseCategoryDeletedEnvelope as EnterpriseCategoryDeletedEnvelope, type index_d$3_EnterpriseCategoryNonNullableFields as EnterpriseCategoryNonNullableFields, type index_d$3_EnterpriseCategoryTree as EnterpriseCategoryTree, type index_d$3_EnterpriseCategoryTreeNonNullableFields as EnterpriseCategoryTreeNonNullableFields, type index_d$3_EnterpriseCategoryUpdatedEnvelope as EnterpriseCategoryUpdatedEnvelope, type index_d$3_EnterpriseOnboardingOptions as EnterpriseOnboardingOptions, type index_d$3_EnterpriseOnboardingRequest as EnterpriseOnboardingRequest, type index_d$3_EnterpriseOnboardingResponse as EnterpriseOnboardingResponse, type index_d$3_EnterpriseOnboardingResponseNonNullableFields as EnterpriseOnboardingResponseNonNullableFields, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type index_d$3_GetCategoryOptions as GetCategoryOptions, type index_d$3_GetCategoryRequest as GetCategoryRequest, type index_d$3_GetCategoryResponse as GetCategoryResponse, type index_d$3_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d$3_GetMediaManagerCategoriesRequest as GetMediaManagerCategoriesRequest, type index_d$3_GetMediaManagerCategoriesResponse as GetMediaManagerCategoriesResponse, type index_d$3_GetMediaManagerCategoriesResponseNonNullableFields as GetMediaManagerCategoriesResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$3_LinkItemsToCategoryRequest as LinkItemsToCategoryRequest, type index_d$3_LinkItemsToCategoryResponse as LinkItemsToCategoryResponse, MediaType$2 as MediaType, type MessageEnvelope$3 as MessageEnvelope, PublishStatus$1 as PublishStatus, type index_d$3_UnlinkItemsFromCategoryRequest as UnlinkItemsFromCategoryRequest, type index_d$3_UnlinkItemsFromCategoryResponse as UnlinkItemsFromCategoryResponse, type index_d$3_UpdateCategory as UpdateCategory, type index_d$3_UpdateCategoryRequest as UpdateCategoryRequest, type index_d$3_UpdateCategoryResponse as UpdateCategoryResponse, type index_d$3_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, index_d$3_createCategory as createCategory, index_d$3_deleteCategory as deleteCategory, index_d$3_enterpriseOnboarding as enterpriseOnboarding, index_d$3_getCategory as getCategory, index_d$3_getMediaManagerCategories as getMediaManagerCategories, index_d$3_onEnterpriseCategoryCreated as onEnterpriseCategoryCreated, index_d$3_onEnterpriseCategoryDeleted as onEnterpriseCategoryDeleted, index_d$3_onEnterpriseCategoryUpdated as onEnterpriseCategoryUpdated, index_d$3_updateCategory as updateCategory };
469
+ export { type ActionEvent$3 as ActionEvent, type BaseEventMetadata$3 as BaseEventMetadata, type index_d$3_CreateCategoryRequest as CreateCategoryRequest, type index_d$3_CreateCategoryResponse as CreateCategoryResponse, type index_d$3_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, type index_d$3_DeleteCategoryRequest as DeleteCategoryRequest, type index_d$3_DeleteCategoryResponse as DeleteCategoryResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type index_d$3_EnterpriseCategory as EnterpriseCategory, type index_d$3_EnterpriseCategoryCreatedEnvelope as EnterpriseCategoryCreatedEnvelope, type index_d$3_EnterpriseCategoryDeletedEnvelope as EnterpriseCategoryDeletedEnvelope, type index_d$3_EnterpriseCategoryNonNullableFields as EnterpriseCategoryNonNullableFields, type index_d$3_EnterpriseCategoryTree as EnterpriseCategoryTree, type index_d$3_EnterpriseCategoryTreeNonNullableFields as EnterpriseCategoryTreeNonNullableFields, type index_d$3_EnterpriseCategoryUpdatedEnvelope as EnterpriseCategoryUpdatedEnvelope, type index_d$3_EnterpriseOnboardingOptions as EnterpriseOnboardingOptions, type index_d$3_EnterpriseOnboardingRequest as EnterpriseOnboardingRequest, type index_d$3_EnterpriseOnboardingResponse as EnterpriseOnboardingResponse, type index_d$3_EnterpriseOnboardingResponseNonNullableFields as EnterpriseOnboardingResponseNonNullableFields, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventMetadata$3 as EventMetadata, type index_d$3_GetCategoryOptions as GetCategoryOptions, type index_d$3_GetCategoryRequest as GetCategoryRequest, type index_d$3_GetCategoryResponse as GetCategoryResponse, type index_d$3_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d$3_GetMediaManagerCategoriesRequest as GetMediaManagerCategoriesRequest, type index_d$3_GetMediaManagerCategoriesResponse as GetMediaManagerCategoriesResponse, type index_d$3_GetMediaManagerCategoriesResponseNonNullableFields as GetMediaManagerCategoriesResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$3_LinkItemsToCategoryRequest as LinkItemsToCategoryRequest, type index_d$3_LinkItemsToCategoryResponse as LinkItemsToCategoryResponse, MediaType$2 as MediaType, type MessageEnvelope$3 as MessageEnvelope, PublishStatus$1 as PublishStatus, type index_d$3_UnlinkItemsFromCategoryRequest as UnlinkItemsFromCategoryRequest, type index_d$3_UnlinkItemsFromCategoryResponse as UnlinkItemsFromCategoryResponse, type index_d$3_UpdateCategory as UpdateCategory, type index_d$3_UpdateCategoryRequest as UpdateCategoryRequest, type index_d$3_UpdateCategoryResponse as UpdateCategoryResponse, type index_d$3_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, type index_d$3__publicCreateCategoryType as _publicCreateCategoryType, type index_d$3__publicDeleteCategoryType as _publicDeleteCategoryType, type index_d$3__publicEnterpriseOnboardingType as _publicEnterpriseOnboardingType, type index_d$3__publicGetCategoryType as _publicGetCategoryType, type index_d$3__publicGetMediaManagerCategoriesType as _publicGetMediaManagerCategoriesType, type index_d$3__publicOnEnterpriseCategoryCreatedType as _publicOnEnterpriseCategoryCreatedType, type index_d$3__publicOnEnterpriseCategoryDeletedType as _publicOnEnterpriseCategoryDeletedType, type index_d$3__publicOnEnterpriseCategoryUpdatedType as _publicOnEnterpriseCategoryUpdatedType, type index_d$3__publicUpdateCategoryType as _publicUpdateCategoryType, index_d$3_createCategory as createCategory, index_d$3_deleteCategory as deleteCategory, index_d$3_enterpriseOnboarding as enterpriseOnboarding, index_d$3_getCategory as getCategory, index_d$3_getMediaManagerCategories as getMediaManagerCategories, index_d$3_onEnterpriseCategoryCreated as onEnterpriseCategoryCreated, index_d$3_onEnterpriseCategoryDeleted as onEnterpriseCategoryDeleted, index_d$3_onEnterpriseCategoryUpdated as onEnterpriseCategoryUpdated, onEnterpriseCategoryCreated$1 as publicOnEnterpriseCategoryCreated, onEnterpriseCategoryDeleted$1 as publicOnEnterpriseCategoryDeleted, onEnterpriseCategoryUpdated$1 as publicOnEnterpriseCategoryUpdated, index_d$3_updateCategory as updateCategory };
438
470
  }
439
471
 
440
472
  /**
@@ -884,7 +916,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
884
916
  slug?: string;
885
917
  /** ID of the entity associated with the event. */
886
918
  entityId?: string;
887
- /** Event timestamp. */
919
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
888
920
  eventTime?: Date;
889
921
  /**
890
922
  * Whether the event was triggered as a result of a privacy regulation application
@@ -913,6 +945,9 @@ interface DomainEventBodyOneOf$2 {
913
945
  interface EntityCreatedEvent$2 {
914
946
  entity?: string;
915
947
  }
948
+ interface RestoreInfo$2 {
949
+ deletedDate?: Date;
950
+ }
916
951
  interface EntityUpdatedEvent$2 {
917
952
  /**
918
953
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -1059,7 +1094,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
1059
1094
  slug?: string;
1060
1095
  /** ID of the entity associated with the event. */
1061
1096
  entityId?: string;
1062
- /** Event timestamp. */
1097
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1063
1098
  eventTime?: Date;
1064
1099
  /**
1065
1100
  * Whether the event was triggered as a result of a privacy regulation application
@@ -1261,25 +1296,60 @@ interface OverwriteItemCategoriesOptions {
1261
1296
  categoryIds?: string[];
1262
1297
  }
1263
1298
 
1299
+ declare function itemUploadCallback$1(httpClient: HttpClient): (options?: ItemUploadCallbackOptions) => Promise<void>;
1300
+ declare function generateFileUploadUrl$3(httpClient: HttpClient): (options?: GenerateFileUploadUrlOptions$1) => Promise<GenerateFileUploadUrlResponse$1 & GenerateFileUploadUrlResponseNonNullableFields$1>;
1301
+ declare function importFile$3(httpClient: HttpClient): (url: string, options?: ImportFileOptions$1) => Promise<ImportFileResponse$1 & ImportFileResponseNonNullableFields$1>;
1302
+ declare function searchItems$1(httpClient: HttpClient): (options?: SearchItemsOptions) => Promise<SearchItemsResponse & SearchItemsResponseNonNullableFields>;
1303
+ declare function queryItems$1(httpClient: HttpClient): () => ItemsQueryBuilder;
1304
+ declare function updateItem$1(httpClient: HttpClient): (_id: string, item: UpdateItem) => Promise<EnterpriseMediaItem & EnterpriseMediaItemNonNullableFields>;
1305
+ declare function bulkUpdateItem$1(httpClient: HttpClient): (updateItemRequests: UpdateItemRequest[], options?: BulkUpdateItemOptions) => Promise<BulkUpdateItemResponse & BulkUpdateItemResponseNonNullableFields>;
1306
+ declare function getItem$1(httpClient: HttpClient): (itemId: string) => Promise<EnterpriseMediaItem & EnterpriseMediaItemNonNullableFields>;
1307
+ declare function linkItemToCategories$1(httpClient: HttpClient): (itemId: string, options?: LinkItemToCategoriesOptions) => Promise<LinkItemToCategoriesResponse>;
1308
+ declare function unlinkItemFromCategories$1(httpClient: HttpClient): (itemId: string, options?: UnlinkItemFromCategoriesOptions) => Promise<UnlinkItemFromCategoriesResponse>;
1309
+ declare function overwriteItemCategories$1(httpClient: HttpClient): (itemId: string, options?: OverwriteItemCategoriesOptions) => Promise<OverwriteItemCategoriesResponse>;
1310
+ declare const onEnterpriseItemCreated$1: EventDefinition<EnterpriseItemCreatedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_item_created">;
1311
+ declare const onEnterpriseItemUpdated$1: EventDefinition<EnterpriseItemUpdatedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_item_updated">;
1312
+ declare const onEnterpriseItemItemCategoriesChanged$1: EventDefinition<EnterpriseItemItemCategoriesChangedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_item_item_categories_changed">;
1313
+ declare const onEnterpriseItemPublishStatusChanged$1: EventDefinition<EnterpriseItemPublishStatusChangedEnvelope, "wix.media.enterprise_public_media.v1.enterprise_item_publish_status_changed">;
1314
+
1264
1315
  declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
1265
1316
 
1266
1317
  declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1267
1318
 
1268
- declare const itemUploadCallback: ReturnType<typeof createRESTModule$2<typeof publicItemUploadCallback>>;
1269
- declare const generateFileUploadUrl$1: ReturnType<typeof createRESTModule$2<typeof publicGenerateFileUploadUrl>>;
1270
- declare const importFile$1: ReturnType<typeof createRESTModule$2<typeof publicImportFile>>;
1271
- declare const searchItems: ReturnType<typeof createRESTModule$2<typeof publicSearchItems>>;
1272
- declare const queryItems: ReturnType<typeof createRESTModule$2<typeof publicQueryItems>>;
1273
- declare const updateItem: ReturnType<typeof createRESTModule$2<typeof publicUpdateItem>>;
1274
- declare const bulkUpdateItem: ReturnType<typeof createRESTModule$2<typeof publicBulkUpdateItem>>;
1275
- declare const getItem: ReturnType<typeof createRESTModule$2<typeof publicGetItem>>;
1276
- declare const linkItemToCategories: ReturnType<typeof createRESTModule$2<typeof publicLinkItemToCategories>>;
1277
- declare const unlinkItemFromCategories: ReturnType<typeof createRESTModule$2<typeof publicUnlinkItemFromCategories>>;
1278
- declare const overwriteItemCategories: ReturnType<typeof createRESTModule$2<typeof publicOverwriteItemCategories>>;
1279
- declare const onEnterpriseItemCreated: ReturnType<typeof createEventModule$2<typeof publicOnEnterpriseItemCreated>>;
1280
- declare const onEnterpriseItemUpdated: ReturnType<typeof createEventModule$2<typeof publicOnEnterpriseItemUpdated>>;
1281
- declare const onEnterpriseItemItemCategoriesChanged: ReturnType<typeof createEventModule$2<typeof publicOnEnterpriseItemItemCategoriesChanged>>;
1282
- declare const onEnterpriseItemPublishStatusChanged: ReturnType<typeof createEventModule$2<typeof publicOnEnterpriseItemPublishStatusChanged>>;
1319
+ type _publicItemUploadCallbackType = typeof itemUploadCallback$1;
1320
+ declare const itemUploadCallback: ReturnType<typeof createRESTModule$2<_publicItemUploadCallbackType>>;
1321
+ type _publicGenerateFileUploadUrlType$1 = typeof generateFileUploadUrl$3;
1322
+ declare const generateFileUploadUrl$2: ReturnType<typeof createRESTModule$2<_publicGenerateFileUploadUrlType>>;
1323
+ type _publicImportFileType$1 = typeof importFile$3;
1324
+ declare const importFile$2: ReturnType<typeof createRESTModule$2<_publicImportFileType>>;
1325
+ type _publicSearchItemsType = typeof searchItems$1;
1326
+ declare const searchItems: ReturnType<typeof createRESTModule$2<_publicSearchItemsType>>;
1327
+ type _publicQueryItemsType = typeof queryItems$1;
1328
+ declare const queryItems: ReturnType<typeof createRESTModule$2<_publicQueryItemsType>>;
1329
+ type _publicUpdateItemType = typeof updateItem$1;
1330
+ declare const updateItem: ReturnType<typeof createRESTModule$2<_publicUpdateItemType>>;
1331
+ type _publicBulkUpdateItemType = typeof bulkUpdateItem$1;
1332
+ declare const bulkUpdateItem: ReturnType<typeof createRESTModule$2<_publicBulkUpdateItemType>>;
1333
+ type _publicGetItemType = typeof getItem$1;
1334
+ declare const getItem: ReturnType<typeof createRESTModule$2<_publicGetItemType>>;
1335
+ type _publicLinkItemToCategoriesType = typeof linkItemToCategories$1;
1336
+ declare const linkItemToCategories: ReturnType<typeof createRESTModule$2<_publicLinkItemToCategoriesType>>;
1337
+ type _publicUnlinkItemFromCategoriesType = typeof unlinkItemFromCategories$1;
1338
+ declare const unlinkItemFromCategories: ReturnType<typeof createRESTModule$2<_publicUnlinkItemFromCategoriesType>>;
1339
+ type _publicOverwriteItemCategoriesType = typeof overwriteItemCategories$1;
1340
+ declare const overwriteItemCategories: ReturnType<typeof createRESTModule$2<_publicOverwriteItemCategoriesType>>;
1341
+
1342
+ type _publicOnEnterpriseItemCreatedType = typeof onEnterpriseItemCreated$1;
1343
+ declare const onEnterpriseItemCreated: ReturnType<typeof createEventModule$2<_publicOnEnterpriseItemCreatedType>>;
1344
+
1345
+ type _publicOnEnterpriseItemUpdatedType = typeof onEnterpriseItemUpdated$1;
1346
+ declare const onEnterpriseItemUpdated: ReturnType<typeof createEventModule$2<_publicOnEnterpriseItemUpdatedType>>;
1347
+
1348
+ type _publicOnEnterpriseItemItemCategoriesChangedType = typeof onEnterpriseItemItemCategoriesChanged$1;
1349
+ declare const onEnterpriseItemItemCategoriesChanged: ReturnType<typeof createEventModule$2<_publicOnEnterpriseItemItemCategoriesChangedType>>;
1350
+
1351
+ type _publicOnEnterpriseItemPublishStatusChangedType = typeof onEnterpriseItemPublishStatusChanged$1;
1352
+ declare const onEnterpriseItemPublishStatusChanged: ReturnType<typeof createEventModule$2<_publicOnEnterpriseItemPublishStatusChangedType>>;
1283
1353
 
1284
1354
  type index_d$2_BulkItemUpdateResult = BulkItemUpdateResult;
1285
1355
  type index_d$2_BulkUpdateItemOptions = BulkUpdateItemOptions;
@@ -1332,6 +1402,19 @@ type index_d$2_UpdateItem = UpdateItem;
1332
1402
  type index_d$2_UpdateItemRequest = UpdateItemRequest;
1333
1403
  type index_d$2_UpdateItemResponse = UpdateItemResponse;
1334
1404
  type index_d$2_UpdateItemResponseNonNullableFields = UpdateItemResponseNonNullableFields;
1405
+ type index_d$2__publicBulkUpdateItemType = _publicBulkUpdateItemType;
1406
+ type index_d$2__publicGetItemType = _publicGetItemType;
1407
+ type index_d$2__publicItemUploadCallbackType = _publicItemUploadCallbackType;
1408
+ type index_d$2__publicLinkItemToCategoriesType = _publicLinkItemToCategoriesType;
1409
+ type index_d$2__publicOnEnterpriseItemCreatedType = _publicOnEnterpriseItemCreatedType;
1410
+ type index_d$2__publicOnEnterpriseItemItemCategoriesChangedType = _publicOnEnterpriseItemItemCategoriesChangedType;
1411
+ type index_d$2__publicOnEnterpriseItemPublishStatusChangedType = _publicOnEnterpriseItemPublishStatusChangedType;
1412
+ type index_d$2__publicOnEnterpriseItemUpdatedType = _publicOnEnterpriseItemUpdatedType;
1413
+ type index_d$2__publicOverwriteItemCategoriesType = _publicOverwriteItemCategoriesType;
1414
+ type index_d$2__publicQueryItemsType = _publicQueryItemsType;
1415
+ type index_d$2__publicSearchItemsType = _publicSearchItemsType;
1416
+ type index_d$2__publicUnlinkItemFromCategoriesType = _publicUnlinkItemFromCategoriesType;
1417
+ type index_d$2__publicUpdateItemType = _publicUpdateItemType;
1335
1418
  declare const index_d$2_bulkUpdateItem: typeof bulkUpdateItem;
1336
1419
  declare const index_d$2_getItem: typeof getItem;
1337
1420
  declare const index_d$2_itemUploadCallback: typeof itemUploadCallback;
@@ -1346,7 +1429,7 @@ declare const index_d$2_searchItems: typeof searchItems;
1346
1429
  declare const index_d$2_unlinkItemFromCategories: typeof unlinkItemFromCategories;
1347
1430
  declare const index_d$2_updateItem: typeof updateItem;
1348
1431
  declare namespace index_d$2 {
1349
- export { type ActionEvent$2 as ActionEvent, type ApplicationError$1 as ApplicationError, type Archive$1 as Archive, type BaseEventMetadata$2 as BaseEventMetadata, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$2_BulkItemUpdateResult as BulkItemUpdateResult, type index_d$2_BulkUpdateItemOptions as BulkUpdateItemOptions, type index_d$2_BulkUpdateItemRequest as BulkUpdateItemRequest, type index_d$2_BulkUpdateItemResponse as BulkUpdateItemResponse, type index_d$2_BulkUpdateItemResponseNonNullableFields as BulkUpdateItemResponseNonNullableFields, type Cursors$2 as Cursors, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_EnterpriseItemCreatedEnvelope as EnterpriseItemCreatedEnvelope, type index_d$2_EnterpriseItemItemCategoriesChangedEnvelope as EnterpriseItemItemCategoriesChangedEnvelope, type index_d$2_EnterpriseItemPublishStatusChangedEnvelope as EnterpriseItemPublishStatusChangedEnvelope, type index_d$2_EnterpriseItemUpdatedEnvelope as EnterpriseItemUpdatedEnvelope, type index_d$2_EnterpriseMediaItem as EnterpriseMediaItem, type index_d$2_EnterpriseMediaItemNonNullableFields as EnterpriseMediaItemNonNullableFields, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type GenerateFileUploadUrlOptions$1 as GenerateFileUploadUrlOptions, type GenerateFileUploadUrlRequest$1 as GenerateFileUploadUrlRequest, type GenerateFileUploadUrlResponse$1 as GenerateFileUploadUrlResponse, type GenerateFileUploadUrlResponseNonNullableFields$1 as GenerateFileUploadUrlResponseNonNullableFields, type index_d$2_GetItemRequest as GetItemRequest, type index_d$2_GetItemResponse as GetItemResponse, type index_d$2_GetItemResponseNonNullableFields as GetItemResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ImportFileOptions$1 as ImportFileOptions, type ImportFileRequest$1 as ImportFileRequest, type ImportFileResponse$1 as ImportFileResponse, type ImportFileResponseNonNullableFields$1 as ImportFileResponseNonNullableFields, type index_d$2_ItemAssets as ItemAssets, type index_d$2_ItemAssetsAssetsOneOf as ItemAssetsAssetsOneOf, type index_d$2_ItemCategoriesChanged as ItemCategoriesChanged, type ItemMetadata$1 as ItemMetadata, type index_d$2_ItemUploadCallbackOptions as ItemUploadCallbackOptions, type index_d$2_ItemUploadCallbackRequest as ItemUploadCallbackRequest, type index_d$2_ItemUploadCallbackResponse as ItemUploadCallbackResponse, type index_d$2_ItemsQueryBuilder as ItemsQueryBuilder, type index_d$2_ItemsQueryResult as ItemsQueryResult, type index_d$2_LinkItemToCategoriesOptions as LinkItemToCategoriesOptions, type index_d$2_LinkItemToCategoriesRequest as LinkItemToCategoriesRequest, type index_d$2_LinkItemToCategoriesResponse as LinkItemToCategoriesResponse, MediaType$1 as MediaType, type MessageEnvelope$2 as MessageEnvelope, type Model3D$1 as Model3D, type index_d$2_OverwriteItemCategoriesOptions as OverwriteItemCategoriesOptions, type index_d$2_OverwriteItemCategoriesRequest as OverwriteItemCategoriesRequest, type index_d$2_OverwriteItemCategoriesResponse as OverwriteItemCategoriesResponse, type index_d$2_Paging as Paging, type PagingMetadataV2$2 as PagingMetadataV2, index_d$2_PublishStatus as PublishStatus, type index_d$2_PublishStatusChanged as PublishStatusChanged, type index_d$2_QueryItemsRequest as QueryItemsRequest, type index_d$2_QueryItemsResponse as QueryItemsResponse, type index_d$2_QueryItemsResponseNonNullableFields as QueryItemsResponseNonNullableFields, type index_d$2_QueryV2 as QueryV2, type index_d$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$2_Search as Search, type index_d$2_SearchDetails as SearchDetails, type index_d$2_SearchItemsOptions as SearchItemsOptions, type index_d$2_SearchItemsRequest as SearchItemsRequest, type index_d$2_SearchItemsResponse as SearchItemsResponse, type index_d$2_SearchItemsResponseNonNullableFields as SearchItemsResponseNonNullableFields, type index_d$2_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type index_d$2_UnlinkItemFromCategoriesOptions as UnlinkItemFromCategoriesOptions, type index_d$2_UnlinkItemFromCategoriesRequest as UnlinkItemFromCategoriesRequest, type index_d$2_UnlinkItemFromCategoriesResponse as UnlinkItemFromCategoriesResponse, type index_d$2_UpdateItem as UpdateItem, type index_d$2_UpdateItemRequest as UpdateItemRequest, type index_d$2_UpdateItemResponse as UpdateItemResponse, type index_d$2_UpdateItemResponseNonNullableFields as UpdateItemResponseNonNullableFields, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_bulkUpdateItem as bulkUpdateItem, generateFileUploadUrl$1 as generateFileUploadUrl, index_d$2_getItem as getItem, importFile$1 as importFile, index_d$2_itemUploadCallback as itemUploadCallback, index_d$2_linkItemToCategories as linkItemToCategories, index_d$2_onEnterpriseItemCreated as onEnterpriseItemCreated, index_d$2_onEnterpriseItemItemCategoriesChanged as onEnterpriseItemItemCategoriesChanged, index_d$2_onEnterpriseItemPublishStatusChanged as onEnterpriseItemPublishStatusChanged, index_d$2_onEnterpriseItemUpdated as onEnterpriseItemUpdated, index_d$2_overwriteItemCategories as overwriteItemCategories, index_d$2_queryItems as queryItems, index_d$2_searchItems as searchItems, index_d$2_unlinkItemFromCategories as unlinkItemFromCategories, index_d$2_updateItem as updateItem };
1432
+ export { type ActionEvent$2 as ActionEvent, type ApplicationError$1 as ApplicationError, type Archive$1 as Archive, type BaseEventMetadata$2 as BaseEventMetadata, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$2_BulkItemUpdateResult as BulkItemUpdateResult, type index_d$2_BulkUpdateItemOptions as BulkUpdateItemOptions, type index_d$2_BulkUpdateItemRequest as BulkUpdateItemRequest, type index_d$2_BulkUpdateItemResponse as BulkUpdateItemResponse, type index_d$2_BulkUpdateItemResponseNonNullableFields as BulkUpdateItemResponseNonNullableFields, type Cursors$2 as Cursors, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_EnterpriseItemCreatedEnvelope as EnterpriseItemCreatedEnvelope, type index_d$2_EnterpriseItemItemCategoriesChangedEnvelope as EnterpriseItemItemCategoriesChangedEnvelope, type index_d$2_EnterpriseItemPublishStatusChangedEnvelope as EnterpriseItemPublishStatusChangedEnvelope, type index_d$2_EnterpriseItemUpdatedEnvelope as EnterpriseItemUpdatedEnvelope, type index_d$2_EnterpriseMediaItem as EnterpriseMediaItem, type index_d$2_EnterpriseMediaItemNonNullableFields as EnterpriseMediaItemNonNullableFields, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type GenerateFileUploadUrlOptions$1 as GenerateFileUploadUrlOptions, type GenerateFileUploadUrlRequest$1 as GenerateFileUploadUrlRequest, type GenerateFileUploadUrlResponse$1 as GenerateFileUploadUrlResponse, type GenerateFileUploadUrlResponseNonNullableFields$1 as GenerateFileUploadUrlResponseNonNullableFields, type index_d$2_GetItemRequest as GetItemRequest, type index_d$2_GetItemResponse as GetItemResponse, type index_d$2_GetItemResponseNonNullableFields as GetItemResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type ImportFileOptions$1 as ImportFileOptions, type ImportFileRequest$1 as ImportFileRequest, type ImportFileResponse$1 as ImportFileResponse, type ImportFileResponseNonNullableFields$1 as ImportFileResponseNonNullableFields, type index_d$2_ItemAssets as ItemAssets, type index_d$2_ItemAssetsAssetsOneOf as ItemAssetsAssetsOneOf, type index_d$2_ItemCategoriesChanged as ItemCategoriesChanged, type ItemMetadata$1 as ItemMetadata, type index_d$2_ItemUploadCallbackOptions as ItemUploadCallbackOptions, type index_d$2_ItemUploadCallbackRequest as ItemUploadCallbackRequest, type index_d$2_ItemUploadCallbackResponse as ItemUploadCallbackResponse, type index_d$2_ItemsQueryBuilder as ItemsQueryBuilder, type index_d$2_ItemsQueryResult as ItemsQueryResult, type index_d$2_LinkItemToCategoriesOptions as LinkItemToCategoriesOptions, type index_d$2_LinkItemToCategoriesRequest as LinkItemToCategoriesRequest, type index_d$2_LinkItemToCategoriesResponse as LinkItemToCategoriesResponse, MediaType$1 as MediaType, type MessageEnvelope$2 as MessageEnvelope, type Model3D$1 as Model3D, type index_d$2_OverwriteItemCategoriesOptions as OverwriteItemCategoriesOptions, type index_d$2_OverwriteItemCategoriesRequest as OverwriteItemCategoriesRequest, type index_d$2_OverwriteItemCategoriesResponse as OverwriteItemCategoriesResponse, type index_d$2_Paging as Paging, type PagingMetadataV2$2 as PagingMetadataV2, index_d$2_PublishStatus as PublishStatus, type index_d$2_PublishStatusChanged as PublishStatusChanged, type index_d$2_QueryItemsRequest as QueryItemsRequest, type index_d$2_QueryItemsResponse as QueryItemsResponse, type index_d$2_QueryItemsResponseNonNullableFields as QueryItemsResponseNonNullableFields, type index_d$2_QueryV2 as QueryV2, type index_d$2_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RestoreInfo$2 as RestoreInfo, type index_d$2_Search as Search, type index_d$2_SearchDetails as SearchDetails, type index_d$2_SearchItemsOptions as SearchItemsOptions, type index_d$2_SearchItemsRequest as SearchItemsRequest, type index_d$2_SearchItemsResponse as SearchItemsResponse, type index_d$2_SearchItemsResponseNonNullableFields as SearchItemsResponseNonNullableFields, type index_d$2_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, type index_d$2_UnlinkItemFromCategoriesOptions as UnlinkItemFromCategoriesOptions, type index_d$2_UnlinkItemFromCategoriesRequest as UnlinkItemFromCategoriesRequest, type index_d$2_UnlinkItemFromCategoriesResponse as UnlinkItemFromCategoriesResponse, type index_d$2_UpdateItem as UpdateItem, type index_d$2_UpdateItemRequest as UpdateItemRequest, type index_d$2_UpdateItemResponse as UpdateItemResponse, type index_d$2_UpdateItemResponseNonNullableFields as UpdateItemResponseNonNullableFields, type VideoResolution$1 as VideoResolution, WebhookIdentityType$2 as WebhookIdentityType, type index_d$2__publicBulkUpdateItemType as _publicBulkUpdateItemType, type _publicGenerateFileUploadUrlType$1 as _publicGenerateFileUploadUrlType, type index_d$2__publicGetItemType as _publicGetItemType, type _publicImportFileType$1 as _publicImportFileType, type index_d$2__publicItemUploadCallbackType as _publicItemUploadCallbackType, type index_d$2__publicLinkItemToCategoriesType as _publicLinkItemToCategoriesType, type index_d$2__publicOnEnterpriseItemCreatedType as _publicOnEnterpriseItemCreatedType, type index_d$2__publicOnEnterpriseItemItemCategoriesChangedType as _publicOnEnterpriseItemItemCategoriesChangedType, type index_d$2__publicOnEnterpriseItemPublishStatusChangedType as _publicOnEnterpriseItemPublishStatusChangedType, type index_d$2__publicOnEnterpriseItemUpdatedType as _publicOnEnterpriseItemUpdatedType, type index_d$2__publicOverwriteItemCategoriesType as _publicOverwriteItemCategoriesType, type index_d$2__publicQueryItemsType as _publicQueryItemsType, type index_d$2__publicSearchItemsType as _publicSearchItemsType, type index_d$2__publicUnlinkItemFromCategoriesType as _publicUnlinkItemFromCategoriesType, type index_d$2__publicUpdateItemType as _publicUpdateItemType, index_d$2_bulkUpdateItem as bulkUpdateItem, generateFileUploadUrl$2 as generateFileUploadUrl, index_d$2_getItem as getItem, importFile$2 as importFile, index_d$2_itemUploadCallback as itemUploadCallback, index_d$2_linkItemToCategories as linkItemToCategories, index_d$2_onEnterpriseItemCreated as onEnterpriseItemCreated, index_d$2_onEnterpriseItemItemCategoriesChanged as onEnterpriseItemItemCategoriesChanged, index_d$2_onEnterpriseItemPublishStatusChanged as onEnterpriseItemPublishStatusChanged, index_d$2_onEnterpriseItemUpdated as onEnterpriseItemUpdated, index_d$2_overwriteItemCategories as overwriteItemCategories, onEnterpriseItemCreated$1 as publicOnEnterpriseItemCreated, onEnterpriseItemItemCategoriesChanged$1 as publicOnEnterpriseItemItemCategoriesChanged, onEnterpriseItemPublishStatusChanged$1 as publicOnEnterpriseItemPublishStatusChanged, onEnterpriseItemUpdated$1 as publicOnEnterpriseItemUpdated, index_d$2_queryItems as queryItems, index_d$2_searchItems as searchItems, index_d$2_unlinkItemFromCategories as unlinkItemFromCategories, index_d$2_updateItem as updateItem };
1350
1433
  }
1351
1434
 
1352
1435
  interface FileDescriptor {
@@ -1491,11 +1574,6 @@ interface ImageMedia {
1491
1574
  * @readonly
1492
1575
  */
1493
1576
  caption?: string | null;
1494
- /**
1495
- * Optional, return true or false if the image has text, or empty for unknown
1496
- * @readonly
1497
- */
1498
- containsText?: boolean | null;
1499
1577
  }
1500
1578
  interface Colors {
1501
1579
  /** Main color of the image. */
@@ -1637,6 +1715,8 @@ interface OtherMedia {
1637
1715
  * @readonly
1638
1716
  */
1639
1717
  sizeInBytes?: string | null;
1718
+ /** The file URL. */
1719
+ url?: string;
1640
1720
  }
1641
1721
  declare enum OperationStatus {
1642
1722
  /** File upload or processing failed */
@@ -2357,6 +2437,7 @@ interface Model3DNonNullableFields {
2357
2437
  }
2358
2438
  interface OtherMediaNonNullableFields {
2359
2439
  _id: string;
2440
+ url: string;
2360
2441
  }
2361
2442
  interface FileMediaNonNullableFields {
2362
2443
  image?: ImageMediaNonNullableFields;
@@ -2538,6 +2619,10 @@ interface GenerateFileDownloadUrlOptions {
2538
2619
  */
2539
2620
  contentDisposition?: ContentDisposition;
2540
2621
  }
2622
+ interface UpdateFileDescriptorOptions {
2623
+ /** The file to update. */
2624
+ file: FileDescriptor;
2625
+ }
2541
2626
  interface GenerateFileUploadUrlOptions {
2542
2627
  /**
2543
2628
  * Temporary file name used to identify the file type. For example, a file named "myFile.jpeg" identifies as an "image/jpeg" file type.
@@ -2735,30 +2820,75 @@ interface ListDeletedFilesOptions {
2735
2820
  paging?: CursorPaging$1;
2736
2821
  }
2737
2822
 
2823
+ declare function generateFilesDownloadUrl$1(httpClient: HttpClient): (fileIds: string[]) => Promise<GenerateFilesDownloadUrlResponse & GenerateFilesDownloadUrlResponseNonNullableFields>;
2824
+ declare function generateFileDownloadUrl$1(httpClient: HttpClient): (fileId: string, options?: GenerateFileDownloadUrlOptions) => Promise<GenerateFileDownloadUrlResponse & GenerateFileDownloadUrlResponseNonNullableFields>;
2825
+ declare function getFileDescriptor$1(httpClient: HttpClient): (fileId: string) => Promise<FileDescriptor & FileDescriptorNonNullableFields>;
2826
+ declare function getFileDescriptors$1(httpClient: HttpClient): (fileIds: string[]) => Promise<GetFileDescriptorsResponse & GetFileDescriptorsResponseNonNullableFields>;
2827
+ declare function updateFileDescriptor$1(httpClient: HttpClient): (options: UpdateFileDescriptorOptions) => Promise<FileDescriptor & FileDescriptorNonNullableFields>;
2828
+ declare function generateFileUploadUrl$1(httpClient: HttpClient): (mimeType: string | null, options?: GenerateFileUploadUrlOptions) => Promise<GenerateFileUploadUrlResponse & GenerateFileUploadUrlResponseNonNullableFields>;
2829
+ declare function generateFileResumableUploadUrl$1(httpClient: HttpClient): (mimeType: string | null, options?: GenerateFileResumableUploadUrlOptions) => Promise<GenerateFileResumableUploadUrlResponse & GenerateFileResumableUploadUrlResponseNonNullableFields>;
2830
+ declare function importFile$1(httpClient: HttpClient): (url: string, options?: ImportFileOptions) => Promise<ImportFileResponse & ImportFileResponseNonNullableFields>;
2831
+ declare function bulkImportFiles$1(httpClient: HttpClient): (importFileRequests: ImportFileRequest[]) => Promise<BulkImportFilesResponse & BulkImportFilesResponseNonNullableFields>;
2832
+ declare function bulkImportFile$1(httpClient: HttpClient): (importFileRequests: ImportFileRequest[], options?: BulkImportFileOptions) => Promise<BulkImportFileResponse & BulkImportFileResponseNonNullableFields>;
2833
+ declare function listFiles$1(httpClient: HttpClient): (options?: ListFilesOptions) => Promise<ListFilesResponse & ListFilesResponseNonNullableFields>;
2834
+ declare function searchFiles$1(httpClient: HttpClient): (options?: SearchFilesOptions) => Promise<SearchFilesResponse & SearchFilesResponseNonNullableFields>;
2835
+ declare function generateVideoStreamingUrl$1(httpClient: HttpClient): (fileId: string, options?: GenerateVideoStreamingUrlOptions) => Promise<GenerateVideoStreamingUrlResponse & GenerateVideoStreamingUrlResponseNonNullableFields>;
2836
+ declare function bulkDeleteFiles$1(httpClient: HttpClient): (fileIds: string[], options?: BulkDeleteFilesOptions) => Promise<void>;
2837
+ declare function bulkRestoreFilesFromTrashBin$1(httpClient: HttpClient): (fileIds: string[]) => Promise<void>;
2838
+ declare function listDeletedFiles$1(httpClient: HttpClient): (options?: ListDeletedFilesOptions) => Promise<ListDeletedFilesResponse & ListDeletedFilesResponseNonNullableFields>;
2839
+ declare const onFileDescriptorUpdated$1: EventDefinition<FileDescriptorUpdatedEnvelope, "wix.media.site_media.v1.file_descriptor_updated">;
2840
+ declare const onFileDescriptorDeleted$1: EventDefinition<FileDescriptorDeletedEnvelope, "wix.media.site_media.v1.file_descriptor_deleted">;
2841
+ declare const onFileDescriptorFileReady$1: EventDefinition<FileDescriptorFileReadyEnvelope, "wix.media.site_media.v1.file_descriptor_file_ready">;
2842
+ declare const onFileDescriptorFileFailed$1: EventDefinition<FileDescriptorFileFailedEnvelope, "wix.media.site_media.v1.file_descriptor_file_failed">;
2843
+
2738
2844
  declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
2739
2845
 
2740
2846
  declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
2741
2847
 
2742
- declare const generateFilesDownloadUrl: ReturnType<typeof createRESTModule$1<typeof publicGenerateFilesDownloadUrl>>;
2743
- declare const generateFileDownloadUrl: ReturnType<typeof createRESTModule$1<typeof publicGenerateFileDownloadUrl>>;
2744
- declare const getFileDescriptor: ReturnType<typeof createRESTModule$1<typeof publicGetFileDescriptor>>;
2745
- declare const getFileDescriptors: ReturnType<typeof createRESTModule$1<typeof publicGetFileDescriptors>>;
2746
- declare const updateFileDescriptor: ReturnType<typeof createRESTModule$1<typeof publicUpdateFileDescriptor>>;
2747
- declare const generateFileUploadUrl: ReturnType<typeof createRESTModule$1<typeof publicGenerateFileUploadUrl>>;
2748
- declare const generateFileResumableUploadUrl: ReturnType<typeof createRESTModule$1<typeof publicGenerateFileResumableUploadUrl>>;
2749
- declare const importFile: ReturnType<typeof createRESTModule$1<typeof publicImportFile>>;
2750
- declare const bulkImportFiles: ReturnType<typeof createRESTModule$1<typeof publicBulkImportFiles>>;
2751
- declare const bulkImportFile: ReturnType<typeof createRESTModule$1<typeof publicBulkImportFile>>;
2752
- declare const listFiles: ReturnType<typeof createRESTModule$1<typeof publicListFiles>>;
2753
- declare const searchFiles: ReturnType<typeof createRESTModule$1<typeof publicSearchFiles>>;
2754
- declare const generateVideoStreamingUrl: ReturnType<typeof createRESTModule$1<typeof publicGenerateVideoStreamingUrl>>;
2755
- declare const bulkDeleteFiles: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFiles>>;
2756
- declare const bulkRestoreFilesFromTrashBin: ReturnType<typeof createRESTModule$1<typeof publicBulkRestoreFilesFromTrashBin>>;
2757
- declare const listDeletedFiles: ReturnType<typeof createRESTModule$1<typeof publicListDeletedFiles>>;
2758
- declare const onFileDescriptorUpdated: ReturnType<typeof createEventModule$1<typeof publicOnFileDescriptorUpdated>>;
2759
- declare const onFileDescriptorDeleted: ReturnType<typeof createEventModule$1<typeof publicOnFileDescriptorDeleted>>;
2760
- declare const onFileDescriptorFileReady: ReturnType<typeof createEventModule$1<typeof publicOnFileDescriptorFileReady>>;
2761
- declare const onFileDescriptorFileFailed: ReturnType<typeof createEventModule$1<typeof publicOnFileDescriptorFileFailed>>;
2848
+ type _publicGenerateFilesDownloadUrlType = typeof generateFilesDownloadUrl$1;
2849
+ declare const generateFilesDownloadUrl: ReturnType<typeof createRESTModule$1<_publicGenerateFilesDownloadUrlType>>;
2850
+ type _publicGenerateFileDownloadUrlType = typeof generateFileDownloadUrl$1;
2851
+ declare const generateFileDownloadUrl: ReturnType<typeof createRESTModule$1<_publicGenerateFileDownloadUrlType>>;
2852
+ type _publicGetFileDescriptorType = typeof getFileDescriptor$1;
2853
+ declare const getFileDescriptor: ReturnType<typeof createRESTModule$1<_publicGetFileDescriptorType>>;
2854
+ type _publicGetFileDescriptorsType = typeof getFileDescriptors$1;
2855
+ declare const getFileDescriptors: ReturnType<typeof createRESTModule$1<_publicGetFileDescriptorsType>>;
2856
+ type _publicUpdateFileDescriptorType = typeof updateFileDescriptor$1;
2857
+ declare const updateFileDescriptor: ReturnType<typeof createRESTModule$1<_publicUpdateFileDescriptorType>>;
2858
+ type _publicGenerateFileUploadUrlType = typeof generateFileUploadUrl$1;
2859
+ declare const generateFileUploadUrl: ReturnType<typeof createRESTModule$1<_publicGenerateFileUploadUrlType>>;
2860
+ type _publicGenerateFileResumableUploadUrlType = typeof generateFileResumableUploadUrl$1;
2861
+ declare const generateFileResumableUploadUrl: ReturnType<typeof createRESTModule$1<_publicGenerateFileResumableUploadUrlType>>;
2862
+ type _publicImportFileType = typeof importFile$1;
2863
+ declare const importFile: ReturnType<typeof createRESTModule$1<_publicImportFileType>>;
2864
+ type _publicBulkImportFilesType = typeof bulkImportFiles$1;
2865
+ declare const bulkImportFiles: ReturnType<typeof createRESTModule$1<_publicBulkImportFilesType>>;
2866
+ type _publicBulkImportFileType = typeof bulkImportFile$1;
2867
+ declare const bulkImportFile: ReturnType<typeof createRESTModule$1<_publicBulkImportFileType>>;
2868
+ type _publicListFilesType = typeof listFiles$1;
2869
+ declare const listFiles: ReturnType<typeof createRESTModule$1<_publicListFilesType>>;
2870
+ type _publicSearchFilesType = typeof searchFiles$1;
2871
+ declare const searchFiles: ReturnType<typeof createRESTModule$1<_publicSearchFilesType>>;
2872
+ type _publicGenerateVideoStreamingUrlType = typeof generateVideoStreamingUrl$1;
2873
+ declare const generateVideoStreamingUrl: ReturnType<typeof createRESTModule$1<_publicGenerateVideoStreamingUrlType>>;
2874
+ type _publicBulkDeleteFilesType = typeof bulkDeleteFiles$1;
2875
+ declare const bulkDeleteFiles: ReturnType<typeof createRESTModule$1<_publicBulkDeleteFilesType>>;
2876
+ type _publicBulkRestoreFilesFromTrashBinType = typeof bulkRestoreFilesFromTrashBin$1;
2877
+ declare const bulkRestoreFilesFromTrashBin: ReturnType<typeof createRESTModule$1<_publicBulkRestoreFilesFromTrashBinType>>;
2878
+ type _publicListDeletedFilesType = typeof listDeletedFiles$1;
2879
+ declare const listDeletedFiles: ReturnType<typeof createRESTModule$1<_publicListDeletedFilesType>>;
2880
+
2881
+ type _publicOnFileDescriptorUpdatedType = typeof onFileDescriptorUpdated$1;
2882
+ declare const onFileDescriptorUpdated: ReturnType<typeof createEventModule$1<_publicOnFileDescriptorUpdatedType>>;
2883
+
2884
+ type _publicOnFileDescriptorDeletedType = typeof onFileDescriptorDeleted$1;
2885
+ declare const onFileDescriptorDeleted: ReturnType<typeof createEventModule$1<_publicOnFileDescriptorDeletedType>>;
2886
+
2887
+ type _publicOnFileDescriptorFileReadyType = typeof onFileDescriptorFileReady$1;
2888
+ declare const onFileDescriptorFileReady: ReturnType<typeof createEventModule$1<_publicOnFileDescriptorFileReadyType>>;
2889
+
2890
+ type _publicOnFileDescriptorFileFailedType = typeof onFileDescriptorFileFailed$1;
2891
+ declare const onFileDescriptorFileFailed: ReturnType<typeof createEventModule$1<_publicOnFileDescriptorFileFailedType>>;
2762
2892
 
2763
2893
  type index_d$1_ApplicationError = ApplicationError;
2764
2894
  type index_d$1_Archive = Archive;
@@ -2851,6 +2981,7 @@ type index_d$1_SearchFilesResponse = SearchFilesResponse;
2851
2981
  type index_d$1_SearchFilesResponseNonNullableFields = SearchFilesResponseNonNullableFields;
2852
2982
  type index_d$1_StreamFormat = StreamFormat;
2853
2983
  declare const index_d$1_StreamFormat: typeof StreamFormat;
2984
+ type index_d$1_UpdateFileDescriptorOptions = UpdateFileDescriptorOptions;
2854
2985
  type index_d$1_UpdateFileDescriptorRequest = UpdateFileDescriptorRequest;
2855
2986
  type index_d$1_UpdateFileDescriptorResponse = UpdateFileDescriptorResponse;
2856
2987
  type index_d$1_UpdateFileDescriptorResponseNonNullableFields = UpdateFileDescriptorResponseNonNullableFields;
@@ -2859,6 +2990,26 @@ type index_d$1_UpdateFileResponse = UpdateFileResponse;
2859
2990
  type index_d$1_UploadProtocol = UploadProtocol;
2860
2991
  declare const index_d$1_UploadProtocol: typeof UploadProtocol;
2861
2992
  type index_d$1_VideoResolution = VideoResolution;
2993
+ type index_d$1__publicBulkDeleteFilesType = _publicBulkDeleteFilesType;
2994
+ type index_d$1__publicBulkImportFileType = _publicBulkImportFileType;
2995
+ type index_d$1__publicBulkImportFilesType = _publicBulkImportFilesType;
2996
+ type index_d$1__publicBulkRestoreFilesFromTrashBinType = _publicBulkRestoreFilesFromTrashBinType;
2997
+ type index_d$1__publicGenerateFileDownloadUrlType = _publicGenerateFileDownloadUrlType;
2998
+ type index_d$1__publicGenerateFileResumableUploadUrlType = _publicGenerateFileResumableUploadUrlType;
2999
+ type index_d$1__publicGenerateFileUploadUrlType = _publicGenerateFileUploadUrlType;
3000
+ type index_d$1__publicGenerateFilesDownloadUrlType = _publicGenerateFilesDownloadUrlType;
3001
+ type index_d$1__publicGenerateVideoStreamingUrlType = _publicGenerateVideoStreamingUrlType;
3002
+ type index_d$1__publicGetFileDescriptorType = _publicGetFileDescriptorType;
3003
+ type index_d$1__publicGetFileDescriptorsType = _publicGetFileDescriptorsType;
3004
+ type index_d$1__publicImportFileType = _publicImportFileType;
3005
+ type index_d$1__publicListDeletedFilesType = _publicListDeletedFilesType;
3006
+ type index_d$1__publicListFilesType = _publicListFilesType;
3007
+ type index_d$1__publicOnFileDescriptorDeletedType = _publicOnFileDescriptorDeletedType;
3008
+ type index_d$1__publicOnFileDescriptorFileFailedType = _publicOnFileDescriptorFileFailedType;
3009
+ type index_d$1__publicOnFileDescriptorFileReadyType = _publicOnFileDescriptorFileReadyType;
3010
+ type index_d$1__publicOnFileDescriptorUpdatedType = _publicOnFileDescriptorUpdatedType;
3011
+ type index_d$1__publicSearchFilesType = _publicSearchFilesType;
3012
+ type index_d$1__publicUpdateFileDescriptorType = _publicUpdateFileDescriptorType;
2862
3013
  declare const index_d$1_bulkDeleteFiles: typeof bulkDeleteFiles;
2863
3014
  declare const index_d$1_bulkImportFile: typeof bulkImportFile;
2864
3015
  declare const index_d$1_bulkImportFiles: typeof bulkImportFiles;
@@ -2880,7 +3031,7 @@ declare const index_d$1_onFileDescriptorUpdated: typeof onFileDescriptorUpdated;
2880
3031
  declare const index_d$1_searchFiles: typeof searchFiles;
2881
3032
  declare const index_d$1_updateFileDescriptor: typeof updateFileDescriptor;
2882
3033
  declare namespace index_d$1 {
2883
- export { type ActionEvent$1 as ActionEvent, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Archive as Archive, type index_d$1_AudioV2 as AudioV2, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkDeleteFilesOptions as BulkDeleteFilesOptions, type index_d$1_BulkDeleteFilesRequest as BulkDeleteFilesRequest, type index_d$1_BulkDeleteFilesResponse as BulkDeleteFilesResponse, type index_d$1_BulkImportFileOptions as BulkImportFileOptions, type index_d$1_BulkImportFileRequest as BulkImportFileRequest, type index_d$1_BulkImportFileResponse as BulkImportFileResponse, type index_d$1_BulkImportFileResponseNonNullableFields as BulkImportFileResponseNonNullableFields, type index_d$1_BulkImportFileResult as BulkImportFileResult, type index_d$1_BulkImportFilesRequest as BulkImportFilesRequest, type index_d$1_BulkImportFilesResponse as BulkImportFilesResponse, type index_d$1_BulkImportFilesResponseNonNullableFields as BulkImportFilesResponseNonNullableFields, type index_d$1_BulkRestoreFilesFromTrashBinRequest as BulkRestoreFilesFromTrashBinRequest, type index_d$1_BulkRestoreFilesFromTrashBinResponse as BulkRestoreFilesFromTrashBinResponse, type index_d$1_Color as Color, type index_d$1_ColorRGB as ColorRGB, type index_d$1_Colors as Colors, index_d$1_ContentDisposition as ContentDisposition, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_DownloadUrl as DownloadUrl, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_ExternalInfo as ExternalInfo, type index_d$1_FaceRecognition as FaceRecognition, type index_d$1_FileDescriptor as FileDescriptor, type index_d$1_FileDescriptorDeletedEnvelope as FileDescriptorDeletedEnvelope, type index_d$1_FileDescriptorFileFailedEnvelope as FileDescriptorFileFailedEnvelope, type index_d$1_FileDescriptorFileReadyEnvelope as FileDescriptorFileReadyEnvelope, type index_d$1_FileDescriptorNonNullableFields as FileDescriptorNonNullableFields, type index_d$1_FileDescriptorUpdatedEnvelope as FileDescriptorUpdatedEnvelope, type index_d$1_FileFailed as FileFailed, type index_d$1_FileMedia as FileMedia, type index_d$1_FileMediaMediaOneOf as FileMediaMediaOneOf, type index_d$1_FileReady as FileReady, type index_d$1_GenerateFileDownloadUrlOptions as GenerateFileDownloadUrlOptions, type index_d$1_GenerateFileDownloadUrlRequest as GenerateFileDownloadUrlRequest, type index_d$1_GenerateFileDownloadUrlResponse as GenerateFileDownloadUrlResponse, type index_d$1_GenerateFileDownloadUrlResponseNonNullableFields as GenerateFileDownloadUrlResponseNonNullableFields, type index_d$1_GenerateFileResumableUploadUrlOptions as GenerateFileResumableUploadUrlOptions, type index_d$1_GenerateFileResumableUploadUrlRequest as GenerateFileResumableUploadUrlRequest, type index_d$1_GenerateFileResumableUploadUrlResponse as GenerateFileResumableUploadUrlResponse, type index_d$1_GenerateFileResumableUploadUrlResponseNonNullableFields as GenerateFileResumableUploadUrlResponseNonNullableFields, type index_d$1_GenerateFileUploadUrlOptions as GenerateFileUploadUrlOptions, type index_d$1_GenerateFileUploadUrlRequest as GenerateFileUploadUrlRequest, type index_d$1_GenerateFileUploadUrlResponse as GenerateFileUploadUrlResponse, type index_d$1_GenerateFileUploadUrlResponseNonNullableFields as GenerateFileUploadUrlResponseNonNullableFields, type index_d$1_GenerateFilesDownloadUrlRequest as GenerateFilesDownloadUrlRequest, type index_d$1_GenerateFilesDownloadUrlResponse as GenerateFilesDownloadUrlResponse, type index_d$1_GenerateFilesDownloadUrlResponseNonNullableFields as GenerateFilesDownloadUrlResponseNonNullableFields, type index_d$1_GenerateVideoStreamingUrlOptions as GenerateVideoStreamingUrlOptions, type index_d$1_GenerateVideoStreamingUrlRequest as GenerateVideoStreamingUrlRequest, type index_d$1_GenerateVideoStreamingUrlResponse as GenerateVideoStreamingUrlResponse, type index_d$1_GenerateVideoStreamingUrlResponseNonNullableFields as GenerateVideoStreamingUrlResponseNonNullableFields, type index_d$1_GenerateWebSocketTokenRequest as GenerateWebSocketTokenRequest, type index_d$1_GenerateWebSocketTokenResponse as GenerateWebSocketTokenResponse, type index_d$1_GetFileDescriptorRequest as GetFileDescriptorRequest, type index_d$1_GetFileDescriptorResponse as GetFileDescriptorResponse, type index_d$1_GetFileDescriptorResponseNonNullableFields as GetFileDescriptorResponseNonNullableFields, type index_d$1_GetFileDescriptorsRequest as GetFileDescriptorsRequest, type index_d$1_GetFileDescriptorsResponse as GetFileDescriptorsResponse, type index_d$1_GetFileDescriptorsResponseNonNullableFields as GetFileDescriptorsResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_IdentityInfo as IdentityInfo, index_d$1_IdentityType as IdentityType, type index_d$1_ImageMedia as ImageMedia, type index_d$1_ImportFileOptions as ImportFileOptions, type index_d$1_ImportFileRequest as ImportFileRequest, type index_d$1_ImportFileResponse as ImportFileResponse, type index_d$1_ImportFileResponseNonNullableFields as ImportFileResponseNonNullableFields, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ListDeletedFilesOptions as ListDeletedFilesOptions, type index_d$1_ListDeletedFilesRequest as ListDeletedFilesRequest, type index_d$1_ListDeletedFilesResponse as ListDeletedFilesResponse, type index_d$1_ListDeletedFilesResponseNonNullableFields as ListDeletedFilesResponseNonNullableFields, type index_d$1_ListFilesOptions as ListFilesOptions, type index_d$1_ListFilesRequest as ListFilesRequest, type index_d$1_ListFilesResponse as ListFilesResponse, type index_d$1_ListFilesResponseNonNullableFields as ListFilesResponseNonNullableFields, index_d$1_MediaType as MediaType, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Model3D as Model3D, Namespace$1 as Namespace, index_d$1_OperationStatus as OperationStatus, type index_d$1_OtherMedia as OtherMedia, type PagingMetadataV2$1 as PagingMetadataV2, type RestoreInfo$1 as RestoreInfo, RootFolder$1 as RootFolder, type index_d$1_SearchFilesOptions as SearchFilesOptions, type index_d$1_SearchFilesRequest as SearchFilesRequest, type index_d$1_SearchFilesResponse as SearchFilesResponse, type index_d$1_SearchFilesResponseNonNullableFields as SearchFilesResponseNonNullableFields, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, index_d$1_StreamFormat as StreamFormat, type index_d$1_UpdateFileDescriptorRequest as UpdateFileDescriptorRequest, type index_d$1_UpdateFileDescriptorResponse as UpdateFileDescriptorResponse, type index_d$1_UpdateFileDescriptorResponseNonNullableFields as UpdateFileDescriptorResponseNonNullableFields, type index_d$1_UpdateFileRequest as UpdateFileRequest, type index_d$1_UpdateFileResponse as UpdateFileResponse, index_d$1_UploadProtocol as UploadProtocol, type index_d$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_bulkDeleteFiles as bulkDeleteFiles, index_d$1_bulkImportFile as bulkImportFile, index_d$1_bulkImportFiles as bulkImportFiles, index_d$1_bulkRestoreFilesFromTrashBin as bulkRestoreFilesFromTrashBin, index_d$1_generateFileDownloadUrl as generateFileDownloadUrl, index_d$1_generateFileResumableUploadUrl as generateFileResumableUploadUrl, index_d$1_generateFileUploadUrl as generateFileUploadUrl, index_d$1_generateFilesDownloadUrl as generateFilesDownloadUrl, index_d$1_generateVideoStreamingUrl as generateVideoStreamingUrl, index_d$1_getFileDescriptor as getFileDescriptor, index_d$1_getFileDescriptors as getFileDescriptors, index_d$1_importFile as importFile, index_d$1_listDeletedFiles as listDeletedFiles, index_d$1_listFiles as listFiles, index_d$1_onFileDescriptorDeleted as onFileDescriptorDeleted, index_d$1_onFileDescriptorFileFailed as onFileDescriptorFileFailed, index_d$1_onFileDescriptorFileReady as onFileDescriptorFileReady, index_d$1_onFileDescriptorUpdated as onFileDescriptorUpdated, index_d$1_searchFiles as searchFiles, index_d$1_updateFileDescriptor as updateFileDescriptor };
3034
+ export { type ActionEvent$1 as ActionEvent, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Archive as Archive, type index_d$1_AudioV2 as AudioV2, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkDeleteFilesOptions as BulkDeleteFilesOptions, type index_d$1_BulkDeleteFilesRequest as BulkDeleteFilesRequest, type index_d$1_BulkDeleteFilesResponse as BulkDeleteFilesResponse, type index_d$1_BulkImportFileOptions as BulkImportFileOptions, type index_d$1_BulkImportFileRequest as BulkImportFileRequest, type index_d$1_BulkImportFileResponse as BulkImportFileResponse, type index_d$1_BulkImportFileResponseNonNullableFields as BulkImportFileResponseNonNullableFields, type index_d$1_BulkImportFileResult as BulkImportFileResult, type index_d$1_BulkImportFilesRequest as BulkImportFilesRequest, type index_d$1_BulkImportFilesResponse as BulkImportFilesResponse, type index_d$1_BulkImportFilesResponseNonNullableFields as BulkImportFilesResponseNonNullableFields, type index_d$1_BulkRestoreFilesFromTrashBinRequest as BulkRestoreFilesFromTrashBinRequest, type index_d$1_BulkRestoreFilesFromTrashBinResponse as BulkRestoreFilesFromTrashBinResponse, type index_d$1_Color as Color, type index_d$1_ColorRGB as ColorRGB, type index_d$1_Colors as Colors, index_d$1_ContentDisposition as ContentDisposition, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_DownloadUrl as DownloadUrl, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_ExternalInfo as ExternalInfo, type index_d$1_FaceRecognition as FaceRecognition, type index_d$1_FileDescriptor as FileDescriptor, type index_d$1_FileDescriptorDeletedEnvelope as FileDescriptorDeletedEnvelope, type index_d$1_FileDescriptorFileFailedEnvelope as FileDescriptorFileFailedEnvelope, type index_d$1_FileDescriptorFileReadyEnvelope as FileDescriptorFileReadyEnvelope, type index_d$1_FileDescriptorNonNullableFields as FileDescriptorNonNullableFields, type index_d$1_FileDescriptorUpdatedEnvelope as FileDescriptorUpdatedEnvelope, type index_d$1_FileFailed as FileFailed, type index_d$1_FileMedia as FileMedia, type index_d$1_FileMediaMediaOneOf as FileMediaMediaOneOf, type index_d$1_FileReady as FileReady, type index_d$1_GenerateFileDownloadUrlOptions as GenerateFileDownloadUrlOptions, type index_d$1_GenerateFileDownloadUrlRequest as GenerateFileDownloadUrlRequest, type index_d$1_GenerateFileDownloadUrlResponse as GenerateFileDownloadUrlResponse, type index_d$1_GenerateFileDownloadUrlResponseNonNullableFields as GenerateFileDownloadUrlResponseNonNullableFields, type index_d$1_GenerateFileResumableUploadUrlOptions as GenerateFileResumableUploadUrlOptions, type index_d$1_GenerateFileResumableUploadUrlRequest as GenerateFileResumableUploadUrlRequest, type index_d$1_GenerateFileResumableUploadUrlResponse as GenerateFileResumableUploadUrlResponse, type index_d$1_GenerateFileResumableUploadUrlResponseNonNullableFields as GenerateFileResumableUploadUrlResponseNonNullableFields, type index_d$1_GenerateFileUploadUrlOptions as GenerateFileUploadUrlOptions, type index_d$1_GenerateFileUploadUrlRequest as GenerateFileUploadUrlRequest, type index_d$1_GenerateFileUploadUrlResponse as GenerateFileUploadUrlResponse, type index_d$1_GenerateFileUploadUrlResponseNonNullableFields as GenerateFileUploadUrlResponseNonNullableFields, type index_d$1_GenerateFilesDownloadUrlRequest as GenerateFilesDownloadUrlRequest, type index_d$1_GenerateFilesDownloadUrlResponse as GenerateFilesDownloadUrlResponse, type index_d$1_GenerateFilesDownloadUrlResponseNonNullableFields as GenerateFilesDownloadUrlResponseNonNullableFields, type index_d$1_GenerateVideoStreamingUrlOptions as GenerateVideoStreamingUrlOptions, type index_d$1_GenerateVideoStreamingUrlRequest as GenerateVideoStreamingUrlRequest, type index_d$1_GenerateVideoStreamingUrlResponse as GenerateVideoStreamingUrlResponse, type index_d$1_GenerateVideoStreamingUrlResponseNonNullableFields as GenerateVideoStreamingUrlResponseNonNullableFields, type index_d$1_GenerateWebSocketTokenRequest as GenerateWebSocketTokenRequest, type index_d$1_GenerateWebSocketTokenResponse as GenerateWebSocketTokenResponse, type index_d$1_GetFileDescriptorRequest as GetFileDescriptorRequest, type index_d$1_GetFileDescriptorResponse as GetFileDescriptorResponse, type index_d$1_GetFileDescriptorResponseNonNullableFields as GetFileDescriptorResponseNonNullableFields, type index_d$1_GetFileDescriptorsRequest as GetFileDescriptorsRequest, type index_d$1_GetFileDescriptorsResponse as GetFileDescriptorsResponse, type index_d$1_GetFileDescriptorsResponseNonNullableFields as GetFileDescriptorsResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_IdentityInfo as IdentityInfo, index_d$1_IdentityType as IdentityType, type index_d$1_ImageMedia as ImageMedia, type index_d$1_ImportFileOptions as ImportFileOptions, type index_d$1_ImportFileRequest as ImportFileRequest, type index_d$1_ImportFileResponse as ImportFileResponse, type index_d$1_ImportFileResponseNonNullableFields as ImportFileResponseNonNullableFields, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ListDeletedFilesOptions as ListDeletedFilesOptions, type index_d$1_ListDeletedFilesRequest as ListDeletedFilesRequest, type index_d$1_ListDeletedFilesResponse as ListDeletedFilesResponse, type index_d$1_ListDeletedFilesResponseNonNullableFields as ListDeletedFilesResponseNonNullableFields, type index_d$1_ListFilesOptions as ListFilesOptions, type index_d$1_ListFilesRequest as ListFilesRequest, type index_d$1_ListFilesResponse as ListFilesResponse, type index_d$1_ListFilesResponseNonNullableFields as ListFilesResponseNonNullableFields, index_d$1_MediaType as MediaType, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_Model3D as Model3D, Namespace$1 as Namespace, index_d$1_OperationStatus as OperationStatus, type index_d$1_OtherMedia as OtherMedia, type PagingMetadataV2$1 as PagingMetadataV2, type RestoreInfo$1 as RestoreInfo, RootFolder$1 as RootFolder, type index_d$1_SearchFilesOptions as SearchFilesOptions, type index_d$1_SearchFilesRequest as SearchFilesRequest, type index_d$1_SearchFilesResponse as SearchFilesResponse, type index_d$1_SearchFilesResponseNonNullableFields as SearchFilesResponseNonNullableFields, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, index_d$1_StreamFormat as StreamFormat, type index_d$1_UpdateFileDescriptorOptions as UpdateFileDescriptorOptions, type index_d$1_UpdateFileDescriptorRequest as UpdateFileDescriptorRequest, type index_d$1_UpdateFileDescriptorResponse as UpdateFileDescriptorResponse, type index_d$1_UpdateFileDescriptorResponseNonNullableFields as UpdateFileDescriptorResponseNonNullableFields, type index_d$1_UpdateFileRequest as UpdateFileRequest, type index_d$1_UpdateFileResponse as UpdateFileResponse, index_d$1_UploadProtocol as UploadProtocol, type index_d$1_VideoResolution as VideoResolution, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicBulkDeleteFilesType as _publicBulkDeleteFilesType, type index_d$1__publicBulkImportFileType as _publicBulkImportFileType, type index_d$1__publicBulkImportFilesType as _publicBulkImportFilesType, type index_d$1__publicBulkRestoreFilesFromTrashBinType as _publicBulkRestoreFilesFromTrashBinType, type index_d$1__publicGenerateFileDownloadUrlType as _publicGenerateFileDownloadUrlType, type index_d$1__publicGenerateFileResumableUploadUrlType as _publicGenerateFileResumableUploadUrlType, type index_d$1__publicGenerateFileUploadUrlType as _publicGenerateFileUploadUrlType, type index_d$1__publicGenerateFilesDownloadUrlType as _publicGenerateFilesDownloadUrlType, type index_d$1__publicGenerateVideoStreamingUrlType as _publicGenerateVideoStreamingUrlType, type index_d$1__publicGetFileDescriptorType as _publicGetFileDescriptorType, type index_d$1__publicGetFileDescriptorsType as _publicGetFileDescriptorsType, type index_d$1__publicImportFileType as _publicImportFileType, type index_d$1__publicListDeletedFilesType as _publicListDeletedFilesType, type index_d$1__publicListFilesType as _publicListFilesType, type index_d$1__publicOnFileDescriptorDeletedType as _publicOnFileDescriptorDeletedType, type index_d$1__publicOnFileDescriptorFileFailedType as _publicOnFileDescriptorFileFailedType, type index_d$1__publicOnFileDescriptorFileReadyType as _publicOnFileDescriptorFileReadyType, type index_d$1__publicOnFileDescriptorUpdatedType as _publicOnFileDescriptorUpdatedType, type index_d$1__publicSearchFilesType as _publicSearchFilesType, type index_d$1__publicUpdateFileDescriptorType as _publicUpdateFileDescriptorType, index_d$1_bulkDeleteFiles as bulkDeleteFiles, index_d$1_bulkImportFile as bulkImportFile, index_d$1_bulkImportFiles as bulkImportFiles, index_d$1_bulkRestoreFilesFromTrashBin as bulkRestoreFilesFromTrashBin, index_d$1_generateFileDownloadUrl as generateFileDownloadUrl, index_d$1_generateFileResumableUploadUrl as generateFileResumableUploadUrl, index_d$1_generateFileUploadUrl as generateFileUploadUrl, index_d$1_generateFilesDownloadUrl as generateFilesDownloadUrl, index_d$1_generateVideoStreamingUrl as generateVideoStreamingUrl, index_d$1_getFileDescriptor as getFileDescriptor, index_d$1_getFileDescriptors as getFileDescriptors, index_d$1_importFile as importFile, index_d$1_listDeletedFiles as listDeletedFiles, index_d$1_listFiles as listFiles, index_d$1_onFileDescriptorDeleted as onFileDescriptorDeleted, index_d$1_onFileDescriptorFileFailed as onFileDescriptorFileFailed, index_d$1_onFileDescriptorFileReady as onFileDescriptorFileReady, index_d$1_onFileDescriptorUpdated as onFileDescriptorUpdated, onFileDescriptorDeleted$1 as publicOnFileDescriptorDeleted, onFileDescriptorFileFailed$1 as publicOnFileDescriptorFileFailed, onFileDescriptorFileReady$1 as publicOnFileDescriptorFileReady, onFileDescriptorUpdated$1 as publicOnFileDescriptorUpdated, index_d$1_searchFiles as searchFiles, index_d$1_updateFileDescriptor as updateFileDescriptor };
2884
3035
  }
2885
3036
 
2886
3037
  interface Folder {
@@ -3380,22 +3531,50 @@ interface ListDeletedFoldersOptions {
3380
3531
  paging?: CursorPaging;
3381
3532
  }
3382
3533
 
3534
+ declare function createFolder$1(httpClient: HttpClient): (displayName: string, options?: CreateFolderOptions) => Promise<CreateFolderResponse & CreateFolderResponseNonNullableFields>;
3535
+ declare function getFolder$1(httpClient: HttpClient): (folderId: string) => Promise<Folder & FolderNonNullableFields>;
3536
+ declare function listFolders$1(httpClient: HttpClient): (options?: ListFoldersOptions) => Promise<ListFoldersResponse & ListFoldersResponseNonNullableFields>;
3537
+ declare function searchFolders$1(httpClient: HttpClient): (options?: SearchFoldersOptions) => Promise<SearchFoldersResponse & SearchFoldersResponseNonNullableFields>;
3538
+ declare function updateFolder$1(httpClient: HttpClient): (_id: string, folder: UpdateFolder) => Promise<Folder & FolderNonNullableFields>;
3539
+ declare function generateFolderDownloadUrl$1(httpClient: HttpClient): (folderId: string) => Promise<GenerateFolderDownloadUrlResponse & GenerateFolderDownloadUrlResponseNonNullableFields>;
3540
+ declare function bulkDeleteFolders$1(httpClient: HttpClient): (folderIds: string[], options?: BulkDeleteFoldersOptions) => Promise<void>;
3541
+ declare function bulkRestoreFoldersFromTrashBin$1(httpClient: HttpClient): (folderIds: string[]) => Promise<void>;
3542
+ declare function listDeletedFolders$1(httpClient: HttpClient): (options?: ListDeletedFoldersOptions) => Promise<ListDeletedFoldersResponse & ListDeletedFoldersResponseNonNullableFields>;
3543
+ declare const onFolderCreated$1: EventDefinition<FolderCreatedEnvelope, "wix.media.site_media.v1.folder_created">;
3544
+ declare const onFolderUpdated$1: EventDefinition<FolderUpdatedEnvelope, "wix.media.site_media.v1.folder_updated">;
3545
+ declare const onFolderDeleted$1: EventDefinition<FolderDeletedEnvelope, "wix.media.site_media.v1.folder_deleted">;
3546
+
3383
3547
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
3384
3548
 
3385
3549
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
3386
3550
 
3387
- declare const createFolder: ReturnType<typeof createRESTModule<typeof publicCreateFolder>>;
3388
- declare const getFolder: ReturnType<typeof createRESTModule<typeof publicGetFolder>>;
3389
- declare const listFolders: ReturnType<typeof createRESTModule<typeof publicListFolders>>;
3390
- declare const searchFolders: ReturnType<typeof createRESTModule<typeof publicSearchFolders>>;
3391
- declare const updateFolder: ReturnType<typeof createRESTModule<typeof publicUpdateFolder>>;
3392
- declare const generateFolderDownloadUrl: ReturnType<typeof createRESTModule<typeof publicGenerateFolderDownloadUrl>>;
3393
- declare const bulkDeleteFolders: ReturnType<typeof createRESTModule<typeof publicBulkDeleteFolders>>;
3394
- declare const bulkRestoreFoldersFromTrashBin: ReturnType<typeof createRESTModule<typeof publicBulkRestoreFoldersFromTrashBin>>;
3395
- declare const listDeletedFolders: ReturnType<typeof createRESTModule<typeof publicListDeletedFolders>>;
3396
- declare const onFolderCreated: ReturnType<typeof createEventModule<typeof publicOnFolderCreated>>;
3397
- declare const onFolderUpdated: ReturnType<typeof createEventModule<typeof publicOnFolderUpdated>>;
3398
- declare const onFolderDeleted: ReturnType<typeof createEventModule<typeof publicOnFolderDeleted>>;
3551
+ type _publicCreateFolderType = typeof createFolder$1;
3552
+ declare const createFolder: ReturnType<typeof createRESTModule<_publicCreateFolderType>>;
3553
+ type _publicGetFolderType = typeof getFolder$1;
3554
+ declare const getFolder: ReturnType<typeof createRESTModule<_publicGetFolderType>>;
3555
+ type _publicListFoldersType = typeof listFolders$1;
3556
+ declare const listFolders: ReturnType<typeof createRESTModule<_publicListFoldersType>>;
3557
+ type _publicSearchFoldersType = typeof searchFolders$1;
3558
+ declare const searchFolders: ReturnType<typeof createRESTModule<_publicSearchFoldersType>>;
3559
+ type _publicUpdateFolderType = typeof updateFolder$1;
3560
+ declare const updateFolder: ReturnType<typeof createRESTModule<_publicUpdateFolderType>>;
3561
+ type _publicGenerateFolderDownloadUrlType = typeof generateFolderDownloadUrl$1;
3562
+ declare const generateFolderDownloadUrl: ReturnType<typeof createRESTModule<_publicGenerateFolderDownloadUrlType>>;
3563
+ type _publicBulkDeleteFoldersType = typeof bulkDeleteFolders$1;
3564
+ declare const bulkDeleteFolders: ReturnType<typeof createRESTModule<_publicBulkDeleteFoldersType>>;
3565
+ type _publicBulkRestoreFoldersFromTrashBinType = typeof bulkRestoreFoldersFromTrashBin$1;
3566
+ declare const bulkRestoreFoldersFromTrashBin: ReturnType<typeof createRESTModule<_publicBulkRestoreFoldersFromTrashBinType>>;
3567
+ type _publicListDeletedFoldersType = typeof listDeletedFolders$1;
3568
+ declare const listDeletedFolders: ReturnType<typeof createRESTModule<_publicListDeletedFoldersType>>;
3569
+
3570
+ type _publicOnFolderCreatedType = typeof onFolderCreated$1;
3571
+ declare const onFolderCreated: ReturnType<typeof createEventModule<_publicOnFolderCreatedType>>;
3572
+
3573
+ type _publicOnFolderUpdatedType = typeof onFolderUpdated$1;
3574
+ declare const onFolderUpdated: ReturnType<typeof createEventModule<_publicOnFolderUpdatedType>>;
3575
+
3576
+ type _publicOnFolderDeletedType = typeof onFolderDeleted$1;
3577
+ declare const onFolderDeleted: ReturnType<typeof createEventModule<_publicOnFolderDeletedType>>;
3399
3578
 
3400
3579
  type index_d_ActionEvent = ActionEvent;
3401
3580
  type index_d_BaseEventMetadata = BaseEventMetadata;
@@ -3459,6 +3638,18 @@ type index_d_UpdateFolderResponse = UpdateFolderResponse;
3459
3638
  type index_d_UpdateFolderResponseNonNullableFields = UpdateFolderResponseNonNullableFields;
3460
3639
  type index_d_WebhookIdentityType = WebhookIdentityType;
3461
3640
  declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
3641
+ type index_d__publicBulkDeleteFoldersType = _publicBulkDeleteFoldersType;
3642
+ type index_d__publicBulkRestoreFoldersFromTrashBinType = _publicBulkRestoreFoldersFromTrashBinType;
3643
+ type index_d__publicCreateFolderType = _publicCreateFolderType;
3644
+ type index_d__publicGenerateFolderDownloadUrlType = _publicGenerateFolderDownloadUrlType;
3645
+ type index_d__publicGetFolderType = _publicGetFolderType;
3646
+ type index_d__publicListDeletedFoldersType = _publicListDeletedFoldersType;
3647
+ type index_d__publicListFoldersType = _publicListFoldersType;
3648
+ type index_d__publicOnFolderCreatedType = _publicOnFolderCreatedType;
3649
+ type index_d__publicOnFolderDeletedType = _publicOnFolderDeletedType;
3650
+ type index_d__publicOnFolderUpdatedType = _publicOnFolderUpdatedType;
3651
+ type index_d__publicSearchFoldersType = _publicSearchFoldersType;
3652
+ type index_d__publicUpdateFolderType = _publicUpdateFolderType;
3462
3653
  declare const index_d_bulkDeleteFolders: typeof bulkDeleteFolders;
3463
3654
  declare const index_d_bulkRestoreFoldersFromTrashBin: typeof bulkRestoreFoldersFromTrashBin;
3464
3655
  declare const index_d_createFolder: typeof createFolder;
@@ -3472,7 +3663,7 @@ declare const index_d_onFolderUpdated: typeof onFolderUpdated;
3472
3663
  declare const index_d_searchFolders: typeof searchFolders;
3473
3664
  declare const index_d_updateFolder: typeof updateFolder;
3474
3665
  declare namespace index_d {
3475
- export { type index_d_ActionEvent as ActionEvent, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkDeleteFoldersOptions as BulkDeleteFoldersOptions, type index_d_BulkDeleteFoldersRequest as BulkDeleteFoldersRequest, type index_d_BulkDeleteFoldersResponse as BulkDeleteFoldersResponse, type index_d_BulkRestoreFoldersFromTrashBinRequest as BulkRestoreFoldersFromTrashBinRequest, type index_d_BulkRestoreFoldersFromTrashBinResponse as BulkRestoreFoldersFromTrashBinResponse, type index_d_CreateFolderOptions as CreateFolderOptions, type index_d_CreateFolderRequest as CreateFolderRequest, type index_d_CreateFolderResponse as CreateFolderResponse, type index_d_CreateFolderResponseNonNullableFields as CreateFolderResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_Folder as Folder, type index_d_FolderCreatedEnvelope as FolderCreatedEnvelope, type index_d_FolderDeletedEnvelope as FolderDeletedEnvelope, type index_d_FolderNonNullableFields as FolderNonNullableFields, type index_d_FolderUpdatedEnvelope as FolderUpdatedEnvelope, type index_d_GenerateFolderDownloadUrlRequest as GenerateFolderDownloadUrlRequest, type index_d_GenerateFolderDownloadUrlResponse as GenerateFolderDownloadUrlResponse, type index_d_GenerateFolderDownloadUrlResponseNonNullableFields as GenerateFolderDownloadUrlResponseNonNullableFields, type index_d_GetFolderRequest as GetFolderRequest, type index_d_GetFolderResponse as GetFolderResponse, type index_d_GetFolderResponseNonNullableFields as GetFolderResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ListDeletedFoldersOptions as ListDeletedFoldersOptions, type index_d_ListDeletedFoldersRequest as ListDeletedFoldersRequest, type index_d_ListDeletedFoldersResponse as ListDeletedFoldersResponse, type index_d_ListDeletedFoldersResponseNonNullableFields as ListDeletedFoldersResponseNonNullableFields, type index_d_ListFoldersOptions as ListFoldersOptions, type index_d_ListFoldersRequest as ListFoldersRequest, type index_d_ListFoldersResponse as ListFoldersResponse, type index_d_ListFoldersResponseNonNullableFields as ListFoldersResponseNonNullableFields, type index_d_MessageEnvelope as MessageEnvelope, index_d_Namespace as Namespace, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_RestoreInfo as RestoreInfo, index_d_RootFolder as RootFolder, type index_d_SearchFoldersOptions as SearchFoldersOptions, type index_d_SearchFoldersRequest as SearchFoldersRequest, type index_d_SearchFoldersResponse as SearchFoldersResponse, type index_d_SearchFoldersResponseNonNullableFields as SearchFoldersResponseNonNullableFields, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, type index_d_UpdateFolder as UpdateFolder, type index_d_UpdateFolderRequest as UpdateFolderRequest, type index_d_UpdateFolderResponse as UpdateFolderResponse, type index_d_UpdateFolderResponseNonNullableFields as UpdateFolderResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, index_d_bulkDeleteFolders as bulkDeleteFolders, index_d_bulkRestoreFoldersFromTrashBin as bulkRestoreFoldersFromTrashBin, index_d_createFolder as createFolder, index_d_generateFolderDownloadUrl as generateFolderDownloadUrl, index_d_getFolder as getFolder, index_d_listDeletedFolders as listDeletedFolders, index_d_listFolders as listFolders, index_d_onFolderCreated as onFolderCreated, index_d_onFolderDeleted as onFolderDeleted, index_d_onFolderUpdated as onFolderUpdated, index_d_searchFolders as searchFolders, index_d_updateFolder as updateFolder };
3666
+ export { type index_d_ActionEvent as ActionEvent, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkDeleteFoldersOptions as BulkDeleteFoldersOptions, type index_d_BulkDeleteFoldersRequest as BulkDeleteFoldersRequest, type index_d_BulkDeleteFoldersResponse as BulkDeleteFoldersResponse, type index_d_BulkRestoreFoldersFromTrashBinRequest as BulkRestoreFoldersFromTrashBinRequest, type index_d_BulkRestoreFoldersFromTrashBinResponse as BulkRestoreFoldersFromTrashBinResponse, type index_d_CreateFolderOptions as CreateFolderOptions, type index_d_CreateFolderRequest as CreateFolderRequest, type index_d_CreateFolderResponse as CreateFolderResponse, type index_d_CreateFolderResponseNonNullableFields as CreateFolderResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_Folder as Folder, type index_d_FolderCreatedEnvelope as FolderCreatedEnvelope, type index_d_FolderDeletedEnvelope as FolderDeletedEnvelope, type index_d_FolderNonNullableFields as FolderNonNullableFields, type index_d_FolderUpdatedEnvelope as FolderUpdatedEnvelope, type index_d_GenerateFolderDownloadUrlRequest as GenerateFolderDownloadUrlRequest, type index_d_GenerateFolderDownloadUrlResponse as GenerateFolderDownloadUrlResponse, type index_d_GenerateFolderDownloadUrlResponseNonNullableFields as GenerateFolderDownloadUrlResponseNonNullableFields, type index_d_GetFolderRequest as GetFolderRequest, type index_d_GetFolderResponse as GetFolderResponse, type index_d_GetFolderResponseNonNullableFields as GetFolderResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ListDeletedFoldersOptions as ListDeletedFoldersOptions, type index_d_ListDeletedFoldersRequest as ListDeletedFoldersRequest, type index_d_ListDeletedFoldersResponse as ListDeletedFoldersResponse, type index_d_ListDeletedFoldersResponseNonNullableFields as ListDeletedFoldersResponseNonNullableFields, type index_d_ListFoldersOptions as ListFoldersOptions, type index_d_ListFoldersRequest as ListFoldersRequest, type index_d_ListFoldersResponse as ListFoldersResponse, type index_d_ListFoldersResponseNonNullableFields as ListFoldersResponseNonNullableFields, type index_d_MessageEnvelope as MessageEnvelope, index_d_Namespace as Namespace, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_RestoreInfo as RestoreInfo, index_d_RootFolder as RootFolder, type index_d_SearchFoldersOptions as SearchFoldersOptions, type index_d_SearchFoldersRequest as SearchFoldersRequest, type index_d_SearchFoldersResponse as SearchFoldersResponse, type index_d_SearchFoldersResponseNonNullableFields as SearchFoldersResponseNonNullableFields, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_State as State, type index_d_UpdateFolder as UpdateFolder, type index_d_UpdateFolderRequest as UpdateFolderRequest, type index_d_UpdateFolderResponse as UpdateFolderResponse, type index_d_UpdateFolderResponseNonNullableFields as UpdateFolderResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicBulkDeleteFoldersType as _publicBulkDeleteFoldersType, type index_d__publicBulkRestoreFoldersFromTrashBinType as _publicBulkRestoreFoldersFromTrashBinType, type index_d__publicCreateFolderType as _publicCreateFolderType, type index_d__publicGenerateFolderDownloadUrlType as _publicGenerateFolderDownloadUrlType, type index_d__publicGetFolderType as _publicGetFolderType, type index_d__publicListDeletedFoldersType as _publicListDeletedFoldersType, type index_d__publicListFoldersType as _publicListFoldersType, type index_d__publicOnFolderCreatedType as _publicOnFolderCreatedType, type index_d__publicOnFolderDeletedType as _publicOnFolderDeletedType, type index_d__publicOnFolderUpdatedType as _publicOnFolderUpdatedType, type index_d__publicSearchFoldersType as _publicSearchFoldersType, type index_d__publicUpdateFolderType as _publicUpdateFolderType, index_d_bulkDeleteFolders as bulkDeleteFolders, index_d_bulkRestoreFoldersFromTrashBin as bulkRestoreFoldersFromTrashBin, index_d_createFolder as createFolder, index_d_generateFolderDownloadUrl as generateFolderDownloadUrl, index_d_getFolder as getFolder, index_d_listDeletedFolders as listDeletedFolders, index_d_listFolders as listFolders, index_d_onFolderCreated as onFolderCreated, index_d_onFolderDeleted as onFolderDeleted, index_d_onFolderUpdated as onFolderUpdated, onFolderCreated$1 as publicOnFolderCreated, onFolderDeleted$1 as publicOnFolderDeleted, onFolderUpdated$1 as publicOnFolderUpdated, index_d_searchFolders as searchFolders, index_d_updateFolder as updateFolder };
3476
3667
  }
3477
3668
 
3478
3669
  export { index_d$3 as enterpriseMediaCategories, index_d$2 as enterpriseMediaItems, index_d$1 as files, index_d as folders };