@wix/media 1.0.52 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/src/media-site-media-v1-file-descriptor.http.d.ts +24 -14
- package/build/cjs/src/media-site-media-v1-file-descriptor.http.js +28 -14
- package/build/cjs/src/media-site-media-v1-file-descriptor.http.js.map +1 -1
- package/build/cjs/src/media-site-media-v1-file-descriptor.public.d.ts +1 -1
- package/build/cjs/src/media-site-media-v1-file-descriptor.types.d.ts +67 -0
- package/build/cjs/src/media-site-media-v1-file-descriptor.universal.d.ts +91 -14
- package/build/cjs/src/media-site-media-v1-file-descriptor.universal.js +24 -14
- package/build/cjs/src/media-site-media-v1-file-descriptor.universal.js.map +1 -1
- package/build/cjs/src/media-site-media-v1-folder.http.d.ts +2 -2
- package/build/cjs/src/media-site-media-v1-folder.http.js +6 -2
- package/build/cjs/src/media-site-media-v1-folder.http.js.map +1 -1
- package/build/cjs/src/media-site-media-v1-folder.public.d.ts +1 -1
- package/build/cjs/src/media-site-media-v1-folder.types.d.ts +67 -0
- package/build/cjs/src/media-site-media-v1-folder.universal.d.ts +69 -2
- package/build/cjs/src/media-site-media-v1-folder.universal.js +2 -2
- package/build/cjs/src/media-site-media-v1-folder.universal.js.map +1 -1
- package/build/es/src/media-site-media-v1-file-descriptor.http.d.ts +24 -14
- package/build/es/src/media-site-media-v1-file-descriptor.http.js +28 -14
- package/build/es/src/media-site-media-v1-file-descriptor.http.js.map +1 -1
- package/build/es/src/media-site-media-v1-file-descriptor.public.d.ts +1 -1
- package/build/es/src/media-site-media-v1-file-descriptor.types.d.ts +67 -0
- package/build/es/src/media-site-media-v1-file-descriptor.universal.d.ts +91 -14
- package/build/es/src/media-site-media-v1-file-descriptor.universal.js +24 -14
- package/build/es/src/media-site-media-v1-file-descriptor.universal.js.map +1 -1
- package/build/es/src/media-site-media-v1-folder.http.d.ts +2 -2
- package/build/es/src/media-site-media-v1-folder.http.js +6 -2
- package/build/es/src/media-site-media-v1-folder.http.js.map +1 -1
- package/build/es/src/media-site-media-v1-folder.public.d.ts +1 -1
- package/build/es/src/media-site-media-v1-folder.types.d.ts +67 -0
- package/build/es/src/media-site-media-v1-folder.universal.d.ts +69 -2
- package/build/es/src/media-site-media-v1-folder.universal.js +2 -2
- package/build/es/src/media-site-media-v1-folder.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -6,6 +6,10 @@ import { BulkDeleteFilesRequest, BulkDeleteFilesResponse, BulkImportFilesRequest
|
|
|
6
6
|
* The `generateFilesDownloadUrl()` function returns a Promise that resolves to a download URL.
|
|
7
7
|
*
|
|
8
8
|
* The compressed file can contain up to 1000 files.
|
|
9
|
+
*
|
|
10
|
+
* To generate one or more temporary URLs for downloading a specific file in the Media Manager, use the `generateFileDownloadUrl()` function.
|
|
11
|
+
* You can use the `expirationInMinutes` parameter to set the URL expiration time, making it more secure than the `generateFilesDownloadUrl()` function.
|
|
12
|
+
* Therefore, to download private files, use the `generateFileDownloadUrl` function for each private file that you want to generate a download URL for, instead of the `generateFilesDownloadUrl()` function.
|
|
9
13
|
*/
|
|
10
14
|
export declare function generateFilesDownloadUrl(payload: GenerateFilesDownloadUrlRequest): RequestOptionsFactory<GenerateFilesDownloadUrlResponse & GenerateFilesDownloadUrlResponseNonNullableFields>;
|
|
11
15
|
/**
|
|
@@ -16,7 +20,10 @@ export declare function generateFilesDownloadUrl(payload: GenerateFilesDownloadU
|
|
|
16
20
|
* To download different assets of the file, use the `assetKeys` parameter which generates a download URL for each asset.
|
|
17
21
|
* If no asset key is specified, it defaults to `src`, which generates one download URL in the original file's format and quality.
|
|
18
22
|
*
|
|
19
|
-
* Use this
|
|
23
|
+
* Use this function to grant external clients access to a private media file. Use the `expirationInMinutes` parameter to set the URL expiration time, and the `expirationRedirectUrl` parameter to add a redirect URL when the URL expires.
|
|
24
|
+
*
|
|
25
|
+
* To generate a permanent URL for downloading a compressed file that contains multiple files in the Media Manager, use the `generateFilesDownloadUrl()` function.
|
|
26
|
+
* Since this is a permanent URL, it is less secure. Therefore, to download private files, use the `generateFileDownloadUrl()` function for each private file that you want to generate a download URL for, instead of the generateFilesDownloadUrl() function.
|
|
20
27
|
*/
|
|
21
28
|
export declare function generateFileDownloadUrl(payload: GenerateFileDownloadUrlRequest): RequestOptionsFactory<GenerateFileDownloadUrlResponse & GenerateFileDownloadUrlResponseNonNullableFields>;
|
|
22
29
|
/**
|
|
@@ -75,10 +82,11 @@ export declare function generateFileResumableUploadUrl(payload: GenerateFileResu
|
|
|
75
82
|
* Use the `parentFolderId` parameter to specify which folder you want the file to be imported to.
|
|
76
83
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
77
84
|
*
|
|
78
|
-
* To import a file, you need to
|
|
79
|
-
* -
|
|
80
|
-
* -
|
|
81
|
-
* -
|
|
85
|
+
* To import a file, you need to do one of the following:
|
|
86
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
87
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
88
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
89
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
82
90
|
*/
|
|
83
91
|
export declare function importFile(payload: ImportFileRequest): RequestOptionsFactory<ImportFileResponse & ImportFileResponseNonNullableFields>;
|
|
84
92
|
/**
|
|
@@ -93,10 +101,11 @@ export declare function importFile(payload: ImportFileRequest): RequestOptionsFa
|
|
|
93
101
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
94
102
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
95
103
|
*
|
|
96
|
-
* To import
|
|
97
|
-
* -
|
|
98
|
-
* -
|
|
99
|
-
* -
|
|
104
|
+
* To import files, you need to do one of the following for each file:
|
|
105
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
106
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
107
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
108
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
100
109
|
*
|
|
101
110
|
* >**Note:** The `media` property isn't returned in the `files` response object.
|
|
102
111
|
*/
|
|
@@ -109,10 +118,11 @@ export declare function bulkImportFiles(payload: BulkImportFilesRequest): Reques
|
|
|
109
118
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
110
119
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
111
120
|
*
|
|
112
|
-
* To import
|
|
113
|
-
* -
|
|
114
|
-
* -
|
|
115
|
-
* -
|
|
121
|
+
* To import files, you need to do one of the following for each file:
|
|
122
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
123
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
124
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
125
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
116
126
|
*/
|
|
117
127
|
export declare function bulkImportFile(payload: BulkImportFileRequest): RequestOptionsFactory<BulkImportFileResponse & BulkImportFileResponseNonNullableFields>;
|
|
118
128
|
/**
|
|
@@ -120,7 +130,7 @@ export declare function bulkImportFile(payload: BulkImportFileRequest): RequestO
|
|
|
120
130
|
*
|
|
121
131
|
* The `listFiles()` function returns a Promise that resolves to an array of the specified files' descriptors and cursor information.
|
|
122
132
|
*
|
|
123
|
-
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the
|
|
133
|
+
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the function retrieves only the list of files in the root folder of the Media Manager.
|
|
124
134
|
*
|
|
125
135
|
* To retrieve a list of (non-permanently) deleted files, use the `listDeletedFiles()` function.
|
|
126
136
|
*/
|
|
@@ -20,6 +20,10 @@ function resolveComWixMediaSiteMediaV1FilesServiceUrl(opts) {
|
|
|
20
20
|
srcPath: '/_api/wix-privatemedia-proxy-server/v1',
|
|
21
21
|
destPath: '/v1',
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
srcPath: '/_api/wix-privatemedia-proxy-server',
|
|
25
|
+
destPath: '',
|
|
26
|
+
},
|
|
23
27
|
],
|
|
24
28
|
'manage._base_domain_': [
|
|
25
29
|
{
|
|
@@ -42,6 +46,10 @@ function resolveComWixMediaSiteMediaV1FilesServiceUrl(opts) {
|
|
|
42
46
|
* The `generateFilesDownloadUrl()` function returns a Promise that resolves to a download URL.
|
|
43
47
|
*
|
|
44
48
|
* The compressed file can contain up to 1000 files.
|
|
49
|
+
*
|
|
50
|
+
* To generate one or more temporary URLs for downloading a specific file in the Media Manager, use the `generateFileDownloadUrl()` function.
|
|
51
|
+
* You can use the `expirationInMinutes` parameter to set the URL expiration time, making it more secure than the `generateFilesDownloadUrl()` function.
|
|
52
|
+
* Therefore, to download private files, use the `generateFileDownloadUrl` function for each private file that you want to generate a download URL for, instead of the `generateFilesDownloadUrl()` function.
|
|
45
53
|
*/
|
|
46
54
|
function generateFilesDownloadUrl(payload) {
|
|
47
55
|
function __generateFilesDownloadUrl({ host }) {
|
|
@@ -69,7 +77,10 @@ exports.generateFilesDownloadUrl = generateFilesDownloadUrl;
|
|
|
69
77
|
* To download different assets of the file, use the `assetKeys` parameter which generates a download URL for each asset.
|
|
70
78
|
* If no asset key is specified, it defaults to `src`, which generates one download URL in the original file's format and quality.
|
|
71
79
|
*
|
|
72
|
-
* Use this
|
|
80
|
+
* Use this function to grant external clients access to a private media file. Use the `expirationInMinutes` parameter to set the URL expiration time, and the `expirationRedirectUrl` parameter to add a redirect URL when the URL expires.
|
|
81
|
+
*
|
|
82
|
+
* To generate a permanent URL for downloading a compressed file that contains multiple files in the Media Manager, use the `generateFilesDownloadUrl()` function.
|
|
83
|
+
* Since this is a permanent URL, it is less secure. Therefore, to download private files, use the `generateFileDownloadUrl()` function for each private file that you want to generate a download URL for, instead of the generateFilesDownloadUrl() function.
|
|
73
84
|
*/
|
|
74
85
|
function generateFileDownloadUrl(payload) {
|
|
75
86
|
function __generateFileDownloadUrl({ host }) {
|
|
@@ -352,10 +363,11 @@ exports.generateFileResumableUploadUrl = generateFileResumableUploadUrl;
|
|
|
352
363
|
* Use the `parentFolderId` parameter to specify which folder you want the file to be imported to.
|
|
353
364
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
354
365
|
*
|
|
355
|
-
* To import a file, you need to
|
|
356
|
-
* -
|
|
357
|
-
* -
|
|
358
|
-
* -
|
|
366
|
+
* To import a file, you need to do one of the following:
|
|
367
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
368
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
369
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
370
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
359
371
|
*/
|
|
360
372
|
function importFile(payload) {
|
|
361
373
|
function __importFile({ host }) {
|
|
@@ -416,10 +428,11 @@ exports.importFile = importFile;
|
|
|
416
428
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
417
429
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
418
430
|
*
|
|
419
|
-
* To import
|
|
420
|
-
* -
|
|
421
|
-
* -
|
|
422
|
-
* -
|
|
431
|
+
* To import files, you need to do one of the following for each file:
|
|
432
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
433
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
434
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
435
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
423
436
|
*
|
|
424
437
|
* >**Note:** The `media` property isn't returned in the `files` response object.
|
|
425
438
|
*/
|
|
@@ -480,10 +493,11 @@ exports.bulkImportFiles = bulkImportFiles;
|
|
|
480
493
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
481
494
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
482
495
|
*
|
|
483
|
-
* To import
|
|
484
|
-
* -
|
|
485
|
-
* -
|
|
486
|
-
* -
|
|
496
|
+
* To import files, you need to do one of the following for each file:
|
|
497
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
498
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
499
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
500
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
487
501
|
*/
|
|
488
502
|
function bulkImportFile(payload) {
|
|
489
503
|
function __bulkImportFile({ host }) {
|
|
@@ -547,7 +561,7 @@ exports.bulkImportFile = bulkImportFile;
|
|
|
547
561
|
*
|
|
548
562
|
* The `listFiles()` function returns a Promise that resolves to an array of the specified files' descriptors and cursor information.
|
|
549
563
|
*
|
|
550
|
-
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the
|
|
564
|
+
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the function retrieves only the list of files in the root folder of the Media Manager.
|
|
551
565
|
*
|
|
552
566
|
* To retrieve a list of (non-permanently) deleted files, use the `listDeletedFiles()` function.
|
|
553
567
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"media-site-media-v1-file-descriptor.http.js","sourceRoot":"","sources":["../../../src/media-site-media-v1-file-descriptor.http.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"media-site-media-v1-file-descriptor.http.js","sourceRoot":"","sources":["../../../src/media-site-media-v1-file-descriptor.http.ts"],"names":[],"mappings":"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"}
|
|
@@ -132,4 +132,4 @@ export declare function bulkDeleteFiles(httpClient: HttpClient): (fileIds: strin
|
|
|
132
132
|
export declare function bulkRestoreFilesFromTrashBin(httpClient: HttpClient): (fileIds: string[]) => Promise<void>;
|
|
133
133
|
export declare function listDeletedFiles(httpClient: HttpClient): (options?: ListDeletedFilesOptions) => Promise<import("./media-site-media-v1-file-descriptor.universal").ListDeletedFilesResponse & import("./media-site-media-v1-file-descriptor.universal").ListDeletedFilesResponseNonNullableFields>;
|
|
134
134
|
export { MediaType, OperationStatus, State, Namespace, IdentityType, ContentDisposition, UploadProtocol, SortOrder, RootFolder, StreamFormat, } from './media-site-media-v1-file-descriptor.universal';
|
|
135
|
-
export { FileDescriptor, FileMedia, FileMediaMediaOneOf, ImageMedia, Colors, Color, ColorRGB, FaceRecognition, VideoResolution, AudioV2, Archive, Model3D, OtherMedia, IdentityInfo, FileReady, ExternalInfo, FileFailed, GenerateFilesDownloadUrlRequest, GenerateFilesDownloadUrlResponse, GenerateFileDownloadUrlRequest, GenerateFileDownloadUrlResponse, DownloadUrl, GetFileDescriptorRequest, GetFileDescriptorResponse, GetFileDescriptorsRequest, GetFileDescriptorsResponse, UpdateFileRequest, UpdateFileResponse, UpdateFileDescriptorRequest, UpdateFileDescriptorResponse, GenerateFileUploadUrlRequest, GenerateFileUploadUrlResponse, GenerateFileResumableUploadUrlRequest, GenerateFileResumableUploadUrlResponse, ImportFileRequest, ImportFileResponse, BulkImportFilesRequest, BulkImportFilesResponse, BulkImportFileRequest, BulkImportFileResponse, BulkImportFileResult, ItemMetadata, ApplicationError, BulkActionMetadata, ListFilesRequest, Sorting, CursorPaging, ListFilesResponse, PagingMetadataV2, Cursors, SearchFilesRequest, SearchFilesResponse, GenerateVideoStreamingUrlRequest, GenerateVideoStreamingUrlResponse, GenerateWebSocketTokenRequest, GenerateWebSocketTokenResponse, BulkDeleteFilesRequest, BulkDeleteFilesResponse, BulkRestoreFilesFromTrashBinRequest, BulkRestoreFilesFromTrashBinResponse, ListDeletedFilesRequest, ListDeletedFilesResponse, GenerateFilesDownloadUrlResponseNonNullableFields, GenerateFileDownloadUrlResponseNonNullableFields, GetFileDescriptorResponseNonNullableFields, GetFileDescriptorsResponseNonNullableFields, UpdateFileDescriptorResponseNonNullableFields, GenerateFileUploadUrlResponseNonNullableFields, GenerateFileResumableUploadUrlResponseNonNullableFields, ImportFileResponseNonNullableFields, BulkImportFilesResponseNonNullableFields, BulkImportFileResponseNonNullableFields, ListFilesResponseNonNullableFields, SearchFilesResponseNonNullableFields, GenerateVideoStreamingUrlResponseNonNullableFields, ListDeletedFilesResponseNonNullableFields, GenerateFileDownloadUrlOptions, UpdateFileDescriptorFile, GenerateFileUploadUrlOptions, GenerateFileResumableUploadUrlOptions, ImportFileOptions, BulkImportFileOptions, ListFilesOptions, SearchFilesOptions, GenerateVideoStreamingUrlOptions, BulkDeleteFilesOptions, ListDeletedFilesOptions, } from './media-site-media-v1-file-descriptor.universal';
|
|
135
|
+
export { FileDescriptor, FileMedia, FileMediaMediaOneOf, ImageMedia, Colors, Color, ColorRGB, FaceRecognition, VideoResolution, AudioV2, Archive, Model3D, OtherMedia, IdentityInfo, FileReady, ExternalInfo, FileFailed, GenerateFilesDownloadUrlRequest, GenerateFilesDownloadUrlResponse, GenerateFileDownloadUrlRequest, GenerateFileDownloadUrlResponse, DownloadUrl, GetFileDescriptorRequest, GetFileDescriptorResponse, GetFileDescriptorsRequest, GetFileDescriptorsResponse, UpdateFileRequest, UpdateFileResponse, UpdateFileDescriptorRequest, UpdateFileDescriptorResponse, GenerateFileUploadUrlRequest, GenerateFileUploadUrlResponse, GenerateFileResumableUploadUrlRequest, GenerateFileResumableUploadUrlResponse, ImportFileRequest, ImportFileResponse, BulkImportFilesRequest, BulkImportFilesResponse, BulkImportFileRequest, BulkImportFileResponse, BulkImportFileResult, ItemMetadata, ApplicationError, BulkActionMetadata, ListFilesRequest, Sorting, CursorPaging, ListFilesResponse, PagingMetadataV2, Cursors, SearchFilesRequest, SearchFilesResponse, GenerateVideoStreamingUrlRequest, GenerateVideoStreamingUrlResponse, GenerateWebSocketTokenRequest, GenerateWebSocketTokenResponse, BulkDeleteFilesRequest, BulkDeleteFilesResponse, BulkRestoreFilesFromTrashBinRequest, BulkRestoreFilesFromTrashBinResponse, ListDeletedFilesRequest, ListDeletedFilesResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, GenerateFilesDownloadUrlResponseNonNullableFields, GenerateFileDownloadUrlResponseNonNullableFields, GetFileDescriptorResponseNonNullableFields, GetFileDescriptorsResponseNonNullableFields, UpdateFileDescriptorResponseNonNullableFields, GenerateFileUploadUrlResponseNonNullableFields, GenerateFileResumableUploadUrlResponseNonNullableFields, ImportFileResponseNonNullableFields, BulkImportFilesResponseNonNullableFields, BulkImportFileResponseNonNullableFields, ListFilesResponseNonNullableFields, SearchFilesResponseNonNullableFields, GenerateVideoStreamingUrlResponseNonNullableFields, ListDeletedFilesResponseNonNullableFields, GenerateFileDownloadUrlOptions, UpdateFileDescriptorFile, GenerateFileUploadUrlOptions, GenerateFileResumableUploadUrlOptions, ImportFileOptions, BulkImportFileOptions, ListFilesOptions, SearchFilesOptions, GenerateVideoStreamingUrlOptions, BulkDeleteFilesOptions, ListDeletedFilesOptions, } from './media-site-media-v1-file-descriptor.universal';
|
|
@@ -839,6 +839,73 @@ export interface ListDeletedFilesResponse {
|
|
|
839
839
|
/** The next cursor if it exists. */
|
|
840
840
|
nextCursor?: PagingMetadataV2;
|
|
841
841
|
}
|
|
842
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
843
|
+
createdEvent?: EntityCreatedEvent;
|
|
844
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
845
|
+
deletedEvent?: EntityDeletedEvent;
|
|
846
|
+
actionEvent?: ActionEvent;
|
|
847
|
+
/**
|
|
848
|
+
* Unique event ID.
|
|
849
|
+
* Allows clients to ignore duplicate webhooks.
|
|
850
|
+
*/
|
|
851
|
+
id?: string;
|
|
852
|
+
/**
|
|
853
|
+
* Assumes actions are also always typed to an entity_type
|
|
854
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
855
|
+
*/
|
|
856
|
+
entityFqdn?: string;
|
|
857
|
+
/**
|
|
858
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
859
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
860
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
861
|
+
*/
|
|
862
|
+
slug?: string;
|
|
863
|
+
/** ID of the entity associated with the event. */
|
|
864
|
+
entityId?: string;
|
|
865
|
+
/** Event timestamp. */
|
|
866
|
+
eventTime?: Date;
|
|
867
|
+
/**
|
|
868
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
869
|
+
* (for example, GDPR).
|
|
870
|
+
*/
|
|
871
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
872
|
+
/** If present, indicates the action that triggered the event. */
|
|
873
|
+
originatedFrom?: string | null;
|
|
874
|
+
/**
|
|
875
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
876
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
877
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
878
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
879
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
880
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
881
|
+
*/
|
|
882
|
+
entityEventSequence?: string | null;
|
|
883
|
+
}
|
|
884
|
+
/** @oneof */
|
|
885
|
+
export interface DomainEventBodyOneOf {
|
|
886
|
+
createdEvent?: EntityCreatedEvent;
|
|
887
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
888
|
+
deletedEvent?: EntityDeletedEvent;
|
|
889
|
+
actionEvent?: ActionEvent;
|
|
890
|
+
}
|
|
891
|
+
export interface EntityCreatedEvent {
|
|
892
|
+
entityAsJson?: string;
|
|
893
|
+
}
|
|
894
|
+
export interface EntityUpdatedEvent {
|
|
895
|
+
/**
|
|
896
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
897
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
898
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
899
|
+
*/
|
|
900
|
+
currentEntityAsJson?: string;
|
|
901
|
+
}
|
|
902
|
+
export interface EntityDeletedEvent {
|
|
903
|
+
/** Entity that was deleted */
|
|
904
|
+
deletedEntityAsJson?: string | null;
|
|
905
|
+
}
|
|
906
|
+
export interface ActionEvent {
|
|
907
|
+
bodyAsJson?: string;
|
|
908
|
+
}
|
|
842
909
|
export interface GenerateFilesDownloadUrlResponseNonNullableFields {
|
|
843
910
|
downloadUrl: string;
|
|
844
911
|
}
|
|
@@ -810,6 +810,73 @@ export interface ListDeletedFilesResponse {
|
|
|
810
810
|
/** The next cursor if it exists. */
|
|
811
811
|
nextCursor?: PagingMetadataV2;
|
|
812
812
|
}
|
|
813
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
814
|
+
createdEvent?: EntityCreatedEvent;
|
|
815
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
816
|
+
deletedEvent?: EntityDeletedEvent;
|
|
817
|
+
actionEvent?: ActionEvent;
|
|
818
|
+
/**
|
|
819
|
+
* Unique event ID.
|
|
820
|
+
* Allows clients to ignore duplicate webhooks.
|
|
821
|
+
*/
|
|
822
|
+
_id?: string;
|
|
823
|
+
/**
|
|
824
|
+
* Assumes actions are also always typed to an entity_type
|
|
825
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
826
|
+
*/
|
|
827
|
+
entityFqdn?: string;
|
|
828
|
+
/**
|
|
829
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
830
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
831
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
832
|
+
*/
|
|
833
|
+
slug?: string;
|
|
834
|
+
/** ID of the entity associated with the event. */
|
|
835
|
+
entityId?: string;
|
|
836
|
+
/** Event timestamp. */
|
|
837
|
+
eventTime?: Date;
|
|
838
|
+
/**
|
|
839
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
840
|
+
* (for example, GDPR).
|
|
841
|
+
*/
|
|
842
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
843
|
+
/** If present, indicates the action that triggered the event. */
|
|
844
|
+
originatedFrom?: string | null;
|
|
845
|
+
/**
|
|
846
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
847
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
848
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
849
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
850
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
851
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
852
|
+
*/
|
|
853
|
+
entityEventSequence?: string | null;
|
|
854
|
+
}
|
|
855
|
+
/** @oneof */
|
|
856
|
+
export interface DomainEventBodyOneOf {
|
|
857
|
+
createdEvent?: EntityCreatedEvent;
|
|
858
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
859
|
+
deletedEvent?: EntityDeletedEvent;
|
|
860
|
+
actionEvent?: ActionEvent;
|
|
861
|
+
}
|
|
862
|
+
export interface EntityCreatedEvent {
|
|
863
|
+
entityAsJson?: string;
|
|
864
|
+
}
|
|
865
|
+
export interface EntityUpdatedEvent {
|
|
866
|
+
/**
|
|
867
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
868
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
869
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
870
|
+
*/
|
|
871
|
+
currentEntityAsJson?: string;
|
|
872
|
+
}
|
|
873
|
+
export interface EntityDeletedEvent {
|
|
874
|
+
/** Entity that was deleted */
|
|
875
|
+
deletedEntityAsJson?: string | null;
|
|
876
|
+
}
|
|
877
|
+
export interface ActionEvent {
|
|
878
|
+
bodyAsJson?: string;
|
|
879
|
+
}
|
|
813
880
|
export interface GenerateFilesDownloadUrlResponseNonNullableFields {
|
|
814
881
|
downloadUrl: string;
|
|
815
882
|
}
|
|
@@ -1385,6 +1452,10 @@ export interface ListDeletedFilesResponseNonNullableFields {
|
|
|
1385
1452
|
* The `generateFilesDownloadUrl()` function returns a Promise that resolves to a download URL.
|
|
1386
1453
|
*
|
|
1387
1454
|
* The compressed file can contain up to 1000 files.
|
|
1455
|
+
*
|
|
1456
|
+
* To generate one or more temporary URLs for downloading a specific file in the Media Manager, use the `generateFileDownloadUrl()` function.
|
|
1457
|
+
* You can use the `expirationInMinutes` parameter to set the URL expiration time, making it more secure than the `generateFilesDownloadUrl()` function.
|
|
1458
|
+
* Therefore, to download private files, use the `generateFileDownloadUrl` function for each private file that you want to generate a download URL for, instead of the `generateFilesDownloadUrl()` function.
|
|
1388
1459
|
* @param fileIds - IDs of the files to download.
|
|
1389
1460
|
* @public
|
|
1390
1461
|
* @documentationMaturity preview
|
|
@@ -1402,7 +1473,10 @@ export declare function generateFilesDownloadUrl(fileIds: string[]): Promise<Gen
|
|
|
1402
1473
|
* To download different assets of the file, use the `assetKeys` parameter which generates a download URL for each asset.
|
|
1403
1474
|
* If no asset key is specified, it defaults to `src`, which generates one download URL in the original file's format and quality.
|
|
1404
1475
|
*
|
|
1405
|
-
* Use this
|
|
1476
|
+
* Use this function to grant external clients access to a private media file. Use the `expirationInMinutes` parameter to set the URL expiration time, and the `expirationRedirectUrl` parameter to add a redirect URL when the URL expires.
|
|
1477
|
+
*
|
|
1478
|
+
* To generate a permanent URL for downloading a compressed file that contains multiple files in the Media Manager, use the `generateFilesDownloadUrl()` function.
|
|
1479
|
+
* Since this is a permanent URL, it is less secure. Therefore, to download private files, use the `generateFileDownloadUrl()` function for each private file that you want to generate a download URL for, instead of the generateFilesDownloadUrl() function.
|
|
1406
1480
|
* @param fileId - File ID.
|
|
1407
1481
|
* @public
|
|
1408
1482
|
* @requiredField fileId
|
|
@@ -1680,10 +1754,11 @@ export interface GenerateFileResumableUploadUrlOptions {
|
|
|
1680
1754
|
* Use the `parentFolderId` parameter to specify which folder you want the file to be imported to.
|
|
1681
1755
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
1682
1756
|
*
|
|
1683
|
-
* To import a file, you need to
|
|
1684
|
-
* -
|
|
1685
|
-
* -
|
|
1686
|
-
* -
|
|
1757
|
+
* To import a file, you need to do one of the following:
|
|
1758
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
1759
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
1760
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
1761
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
1687
1762
|
* @param url - Publicly accessible external file URL.
|
|
1688
1763
|
* @public
|
|
1689
1764
|
* @documentationMaturity preview
|
|
@@ -1733,10 +1808,11 @@ export interface ImportFileOptions {
|
|
|
1733
1808
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
1734
1809
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
1735
1810
|
*
|
|
1736
|
-
* To import
|
|
1737
|
-
* -
|
|
1738
|
-
* -
|
|
1739
|
-
* -
|
|
1811
|
+
* To import files, you need to do one of the following for each file:
|
|
1812
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
1813
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
1814
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
1815
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
1740
1816
|
*
|
|
1741
1817
|
* >**Note:** The `media` property isn't returned in the `files` response object.
|
|
1742
1818
|
* @param importFileRequests - Information about the files to import.
|
|
@@ -1758,10 +1834,11 @@ export declare function bulkImportFiles(importFileRequests: ImportFileRequest[])
|
|
|
1758
1834
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
1759
1835
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
1760
1836
|
*
|
|
1761
|
-
* To import
|
|
1762
|
-
* -
|
|
1763
|
-
* -
|
|
1764
|
-
* -
|
|
1837
|
+
* To import files, you need to do one of the following for each file:
|
|
1838
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
1839
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
1840
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
1841
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
1765
1842
|
* @param importFileRequests - Information about the files to import.
|
|
1766
1843
|
* @public
|
|
1767
1844
|
* @documentationMaturity preview
|
|
@@ -1786,7 +1863,7 @@ export interface BulkImportFileOptions {
|
|
|
1786
1863
|
*
|
|
1787
1864
|
* The `listFiles()` function returns a Promise that resolves to an array of the specified files' descriptors and cursor information.
|
|
1788
1865
|
*
|
|
1789
|
-
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the
|
|
1866
|
+
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the function retrieves only the list of files in the root folder of the Media Manager.
|
|
1790
1867
|
*
|
|
1791
1868
|
* To retrieve a list of (non-permanently) deleted files, use the `listDeletedFiles()` function.
|
|
1792
1869
|
* @public
|
|
@@ -200,6 +200,10 @@ const _updateFileDescriptorResponse = { file: '_fileDescriptor' };
|
|
|
200
200
|
* The `generateFilesDownloadUrl()` function returns a Promise that resolves to a download URL.
|
|
201
201
|
*
|
|
202
202
|
* The compressed file can contain up to 1000 files.
|
|
203
|
+
*
|
|
204
|
+
* To generate one or more temporary URLs for downloading a specific file in the Media Manager, use the `generateFileDownloadUrl()` function.
|
|
205
|
+
* You can use the `expirationInMinutes` parameter to set the URL expiration time, making it more secure than the `generateFilesDownloadUrl()` function.
|
|
206
|
+
* Therefore, to download private files, use the `generateFileDownloadUrl` function for each private file that you want to generate a download URL for, instead of the `generateFilesDownloadUrl()` function.
|
|
203
207
|
* @param fileIds - IDs of the files to download.
|
|
204
208
|
* @public
|
|
205
209
|
* @documentationMaturity preview
|
|
@@ -262,7 +266,10 @@ exports.generateFilesDownloadUrl = generateFilesDownloadUrl;
|
|
|
262
266
|
* To download different assets of the file, use the `assetKeys` parameter which generates a download URL for each asset.
|
|
263
267
|
* If no asset key is specified, it defaults to `src`, which generates one download URL in the original file's format and quality.
|
|
264
268
|
*
|
|
265
|
-
* Use this
|
|
269
|
+
* Use this function to grant external clients access to a private media file. Use the `expirationInMinutes` parameter to set the URL expiration time, and the `expirationRedirectUrl` parameter to add a redirect URL when the URL expires.
|
|
270
|
+
*
|
|
271
|
+
* To generate a permanent URL for downloading a compressed file that contains multiple files in the Media Manager, use the `generateFilesDownloadUrl()` function.
|
|
272
|
+
* Since this is a permanent URL, it is less secure. Therefore, to download private files, use the `generateFileDownloadUrl()` function for each private file that you want to generate a download URL for, instead of the generateFilesDownloadUrl() function.
|
|
266
273
|
* @param fileId - File ID.
|
|
267
274
|
* @public
|
|
268
275
|
* @requiredField fileId
|
|
@@ -710,10 +717,11 @@ exports.generateFileResumableUploadUrl = generateFileResumableUploadUrl;
|
|
|
710
717
|
* Use the `parentFolderId` parameter to specify which folder you want the file to be imported to.
|
|
711
718
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
712
719
|
*
|
|
713
|
-
* To import a file, you need to
|
|
714
|
-
* -
|
|
715
|
-
* -
|
|
716
|
-
* -
|
|
720
|
+
* To import a file, you need to do one of the following:
|
|
721
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
722
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
723
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
724
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
717
725
|
* @param url - Publicly accessible external file URL.
|
|
718
726
|
* @public
|
|
719
727
|
* @documentationMaturity preview
|
|
@@ -809,10 +817,11 @@ exports.importFile = importFile;
|
|
|
809
817
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
810
818
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
811
819
|
*
|
|
812
|
-
* To import
|
|
813
|
-
* -
|
|
814
|
-
* -
|
|
815
|
-
* -
|
|
820
|
+
* To import files, you need to do one of the following for each file:
|
|
821
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
822
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
823
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
824
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
816
825
|
*
|
|
817
826
|
* >**Note:** The `media` property isn't returned in the `files` response object.
|
|
818
827
|
* @param importFileRequests - Information about the files to import.
|
|
@@ -885,10 +894,11 @@ exports.bulkImportFiles = bulkImportFiles;
|
|
|
885
894
|
* Returns information about the imported files. Use the `parentFolderId` parameter to specify in which folder you want each file to be imported.
|
|
886
895
|
* If no folder is specified, the file is imported to the `media-root` folder.
|
|
887
896
|
*
|
|
888
|
-
* To import
|
|
889
|
-
* -
|
|
890
|
-
* -
|
|
891
|
-
* -
|
|
897
|
+
* To import files, you need to do one of the following for each file:
|
|
898
|
+
* - Pass its [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) in the `mimeType` field of the request. For example, `mimeType: 'image/jpeg'`.
|
|
899
|
+
* - Include its extension in either the `displayName` or `url` field of the request. For example, `displayName: 'Example Image.jpeg` or `url: https://www.example.com/image.jpeg`.
|
|
900
|
+
* - Ensure the server hosting the file supports HEAD requests. In these cases the Wix servers can retrieve the MIME type from the hosting server.
|
|
901
|
+
* > **Note:** If you want to validate the media type, pass the file's expected media type in the optional `mediaType` field of the request. For example, `mediaType: 'IMAGE'`.
|
|
892
902
|
* @param importFileRequests - Information about the files to import.
|
|
893
903
|
* @public
|
|
894
904
|
* @documentationMaturity preview
|
|
@@ -963,7 +973,7 @@ exports.bulkImportFile = bulkImportFile;
|
|
|
963
973
|
*
|
|
964
974
|
* The `listFiles()` function returns a Promise that resolves to an array of the specified files' descriptors and cursor information.
|
|
965
975
|
*
|
|
966
|
-
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the
|
|
976
|
+
* To retrieve a list of files within a specific folder in the Media Manager, pass the folder's ID in the `parentFolderId` parameter. If no folder is specified, the function retrieves only the list of files in the root folder of the Media Manager.
|
|
967
977
|
*
|
|
968
978
|
* To retrieve a list of (non-permanently) deleted files, use the `listDeletedFiles()` function.
|
|
969
979
|
* @public
|