@wix/auto_sdk_media_files 1.0.32 → 1.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +5 -19
- package/build/cjs/index.js +0 -112
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +31 -100
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +590 -1
- package/build/cjs/meta.js +119 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +5 -19
- package/build/es/index.mjs +0 -110
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +31 -100
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +590 -1
- package/build/es/meta.mjs +107 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +5 -19
- package/build/internal/cjs/index.js +0 -112
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -100
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +590 -1
- package/build/internal/cjs/meta.js +119 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +5 -19
- package/build/internal/es/index.mjs +0 -110
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -100
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +590 -1
- package/build/internal/es/meta.mjs +107 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -191,6 +191,16 @@ interface Image {
|
|
|
191
191
|
*/
|
|
192
192
|
filename?: string | null;
|
|
193
193
|
}
|
|
194
|
+
interface FocalPoint {
|
|
195
|
+
/** X-coordinate of the focal point. */
|
|
196
|
+
x?: number;
|
|
197
|
+
/** Y-coordinate of the focal point. */
|
|
198
|
+
y?: number;
|
|
199
|
+
/** crop by height */
|
|
200
|
+
height?: number | null;
|
|
201
|
+
/** crop by width */
|
|
202
|
+
width?: number | null;
|
|
203
|
+
}
|
|
194
204
|
interface Colors {
|
|
195
205
|
/** Main color of the image. */
|
|
196
206
|
prominent?: Color;
|
|
@@ -380,6 +390,83 @@ interface Model3D {
|
|
|
380
390
|
*/
|
|
381
391
|
sizeInBytes?: string | null;
|
|
382
392
|
}
|
|
393
|
+
interface OtherMedia {
|
|
394
|
+
/**
|
|
395
|
+
* WixMedia ID. for use with Site Media APIs only
|
|
396
|
+
* @maxLength 200
|
|
397
|
+
*/
|
|
398
|
+
id?: string;
|
|
399
|
+
/**
|
|
400
|
+
* The media type of the file: 'package', 'raw'
|
|
401
|
+
* @readonly
|
|
402
|
+
* @maxLength 100
|
|
403
|
+
*/
|
|
404
|
+
internalMediaType?: string | null;
|
|
405
|
+
/**
|
|
406
|
+
* size in bytes. Optional.
|
|
407
|
+
* @readonly
|
|
408
|
+
* @format DECIMAL_VALUE
|
|
409
|
+
* @decimalValue options { gte:0, maxScale:0 }
|
|
410
|
+
*/
|
|
411
|
+
sizeInBytes?: string | null;
|
|
412
|
+
/**
|
|
413
|
+
* The file URL.
|
|
414
|
+
* @format WEB_URL
|
|
415
|
+
*/
|
|
416
|
+
url?: string;
|
|
417
|
+
}
|
|
418
|
+
interface FontMedia {
|
|
419
|
+
/**
|
|
420
|
+
* WixMedia ID. for use with Site Media APIs only
|
|
421
|
+
* @maxLength 200
|
|
422
|
+
*/
|
|
423
|
+
id?: string | null;
|
|
424
|
+
/**
|
|
425
|
+
* size in bytes. Optional.
|
|
426
|
+
* @readonly
|
|
427
|
+
* @format DECIMAL_VALUE
|
|
428
|
+
* @decimalValue options { gte:0, maxScale:0 }
|
|
429
|
+
*/
|
|
430
|
+
sizeInBytes?: string | null;
|
|
431
|
+
/**
|
|
432
|
+
* The format of the font asset. ttf, woff, woff2
|
|
433
|
+
* @maxLength 200
|
|
434
|
+
*/
|
|
435
|
+
format?: string | null;
|
|
436
|
+
/**
|
|
437
|
+
* The font family name.
|
|
438
|
+
* @maxLength 100
|
|
439
|
+
*/
|
|
440
|
+
family?: string | null;
|
|
441
|
+
/**
|
|
442
|
+
* The font name
|
|
443
|
+
* @maxLength 100
|
|
444
|
+
*/
|
|
445
|
+
fontName?: string | null;
|
|
446
|
+
/**
|
|
447
|
+
* Font formats available for this file.
|
|
448
|
+
* @maxSize 5
|
|
449
|
+
*/
|
|
450
|
+
assets?: FontAsset[];
|
|
451
|
+
}
|
|
452
|
+
interface FontAsset {
|
|
453
|
+
/**
|
|
454
|
+
* Keys for downloading different assets of a file.
|
|
455
|
+
* Default: `src`, key representing the original file's format and quality.
|
|
456
|
+
* @maxLength 100
|
|
457
|
+
*/
|
|
458
|
+
assetKey?: string | null;
|
|
459
|
+
/**
|
|
460
|
+
* The URL of the font asset.
|
|
461
|
+
* @maxLength 200
|
|
462
|
+
*/
|
|
463
|
+
url?: string | null;
|
|
464
|
+
/**
|
|
465
|
+
* The format of the font asset. ttf, woff, woff2
|
|
466
|
+
* @maxLength 200
|
|
467
|
+
*/
|
|
468
|
+
format?: string | null;
|
|
469
|
+
}
|
|
383
470
|
declare enum OperationStatus {
|
|
384
471
|
/** File upload or processing failed */
|
|
385
472
|
FAILED = "FAILED",
|
|
@@ -398,6 +485,70 @@ declare enum State {
|
|
|
398
485
|
}
|
|
399
486
|
/** @enumType */
|
|
400
487
|
type StateWithLiterals = State | 'OK' | 'DELETED';
|
|
488
|
+
declare enum Namespace {
|
|
489
|
+
/** No namespaces */
|
|
490
|
+
NO_NAMESPACE = "NO_NAMESPACE",
|
|
491
|
+
/** Custom namespace */
|
|
492
|
+
OTHERS = "OTHERS",
|
|
493
|
+
/** Wix videos */
|
|
494
|
+
WIX_VIDEO = "WIX_VIDEO",
|
|
495
|
+
/** Wix music */
|
|
496
|
+
WIX_MUSIC = "WIX_MUSIC",
|
|
497
|
+
/** Albums and art store */
|
|
498
|
+
ALBUMS_AND_ART_STORE = "ALBUMS_AND_ART_STORE",
|
|
499
|
+
/** Wix ecom */
|
|
500
|
+
WIX_ECOM = "WIX_ECOM",
|
|
501
|
+
/** Photo share */
|
|
502
|
+
PHOTO_SHARE_APP = "PHOTO_SHARE_APP",
|
|
503
|
+
/** Sharing app */
|
|
504
|
+
SHARING_APP = "SHARING_APP",
|
|
505
|
+
/** Chat (engage) */
|
|
506
|
+
CHAT = "CHAT",
|
|
507
|
+
/** Logo builder */
|
|
508
|
+
LOGO_BUILDER = "LOGO_BUILDER",
|
|
509
|
+
/** Albums old namespace */
|
|
510
|
+
ALBUMS_OLD = "ALBUMS_OLD",
|
|
511
|
+
/** Mobile chat */
|
|
512
|
+
CHAT_MOBILE = "CHAT_MOBILE",
|
|
513
|
+
/** Wix Forms */
|
|
514
|
+
WIX_FORMS = "WIX_FORMS",
|
|
515
|
+
/** Wix legends */
|
|
516
|
+
WIX_LEGENDS = "WIX_LEGENDS",
|
|
517
|
+
/** Portfolio */
|
|
518
|
+
PORTFOLIO = "PORTFOLIO"
|
|
519
|
+
}
|
|
520
|
+
/** @enumType */
|
|
521
|
+
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' | 'PORTFOLIO';
|
|
522
|
+
interface IdentityInfo {
|
|
523
|
+
/** The type of the user that uploaded the file */
|
|
524
|
+
identityType?: IdentityTypeWithLiterals;
|
|
525
|
+
/**
|
|
526
|
+
* User Id. empty when UNKNOWN
|
|
527
|
+
* @format GUID
|
|
528
|
+
*/
|
|
529
|
+
identityId?: string | null;
|
|
530
|
+
}
|
|
531
|
+
declare enum IdentityType {
|
|
532
|
+
UNKNOWN = "UNKNOWN",
|
|
533
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
534
|
+
MEMBER = "MEMBER",
|
|
535
|
+
WIX_USER = "WIX_USER",
|
|
536
|
+
APP = "APP"
|
|
537
|
+
}
|
|
538
|
+
/** @enumType */
|
|
539
|
+
type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
540
|
+
interface DraftFilePublished {
|
|
541
|
+
/** The file after it was published */
|
|
542
|
+
file?: FileDescriptor;
|
|
543
|
+
/** The namespace the file was published to */
|
|
544
|
+
namespace?: NamespaceWithLiterals;
|
|
545
|
+
}
|
|
546
|
+
interface FileFailed {
|
|
547
|
+
/** External information specified in the file import or upload. */
|
|
548
|
+
externalInfo?: ExternalInfo;
|
|
549
|
+
/** Error information. */
|
|
550
|
+
error?: ApplicationError;
|
|
551
|
+
}
|
|
401
552
|
interface ExternalInfo {
|
|
402
553
|
/**
|
|
403
554
|
* External information to specify in the File Ready or File Failed events.
|
|
@@ -419,6 +570,59 @@ interface ApplicationError {
|
|
|
419
570
|
/** Data related to the error. */
|
|
420
571
|
data?: Record<string, any> | null;
|
|
421
572
|
}
|
|
573
|
+
interface FileReady {
|
|
574
|
+
/** File entity that is ready with full information. */
|
|
575
|
+
file?: FileDescriptor;
|
|
576
|
+
/** External information specified in the file import or upload. */
|
|
577
|
+
externalInfo?: ExternalInfo;
|
|
578
|
+
/** File was restored from the trash-bin. */
|
|
579
|
+
triggeredByUndelete?: boolean;
|
|
580
|
+
}
|
|
581
|
+
interface BulkAnnotateImagesRequest {
|
|
582
|
+
/**
|
|
583
|
+
* The file ids to run detection on
|
|
584
|
+
* @minSize 1
|
|
585
|
+
* @maxSize 10
|
|
586
|
+
* @maxLength 1000
|
|
587
|
+
*/
|
|
588
|
+
fileIds?: string[];
|
|
589
|
+
/**
|
|
590
|
+
* A list of detections types to fill for the image
|
|
591
|
+
* @minSize 1
|
|
592
|
+
* @maxSize 10
|
|
593
|
+
*/
|
|
594
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
595
|
+
/** When true the endpoint will detect listed information even if the image has this information */
|
|
596
|
+
overwrite?: boolean | null;
|
|
597
|
+
/** Should the response return the item following the operation */
|
|
598
|
+
returnEntity?: boolean;
|
|
599
|
+
}
|
|
600
|
+
declare enum ImageAnnotationType {
|
|
601
|
+
UNKNOWN_IMAGE_ANNOTATION_TYPE = "UNKNOWN_IMAGE_ANNOTATION_TYPE",
|
|
602
|
+
CONTAINS_TEXT = "CONTAINS_TEXT",
|
|
603
|
+
IS_ANIMATED = "IS_ANIMATED",
|
|
604
|
+
FACES = "FACES",
|
|
605
|
+
LABELS = "LABELS",
|
|
606
|
+
COLORS = "COLORS",
|
|
607
|
+
CAPTION = "CAPTION"
|
|
608
|
+
}
|
|
609
|
+
/** @enumType */
|
|
610
|
+
type ImageAnnotationTypeWithLiterals = ImageAnnotationType | 'UNKNOWN_IMAGE_ANNOTATION_TYPE' | 'CONTAINS_TEXT' | 'IS_ANIMATED' | 'FACES' | 'LABELS' | 'COLORS' | 'CAPTION';
|
|
611
|
+
interface BulkAnnotateImagesResponse {
|
|
612
|
+
/** Results of individual items */
|
|
613
|
+
results?: BulkAnnotateImageResult[];
|
|
614
|
+
/** Metadata of the operation */
|
|
615
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
616
|
+
}
|
|
617
|
+
interface BulkAnnotateImageResult {
|
|
618
|
+
/** Item metadata */
|
|
619
|
+
itemMetadata?: ItemMetadata;
|
|
620
|
+
/**
|
|
621
|
+
* The item following the operation
|
|
622
|
+
* Only returned if operation was successful and if returnEntity flag was on
|
|
623
|
+
*/
|
|
624
|
+
item?: FileDescriptor;
|
|
625
|
+
}
|
|
422
626
|
interface ItemMetadata {
|
|
423
627
|
/** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
|
|
424
628
|
id?: string | null;
|
|
@@ -530,6 +734,21 @@ interface DownloadUrl {
|
|
|
530
734
|
*/
|
|
531
735
|
assetKey?: string;
|
|
532
736
|
}
|
|
737
|
+
interface ServiceError {
|
|
738
|
+
/**
|
|
739
|
+
* Error codes are groups of related errors
|
|
740
|
+
* The error code can be used to provide additional details to wix support while debugging service errors
|
|
741
|
+
* @maxLength 200
|
|
742
|
+
*/
|
|
743
|
+
internalCode?: string | null;
|
|
744
|
+
/** Debugging information, http status code returned from wix media internal API */
|
|
745
|
+
internalHttpStatusCode?: number | null;
|
|
746
|
+
/**
|
|
747
|
+
* Optional Debugging information, error key will represent the error "family" returned from wix media internal API
|
|
748
|
+
* @maxLength 200
|
|
749
|
+
*/
|
|
750
|
+
internalKey?: string | null;
|
|
751
|
+
}
|
|
533
752
|
interface GetFileDescriptorRequest {
|
|
534
753
|
/**
|
|
535
754
|
* File ID.
|
|
@@ -573,6 +792,19 @@ interface UpdateFileDescriptorResponse {
|
|
|
573
792
|
/** Information about the updated file. */
|
|
574
793
|
file?: FileDescriptor;
|
|
575
794
|
}
|
|
795
|
+
interface UnsupportedRequestValueError {
|
|
796
|
+
/**
|
|
797
|
+
* Optional A list of allowed values
|
|
798
|
+
* @maxSize 100
|
|
799
|
+
* @maxLength 200
|
|
800
|
+
*/
|
|
801
|
+
allowedValues?: string[];
|
|
802
|
+
/**
|
|
803
|
+
* The unsupported value send in the request
|
|
804
|
+
* @maxLength 200
|
|
805
|
+
*/
|
|
806
|
+
requestValue?: string;
|
|
807
|
+
}
|
|
576
808
|
interface GenerateFileUploadUrlRequest {
|
|
577
809
|
/**
|
|
578
810
|
* File mime type.
|
|
@@ -618,6 +850,17 @@ interface GenerateFileUploadUrlRequest {
|
|
|
618
850
|
*/
|
|
619
851
|
filePath?: string | null;
|
|
620
852
|
}
|
|
853
|
+
interface ImageAnnotationConfigurations {
|
|
854
|
+
/** Whether to skip detection for the image */
|
|
855
|
+
skipDetection?: boolean | null;
|
|
856
|
+
/**
|
|
857
|
+
* A list of detections types to fill for the image
|
|
858
|
+
* If specified at least one valid annotation type should be provided
|
|
859
|
+
* Default will be all detections
|
|
860
|
+
* @maxSize 10
|
|
861
|
+
*/
|
|
862
|
+
annotationTypes?: ImageAnnotationTypeWithLiterals[];
|
|
863
|
+
}
|
|
621
864
|
interface GenerateFileUploadUrlResponse {
|
|
622
865
|
/**
|
|
623
866
|
* The URL for uploading a file to the Media Manager.
|
|
@@ -625,6 +868,54 @@ interface GenerateFileUploadUrlResponse {
|
|
|
625
868
|
*/
|
|
626
869
|
uploadUrl?: string;
|
|
627
870
|
}
|
|
871
|
+
interface SiteQuotaExceededError {
|
|
872
|
+
/**
|
|
873
|
+
* Error codes are groups of related errors
|
|
874
|
+
* The error code can be used to provide additional details to wix support while debugging service errors
|
|
875
|
+
* @maxLength 200
|
|
876
|
+
*/
|
|
877
|
+
internalCode?: string | null;
|
|
878
|
+
/** Debugging information, http status code returned from wix media internal API */
|
|
879
|
+
internalHttpStatusCode?: number | null;
|
|
880
|
+
/**
|
|
881
|
+
* Optional Debugging information, error key will represent the error "family" returned from wix media internal API
|
|
882
|
+
* @maxLength 200
|
|
883
|
+
*/
|
|
884
|
+
internalKey?: string | null;
|
|
885
|
+
/** The quota details */
|
|
886
|
+
quota?: TotalQuota;
|
|
887
|
+
}
|
|
888
|
+
interface TotalQuota {
|
|
889
|
+
/** Storage quota in bytes. */
|
|
890
|
+
storage?: string | null;
|
|
891
|
+
/** Premium plans that determine the storage quota. */
|
|
892
|
+
plans?: Plans;
|
|
893
|
+
/** Time for which the quota is relevant - When the plans were retrieved from premium */
|
|
894
|
+
timestamp?: Date | null;
|
|
895
|
+
}
|
|
896
|
+
interface Plans {
|
|
897
|
+
/** Current premium plan details. */
|
|
898
|
+
premium?: Plan;
|
|
899
|
+
/**
|
|
900
|
+
* URL for upgrading the storage quota.
|
|
901
|
+
* @format WEB_URL
|
|
902
|
+
*/
|
|
903
|
+
upgradeUrl?: string;
|
|
904
|
+
}
|
|
905
|
+
interface Plan {
|
|
906
|
+
/**
|
|
907
|
+
* Plan ID.
|
|
908
|
+
* @readonly
|
|
909
|
+
* @format GUID
|
|
910
|
+
*/
|
|
911
|
+
id?: string;
|
|
912
|
+
/** Plan name. */
|
|
913
|
+
name?: string;
|
|
914
|
+
/** Date and time when the plan was created. */
|
|
915
|
+
createdAt?: Date | null;
|
|
916
|
+
/** Date and time when the plan expires. */
|
|
917
|
+
expiresAt?: Date | null;
|
|
918
|
+
}
|
|
628
919
|
interface GenerateFileResumableUploadUrlRequest {
|
|
629
920
|
/**
|
|
630
921
|
* File mime type.
|
|
@@ -782,6 +1073,20 @@ interface BulkImportFileResult {
|
|
|
782
1073
|
/** Imported file. This field is included in the response if the operation was successful and `returnEntity` is not set to `false`. */
|
|
783
1074
|
item?: FileDescriptor;
|
|
784
1075
|
}
|
|
1076
|
+
interface BulkInternalImportFilesRequest {
|
|
1077
|
+
/**
|
|
1078
|
+
* Information about the files to import.
|
|
1079
|
+
* @minSize 1
|
|
1080
|
+
* @maxSize 5
|
|
1081
|
+
*/
|
|
1082
|
+
importFileRequests?: ImportFileRequest[];
|
|
1083
|
+
}
|
|
1084
|
+
interface BulkInternalImportFilesResponse {
|
|
1085
|
+
/** Items created by bulk action. */
|
|
1086
|
+
results?: BulkImportFileResult[];
|
|
1087
|
+
/** Bulk action metadata. */
|
|
1088
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
1089
|
+
}
|
|
785
1090
|
interface ListFilesRequest {
|
|
786
1091
|
/**
|
|
787
1092
|
* ID of the file's parent folder.
|
|
@@ -957,6 +1262,15 @@ interface GenerateVideoStreamingUrlResponse {
|
|
|
957
1262
|
/** URL for streaming a specific file in the Media Manager. */
|
|
958
1263
|
downloadUrl?: DownloadUrl;
|
|
959
1264
|
}
|
|
1265
|
+
interface GenerateWebSocketTokenRequest {
|
|
1266
|
+
}
|
|
1267
|
+
interface GenerateWebSocketTokenResponse {
|
|
1268
|
+
/**
|
|
1269
|
+
* The web socket token for the identity in the request
|
|
1270
|
+
* @maxLength 2000
|
|
1271
|
+
*/
|
|
1272
|
+
token?: string;
|
|
1273
|
+
}
|
|
960
1274
|
interface BulkDeleteFilesRequest {
|
|
961
1275
|
/**
|
|
962
1276
|
* IDs of the files to move to the Media Manager's trash bin.
|
|
@@ -1022,6 +1336,281 @@ interface ListDeletedFilesResponse {
|
|
|
1022
1336
|
/** The next cursor if it exists. */
|
|
1023
1337
|
nextCursor?: PagingMetadataV2;
|
|
1024
1338
|
}
|
|
1339
|
+
interface BulkPublishDraftFilesRequest {
|
|
1340
|
+
/**
|
|
1341
|
+
* IDs of the draft files to be published.
|
|
1342
|
+
*
|
|
1343
|
+
* You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
|
|
1344
|
+
* Learn more about the file ID parameter ([SDK](https://dev.wix.com/docs/sdk/backend-modules/media/file-and-folder-ids#file-id-as-a-parameter) | [REST](https://dev.wix.com/docs/rest/assets/media/media-manager/files/file-id#file-id-as-a-parameter)).
|
|
1345
|
+
* @maxSize 100
|
|
1346
|
+
* @maxLength 1000
|
|
1347
|
+
*/
|
|
1348
|
+
fileIds?: string[];
|
|
1349
|
+
/**
|
|
1350
|
+
* The namespace the files will be published to
|
|
1351
|
+
* Note, private files must have a namespace
|
|
1352
|
+
*/
|
|
1353
|
+
namespace?: NamespaceWithLiterals;
|
|
1354
|
+
/**
|
|
1355
|
+
* ID of the file's parent folder. <br />
|
|
1356
|
+
* This folder is the path root for the `filePath`. <br />
|
|
1357
|
+
* Default: `media-root`.
|
|
1358
|
+
* @maxLength 100
|
|
1359
|
+
*/
|
|
1360
|
+
parentFolderId?: string | null;
|
|
1361
|
+
/**
|
|
1362
|
+
* Path to the folder where the file will be stored.
|
|
1363
|
+
* For example, `/videos/2024/december`. <br/>
|
|
1364
|
+
* If `parentFolderId` is defined, the parent folder is used as the path root. Otherwise, the root is `media-root`.
|
|
1365
|
+
* The folders in the path will be created if they don't already exist. <br />
|
|
1366
|
+
* @maxLength 100
|
|
1367
|
+
*/
|
|
1368
|
+
filePath?: string | null;
|
|
1369
|
+
/** Should the response return the item following the operation */
|
|
1370
|
+
returnEntity?: boolean;
|
|
1371
|
+
}
|
|
1372
|
+
interface BulkPublishDraftFilesResponse {
|
|
1373
|
+
/** Results of individual items */
|
|
1374
|
+
results?: BulkPublishDraftFileResult[];
|
|
1375
|
+
/** Metadata of the operation */
|
|
1376
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
1377
|
+
}
|
|
1378
|
+
interface BulkPublishDraftFileResult {
|
|
1379
|
+
/** Item metadata */
|
|
1380
|
+
itemMetadata?: ItemMetadata;
|
|
1381
|
+
/**
|
|
1382
|
+
* The item following the operation
|
|
1383
|
+
* Only returned if operation was successful and if returnEntity flag was on
|
|
1384
|
+
*/
|
|
1385
|
+
item?: FileDescriptor;
|
|
1386
|
+
}
|
|
1387
|
+
interface UpdateFileRequest {
|
|
1388
|
+
/**
|
|
1389
|
+
* ID of the file to update.
|
|
1390
|
+
*
|
|
1391
|
+
* You can also specify the file's Wix media URL. For example, `wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032`.
|
|
1392
|
+
* Learn more about the file ID parameter ([SDK](https://dev.wix.com/docs/sdk/backend-modules/media/file-and-folder-ids#file-id-as-a-parameter) | [REST](https://dev.wix.com/docs/rest/assets/media/media-manager/files/file-id#file-id-as-a-parameter)).
|
|
1393
|
+
* @maxLength 1000
|
|
1394
|
+
*/
|
|
1395
|
+
fileId?: string;
|
|
1396
|
+
/**
|
|
1397
|
+
* File name that appears in the Media Manager.
|
|
1398
|
+
* @maxLength 200
|
|
1399
|
+
*/
|
|
1400
|
+
displayName?: string | null;
|
|
1401
|
+
/**
|
|
1402
|
+
* ID of the file's parent folder. <br />
|
|
1403
|
+
* Default: `media-root`.
|
|
1404
|
+
* @maxLength 100
|
|
1405
|
+
*/
|
|
1406
|
+
parentFolderId?: string | null;
|
|
1407
|
+
/**
|
|
1408
|
+
* Labels assigned to media files that describe and categorize them. Provided by the Wix user, or generated by [Google Vision API](https://cloud.google.com/vision/docs/drag-and-drop) for images.
|
|
1409
|
+
* @maxSize 500
|
|
1410
|
+
* @maxLength 200
|
|
1411
|
+
*/
|
|
1412
|
+
labels?: string[] | null;
|
|
1413
|
+
}
|
|
1414
|
+
interface UpdateFileResponse {
|
|
1415
|
+
/** Information about the updated file. */
|
|
1416
|
+
file?: FileDescriptor;
|
|
1417
|
+
}
|
|
1418
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
1419
|
+
createdEvent?: EntityCreatedEvent;
|
|
1420
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
1421
|
+
deletedEvent?: EntityDeletedEvent;
|
|
1422
|
+
actionEvent?: ActionEvent;
|
|
1423
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
1424
|
+
id?: string;
|
|
1425
|
+
/**
|
|
1426
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
1427
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
1428
|
+
*/
|
|
1429
|
+
entityFqdn?: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
1432
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
1433
|
+
*/
|
|
1434
|
+
slug?: string;
|
|
1435
|
+
/** ID of the entity associated with the event. */
|
|
1436
|
+
entityId?: string;
|
|
1437
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
1438
|
+
eventTime?: Date | null;
|
|
1439
|
+
/**
|
|
1440
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
1441
|
+
* (for example, GDPR).
|
|
1442
|
+
*/
|
|
1443
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
1444
|
+
/** If present, indicates the action that triggered the event. */
|
|
1445
|
+
originatedFrom?: string | null;
|
|
1446
|
+
/**
|
|
1447
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
1448
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
1449
|
+
*/
|
|
1450
|
+
entityEventSequence?: string | null;
|
|
1451
|
+
}
|
|
1452
|
+
/** @oneof */
|
|
1453
|
+
interface DomainEventBodyOneOf {
|
|
1454
|
+
createdEvent?: EntityCreatedEvent;
|
|
1455
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
1456
|
+
deletedEvent?: EntityDeletedEvent;
|
|
1457
|
+
actionEvent?: ActionEvent;
|
|
1458
|
+
}
|
|
1459
|
+
interface EntityCreatedEvent {
|
|
1460
|
+
entityAsJson?: string;
|
|
1461
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
1462
|
+
restoreInfo?: RestoreInfo;
|
|
1463
|
+
}
|
|
1464
|
+
interface RestoreInfo {
|
|
1465
|
+
deletedDate?: Date | null;
|
|
1466
|
+
}
|
|
1467
|
+
interface EntityUpdatedEvent {
|
|
1468
|
+
/**
|
|
1469
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
1470
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
1471
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
1472
|
+
*/
|
|
1473
|
+
currentEntityAsJson?: string;
|
|
1474
|
+
}
|
|
1475
|
+
interface EntityDeletedEvent {
|
|
1476
|
+
/** Entity that was deleted. */
|
|
1477
|
+
deletedEntityAsJson?: string | null;
|
|
1478
|
+
}
|
|
1479
|
+
interface ActionEvent {
|
|
1480
|
+
bodyAsJson?: string;
|
|
1481
|
+
}
|
|
1482
|
+
interface MessageEnvelope {
|
|
1483
|
+
/**
|
|
1484
|
+
* App instance ID.
|
|
1485
|
+
* @format GUID
|
|
1486
|
+
*/
|
|
1487
|
+
instanceId?: string | null;
|
|
1488
|
+
/**
|
|
1489
|
+
* Event type.
|
|
1490
|
+
* @maxLength 150
|
|
1491
|
+
*/
|
|
1492
|
+
eventType?: string;
|
|
1493
|
+
/** The identification type and identity data. */
|
|
1494
|
+
identity?: IdentificationData;
|
|
1495
|
+
/** Stringify payload. */
|
|
1496
|
+
data?: string;
|
|
1497
|
+
}
|
|
1498
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1499
|
+
/**
|
|
1500
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1501
|
+
* @format GUID
|
|
1502
|
+
*/
|
|
1503
|
+
anonymousVisitorId?: string;
|
|
1504
|
+
/**
|
|
1505
|
+
* ID of a site visitor that has logged in to the site.
|
|
1506
|
+
* @format GUID
|
|
1507
|
+
*/
|
|
1508
|
+
memberId?: string;
|
|
1509
|
+
/**
|
|
1510
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1511
|
+
* @format GUID
|
|
1512
|
+
*/
|
|
1513
|
+
wixUserId?: string;
|
|
1514
|
+
/**
|
|
1515
|
+
* ID of an app.
|
|
1516
|
+
* @format GUID
|
|
1517
|
+
*/
|
|
1518
|
+
appId?: string;
|
|
1519
|
+
/** @readonly */
|
|
1520
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1521
|
+
}
|
|
1522
|
+
/** @oneof */
|
|
1523
|
+
interface IdentificationDataIdOneOf {
|
|
1524
|
+
/**
|
|
1525
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1526
|
+
* @format GUID
|
|
1527
|
+
*/
|
|
1528
|
+
anonymousVisitorId?: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* ID of a site visitor that has logged in to the site.
|
|
1531
|
+
* @format GUID
|
|
1532
|
+
*/
|
|
1533
|
+
memberId?: string;
|
|
1534
|
+
/**
|
|
1535
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1536
|
+
* @format GUID
|
|
1537
|
+
*/
|
|
1538
|
+
wixUserId?: string;
|
|
1539
|
+
/**
|
|
1540
|
+
* ID of an app.
|
|
1541
|
+
* @format GUID
|
|
1542
|
+
*/
|
|
1543
|
+
appId?: string;
|
|
1544
|
+
}
|
|
1545
|
+
declare enum WebhookIdentityType {
|
|
1546
|
+
UNKNOWN = "UNKNOWN",
|
|
1547
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
1548
|
+
MEMBER = "MEMBER",
|
|
1549
|
+
WIX_USER = "WIX_USER",
|
|
1550
|
+
APP = "APP"
|
|
1551
|
+
}
|
|
1552
|
+
/** @enumType */
|
|
1553
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1554
|
+
/** @docsIgnore */
|
|
1555
|
+
type GenerateFileDownloadUrlValidationErrors = {
|
|
1556
|
+
ruleName?: 'INVALID_ASSET_KEY';
|
|
1557
|
+
};
|
|
1558
|
+
/** @docsIgnore */
|
|
1559
|
+
type GetFileDescriptorValidationErrors = {
|
|
1560
|
+
ruleName?: 'RESOURCE_NOT_FOUND';
|
|
1561
|
+
};
|
|
1562
|
+
/** @docsIgnore */
|
|
1563
|
+
type GetFileDescriptorsValidationErrors = {
|
|
1564
|
+
ruleName?: 'RESOURCE_NOT_FOUND';
|
|
1565
|
+
};
|
|
1566
|
+
/** @docsIgnore */
|
|
1567
|
+
type UpdateFileDescriptorValidationErrors = {
|
|
1568
|
+
ruleName?: 'FIELD_MASK_IS_EMPTY_OR_MISSING';
|
|
1569
|
+
};
|
|
1570
|
+
/** @docsIgnore */
|
|
1571
|
+
type GenerateFileUploadUrlValidationErrors = {
|
|
1572
|
+
ruleName?: 'MISMATCH_MIME_TYPE';
|
|
1573
|
+
} | {
|
|
1574
|
+
ruleName?: 'ZERO_FILE_SIZE';
|
|
1575
|
+
} | {
|
|
1576
|
+
ruleName?: 'UNSUPPORTED_FILE_FORMAT';
|
|
1577
|
+
} | {
|
|
1578
|
+
ruleName?: 'FILE_SIZE_OVER_LIMIT';
|
|
1579
|
+
} | {
|
|
1580
|
+
ruleName?: 'SITE_QUOTA_EXCEEDED';
|
|
1581
|
+
};
|
|
1582
|
+
/** @docsIgnore */
|
|
1583
|
+
type GenerateFileResumableUploadUrlValidationErrors = {
|
|
1584
|
+
ruleName?: 'MISMATCH_MIME_TYPE';
|
|
1585
|
+
} | {
|
|
1586
|
+
ruleName?: 'ZERO_FILE_SIZE';
|
|
1587
|
+
} | {
|
|
1588
|
+
ruleName?: 'UNSUPPORTED_FILE_FORMAT';
|
|
1589
|
+
} | {
|
|
1590
|
+
ruleName?: 'FILE_SIZE_OVER_LIMIT';
|
|
1591
|
+
};
|
|
1592
|
+
/** @docsIgnore */
|
|
1593
|
+
type ImportFileValidationErrors = {
|
|
1594
|
+
ruleName?: 'SITE_QUOTA_EXCEEDED';
|
|
1595
|
+
};
|
|
1596
|
+
/** @docsIgnore */
|
|
1597
|
+
type ListFilesValidationErrors = {
|
|
1598
|
+
ruleName?: 'UNSUPPORTED_MEDIA_TYPE';
|
|
1599
|
+
} | {
|
|
1600
|
+
ruleName?: 'UNSUPPORTED_SORT_VALUE';
|
|
1601
|
+
};
|
|
1602
|
+
/** @docsIgnore */
|
|
1603
|
+
type SearchFilesValidationErrors = {
|
|
1604
|
+
ruleName?: 'UNSUPPORTED_MEDIA_TYPE';
|
|
1605
|
+
} | {
|
|
1606
|
+
ruleName?: 'UNSUPPORTED_SORT_VALUE';
|
|
1607
|
+
};
|
|
1608
|
+
/** @docsIgnore */
|
|
1609
|
+
type ListDeletedFilesValidationErrors = {
|
|
1610
|
+
ruleName?: 'UNSUPPORTED_MEDIA_TYPE';
|
|
1611
|
+
} | {
|
|
1612
|
+
ruleName?: 'UNSUPPORTED_SORT_VALUE';
|
|
1613
|
+
};
|
|
1025
1614
|
|
|
1026
1615
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
1027
1616
|
getUrl: (context: any) => string;
|
|
@@ -1050,4 +1639,4 @@ declare function bulkDeleteFiles(): __PublicMethodMetaInfo<'POST', {}, BulkDelet
|
|
|
1050
1639
|
declare function bulkRestoreFilesFromTrashBin(): __PublicMethodMetaInfo<'POST', {}, BulkRestoreFilesFromTrashBinRequest$1, BulkRestoreFilesFromTrashBinRequest, BulkRestoreFilesFromTrashBinResponse$1, BulkRestoreFilesFromTrashBinResponse>;
|
|
1051
1640
|
declare function listDeletedFiles(): __PublicMethodMetaInfo<'GET', {}, ListDeletedFilesRequest$1, ListDeletedFilesRequest, ListDeletedFilesResponse$1, ListDeletedFilesResponse>;
|
|
1052
1641
|
|
|
1053
|
-
export { type __PublicMethodMetaInfo, bulkDeleteFiles, bulkImportFile, bulkImportFiles, bulkRestoreFilesFromTrashBin, generateFileDownloadUrl, generateFileResumableUploadUrl, generateFileUploadUrl, generateFilesDownloadUrl, generateVideoStreamingUrl, getFileDescriptor, getFileDescriptors, importFile, listDeletedFiles, listFiles, searchFiles, updateFileDescriptor };
|
|
1642
|
+
export { type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type Archive as ArchiveOriginal, type Audio as AudioOriginal, type AudioV2 as AudioV2Original, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkAnnotateImageResult as BulkAnnotateImageResultOriginal, type BulkAnnotateImagesRequest as BulkAnnotateImagesRequestOriginal, type BulkAnnotateImagesResponse as BulkAnnotateImagesResponseOriginal, type BulkDeleteFilesRequest as BulkDeleteFilesRequestOriginal, type BulkDeleteFilesResponse as BulkDeleteFilesResponseOriginal, type BulkImportFileRequest as BulkImportFileRequestOriginal, type BulkImportFileResponse as BulkImportFileResponseOriginal, type BulkImportFileResult as BulkImportFileResultOriginal, type BulkImportFilesRequest as BulkImportFilesRequestOriginal, type BulkImportFilesResponse as BulkImportFilesResponseOriginal, type BulkInternalImportFilesRequest as BulkInternalImportFilesRequestOriginal, type BulkInternalImportFilesResponse as BulkInternalImportFilesResponseOriginal, type BulkPublishDraftFileResult as BulkPublishDraftFileResultOriginal, type BulkPublishDraftFilesRequest as BulkPublishDraftFilesRequestOriginal, type BulkPublishDraftFilesResponse as BulkPublishDraftFilesResponseOriginal, type BulkRestoreFilesFromTrashBinRequest as BulkRestoreFilesFromTrashBinRequestOriginal, type BulkRestoreFilesFromTrashBinResponse as BulkRestoreFilesFromTrashBinResponseOriginal, type Color as ColorOriginal, type ColorRGB as ColorRGBOriginal, type Colors as ColorsOriginal, ContentDisposition as ContentDispositionOriginal, type ContentDispositionWithLiterals as ContentDispositionWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type Document as DocumentOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DownloadUrl as DownloadUrlOriginal, type DraftFilePublished as DraftFilePublishedOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExternalInfo as ExternalInfoOriginal, type FaceRecognition as FaceRecognitionOriginal, type FileDescriptor as FileDescriptorOriginal, type FileFailed as FileFailedOriginal, type FileMediaMediaOneOf as FileMediaMediaOneOfOriginal, type FileMedia as FileMediaOriginal, type FileReady as FileReadyOriginal, type FocalPoint as FocalPointOriginal, type FontAsset as FontAssetOriginal, type FontMedia as FontMediaOriginal, type GenerateFileDownloadUrlRequest as GenerateFileDownloadUrlRequestOriginal, type GenerateFileDownloadUrlResponse as GenerateFileDownloadUrlResponseOriginal, type GenerateFileDownloadUrlValidationErrors as GenerateFileDownloadUrlValidationErrorsOriginal, type GenerateFileResumableUploadUrlRequest as GenerateFileResumableUploadUrlRequestOriginal, type GenerateFileResumableUploadUrlResponse as GenerateFileResumableUploadUrlResponseOriginal, type GenerateFileResumableUploadUrlValidationErrors as GenerateFileResumableUploadUrlValidationErrorsOriginal, type GenerateFileUploadUrlRequest as GenerateFileUploadUrlRequestOriginal, type GenerateFileUploadUrlResponse as GenerateFileUploadUrlResponseOriginal, type GenerateFileUploadUrlValidationErrors as GenerateFileUploadUrlValidationErrorsOriginal, type GenerateFilesDownloadUrlRequest as GenerateFilesDownloadUrlRequestOriginal, type GenerateFilesDownloadUrlResponse as GenerateFilesDownloadUrlResponseOriginal, type GenerateVideoStreamingUrlRequest as GenerateVideoStreamingUrlRequestOriginal, type GenerateVideoStreamingUrlResponse as GenerateVideoStreamingUrlResponseOriginal, type GenerateWebSocketTokenRequest as GenerateWebSocketTokenRequestOriginal, type GenerateWebSocketTokenResponse as GenerateWebSocketTokenResponseOriginal, type GetFileDescriptorRequest as GetFileDescriptorRequestOriginal, type GetFileDescriptorResponse as GetFileDescriptorResponseOriginal, type GetFileDescriptorValidationErrors as GetFileDescriptorValidationErrorsOriginal, type GetFileDescriptorsRequest as GetFileDescriptorsRequestOriginal, type GetFileDescriptorsResponse as GetFileDescriptorsResponseOriginal, type GetFileDescriptorsValidationErrors as GetFileDescriptorsValidationErrorsOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type IdentityInfo as IdentityInfoOriginal, IdentityType as IdentityTypeOriginal, type IdentityTypeWithLiterals as IdentityTypeWithLiteralsOriginal, type ImageAnnotationConfigurations as ImageAnnotationConfigurationsOriginal, ImageAnnotationType as ImageAnnotationTypeOriginal, type ImageAnnotationTypeWithLiterals as ImageAnnotationTypeWithLiteralsOriginal, type ImageMedia as ImageMediaOriginal, type Image as ImageOriginal, type ImportFileRequest as ImportFileRequestOriginal, type ImportFileResponse as ImportFileResponseOriginal, type ImportFileValidationErrors as ImportFileValidationErrorsOriginal, type ItemMetadata as ItemMetadataOriginal, type ListDeletedFilesRequest as ListDeletedFilesRequestOriginal, type ListDeletedFilesResponse as ListDeletedFilesResponseOriginal, type ListDeletedFilesValidationErrors as ListDeletedFilesValidationErrorsOriginal, type ListFilesRequest as ListFilesRequestOriginal, type ListFilesResponse as ListFilesResponseOriginal, type ListFilesValidationErrors as ListFilesValidationErrorsOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Model3D as Model3DOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, OperationStatus as OperationStatusOriginal, type OperationStatusWithLiterals as OperationStatusWithLiteralsOriginal, type OtherMedia as OtherMediaOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Plan as PlanOriginal, type Plans as PlansOriginal, type RestoreInfo as RestoreInfoOriginal, RootFolder as RootFolderOriginal, type RootFolderWithLiterals as RootFolderWithLiteralsOriginal, type SearchFilesRequest as SearchFilesRequestOriginal, type SearchFilesResponse as SearchFilesResponseOriginal, type SearchFilesValidationErrors as SearchFilesValidationErrorsOriginal, type ServiceError as ServiceErrorOriginal, type SiteQuotaExceededError as SiteQuotaExceededErrorOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, StreamFormat as StreamFormatOriginal, type StreamFormatWithLiterals as StreamFormatWithLiteralsOriginal, type TotalQuota as TotalQuotaOriginal, type UnsupportedRequestValueError as UnsupportedRequestValueErrorOriginal, type UpdateFileDescriptorRequest as UpdateFileDescriptorRequestOriginal, type UpdateFileDescriptorResponse as UpdateFileDescriptorResponseOriginal, type UpdateFileDescriptorValidationErrors as UpdateFileDescriptorValidationErrorsOriginal, type UpdateFileRequest as UpdateFileRequestOriginal, type UpdateFileResponse as UpdateFileResponseOriginal, UploadProtocol as UploadProtocolOriginal, type UploadProtocolWithLiterals as UploadProtocolWithLiteralsOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteFiles, bulkImportFile, bulkImportFiles, bulkRestoreFilesFromTrashBin, generateFileDownloadUrl, generateFileResumableUploadUrl, generateFileUploadUrl, generateFilesDownloadUrl, generateVideoStreamingUrl, getFileDescriptor, getFileDescriptors, importFile, listDeletedFiles, listFiles, searchFiles, updateFileDescriptor };
|