@wix/auto_sdk_media_files 1.0.16 → 1.0.18
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-files.types.d.ts +43 -19
- package/build/cjs/src/media-site-media-v1-file-descriptor-files.types.js.map +1 -1
- package/build/cjs/src/media-site-media-v1-file-descriptor-files.universal.d.ts +91 -27
- package/build/cjs/src/media-site-media-v1-file-descriptor-files.universal.js +32 -0
- package/build/cjs/src/media-site-media-v1-file-descriptor-files.universal.js.map +1 -1
- package/build/es/src/media-site-media-v1-file-descriptor-files.types.d.ts +43 -19
- package/build/es/src/media-site-media-v1-file-descriptor-files.types.js.map +1 -1
- package/build/es/src/media-site-media-v1-file-descriptor-files.universal.d.ts +91 -27
- package/build/es/src/media-site-media-v1-file-descriptor-files.universal.js +32 -0
- package/build/es/src/media-site-media-v1-file-descriptor-files.universal.js.map +1 -1
- package/build/internal/cjs/src/media-site-media-v1-file-descriptor-files.types.d.ts +43 -19
- package/build/internal/cjs/src/media-site-media-v1-file-descriptor-files.types.js.map +1 -1
- package/build/internal/cjs/src/media-site-media-v1-file-descriptor-files.universal.d.ts +91 -27
- package/build/internal/cjs/src/media-site-media-v1-file-descriptor-files.universal.js +32 -0
- package/build/internal/cjs/src/media-site-media-v1-file-descriptor-files.universal.js.map +1 -1
- package/build/internal/es/src/media-site-media-v1-file-descriptor-files.types.d.ts +43 -19
- package/build/internal/es/src/media-site-media-v1-file-descriptor-files.types.js.map +1 -1
- package/build/internal/es/src/media-site-media-v1-file-descriptor-files.universal.d.ts +91 -27
- package/build/internal/es/src/media-site-media-v1-file-descriptor-files.universal.js +32 -0
- package/build/internal/es/src/media-site-media-v1-file-descriptor-files.universal.js.map +1 -1
- package/package.json +3 -3
|
@@ -44,7 +44,7 @@ export interface FileDescriptor {
|
|
|
44
44
|
* Media file type.
|
|
45
45
|
* @readonly
|
|
46
46
|
*/
|
|
47
|
-
mediaType?:
|
|
47
|
+
mediaType?: MediaTypeWithLiterals;
|
|
48
48
|
/**
|
|
49
49
|
* Media file content.
|
|
50
50
|
* @readonly
|
|
@@ -57,7 +57,7 @@ export interface FileDescriptor {
|
|
|
57
57
|
* * `PENDING`: The file is processing and the URLs are not yet available. This response is returned when importing a file.
|
|
58
58
|
* @readonly
|
|
59
59
|
*/
|
|
60
|
-
operationStatus?:
|
|
60
|
+
operationStatus?: OperationStatusWithLiterals;
|
|
61
61
|
/**
|
|
62
62
|
* URL where the file was uploaded from.
|
|
63
63
|
* @readonly
|
|
@@ -96,7 +96,7 @@ export interface FileDescriptor {
|
|
|
96
96
|
* State of the file.
|
|
97
97
|
* @readonly
|
|
98
98
|
*/
|
|
99
|
-
state?:
|
|
99
|
+
state?: StateWithLiterals;
|
|
100
100
|
}
|
|
101
101
|
export declare enum MediaType {
|
|
102
102
|
UNKNOWN = "UNKNOWN",
|
|
@@ -109,6 +109,8 @@ export declare enum MediaType {
|
|
|
109
109
|
MODEL3D = "MODEL3D",
|
|
110
110
|
OTHER = "OTHER"
|
|
111
111
|
}
|
|
112
|
+
/** @enumType */
|
|
113
|
+
export type MediaTypeWithLiterals = MediaType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'VECTOR' | 'ARCHIVE' | 'MODEL3D' | 'OTHER';
|
|
112
114
|
export interface FileMedia extends FileMediaMediaOneOf {
|
|
113
115
|
/** Information about the image. */
|
|
114
116
|
image?: ImageMedia;
|
|
@@ -414,12 +416,16 @@ export declare enum OperationStatus {
|
|
|
414
416
|
/** File is waiting for processing or currently being processed */
|
|
415
417
|
PENDING = "PENDING"
|
|
416
418
|
}
|
|
419
|
+
/** @enumType */
|
|
420
|
+
export type OperationStatusWithLiterals = OperationStatus | 'FAILED' | 'READY' | 'PENDING';
|
|
417
421
|
export declare enum State {
|
|
418
422
|
/** File is ready for consumption */
|
|
419
423
|
OK = "OK",
|
|
420
424
|
/** Deleted file */
|
|
421
425
|
DELETED = "DELETED"
|
|
422
426
|
}
|
|
427
|
+
/** @enumType */
|
|
428
|
+
export type StateWithLiterals = State | 'OK' | 'DELETED';
|
|
423
429
|
export declare enum Namespace {
|
|
424
430
|
NO_NAMESPACE = "NO_NAMESPACE",
|
|
425
431
|
OTHERS = "OTHERS",
|
|
@@ -448,9 +454,11 @@ export declare enum Namespace {
|
|
|
448
454
|
/** _nsWixLegends */
|
|
449
455
|
WIX_LEGENDS = "WIX_LEGENDS"
|
|
450
456
|
}
|
|
457
|
+
/** @enumType */
|
|
458
|
+
export 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';
|
|
451
459
|
export interface IdentityInfo {
|
|
452
460
|
/** The type of the user that uploaded the file */
|
|
453
|
-
identityType?:
|
|
461
|
+
identityType?: IdentityTypeWithLiterals;
|
|
454
462
|
/**
|
|
455
463
|
* User Id. empty when UNKNOWN
|
|
456
464
|
* @format GUID
|
|
@@ -464,6 +472,8 @@ export declare enum IdentityType {
|
|
|
464
472
|
WIX_USER = "WIX_USER",
|
|
465
473
|
APP = "APP"
|
|
466
474
|
}
|
|
475
|
+
/** @enumType */
|
|
476
|
+
export type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
467
477
|
export interface FileReady {
|
|
468
478
|
/** File entity that is ready with full information. */
|
|
469
479
|
file?: FileDescriptor;
|
|
@@ -503,7 +513,7 @@ export interface DraftFilePublished {
|
|
|
503
513
|
/** The file after it was published */
|
|
504
514
|
file?: FileDescriptor;
|
|
505
515
|
/** The namespace the file was published to */
|
|
506
|
-
namespace?:
|
|
516
|
+
namespace?: NamespaceWithLiterals;
|
|
507
517
|
}
|
|
508
518
|
export interface BulkAnnotateImagesRequest {
|
|
509
519
|
/**
|
|
@@ -518,7 +528,7 @@ export interface BulkAnnotateImagesRequest {
|
|
|
518
528
|
* @minSize 1
|
|
519
529
|
* @maxSize 10
|
|
520
530
|
*/
|
|
521
|
-
annotationTypes?:
|
|
531
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
522
532
|
/** When true the endpoint will detect listed information even if the image has this information */
|
|
523
533
|
overwrite?: boolean | null;
|
|
524
534
|
/** Should the response return the item following the operation */
|
|
@@ -533,6 +543,8 @@ export declare enum ImageAnnotationType {
|
|
|
533
543
|
COLORS = "COLORS",
|
|
534
544
|
CAPTION = "CAPTION"
|
|
535
545
|
}
|
|
546
|
+
/** @enumType */
|
|
547
|
+
export type ImageAnnotationTypeWithLiterals = ImageAnnotationType | 'UNKNOWN_IMAGE_ANNOTATION_TYPE' | 'CONTAINS_TEXT' | 'IS_ANIMATED' | 'FACES' | 'LABELS' | 'COLORS' | 'CAPTION';
|
|
536
548
|
export interface BulkAnnotateImagesResponse {
|
|
537
549
|
/** Results of individual items */
|
|
538
550
|
results?: BulkAnnotateImageResult[];
|
|
@@ -629,7 +641,7 @@ export interface GenerateFileDownloadUrlRequest {
|
|
|
629
641
|
*
|
|
630
642
|
* Default: `ATTACHMENT`
|
|
631
643
|
*/
|
|
632
|
-
contentDisposition?:
|
|
644
|
+
contentDisposition?: ContentDispositionWithLiterals;
|
|
633
645
|
}
|
|
634
646
|
export declare enum ContentDisposition {
|
|
635
647
|
/** Using the link in the browser will download the file */
|
|
@@ -637,6 +649,8 @@ export declare enum ContentDisposition {
|
|
|
637
649
|
/** Using the link in the browser will open the file in the browser */
|
|
638
650
|
INLINE = "INLINE"
|
|
639
651
|
}
|
|
652
|
+
/** @enumType */
|
|
653
|
+
export type ContentDispositionWithLiterals = ContentDisposition | 'ATTACHMENT' | 'INLINE';
|
|
640
654
|
export interface GenerateFileDownloadUrlResponse {
|
|
641
655
|
/**
|
|
642
656
|
* URL for downloading a specific file in the Media Manager.
|
|
@@ -782,7 +796,7 @@ export interface ImageAnnotationConfigurations {
|
|
|
782
796
|
* Default will be all detections
|
|
783
797
|
* @maxSize 10
|
|
784
798
|
*/
|
|
785
|
-
annotationTypes?:
|
|
799
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
786
800
|
}
|
|
787
801
|
export interface GenerateFileUploadUrlResponse {
|
|
788
802
|
/**
|
|
@@ -874,7 +888,7 @@ export interface GenerateFileResumableUploadUrlRequest {
|
|
|
874
888
|
*/
|
|
875
889
|
labels?: string[] | null;
|
|
876
890
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
877
|
-
uploadProtocol?:
|
|
891
|
+
uploadProtocol?: UploadProtocolWithLiterals;
|
|
878
892
|
/**
|
|
879
893
|
* Path to the folder where the file will be stored.
|
|
880
894
|
* For example, `/videos/2024/december`. <br/>
|
|
@@ -888,9 +902,11 @@ export declare enum UploadProtocol {
|
|
|
888
902
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
889
903
|
TUS = "TUS"
|
|
890
904
|
}
|
|
905
|
+
/** @enumType */
|
|
906
|
+
export type UploadProtocolWithLiterals = UploadProtocol | 'TUS';
|
|
891
907
|
export interface GenerateFileResumableUploadUrlResponse {
|
|
892
908
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
893
|
-
uploadProtocol?:
|
|
909
|
+
uploadProtocol?: UploadProtocolWithLiterals;
|
|
894
910
|
/**
|
|
895
911
|
* The URL for uploading a file to the Media Manager.
|
|
896
912
|
* @format WEB_URL
|
|
@@ -912,7 +928,7 @@ export interface ImportFileRequest {
|
|
|
912
928
|
* Media type of the file to import.
|
|
913
929
|
* excluding: OTHER media type
|
|
914
930
|
*/
|
|
915
|
-
mediaType?:
|
|
931
|
+
mediaType?: MediaTypeWithLiterals;
|
|
916
932
|
/**
|
|
917
933
|
* File name that appears in the Media Manager.
|
|
918
934
|
* @maxLength 200
|
|
@@ -1005,7 +1021,7 @@ export interface ListFilesRequest {
|
|
|
1005
1021
|
* File media type.
|
|
1006
1022
|
* @maxSize 30
|
|
1007
1023
|
*/
|
|
1008
|
-
mediaTypes?:
|
|
1024
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1009
1025
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
1010
1026
|
private?: boolean | null;
|
|
1011
1027
|
/**
|
|
@@ -1026,12 +1042,14 @@ export interface Sorting {
|
|
|
1026
1042
|
*/
|
|
1027
1043
|
fieldName?: string;
|
|
1028
1044
|
/** Sort order. */
|
|
1029
|
-
order?:
|
|
1045
|
+
order?: SortOrderWithLiterals;
|
|
1030
1046
|
}
|
|
1031
1047
|
export declare enum SortOrder {
|
|
1032
1048
|
ASC = "ASC",
|
|
1033
1049
|
DESC = "DESC"
|
|
1034
1050
|
}
|
|
1051
|
+
/** @enumType */
|
|
1052
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
1035
1053
|
export interface CursorPaging {
|
|
1036
1054
|
/**
|
|
1037
1055
|
* Maximum number of items to return in the results.
|
|
@@ -1081,12 +1099,12 @@ export interface SearchFilesRequest {
|
|
|
1081
1099
|
* A root folder in the media manager to search in. <br />
|
|
1082
1100
|
* Default: `MEDIA_ROOT`.
|
|
1083
1101
|
*/
|
|
1084
|
-
rootFolder?:
|
|
1102
|
+
rootFolder?: RootFolderWithLiterals;
|
|
1085
1103
|
/**
|
|
1086
1104
|
* File media type.
|
|
1087
1105
|
* @maxSize 30
|
|
1088
1106
|
*/
|
|
1089
|
-
mediaTypes?:
|
|
1107
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1090
1108
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
1091
1109
|
private?: boolean | null;
|
|
1092
1110
|
/**
|
|
@@ -1108,6 +1126,8 @@ export declare enum RootFolder {
|
|
|
1108
1126
|
/** Root of all visitor uploads */
|
|
1109
1127
|
VISITOR_UPLOADS_ROOT = "VISITOR_UPLOADS_ROOT"
|
|
1110
1128
|
}
|
|
1129
|
+
/** @enumType */
|
|
1130
|
+
export type RootFolderWithLiterals = RootFolder | 'MEDIA_ROOT' | 'TRASH_ROOT' | 'VISITOR_UPLOADS_ROOT';
|
|
1111
1131
|
export interface SearchFilesResponse {
|
|
1112
1132
|
/**
|
|
1113
1133
|
* Files matching the query.
|
|
@@ -1127,13 +1147,15 @@ export interface GenerateVideoStreamingUrlRequest {
|
|
|
1127
1147
|
*/
|
|
1128
1148
|
fileId: string;
|
|
1129
1149
|
/** Video stream format. */
|
|
1130
|
-
format?:
|
|
1150
|
+
format?: StreamFormatWithLiterals;
|
|
1131
1151
|
}
|
|
1132
1152
|
export declare enum StreamFormat {
|
|
1133
1153
|
UNKNOWN = "UNKNOWN",
|
|
1134
1154
|
HLS = "HLS",
|
|
1135
1155
|
DASH = "DASH"
|
|
1136
1156
|
}
|
|
1157
|
+
/** @enumType */
|
|
1158
|
+
export type StreamFormatWithLiterals = StreamFormat | 'UNKNOWN' | 'HLS' | 'DASH';
|
|
1137
1159
|
export interface GenerateVideoStreamingUrlResponse {
|
|
1138
1160
|
/** URL for streaming a specific file in the Media Manager. */
|
|
1139
1161
|
downloadUrl?: DownloadUrl;
|
|
@@ -1189,7 +1211,7 @@ export interface ListDeletedFilesRequest {
|
|
|
1189
1211
|
* File media type.
|
|
1190
1212
|
* @maxSize 30
|
|
1191
1213
|
*/
|
|
1192
|
-
mediaTypes?:
|
|
1214
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1193
1215
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
1194
1216
|
private?: boolean | null;
|
|
1195
1217
|
/**
|
|
@@ -1226,7 +1248,7 @@ export interface BulkPublishDraftFilesRequest {
|
|
|
1226
1248
|
* The namespace the files will be published to
|
|
1227
1249
|
* Note, private files must have a namespace
|
|
1228
1250
|
*/
|
|
1229
|
-
namespace?:
|
|
1251
|
+
namespace?: NamespaceWithLiterals;
|
|
1230
1252
|
/**
|
|
1231
1253
|
* ID of the file's parent folder. <br />
|
|
1232
1254
|
* This folder is the path root for the `filePath`. <br />
|
|
@@ -1391,7 +1413,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1391
1413
|
*/
|
|
1392
1414
|
appId?: string;
|
|
1393
1415
|
/** @readonly */
|
|
1394
|
-
identityType?:
|
|
1416
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1395
1417
|
}
|
|
1396
1418
|
/** @oneof */
|
|
1397
1419
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1423,6 +1445,8 @@ export declare enum WebhookIdentityType {
|
|
|
1423
1445
|
WIX_USER = "WIX_USER",
|
|
1424
1446
|
APP = "APP"
|
|
1425
1447
|
}
|
|
1448
|
+
/** @enumType */
|
|
1449
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1426
1450
|
export interface BaseEventMetadata {
|
|
1427
1451
|
/**
|
|
1428
1452
|
* App instance ID.
|
|
@@ -1488,6 +1512,8 @@ export interface FileDescriptorDeletedEnvelope {
|
|
|
1488
1512
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1489
1513
|
* @permissionScope Manage Portfolio
|
|
1490
1514
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1515
|
+
* @permissionScope Manage Blog
|
|
1516
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1491
1517
|
* @permissionScope Access Verticals by Automations
|
|
1492
1518
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1493
1519
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1521,6 +1547,8 @@ export interface FileDescriptorFileFailedEnvelope {
|
|
|
1521
1547
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1522
1548
|
* @permissionScope Manage Portfolio
|
|
1523
1549
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1550
|
+
* @permissionScope Manage Blog
|
|
1551
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1524
1552
|
* @permissionScope Access Verticals by Automations
|
|
1525
1553
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1526
1554
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1556,6 +1584,8 @@ export interface FileDescriptorFileReadyEnvelope {
|
|
|
1556
1584
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1557
1585
|
* @permissionScope Manage Portfolio
|
|
1558
1586
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1587
|
+
* @permissionScope Manage Blog
|
|
1588
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1559
1589
|
* @permissionScope Access Verticals by Automations
|
|
1560
1590
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1561
1591
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1589,6 +1619,8 @@ export interface FileDescriptorUpdatedEnvelope {
|
|
|
1589
1619
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1590
1620
|
* @permissionScope Manage Portfolio
|
|
1591
1621
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1622
|
+
* @permissionScope Manage Blog
|
|
1623
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1592
1624
|
* @permissionScope Access Verticals by Automations
|
|
1593
1625
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1594
1626
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1630,6 +1662,8 @@ type FileDescriptorNonNullablePaths = `_id` | `displayName` | `url` | `hash` | `
|
|
|
1630
1662
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1631
1663
|
* @permissionScope Manage Portfolio
|
|
1632
1664
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1665
|
+
* @permissionScope Manage Blog
|
|
1666
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1633
1667
|
* @permissionScope Access Verticals by Automations
|
|
1634
1668
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1635
1669
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1671,6 +1705,8 @@ export declare function generateFilesDownloadUrl(fileIds: string[]): Promise<Non
|
|
|
1671
1705
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1672
1706
|
* @permissionScope Manage Portfolio
|
|
1673
1707
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1708
|
+
* @permissionScope Manage Blog
|
|
1709
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1674
1710
|
* @permissionScope Access Verticals by Automations
|
|
1675
1711
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1676
1712
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1717,7 +1753,7 @@ export interface GenerateFileDownloadUrlOptions {
|
|
|
1717
1753
|
*
|
|
1718
1754
|
* Default: `ATTACHMENT`
|
|
1719
1755
|
*/
|
|
1720
|
-
contentDisposition?:
|
|
1756
|
+
contentDisposition?: ContentDispositionWithLiterals;
|
|
1721
1757
|
}
|
|
1722
1758
|
/**
|
|
1723
1759
|
* Gets information about a specific file in the Media Manager.
|
|
@@ -1742,6 +1778,8 @@ export interface GenerateFileDownloadUrlOptions {
|
|
|
1742
1778
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1743
1779
|
* @permissionScope Manage Portfolio
|
|
1744
1780
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1781
|
+
* @permissionScope Manage Blog
|
|
1782
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1745
1783
|
* @permissionScope Access Verticals by Automations
|
|
1746
1784
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1747
1785
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1776,6 +1814,8 @@ export declare function getFileDescriptor(fileId: string): Promise<NonNullablePa
|
|
|
1776
1814
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1777
1815
|
* @permissionScope Manage Portfolio
|
|
1778
1816
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1817
|
+
* @permissionScope Manage Blog
|
|
1818
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1779
1819
|
* @permissionScope Access Verticals by Automations
|
|
1780
1820
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1781
1821
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1809,6 +1849,8 @@ export declare function getFileDescriptors(fileIds: string[]): Promise<NonNullab
|
|
|
1809
1849
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1810
1850
|
* @permissionScope Manage Portfolio
|
|
1811
1851
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1852
|
+
* @permissionScope Manage Blog
|
|
1853
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1812
1854
|
* @permissionScope Access Verticals by Automations
|
|
1813
1855
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1814
1856
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1844,6 +1886,8 @@ export declare function updateFileDescriptor(file: NonNullablePaths<FileDescript
|
|
|
1844
1886
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1845
1887
|
* @permissionScope Manage Portfolio
|
|
1846
1888
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1889
|
+
* @permissionScope Manage Blog
|
|
1890
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1847
1891
|
* @permissionScope Access Verticals by Automations
|
|
1848
1892
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1849
1893
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1918,6 +1962,8 @@ export interface GenerateFileUploadUrlOptions {
|
|
|
1918
1962
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1919
1963
|
* @permissionScope Manage Portfolio
|
|
1920
1964
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1965
|
+
* @permissionScope Manage Blog
|
|
1966
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1921
1967
|
* @permissionScope Access Verticals by Automations
|
|
1922
1968
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1923
1969
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1958,7 +2004,7 @@ export interface GenerateFileResumableUploadUrlOptions {
|
|
|
1958
2004
|
*/
|
|
1959
2005
|
labels?: string[] | null;
|
|
1960
2006
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
1961
|
-
uploadProtocol?:
|
|
2007
|
+
uploadProtocol?: UploadProtocolWithLiterals;
|
|
1962
2008
|
/**
|
|
1963
2009
|
* Path to the folder where the file will be stored.
|
|
1964
2010
|
* For example, `/videos/2024/december`. <br/>
|
|
@@ -2001,6 +2047,8 @@ export interface GenerateFileResumableUploadUrlOptions {
|
|
|
2001
2047
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2002
2048
|
* @permissionScope Manage Portfolio
|
|
2003
2049
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2050
|
+
* @permissionScope Manage Blog
|
|
2051
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2004
2052
|
* @permissionScope Access Verticals by Automations
|
|
2005
2053
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2006
2054
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2018,7 +2066,7 @@ export interface ImportFileOptions {
|
|
|
2018
2066
|
* Media type of the file to import.
|
|
2019
2067
|
* excluding: OTHER media type
|
|
2020
2068
|
*/
|
|
2021
|
-
mediaType?:
|
|
2069
|
+
mediaType?: MediaTypeWithLiterals;
|
|
2022
2070
|
/**
|
|
2023
2071
|
* File name that appears in the Media Manager.
|
|
2024
2072
|
* @maxLength 200
|
|
@@ -2094,6 +2142,8 @@ export interface ImportFileOptions {
|
|
|
2094
2142
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2095
2143
|
* @permissionScope Manage Portfolio
|
|
2096
2144
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2145
|
+
* @permissionScope Manage Blog
|
|
2146
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2097
2147
|
* @permissionScope Access Verticals by Automations
|
|
2098
2148
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2099
2149
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2144,6 +2194,8 @@ export declare function bulkImportFiles(importFileRequests: NonNullablePaths<Imp
|
|
|
2144
2194
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2145
2195
|
* @permissionScope Manage Portfolio
|
|
2146
2196
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2197
|
+
* @permissionScope Manage Blog
|
|
2198
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2147
2199
|
* @permissionScope Access Verticals by Automations
|
|
2148
2200
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2149
2201
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2181,6 +2233,8 @@ export interface BulkImportFileOptions {
|
|
|
2181
2233
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2182
2234
|
* @permissionScope Manage Portfolio
|
|
2183
2235
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2236
|
+
* @permissionScope Manage Blog
|
|
2237
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2184
2238
|
* @permissionScope Access Verticals by Automations
|
|
2185
2239
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2186
2240
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2204,7 +2258,7 @@ export interface ListFilesOptions {
|
|
|
2204
2258
|
* File media type.
|
|
2205
2259
|
* @maxSize 30
|
|
2206
2260
|
*/
|
|
2207
|
-
mediaTypes?:
|
|
2261
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
2208
2262
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
2209
2263
|
private?: boolean | null;
|
|
2210
2264
|
/**
|
|
@@ -2239,6 +2293,8 @@ export interface ListFilesOptions {
|
|
|
2239
2293
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2240
2294
|
* @permissionScope Manage Portfolio
|
|
2241
2295
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2296
|
+
* @permissionScope Manage Blog
|
|
2297
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2242
2298
|
* @permissionScope Access Verticals by Automations
|
|
2243
2299
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2244
2300
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2263,12 +2319,12 @@ export interface SearchFilesOptions {
|
|
|
2263
2319
|
* A root folder in the media manager to search in. <br />
|
|
2264
2320
|
* Default: `MEDIA_ROOT`.
|
|
2265
2321
|
*/
|
|
2266
|
-
rootFolder?:
|
|
2322
|
+
rootFolder?: RootFolderWithLiterals;
|
|
2267
2323
|
/**
|
|
2268
2324
|
* File media type.
|
|
2269
2325
|
* @maxSize 30
|
|
2270
2326
|
*/
|
|
2271
|
-
mediaTypes?:
|
|
2327
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
2272
2328
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
2273
2329
|
private?: boolean | null;
|
|
2274
2330
|
/**
|
|
@@ -2308,6 +2364,8 @@ export interface SearchFilesOptions {
|
|
|
2308
2364
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2309
2365
|
* @permissionScope Manage Portfolio
|
|
2310
2366
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2367
|
+
* @permissionScope Manage Blog
|
|
2368
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2311
2369
|
* @permissionScope Access Verticals by Automations
|
|
2312
2370
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2313
2371
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2320,7 +2378,7 @@ export interface SearchFilesOptions {
|
|
|
2320
2378
|
export declare function generateVideoStreamingUrl(fileId: string, options?: GenerateVideoStreamingUrlOptions): Promise<NonNullablePaths<GenerateVideoStreamingUrlResponse, `downloadUrl.url` | `downloadUrl.assetKey`>>;
|
|
2321
2379
|
export interface GenerateVideoStreamingUrlOptions {
|
|
2322
2380
|
/** Video stream format. */
|
|
2323
|
-
format?:
|
|
2381
|
+
format?: StreamFormatWithLiterals;
|
|
2324
2382
|
}
|
|
2325
2383
|
/**
|
|
2326
2384
|
* Deletes the specified files from the Media Manager. <br/>
|
|
@@ -2353,6 +2411,8 @@ export interface GenerateVideoStreamingUrlOptions {
|
|
|
2353
2411
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2354
2412
|
* @permissionScope Manage Portfolio
|
|
2355
2413
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2414
|
+
* @permissionScope Manage Blog
|
|
2415
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2356
2416
|
* @permissionScope Access Verticals by Automations
|
|
2357
2417
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2358
2418
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2391,6 +2451,8 @@ export interface BulkDeleteFilesOptions {
|
|
|
2391
2451
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2392
2452
|
* @permissionScope Manage Portfolio
|
|
2393
2453
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2454
|
+
* @permissionScope Manage Blog
|
|
2455
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2394
2456
|
* @permissionScope Access Verticals by Automations
|
|
2395
2457
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2396
2458
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2422,6 +2484,8 @@ export declare function bulkRestoreFilesFromTrashBin(fileIds: string[]): Promise
|
|
|
2422
2484
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
2423
2485
|
* @permissionScope Manage Portfolio
|
|
2424
2486
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2487
|
+
* @permissionScope Manage Blog
|
|
2488
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2425
2489
|
* @permissionScope Access Verticals by Automations
|
|
2426
2490
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2427
2491
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2445,7 +2509,7 @@ export interface ListDeletedFilesOptions {
|
|
|
2445
2509
|
* File media type.
|
|
2446
2510
|
* @maxSize 30
|
|
2447
2511
|
*/
|
|
2448
|
-
mediaTypes?:
|
|
2512
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
2449
2513
|
/** \n`true`: Returns only private files. \n`false`: Returns only public files. \n`undefined`: Returns public and private files. \n Learn more about private files ([SDK](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files) | [REST](https://dev.wix.com/docs/sdk/backend-modules/media/files/private-files)). */
|
|
2450
2514
|
private?: boolean | null;
|
|
2451
2515
|
/**
|
|
@@ -178,6 +178,8 @@ var WebhookIdentityType;
|
|
|
178
178
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
179
179
|
* @permissionScope Manage Portfolio
|
|
180
180
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
181
|
+
* @permissionScope Manage Blog
|
|
182
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
181
183
|
* @permissionScope Access Verticals by Automations
|
|
182
184
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
183
185
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -240,6 +242,8 @@ exports.generateFilesDownloadUrl = generateFilesDownloadUrl;
|
|
|
240
242
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
241
243
|
* @permissionScope Manage Portfolio
|
|
242
244
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
245
|
+
* @permissionScope Manage Blog
|
|
246
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
243
247
|
* @permissionScope Access Verticals by Automations
|
|
244
248
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
245
249
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -308,6 +312,8 @@ exports.generateFileDownloadUrl = generateFileDownloadUrl;
|
|
|
308
312
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
309
313
|
* @permissionScope Manage Portfolio
|
|
310
314
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
315
|
+
* @permissionScope Manage Blog
|
|
316
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
311
317
|
* @permissionScope Access Verticals by Automations
|
|
312
318
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
313
319
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -388,6 +394,8 @@ exports.getFileDescriptor = getFileDescriptor;
|
|
|
388
394
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
389
395
|
* @permissionScope Manage Portfolio
|
|
390
396
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
397
|
+
* @permissionScope Manage Blog
|
|
398
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
391
399
|
* @permissionScope Access Verticals by Automations
|
|
392
400
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
393
401
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -465,6 +473,8 @@ exports.getFileDescriptors = getFileDescriptors;
|
|
|
465
473
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
466
474
|
* @permissionScope Manage Portfolio
|
|
467
475
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
476
|
+
* @permissionScope Manage Blog
|
|
477
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
468
478
|
* @permissionScope Access Verticals by Automations
|
|
469
479
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
470
480
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -571,6 +581,8 @@ exports.updateFileDescriptor = updateFileDescriptor;
|
|
|
571
581
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
572
582
|
* @permissionScope Manage Portfolio
|
|
573
583
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
584
|
+
* @permissionScope Manage Blog
|
|
585
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
574
586
|
* @permissionScope Access Verticals by Automations
|
|
575
587
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
576
588
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -644,6 +656,8 @@ exports.generateFileUploadUrl = generateFileUploadUrl;
|
|
|
644
656
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
645
657
|
* @permissionScope Manage Portfolio
|
|
646
658
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
659
|
+
* @permissionScope Manage Blog
|
|
660
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
647
661
|
* @permissionScope Access Verticals by Automations
|
|
648
662
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
649
663
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -726,6 +740,8 @@ exports.generateFileResumableUploadUrl = generateFileResumableUploadUrl;
|
|
|
726
740
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
727
741
|
* @permissionScope Manage Portfolio
|
|
728
742
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
743
|
+
* @permissionScope Manage Blog
|
|
744
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
729
745
|
* @permissionScope Access Verticals by Automations
|
|
730
746
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
731
747
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -841,6 +857,8 @@ exports.importFile = importFile;
|
|
|
841
857
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
842
858
|
* @permissionScope Manage Portfolio
|
|
843
859
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
860
|
+
* @permissionScope Manage Blog
|
|
861
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
844
862
|
* @permissionScope Access Verticals by Automations
|
|
845
863
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
846
864
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -937,6 +955,8 @@ exports.bulkImportFiles = bulkImportFiles;
|
|
|
937
955
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
938
956
|
* @permissionScope Manage Portfolio
|
|
939
957
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
958
|
+
* @permissionScope Manage Blog
|
|
959
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
940
960
|
* @permissionScope Access Verticals by Automations
|
|
941
961
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
942
962
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1022,6 +1042,8 @@ exports.bulkImportFile = bulkImportFile;
|
|
|
1022
1042
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1023
1043
|
* @permissionScope Manage Portfolio
|
|
1024
1044
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1045
|
+
* @permissionScope Manage Blog
|
|
1046
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1025
1047
|
* @permissionScope Access Verticals by Automations
|
|
1026
1048
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1027
1049
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1111,6 +1133,8 @@ exports.listFiles = listFiles;
|
|
|
1111
1133
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1112
1134
|
* @permissionScope Manage Portfolio
|
|
1113
1135
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1136
|
+
* @permissionScope Manage Blog
|
|
1137
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1114
1138
|
* @permissionScope Access Verticals by Automations
|
|
1115
1139
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1116
1140
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1207,6 +1231,8 @@ exports.searchFiles = searchFiles;
|
|
|
1207
1231
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1208
1232
|
* @permissionScope Manage Portfolio
|
|
1209
1233
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1234
|
+
* @permissionScope Manage Blog
|
|
1235
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1210
1236
|
* @permissionScope Access Verticals by Automations
|
|
1211
1237
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1212
1238
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1272,6 +1298,8 @@ exports.generateVideoStreamingUrl = generateVideoStreamingUrl;
|
|
|
1272
1298
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1273
1299
|
* @permissionScope Manage Portfolio
|
|
1274
1300
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1301
|
+
* @permissionScope Manage Blog
|
|
1302
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1275
1303
|
* @permissionScope Access Verticals by Automations
|
|
1276
1304
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1277
1305
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1329,6 +1357,8 @@ exports.bulkDeleteFiles = bulkDeleteFiles;
|
|
|
1329
1357
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1330
1358
|
* @permissionScope Manage Portfolio
|
|
1331
1359
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1360
|
+
* @permissionScope Manage Blog
|
|
1361
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1332
1362
|
* @permissionScope Access Verticals by Automations
|
|
1333
1363
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1334
1364
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1380,6 +1410,8 @@ exports.bulkRestoreFilesFromTrashBin = bulkRestoreFilesFromTrashBin;
|
|
|
1380
1410
|
* @permissionScopeId SCOPE.DC-MEDIA.MANAGE-MEDIAMANAGER
|
|
1381
1411
|
* @permissionScope Manage Portfolio
|
|
1382
1412
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1413
|
+
* @permissionScope Manage Blog
|
|
1414
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1383
1415
|
* @permissionScope Access Verticals by Automations
|
|
1384
1416
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1385
1417
|
* @permissionScope Manage Restaurants - all permissions
|