@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
|
@@ -43,7 +43,7 @@ export interface FileDescriptor {
|
|
|
43
43
|
* Media file type.
|
|
44
44
|
* @readonly
|
|
45
45
|
*/
|
|
46
|
-
mediaType?:
|
|
46
|
+
mediaType?: MediaTypeWithLiterals;
|
|
47
47
|
/**
|
|
48
48
|
* Media file content.
|
|
49
49
|
* @readonly
|
|
@@ -56,7 +56,7 @@ export interface FileDescriptor {
|
|
|
56
56
|
* * `PENDING`: The file is processing and the URLs are not yet available. This response is returned when importing a file.
|
|
57
57
|
* @readonly
|
|
58
58
|
*/
|
|
59
|
-
operationStatus?:
|
|
59
|
+
operationStatus?: OperationStatusWithLiterals;
|
|
60
60
|
/**
|
|
61
61
|
* URL where the file was uploaded from.
|
|
62
62
|
* @readonly
|
|
@@ -95,7 +95,7 @@ export interface FileDescriptor {
|
|
|
95
95
|
* State of the file.
|
|
96
96
|
* @readonly
|
|
97
97
|
*/
|
|
98
|
-
state?:
|
|
98
|
+
state?: StateWithLiterals;
|
|
99
99
|
}
|
|
100
100
|
export declare enum MediaType {
|
|
101
101
|
UNKNOWN = "UNKNOWN",
|
|
@@ -108,6 +108,8 @@ export declare enum MediaType {
|
|
|
108
108
|
MODEL3D = "MODEL3D",
|
|
109
109
|
OTHER = "OTHER"
|
|
110
110
|
}
|
|
111
|
+
/** @enumType */
|
|
112
|
+
export type MediaTypeWithLiterals = MediaType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'VECTOR' | 'ARCHIVE' | 'MODEL3D' | 'OTHER';
|
|
111
113
|
export interface FileMedia extends FileMediaMediaOneOf {
|
|
112
114
|
/** Information about the image. */
|
|
113
115
|
image?: ImageMedia;
|
|
@@ -495,12 +497,16 @@ export declare enum OperationStatus {
|
|
|
495
497
|
/** File is waiting for processing or currently being processed */
|
|
496
498
|
PENDING = "PENDING"
|
|
497
499
|
}
|
|
500
|
+
/** @enumType */
|
|
501
|
+
export type OperationStatusWithLiterals = OperationStatus | 'FAILED' | 'READY' | 'PENDING';
|
|
498
502
|
export declare enum State {
|
|
499
503
|
/** File is ready for consumption */
|
|
500
504
|
OK = "OK",
|
|
501
505
|
/** Deleted file */
|
|
502
506
|
DELETED = "DELETED"
|
|
503
507
|
}
|
|
508
|
+
/** @enumType */
|
|
509
|
+
export type StateWithLiterals = State | 'OK' | 'DELETED';
|
|
504
510
|
export declare enum Namespace {
|
|
505
511
|
NO_NAMESPACE = "NO_NAMESPACE",
|
|
506
512
|
OTHERS = "OTHERS",
|
|
@@ -529,9 +535,11 @@ export declare enum Namespace {
|
|
|
529
535
|
/** _nsWixLegends */
|
|
530
536
|
WIX_LEGENDS = "WIX_LEGENDS"
|
|
531
537
|
}
|
|
538
|
+
/** @enumType */
|
|
539
|
+
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';
|
|
532
540
|
export interface IdentityInfo {
|
|
533
541
|
/** The type of the user that uploaded the file */
|
|
534
|
-
identityType?:
|
|
542
|
+
identityType?: IdentityTypeWithLiterals;
|
|
535
543
|
/**
|
|
536
544
|
* User Id. empty when UNKNOWN
|
|
537
545
|
* @format GUID
|
|
@@ -545,6 +553,8 @@ export declare enum IdentityType {
|
|
|
545
553
|
WIX_USER = "WIX_USER",
|
|
546
554
|
APP = "APP"
|
|
547
555
|
}
|
|
556
|
+
/** @enumType */
|
|
557
|
+
export type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
548
558
|
export interface FileReady {
|
|
549
559
|
/** File entity that is ready with full information. */
|
|
550
560
|
file?: FileDescriptor;
|
|
@@ -584,7 +594,7 @@ export interface DraftFilePublished {
|
|
|
584
594
|
/** The file after it was published */
|
|
585
595
|
file?: FileDescriptor;
|
|
586
596
|
/** The namespace the file was published to */
|
|
587
|
-
namespace?:
|
|
597
|
+
namespace?: NamespaceWithLiterals;
|
|
588
598
|
}
|
|
589
599
|
export interface BulkAnnotateImagesRequest {
|
|
590
600
|
/**
|
|
@@ -599,7 +609,7 @@ export interface BulkAnnotateImagesRequest {
|
|
|
599
609
|
* @minSize 1
|
|
600
610
|
* @maxSize 10
|
|
601
611
|
*/
|
|
602
|
-
annotationTypes?:
|
|
612
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
603
613
|
/** When true the endpoint will detect listed information even if the image has this information */
|
|
604
614
|
overwrite?: boolean | null;
|
|
605
615
|
/** Should the response return the item following the operation */
|
|
@@ -614,6 +624,8 @@ export declare enum ImageAnnotationType {
|
|
|
614
624
|
COLORS = "COLORS",
|
|
615
625
|
CAPTION = "CAPTION"
|
|
616
626
|
}
|
|
627
|
+
/** @enumType */
|
|
628
|
+
export type ImageAnnotationTypeWithLiterals = ImageAnnotationType | 'UNKNOWN_IMAGE_ANNOTATION_TYPE' | 'CONTAINS_TEXT' | 'IS_ANIMATED' | 'FACES' | 'LABELS' | 'COLORS' | 'CAPTION';
|
|
617
629
|
export interface BulkAnnotateImagesResponse {
|
|
618
630
|
/** Results of individual items */
|
|
619
631
|
results?: BulkAnnotateImageResult[];
|
|
@@ -710,7 +722,7 @@ export interface GenerateFileDownloadUrlRequest {
|
|
|
710
722
|
*
|
|
711
723
|
* Default: `ATTACHMENT`
|
|
712
724
|
*/
|
|
713
|
-
contentDisposition?:
|
|
725
|
+
contentDisposition?: ContentDispositionWithLiterals;
|
|
714
726
|
}
|
|
715
727
|
export declare enum ContentDisposition {
|
|
716
728
|
/** Using the link in the browser will download the file */
|
|
@@ -718,6 +730,8 @@ export declare enum ContentDisposition {
|
|
|
718
730
|
/** Using the link in the browser will open the file in the browser */
|
|
719
731
|
INLINE = "INLINE"
|
|
720
732
|
}
|
|
733
|
+
/** @enumType */
|
|
734
|
+
export type ContentDispositionWithLiterals = ContentDisposition | 'ATTACHMENT' | 'INLINE';
|
|
721
735
|
export interface GenerateFileDownloadUrlResponse {
|
|
722
736
|
/**
|
|
723
737
|
* URL for downloading a specific file in the Media Manager.
|
|
@@ -863,7 +877,7 @@ export interface ImageAnnotationConfigurations {
|
|
|
863
877
|
* Default will be all detections
|
|
864
878
|
* @maxSize 10
|
|
865
879
|
*/
|
|
866
|
-
annotationTypes?:
|
|
880
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
867
881
|
}
|
|
868
882
|
export interface GenerateFileUploadUrlResponse {
|
|
869
883
|
/**
|
|
@@ -955,7 +969,7 @@ export interface GenerateFileResumableUploadUrlRequest {
|
|
|
955
969
|
*/
|
|
956
970
|
labels?: string[] | null;
|
|
957
971
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
958
|
-
uploadProtocol?:
|
|
972
|
+
uploadProtocol?: UploadProtocolWithLiterals;
|
|
959
973
|
/**
|
|
960
974
|
* Path to the folder where the file will be stored.
|
|
961
975
|
* For example, `/videos/2024/december`. <br/>
|
|
@@ -969,9 +983,11 @@ export declare enum UploadProtocol {
|
|
|
969
983
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
970
984
|
TUS = "TUS"
|
|
971
985
|
}
|
|
986
|
+
/** @enumType */
|
|
987
|
+
export type UploadProtocolWithLiterals = UploadProtocol | 'TUS';
|
|
972
988
|
export interface GenerateFileResumableUploadUrlResponse {
|
|
973
989
|
/** The upload protocol to use for implementing the resumable upload. */
|
|
974
|
-
uploadProtocol?:
|
|
990
|
+
uploadProtocol?: UploadProtocolWithLiterals;
|
|
975
991
|
/**
|
|
976
992
|
* The URL for uploading a file to the Media Manager.
|
|
977
993
|
* @format WEB_URL
|
|
@@ -993,7 +1009,7 @@ export interface ImportFileRequest {
|
|
|
993
1009
|
* Media type of the file to import.
|
|
994
1010
|
* excluding: OTHER media type
|
|
995
1011
|
*/
|
|
996
|
-
mediaType?:
|
|
1012
|
+
mediaType?: MediaTypeWithLiterals;
|
|
997
1013
|
/**
|
|
998
1014
|
* File name that appears in the Media Manager.
|
|
999
1015
|
* @maxLength 200
|
|
@@ -1086,7 +1102,7 @@ export interface ListFilesRequest {
|
|
|
1086
1102
|
* File media type.
|
|
1087
1103
|
* @maxSize 30
|
|
1088
1104
|
*/
|
|
1089
|
-
mediaTypes?:
|
|
1105
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1090
1106
|
/** \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
1107
|
private?: boolean | null;
|
|
1092
1108
|
/**
|
|
@@ -1107,12 +1123,14 @@ export interface Sorting {
|
|
|
1107
1123
|
*/
|
|
1108
1124
|
fieldName?: string;
|
|
1109
1125
|
/** Sort order. */
|
|
1110
|
-
order?:
|
|
1126
|
+
order?: SortOrderWithLiterals;
|
|
1111
1127
|
}
|
|
1112
1128
|
export declare enum SortOrder {
|
|
1113
1129
|
ASC = "ASC",
|
|
1114
1130
|
DESC = "DESC"
|
|
1115
1131
|
}
|
|
1132
|
+
/** @enumType */
|
|
1133
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
1116
1134
|
export interface CursorPaging {
|
|
1117
1135
|
/**
|
|
1118
1136
|
* Maximum number of items to return in the results.
|
|
@@ -1162,12 +1180,12 @@ export interface SearchFilesRequest {
|
|
|
1162
1180
|
* A root folder in the media manager to search in. <br />
|
|
1163
1181
|
* Default: `MEDIA_ROOT`.
|
|
1164
1182
|
*/
|
|
1165
|
-
rootFolder?:
|
|
1183
|
+
rootFolder?: RootFolderWithLiterals;
|
|
1166
1184
|
/**
|
|
1167
1185
|
* File media type.
|
|
1168
1186
|
* @maxSize 30
|
|
1169
1187
|
*/
|
|
1170
|
-
mediaTypes?:
|
|
1188
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1171
1189
|
/** \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)). */
|
|
1172
1190
|
private?: boolean | null;
|
|
1173
1191
|
/**
|
|
@@ -1189,6 +1207,8 @@ export declare enum RootFolder {
|
|
|
1189
1207
|
/** Root of all visitor uploads */
|
|
1190
1208
|
VISITOR_UPLOADS_ROOT = "VISITOR_UPLOADS_ROOT"
|
|
1191
1209
|
}
|
|
1210
|
+
/** @enumType */
|
|
1211
|
+
export type RootFolderWithLiterals = RootFolder | 'MEDIA_ROOT' | 'TRASH_ROOT' | 'VISITOR_UPLOADS_ROOT';
|
|
1192
1212
|
export interface SearchFilesResponse {
|
|
1193
1213
|
/**
|
|
1194
1214
|
* Files matching the query.
|
|
@@ -1208,13 +1228,15 @@ export interface GenerateVideoStreamingUrlRequest {
|
|
|
1208
1228
|
*/
|
|
1209
1229
|
fileId: string;
|
|
1210
1230
|
/** Video stream format. */
|
|
1211
|
-
format?:
|
|
1231
|
+
format?: StreamFormatWithLiterals;
|
|
1212
1232
|
}
|
|
1213
1233
|
export declare enum StreamFormat {
|
|
1214
1234
|
UNKNOWN = "UNKNOWN",
|
|
1215
1235
|
HLS = "HLS",
|
|
1216
1236
|
DASH = "DASH"
|
|
1217
1237
|
}
|
|
1238
|
+
/** @enumType */
|
|
1239
|
+
export type StreamFormatWithLiterals = StreamFormat | 'UNKNOWN' | 'HLS' | 'DASH';
|
|
1218
1240
|
export interface GenerateVideoStreamingUrlResponse {
|
|
1219
1241
|
/** URL for streaming a specific file in the Media Manager. */
|
|
1220
1242
|
downloadUrl?: DownloadUrl;
|
|
@@ -1270,7 +1292,7 @@ export interface ListDeletedFilesRequest {
|
|
|
1270
1292
|
* File media type.
|
|
1271
1293
|
* @maxSize 30
|
|
1272
1294
|
*/
|
|
1273
|
-
mediaTypes?:
|
|
1295
|
+
mediaTypes?: MediaTypeWithLiterals[];
|
|
1274
1296
|
/** \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)). */
|
|
1275
1297
|
private?: boolean | null;
|
|
1276
1298
|
/**
|
|
@@ -1307,7 +1329,7 @@ export interface BulkPublishDraftFilesRequest {
|
|
|
1307
1329
|
* The namespace the files will be published to
|
|
1308
1330
|
* Note, private files must have a namespace
|
|
1309
1331
|
*/
|
|
1310
|
-
namespace?:
|
|
1332
|
+
namespace?: NamespaceWithLiterals;
|
|
1311
1333
|
/**
|
|
1312
1334
|
* ID of the file's parent folder. <br />
|
|
1313
1335
|
* This folder is the path root for the `filePath`. <br />
|
|
@@ -1474,7 +1496,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1474
1496
|
*/
|
|
1475
1497
|
appId?: string;
|
|
1476
1498
|
/** @readonly */
|
|
1477
|
-
identityType?:
|
|
1499
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1478
1500
|
}
|
|
1479
1501
|
/** @oneof */
|
|
1480
1502
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1506,3 +1528,5 @@ export declare enum WebhookIdentityType {
|
|
|
1506
1528
|
WIX_USER = "WIX_USER",
|
|
1507
1529
|
APP = "APP"
|
|
1508
1530
|
}
|
|
1531
|
+
/** @enumType */
|
|
1532
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"media-site-media-v1-file-descriptor-files.types.js","sourceRoot":"","sources":["../../../src/media-site-media-v1-file-descriptor-files.types.ts"],"names":[],"mappings":";;;AAoGA,IAAY,SAUX;AAVD,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;AACjB,CAAC,EAVW,SAAS,yBAAT,SAAS,QAUpB;
|
|
1
|
+
{"version":3,"file":"media-site-media-v1-file-descriptor-files.types.js","sourceRoot":"","sources":["../../../src/media-site-media-v1-file-descriptor-files.types.ts"],"names":[],"mappings":"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"}
|