@wix/auto_sdk_media_folders 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +5 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{media-site-media-v1-folder-folders.universal-QxJ1WwtA.d.ts → index.typings.d.ts} +228 -1
- package/build/cjs/index.typings.js +672 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +2 -1
- package/build/es/index.d.mts +5 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/{media-site-media-v1-folder-folders.universal-QxJ1WwtA.d.mts → index.typings.d.mts} +228 -1
- package/build/es/index.typings.mjs +635 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +2 -1
- package/build/internal/cjs/index.d.ts +5 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{media-site-media-v1-folder-folders.universal-QxJ1WwtA.d.ts → index.typings.d.ts} +228 -1
- package/build/internal/cjs/index.typings.js +672 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +2 -1
- package/build/internal/es/index.d.mts +5 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{media-site-media-v1-folder-folders.universal-QxJ1WwtA.d.mts → index.typings.d.mts} +228 -1
- package/build/internal/es/index.typings.mjs +635 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +2 -1
- package/package.json +3 -3
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { NonNullablePaths } from '@wix/sdk-types';
|
|
2
|
+
|
|
1
3
|
interface Folder {
|
|
2
4
|
/**
|
|
3
5
|
* Folder ID. Generated when a folder is created in the Media Manager.
|
|
@@ -64,6 +66,8 @@ declare enum Namespace {
|
|
|
64
66
|
/** _nsWixLegends */
|
|
65
67
|
WIX_LEGENDS = "WIX_LEGENDS"
|
|
66
68
|
}
|
|
69
|
+
/** @enumType */
|
|
70
|
+
type NamespaceWithLiterals = Namespace | 'NO_NAMESPACE' | 'OTHERS' | 'WIX_VIDEO' | 'WIX_MUSIC' | 'ALBUMS_AND_ART_STORE' | 'WIX_ECOM' | 'PHOTO_SHARE_APP' | 'SHARING_APP' | 'CHAT' | 'LOGO_BUILDER' | 'ALBUMS_OLD' | 'CHAT_MOBILE' | 'WIX_FORMS' | 'WIX_LEGENDS';
|
|
67
71
|
interface CreateFolderRequest {
|
|
68
72
|
/**
|
|
69
73
|
* Folder name that appears in the Media Manager.
|
|
@@ -420,6 +424,9 @@ declare enum WebhookIdentityType {
|
|
|
420
424
|
}
|
|
421
425
|
/** @enumType */
|
|
422
426
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
427
|
+
type UpdateFolderValidationErrors = {
|
|
428
|
+
ruleName?: 'FIELD_MASK_IS_EMPTY_OR_MISSING';
|
|
429
|
+
};
|
|
423
430
|
interface BaseEventMetadata {
|
|
424
431
|
/**
|
|
425
432
|
* App instance ID.
|
|
@@ -468,13 +475,127 @@ interface FolderCreatedEnvelope {
|
|
|
468
475
|
entity: Folder;
|
|
469
476
|
metadata: EventMetadata;
|
|
470
477
|
}
|
|
478
|
+
/**
|
|
479
|
+
* Triggered when a folder is created.
|
|
480
|
+
*
|
|
481
|
+
* This event is also triggered when a folder is restored from the Media Manager's trash bin.
|
|
482
|
+
* @permissionScope Manage Stores
|
|
483
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
484
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
485
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
486
|
+
* @permissionScope Manage Events
|
|
487
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
488
|
+
* @permissionScope Manage Challenges
|
|
489
|
+
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
490
|
+
* @permissionScope Read Media Manager
|
|
491
|
+
* @permissionScopeId SCOPE.DC-MEDIA.READ-MEDIAMANAGER
|
|
492
|
+
* @permissionScope Manage Media Manager
|
|
493
|
+
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
494
|
+
* @permissionScope Manage Portfolio
|
|
495
|
+
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
496
|
+
* @permissionScope Manage Blog
|
|
497
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
498
|
+
* @permissionScope Access Verticals by Automations
|
|
499
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
500
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
501
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
502
|
+
* @permissionScope Set Up Automations
|
|
503
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
504
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_READ
|
|
505
|
+
* @webhook
|
|
506
|
+
* @eventType wix.media.site_media.v1.folder_created
|
|
507
|
+
* @serviceIdentifier com.wix.media.site_media.v1.FoldersService
|
|
508
|
+
* @slug created
|
|
509
|
+
*/
|
|
510
|
+
declare function onFolderCreated(handler: (event: FolderCreatedEnvelope) => void | Promise<void>): void;
|
|
471
511
|
interface FolderDeletedEnvelope {
|
|
472
512
|
metadata: EventMetadata;
|
|
473
513
|
}
|
|
514
|
+
/**
|
|
515
|
+
* Triggered when a folder is deleted.
|
|
516
|
+
*
|
|
517
|
+
* If the `movedToTrash` property in the event object is `true`, the folder was moved to the Media Manager's trash bin. If the `movedToTrash` property in the event object is `false`, the folder was permanently deleted.
|
|
518
|
+
* @permissionScope Manage Stores
|
|
519
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
520
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
521
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
522
|
+
* @permissionScope Manage Events
|
|
523
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
524
|
+
* @permissionScope Manage Challenges
|
|
525
|
+
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
526
|
+
* @permissionScope Read Media Manager
|
|
527
|
+
* @permissionScopeId SCOPE.DC-MEDIA.READ-MEDIAMANAGER
|
|
528
|
+
* @permissionScope Manage Media Manager
|
|
529
|
+
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
530
|
+
* @permissionScope Manage Portfolio
|
|
531
|
+
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
532
|
+
* @permissionScope Manage Blog
|
|
533
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
534
|
+
* @permissionScope Access Verticals by Automations
|
|
535
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
536
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
537
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
538
|
+
* @permissionScope Set Up Automations
|
|
539
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
540
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_READ
|
|
541
|
+
* @webhook
|
|
542
|
+
* @eventType wix.media.site_media.v1.folder_deleted
|
|
543
|
+
* @serviceIdentifier com.wix.media.site_media.v1.FoldersService
|
|
544
|
+
* @slug deleted
|
|
545
|
+
*/
|
|
546
|
+
declare function onFolderDeleted(handler: (event: FolderDeletedEnvelope) => void | Promise<void>): void;
|
|
474
547
|
interface FolderUpdatedEnvelope {
|
|
475
548
|
entity: Folder;
|
|
476
549
|
metadata: EventMetadata;
|
|
477
550
|
}
|
|
551
|
+
/**
|
|
552
|
+
* Triggered when a folder is updated, including when a folder is moved to a different parent folder.
|
|
553
|
+
* @permissionScope Manage Stores
|
|
554
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
555
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
556
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
557
|
+
* @permissionScope Manage Events
|
|
558
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
559
|
+
* @permissionScope Manage Challenges
|
|
560
|
+
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
561
|
+
* @permissionScope Read Media Manager
|
|
562
|
+
* @permissionScopeId SCOPE.DC-MEDIA.READ-MEDIAMANAGER
|
|
563
|
+
* @permissionScope Manage Media Manager
|
|
564
|
+
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
565
|
+
* @permissionScope Manage Portfolio
|
|
566
|
+
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
567
|
+
* @permissionScope Manage Blog
|
|
568
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
569
|
+
* @permissionScope Access Verticals by Automations
|
|
570
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
571
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
572
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
573
|
+
* @permissionScope Set Up Automations
|
|
574
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
575
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_READ
|
|
576
|
+
* @webhook
|
|
577
|
+
* @eventType wix.media.site_media.v1.folder_updated
|
|
578
|
+
* @serviceIdentifier com.wix.media.site_media.v1.FoldersService
|
|
579
|
+
* @slug updated
|
|
580
|
+
*/
|
|
581
|
+
declare function onFolderUpdated(handler: (event: FolderUpdatedEnvelope) => void | Promise<void>): void;
|
|
582
|
+
type FolderNonNullablePaths = `_id` | `displayName` | `parentFolderId` | `state`;
|
|
583
|
+
/**
|
|
584
|
+
* Creates a new folder in the Media Manager. <br/>
|
|
585
|
+
*
|
|
586
|
+
* Use the `parentFolderId` parameter to specify in which existing folder you want the new folder to be created.
|
|
587
|
+
* If no folder is specified, the new folder is created in the `media-root` folder.
|
|
588
|
+
* @param displayName - Folder name that appears in the Media Manager.
|
|
589
|
+
* @public
|
|
590
|
+
* @requiredField displayName
|
|
591
|
+
* @param options - Options for specifying where to create a folder.
|
|
592
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_CREATE
|
|
593
|
+
* @applicableIdentity APP
|
|
594
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.CreateFolder
|
|
595
|
+
*/
|
|
596
|
+
declare function createFolder(displayName: string, options?: CreateFolderOptions): Promise<NonNullablePaths<CreateFolderResponse, {
|
|
597
|
+
[P in FolderNonNullablePaths]: `folder.${P}`;
|
|
598
|
+
}[FolderNonNullablePaths]>>;
|
|
478
599
|
interface CreateFolderOptions {
|
|
479
600
|
/**
|
|
480
601
|
* ID of the folder's parent folder.
|
|
@@ -482,6 +603,28 @@ interface CreateFolderOptions {
|
|
|
482
603
|
*/
|
|
483
604
|
parentFolderId?: string | null;
|
|
484
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
* Gets information from a specific folder in the Media Manager.
|
|
608
|
+
* @param folderId - Folder ID.
|
|
609
|
+
* @public
|
|
610
|
+
* @requiredField folderId
|
|
611
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_READ
|
|
612
|
+
* @applicableIdentity APP
|
|
613
|
+
* @returns Information about the folder.
|
|
614
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.GetFolder
|
|
615
|
+
*/
|
|
616
|
+
declare function getFolder(folderId: string): Promise<NonNullablePaths<Folder, FolderNonNullablePaths>>;
|
|
617
|
+
/**
|
|
618
|
+
* Retrieves a list of folders in the Media Manager. To retrieve a list of folders within a specific folder in the Media Manager, specify the specific folder's ID in the `parentFolderId` parameter. If no folder is specified, the method retrieves a list of folders within the root folder of the Media Manager.
|
|
619
|
+
* @public
|
|
620
|
+
* @param options - Options to use when listing folders from the Media Manager.
|
|
621
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_LIST
|
|
622
|
+
* @applicableIdentity APP
|
|
623
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.ListFolders
|
|
624
|
+
*/
|
|
625
|
+
declare function listFolders(options?: ListFoldersOptions): Promise<NonNullablePaths<ListFoldersResponse, {
|
|
626
|
+
[P in FolderNonNullablePaths]: `folders.${number}.${P}`;
|
|
627
|
+
}[FolderNonNullablePaths]>>;
|
|
485
628
|
interface ListFoldersOptions {
|
|
486
629
|
/**
|
|
487
630
|
* ID of the folder's parent folder.
|
|
@@ -499,6 +642,19 @@ interface ListFoldersOptions {
|
|
|
499
642
|
/** Cursor and paging information. */
|
|
500
643
|
paging?: CursorPaging;
|
|
501
644
|
}
|
|
645
|
+
/**
|
|
646
|
+
* Searches the Media Manager and returns a list of folders that match the terms specified in the parameters. <br/>
|
|
647
|
+
*
|
|
648
|
+
* If no parameters are specified, the method returns all folders in the `MEDIA_ROOT` folder.
|
|
649
|
+
* @public
|
|
650
|
+
* @param options - Options specifying which folders to search.
|
|
651
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_LIST
|
|
652
|
+
* @applicableIdentity APP
|
|
653
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.SearchFolders
|
|
654
|
+
*/
|
|
655
|
+
declare function searchFolders(options?: SearchFoldersOptions): Promise<NonNullablePaths<SearchFoldersResponse, {
|
|
656
|
+
[P in FolderNonNullablePaths]: `folders.${number}.${P}`;
|
|
657
|
+
}[FolderNonNullablePaths]>>;
|
|
502
658
|
interface SearchFoldersOptions {
|
|
503
659
|
/**
|
|
504
660
|
* A root folder in the Media Manager to search in. <br />
|
|
@@ -521,6 +677,23 @@ interface SearchFoldersOptions {
|
|
|
521
677
|
*/
|
|
522
678
|
search?: string | null;
|
|
523
679
|
}
|
|
680
|
+
/**
|
|
681
|
+
* Updates a folder. <br />
|
|
682
|
+
*
|
|
683
|
+
* You can use the `parentFolderId` parameter to move a folder from its current parent folder to a different parent folder.
|
|
684
|
+
* @param _id - Folder ID. Generated when a folder is created in the Media Manager.
|
|
685
|
+
* @public
|
|
686
|
+
* @requiredField _id
|
|
687
|
+
* @requiredField folder
|
|
688
|
+
* @param folder - Folder to update.
|
|
689
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_UPDATE
|
|
690
|
+
* @applicableIdentity APP
|
|
691
|
+
* @returns Information about the updated folder.
|
|
692
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.UpdateFolder
|
|
693
|
+
*/
|
|
694
|
+
declare function updateFolder(_id: string, folder: UpdateFolder): Promise<NonNullablePaths<Folder, FolderNonNullablePaths> & {
|
|
695
|
+
__validationErrorsType?: UpdateFolderValidationErrors;
|
|
696
|
+
}>;
|
|
524
697
|
interface UpdateFolder {
|
|
525
698
|
/**
|
|
526
699
|
* Folder ID. Generated when a folder is created in the Media Manager.
|
|
@@ -553,6 +726,39 @@ interface UpdateFolder {
|
|
|
553
726
|
*/
|
|
554
727
|
state?: StateWithLiterals;
|
|
555
728
|
}
|
|
729
|
+
/**
|
|
730
|
+
* Generates a URL for downloading a compressed file containing a specific folder in the Media Manager. <br/>
|
|
731
|
+
*
|
|
732
|
+
* The compressed file can contain sub-folders, and up to 1000 files.
|
|
733
|
+
* @param folderId - Folder ID.
|
|
734
|
+
* @public
|
|
735
|
+
* @requiredField folderId
|
|
736
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_DOWNLOAD
|
|
737
|
+
* @applicableIdentity APP
|
|
738
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.GenerateFolderDownloadUrl
|
|
739
|
+
*/
|
|
740
|
+
declare function generateFolderDownloadUrl(folderId: string): Promise<NonNullablePaths<GenerateFolderDownloadUrlResponse, `downloadUrl`>>;
|
|
741
|
+
/**
|
|
742
|
+
* Temporarily deletes the specified folders from the Media Manager. <br/>
|
|
743
|
+
*
|
|
744
|
+
* The deleted folders are moved to the Media Manager's `trash-root` folder (trash bin) unless permanently deleted. To permanently delete folders, specify the `permanent` parameter with the value `true`. Permanently deleting folders isn't reversible, so make sure that the files in these folders aren't being used in a site or in any other way as the files will no longer be accessible.
|
|
745
|
+
*
|
|
746
|
+
* Note the following:
|
|
747
|
+
* * When a folder is deleted, the files in that folder are deleted.
|
|
748
|
+
* * The specified folders can be from different parent folders.
|
|
749
|
+
* * Moving multiple folders at once is an asynchronous action, and may take time for the changes to appear in the Media Manager.
|
|
750
|
+
* * Attempting to delete folders that are already in the trash bin doesn't result in an error.
|
|
751
|
+
* * If a site contains files from a deleted media folder, the files still appear on the site as the deleted folder is still in the Media Manager (in the trash bin).
|
|
752
|
+
* * You can also use the Bulk Restore Folders From Trash Bin ([SDK](https://dev.wix.com/docs/sdk/backend-modules/media/folders/bulk-restore-folders-from-trash-bin) | [REST](https://dev.wix.com/docs/rest/assets/media/media-manager/folders/bulk-restore-folders-from-trash-bin)) method to restore folders from the Media Manager's trash bin.
|
|
753
|
+
* @param folderIds - IDs of the folders to move to the Media Manager's trash bin.
|
|
754
|
+
* @public
|
|
755
|
+
* @requiredField folderIds
|
|
756
|
+
* @param options - Options to use when deleting folders.
|
|
757
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_MOVE_TO_TRASH
|
|
758
|
+
* @applicableIdentity APP
|
|
759
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.BulkDeleteFolders
|
|
760
|
+
*/
|
|
761
|
+
declare function bulkDeleteFolders(folderIds: string[], options?: BulkDeleteFoldersOptions): Promise<void>;
|
|
556
762
|
interface BulkDeleteFoldersOptions {
|
|
557
763
|
/**
|
|
558
764
|
* Whether the specified folders are permanently deleted. <br />
|
|
@@ -560,6 +766,27 @@ interface BulkDeleteFoldersOptions {
|
|
|
560
766
|
*/
|
|
561
767
|
permanent?: boolean;
|
|
562
768
|
}
|
|
769
|
+
/**
|
|
770
|
+
* Restores the specified folders from the Media Manager's trash bin, and moves them to their original locations in the Media Manager.
|
|
771
|
+
* @param folderIds - IDs of the folders to restore from the Media Manager's trash bin.
|
|
772
|
+
* @public
|
|
773
|
+
* @requiredField folderIds
|
|
774
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_RESTORE_FROM_TRASH
|
|
775
|
+
* @applicableIdentity APP
|
|
776
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.BulkRestoreFoldersFromTrashBin
|
|
777
|
+
*/
|
|
778
|
+
declare function bulkRestoreFoldersFromTrashBin(folderIds: string[]): Promise<void>;
|
|
779
|
+
/**
|
|
780
|
+
* Retrieves a list of folders in the Media Manager's trash bin.
|
|
781
|
+
* @public
|
|
782
|
+
* @param options - Options to use when listing deleted folders from the trash bin.
|
|
783
|
+
* @permissionId MEDIA.SITE_MEDIA_FOLDERS_LIST_DELETED
|
|
784
|
+
* @applicableIdentity APP
|
|
785
|
+
* @fqn com.wix.media.site_media.v1.FoldersService.ListDeletedFolders
|
|
786
|
+
*/
|
|
787
|
+
declare function listDeletedFolders(options?: ListDeletedFoldersOptions): Promise<NonNullablePaths<ListDeletedFoldersResponse, {
|
|
788
|
+
[P in FolderNonNullablePaths]: `folders.${number}.${P}`;
|
|
789
|
+
}[FolderNonNullablePaths]>>;
|
|
563
790
|
interface ListDeletedFoldersOptions {
|
|
564
791
|
/**
|
|
565
792
|
* ID of the folder's parent folder.
|
|
@@ -577,4 +804,4 @@ interface ListDeletedFoldersOptions {
|
|
|
577
804
|
paging?: CursorPaging;
|
|
578
805
|
}
|
|
579
806
|
|
|
580
|
-
export { type
|
|
807
|
+
export { type ActionEvent, type BaseEventMetadata, type BulkDeleteFoldersOptions, type BulkDeleteFoldersRequest, type BulkDeleteFoldersResponse, type BulkRestoreFoldersFromTrashBinRequest, type BulkRestoreFoldersFromTrashBinResponse, type CreateFolderOptions, type CreateFolderRequest, type CreateFolderResponse, type CursorPaging, type Cursors, type DomainEvent, type DomainEventBodyOneOf, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type Folder, type FolderCreatedEnvelope, type FolderDeletedEnvelope, type FolderUpdatedEnvelope, type GenerateFolderDownloadUrlRequest, type GenerateFolderDownloadUrlResponse, type GetFolderRequest, type GetFolderResponse, type IdentificationData, type IdentificationDataIdOneOf, type ListDeletedFoldersOptions, type ListDeletedFoldersRequest, type ListDeletedFoldersResponse, type ListFoldersOptions, type ListFoldersRequest, type ListFoldersResponse, type MessageEnvelope, Namespace, type NamespaceWithLiterals, type PagingMetadataV2, type RestoreInfo, RootFolder, type RootFolderWithLiterals, type SearchFoldersOptions, type SearchFoldersRequest, type SearchFoldersResponse, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type UnsupportedRequestValueError, type UpdateFolder, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateFolderValidationErrors, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, bulkDeleteFolders, bulkRestoreFoldersFromTrashBin, createFolder, generateFolderDownloadUrl, getFolder, listDeletedFolders, listFolders, onFolderCreated, onFolderDeleted, onFolderUpdated, searchFolders, updateFolder };
|