@wix/auto_sdk_media_files 1.0.76 → 1.0.78

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.
@@ -536,6 +536,183 @@ declare enum IdentityType {
536
536
  }
537
537
  /** @enumType */
538
538
  type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
539
+ /**
540
+ * Internal-only metadata preserved from the raw PM contract that has no
541
+ * representation in the domain model. Populated during toDomain and used
542
+ * by fromDomain to reconstruct a lossless raw PM file.
543
+ */
544
+ interface FileAdditionalProperties extends FileAdditionalPropertiesMediaAdditionalPropertiesOneOf {
545
+ /** Set when the file is an audio file; preserves PM-specific audio fields. */
546
+ audio?: AudioAdditionalProperties;
547
+ /** Set when the file is a video file; preserves PM-specific video fields. */
548
+ video?: VideoAdditionalProperties;
549
+ /** Set when the file is a font file; preserves PM-specific font fields. */
550
+ font?: FontAdditionalProperties;
551
+ /** Set when the file is a document file; preserves PM-specific document fields. */
552
+ document?: DocumentAdditionalProperties;
553
+ /** Set when the file is a 3D model file; preserves PM-specific model3d fields. */
554
+ model3d?: Model3dAdditionalProperties;
555
+ /** Set when the file is an image file; preserves PM-specific image fields. */
556
+ image?: ImageAdditionalProperties;
557
+ }
558
+ /** @oneof */
559
+ interface FileAdditionalPropertiesMediaAdditionalPropertiesOneOf {
560
+ /** Set when the file is an audio file; preserves PM-specific audio fields. */
561
+ audio?: AudioAdditionalProperties;
562
+ /** Set when the file is a video file; preserves PM-specific video fields. */
563
+ video?: VideoAdditionalProperties;
564
+ /** Set when the file is a font file; preserves PM-specific font fields. */
565
+ font?: FontAdditionalProperties;
566
+ /** Set when the file is a document file; preserves PM-specific document fields. */
567
+ document?: DocumentAdditionalProperties;
568
+ /** Set when the file is a 3D model file; preserves PM-specific model3d fields. */
569
+ model3d?: Model3dAdditionalProperties;
570
+ /** Set when the file is an image file; preserves PM-specific image fields. */
571
+ image?: ImageAdditionalProperties;
572
+ }
573
+ interface AudioAdditionalProperties {
574
+ /** From PmAudioInfo.file_input.sample_rate, in Hz (e.g. 44100). */
575
+ sampleRate?: number | null;
576
+ /** From PmAudioInfo.file_input.channels (e.g. 2 for stereo). */
577
+ channels?: number | null;
578
+ /**
579
+ * Parallel array to AudioV2.assets, same sort order.
580
+ * @maxSize 10
581
+ */
582
+ assets?: AudioAssetAdditionalProperties[];
583
+ }
584
+ interface AudioAssetAdditionalProperties {
585
+ /**
586
+ * From PmAudioInfo.file_output.audio[].tag (e.g. "high").
587
+ * @maxLength 100
588
+ */
589
+ tag?: string | null;
590
+ /** From PmAudioInfo.file_output.audio[].audio_bitrate, in bits per second. */
591
+ audioBitrate?: number | null;
592
+ /**
593
+ * From PmAudioInfo.file_output.audio[].status (e.g. "READY").
594
+ * @maxLength 30
595
+ */
596
+ status?: string | null;
597
+ /**
598
+ * From PmAudioInfo.file_output.audio[].url (only populated for secure assets where PM omits the URL).
599
+ * @format WEB_URL
600
+ */
601
+ url?: string | null;
602
+ }
603
+ interface VideoAdditionalProperties {
604
+ /**
605
+ * From PmVideoInfo.file_input.fps (e.g. "25/1").
606
+ * @maxLength 10
607
+ */
608
+ fps?: string | null;
609
+ /** From PmVideoInfo.file_input.video_bitrate, in bits per second. */
610
+ videoBitrate?: number | null;
611
+ /** From PmVideoInfo.file_input.rotation, in degrees (e.g. 0, 90, 180, 270). */
612
+ rotation?: number | null;
613
+ /**
614
+ * From PmVideoInfo.file_input.display_aspect_ratio (e.g. "16:9").
615
+ * @maxLength 10
616
+ */
617
+ displayAspectRatio?: string | null;
618
+ /** From PmVideoInfo.file_input.audio_bitrate, in bits per second. */
619
+ audioBitrate?: number | null;
620
+ /**
621
+ * From PmVideoInfo.file_input.sample_aspect_ration (e.g. "1:1").
622
+ * @maxLength 10
623
+ */
624
+ sampleAspectRatio?: string | null;
625
+ /**
626
+ * Keyed by VideoResolution.assetKey (e.g. "720p.mp4", "storyboard-00001.jpg").
627
+ * Covers both file_output.video[] and file_output.storyboard[] on the raw side.
628
+ */
629
+ resolutions?: Record<string, VideoResolutionAdditionalProperties>;
630
+ /**
631
+ * Parallel array to VideoV2.posters, same sort order.
632
+ * @maxSize 10
633
+ */
634
+ posters?: ImageOutputAdditionalProperties[];
635
+ }
636
+ interface VideoResolutionAdditionalProperties {
637
+ /** From PmVideoInfo.file_output.video[].audio_bitrate or storyboard[].audio_bitrate, in bits per second. */
638
+ audioBitrate?: number | null;
639
+ /**
640
+ * From PmVideoInfo.file_output.video[].display_aspect_ratio or storyboard[].display_aspect_ratio (e.g. "16:9").
641
+ * @maxLength 10
642
+ */
643
+ displayAspectRatio?: string | null;
644
+ /**
645
+ * From PmVideoInfo.file_output.video[].fps or storyboard[].fps (e.g. "25/1").
646
+ * @maxLength 10
647
+ */
648
+ fps?: string | null;
649
+ /**
650
+ * From PmVideoInfo.file_output.video[].status or storyboard[].status (e.g. "READY").
651
+ * @maxLength 20
652
+ */
653
+ status?: string | null;
654
+ /**
655
+ * From PmVideoInfo.file_output.video[].tag or storyboard[].tag (e.g. "HD").
656
+ * @maxLength 100
657
+ */
658
+ tag?: string | null;
659
+ /** From PmVideoInfo.file_output.video[].video_bitrate or storyboard[].video_bitrate, in bits per second. */
660
+ videoBitrate?: number | null;
661
+ }
662
+ /**
663
+ * Shared additional properties for any ImageOutput in the raw PM contract
664
+ * (video poster outputs and preview outputs for document/model3d/image files).
665
+ */
666
+ interface ImageOutputAdditionalProperties {
667
+ /**
668
+ * From ImageOutput.key (e.g. "poster.0", "image.preview").
669
+ * @maxLength 100
670
+ */
671
+ key?: string | null;
672
+ /** From ImageOutput.secure. */
673
+ secure?: boolean | null;
674
+ /**
675
+ * From ImageOutput.status (e.g. "READY").
676
+ * @maxLength 30
677
+ */
678
+ status?: string | null;
679
+ /**
680
+ * From ImageOutput.format (e.g. "jpg", "png"). Absent when original raw had no format field.
681
+ * @maxLength 10
682
+ */
683
+ format?: string | null;
684
+ /**
685
+ * From ImageOutput.name. Present for model3d and some document previews; absent for video posters.
686
+ * @maxLength 200
687
+ */
688
+ name?: string | null;
689
+ }
690
+ interface FontAdditionalProperties {
691
+ /**
692
+ * Parallel array to FontMedia.assets, same sort order.
693
+ * @maxSize 10
694
+ */
695
+ assets?: FontAssetAdditionalProperties[];
696
+ }
697
+ interface FontAssetAdditionalProperties {
698
+ /**
699
+ * From PmFontInfo.file_output.font[].status (e.g. "READY").
700
+ * @maxLength 30
701
+ */
702
+ status?: string | null;
703
+ }
704
+ interface DocumentAdditionalProperties {
705
+ /** From PmDocumentInfo.file_output.image[] preview entry; preserves raw PM image-output metadata. */
706
+ preview?: ImageOutputAdditionalProperties;
707
+ }
708
+ interface Model3dAdditionalProperties {
709
+ /** From PmModel3dInfo.file_output.image[] preview entry; preserves raw PM image-output metadata. */
710
+ preview?: ImageOutputAdditionalProperties;
711
+ }
712
+ interface ImageAdditionalProperties {
713
+ /** From PmImageInfo.file_output.image[] preview entry; preserves raw PM image-output metadata. */
714
+ preview?: ImageOutputAdditionalProperties;
715
+ }
539
716
  interface DraftFilePublished {
540
717
  /** The file after it was published */
541
718
  file?: FileDescriptor;
@@ -666,7 +843,7 @@ interface GenerateFilesDownloadUrlRequest {
666
843
  * IDs of the files to download.
667
844
  *
668
845
  * You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
669
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
846
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
670
847
  * @minSize 1
671
848
  * @maxSize 1000
672
849
  * @maxLength 1000
@@ -685,7 +862,7 @@ interface GenerateFileDownloadUrlRequest {
685
862
  * File ID.
686
863
  *
687
864
  * 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`.
688
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
865
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
689
866
  * @maxLength 1000
690
867
  */
691
868
  fileId: string;
@@ -774,7 +951,7 @@ interface GetFileDescriptorRequest {
774
951
  * File ID.
775
952
  *
776
953
  * 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`.
777
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
954
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
778
955
  *
779
956
  * If you are working in REST, note that you must encode the Wix media URL to specify it as a query param because it contains special characters. For example, `wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032` becomes `wix%3Aimage%3A%2F%2Fv1%2F0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg%2Fleon.jpg%23originWidth%3D3024%26originHeight%3D4032`.
780
957
  * @maxLength 1000
@@ -790,7 +967,7 @@ interface GetFileDescriptorsRequest {
790
967
  * File IDs.
791
968
  *
792
969
  * You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
793
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
970
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
794
971
  * @minSize 1
795
972
  * @maxSize 100
796
973
  * @maxLength 1000
@@ -876,7 +1053,7 @@ interface GenerateFileUploadUrlRequest {
876
1053
  * @maxLength 100
877
1054
  */
878
1055
  parentFolderId?: string | null;
879
- /** Whether the file will be public or private. Learn more about [private files](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files). */
1056
+ /** Whether the file will be public or private. Learn more [about private files](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/private-files). */
880
1057
  private?: boolean | null;
881
1058
  /**
882
1059
  * 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.
@@ -987,7 +1164,7 @@ interface GenerateFileResumableUploadUrlRequest {
987
1164
  * @maxLength 100
988
1165
  */
989
1166
  parentFolderId?: string | null;
990
- /** Whether the file will be public or private. Learn more about [private files](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files). */
1167
+ /** Whether the file will be public or private. Learn more [about private files](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/private-files). */
991
1168
  private?: boolean | null;
992
1169
  /**
993
1170
  * 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.
@@ -1050,7 +1227,7 @@ interface ImportFileRequest {
1050
1227
  * @maxLength 100
1051
1228
  */
1052
1229
  parentFolderId?: string | null;
1053
- /** Whether the file will be public or private. Learn more about [private files](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files). */
1230
+ /** Whether the file will be public or private. Learn more [about private files](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/private-files). */
1054
1231
  private?: boolean | null;
1055
1232
  /**
1056
1233
  * 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.
@@ -1263,7 +1440,7 @@ interface SearchFilesRequest {
1263
1440
  * + `false`: Returns only public files.
1264
1441
  * + `undefined`: Returns public and private files.
1265
1442
  *
1266
- * Learn more about [private files](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files).
1443
+ * Learn more [about private files](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/private-files).
1267
1444
  */
1268
1445
  private?: boolean | null;
1269
1446
  /**
@@ -1306,7 +1483,7 @@ interface GenerateVideoStreamingUrlRequest {
1306
1483
  * File ID.
1307
1484
  *
1308
1485
  * 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`.
1309
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1486
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1310
1487
  * @maxLength 1000
1311
1488
  */
1312
1489
  fileId: string;
@@ -1338,7 +1515,7 @@ interface BulkDeleteFilesRequest {
1338
1515
  * IDs of the files to move to the Media Manager's trash bin.
1339
1516
  *
1340
1517
  * You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
1341
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1518
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1342
1519
  * @maxSize 1000
1343
1520
  * @maxLength 1000
1344
1521
  */
@@ -1356,7 +1533,7 @@ interface BulkRestoreFilesFromTrashBinRequest {
1356
1533
  * IDs of the files to restore from the Media Manager's trash bin.
1357
1534
  *
1358
1535
  * You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
1359
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1536
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1360
1537
  * @maxSize 1000
1361
1538
  * @maxLength 1000
1362
1539
  */
@@ -1376,7 +1553,7 @@ interface ListDeletedFilesRequest {
1376
1553
  * @maxSize 30
1377
1554
  */
1378
1555
  mediaTypes?: MediaTypeWithLiterals[];
1379
- /** \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](https://dev.wix.com/docs/rest/assets/media/media-manager/files/private-files). */
1556
+ /** \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](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/private-files). */
1380
1557
  private?: boolean | null;
1381
1558
  /**
1382
1559
  * Field name and order to sort by. One of: <br />
@@ -1403,7 +1580,7 @@ interface BulkPublishDraftFilesRequest {
1403
1580
  * IDs of the draft files to be published.
1404
1581
  *
1405
1582
  * You can also specify the files' Wix media URLs. For example, `["wix:image://v1/0abec0_b291a9349a0b4da59067f76287e386fb~mv2.jpg/leon.jpg#originWidth=3024&originHeight=4032"]`.
1406
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1583
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1407
1584
  * @maxSize 100
1408
1585
  * @maxLength 1000
1409
1586
  */
@@ -1451,7 +1628,7 @@ interface UpdateFileRequest {
1451
1628
  * ID of the file to update.
1452
1629
  *
1453
1630
  * 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`.
1454
- * Learn more about the [file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1631
+ * Learn more [about the file ID parameter](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/file-id).
1455
1632
  * @maxLength 1000
1456
1633
  */
1457
1634
  fileId?: string;
@@ -1478,7 +1655,12 @@ interface UpdateFileResponse {
1478
1655
  file?: FileDescriptor;
1479
1656
  }
1480
1657
  interface QueryFileDescriptorsRequest {
1481
- /** Query object */
1658
+ /**
1659
+ * Query options, including filter, sort, and cursor paging.
1660
+ *
1661
+ * See [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language) and
1662
+ * [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging) for more information.
1663
+ */
1482
1664
  query?: CursorQuery;
1483
1665
  }
1484
1666
  interface CursorQuery extends CursorQueryPagingMethodOneOf {
@@ -1517,7 +1699,11 @@ interface Sorting {
1517
1699
  * @maxLength 512
1518
1700
  */
1519
1701
  fieldName?: string;
1520
- /** Sort order. */
1702
+ /**
1703
+ * Sort order. Use `ASC` for ascending order or `DESC` for descending order.
1704
+ *
1705
+ * Default: `ASC`
1706
+ */
1521
1707
  order?: SortOrderWithLiterals;
1522
1708
  }
1523
1709
  declare enum SortOrder {
@@ -1528,11 +1714,11 @@ declare enum SortOrder {
1528
1714
  type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
1529
1715
  interface QueryFileDescriptorsResponse {
1530
1716
  /**
1531
- * The retrieved files that match the query
1717
+ * Retrieved files that match the query.
1532
1718
  * @maxSize 200
1533
1719
  */
1534
1720
  files?: FileDescriptor[];
1535
- /** The metadata for the page including the next cursor if one exist */
1721
+ /** Paging metadata, including the cursors for the next and previous pages. */
1536
1722
  pagingMetadata?: PagingMetadataV2;
1537
1723
  }
1538
1724
  interface ListRecentItemsRequest {
@@ -1792,4 +1978,4 @@ declare function bulkRestoreFilesFromTrashBin(): __PublicMethodMetaInfo<'POST',
1792
1978
  declare function listDeletedFiles(): __PublicMethodMetaInfo<'GET', {}, ListDeletedFilesRequest$1, ListDeletedFilesRequest, ListDeletedFilesResponse$1, ListDeletedFilesResponse>;
1793
1979
  declare function queryFileDescriptors(): __PublicMethodMetaInfo<'POST', {}, QueryFileDescriptorsRequest$1, QueryFileDescriptorsRequest, QueryFileDescriptorsResponse$1, QueryFileDescriptorsResponse>;
1794
1980
 
1795
- export { type AccountInfo as AccountInfoOriginal, 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, CommonSortOrder as CommonSortOrderOriginal, type CommonSortOrderWithLiterals as CommonSortOrderWithLiteralsOriginal, type CommonSorting as CommonSortingOriginal, ContentDisposition as ContentDispositionOriginal, type ContentDispositionWithLiterals as ContentDispositionWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, 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 GenerateAnimatedVectorRequest as GenerateAnimatedVectorRequestOriginal, type GenerateAnimatedVectorResponse as GenerateAnimatedVectorResponseOriginal, 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 GetSiteFileDescriptorsRequest as GetSiteFileDescriptorsRequestOriginal, type GetSiteFileDescriptorsResponse as GetSiteFileDescriptorsResponseOriginal, 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, type ListRecentItemsRequest as ListRecentItemsRequestOriginal, type ListRecentItemsResponse as ListRecentItemsResponseOriginal, 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 QueryFileDescriptorsRequest as QueryFileDescriptorsRequestOriginal, type QueryFileDescriptorsResponse as QueryFileDescriptorsResponseOriginal, 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 SyncImportFileDescriptorRequest as SyncImportFileDescriptorRequestOriginal, type SyncImportFileDescriptorResponse as SyncImportFileDescriptorResponseOriginal, type SyncImportFileRequest as SyncImportFileRequestOriginal, type SyncImportFileResponse as SyncImportFileResponseOriginal, 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, queryFileDescriptors, searchFiles, updateFileDescriptor };
1981
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type Archive as ArchiveOriginal, type AudioAdditionalProperties as AudioAdditionalPropertiesOriginal, type AudioAssetAdditionalProperties as AudioAssetAdditionalPropertiesOriginal, 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, CommonSortOrder as CommonSortOrderOriginal, type CommonSortOrderWithLiterals as CommonSortOrderWithLiteralsOriginal, type CommonSorting as CommonSortingOriginal, ContentDisposition as ContentDispositionOriginal, type ContentDispositionWithLiterals as ContentDispositionWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DocumentAdditionalProperties as DocumentAdditionalPropertiesOriginal, 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 FileAdditionalPropertiesMediaAdditionalPropertiesOneOf as FileAdditionalPropertiesMediaAdditionalPropertiesOneOfOriginal, type FileAdditionalProperties as FileAdditionalPropertiesOriginal, 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 FontAdditionalProperties as FontAdditionalPropertiesOriginal, type FontAssetAdditionalProperties as FontAssetAdditionalPropertiesOriginal, type FontAsset as FontAssetOriginal, type FontMedia as FontMediaOriginal, type GenerateAnimatedVectorRequest as GenerateAnimatedVectorRequestOriginal, type GenerateAnimatedVectorResponse as GenerateAnimatedVectorResponseOriginal, 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 GetSiteFileDescriptorsRequest as GetSiteFileDescriptorsRequestOriginal, type GetSiteFileDescriptorsResponse as GetSiteFileDescriptorsResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type IdentityInfo as IdentityInfoOriginal, IdentityType as IdentityTypeOriginal, type IdentityTypeWithLiterals as IdentityTypeWithLiteralsOriginal, type ImageAdditionalProperties as ImageAdditionalPropertiesOriginal, type ImageAnnotationConfigurations as ImageAnnotationConfigurationsOriginal, ImageAnnotationType as ImageAnnotationTypeOriginal, type ImageAnnotationTypeWithLiterals as ImageAnnotationTypeWithLiteralsOriginal, type ImageMedia as ImageMediaOriginal, type Image as ImageOriginal, type ImageOutputAdditionalProperties as ImageOutputAdditionalPropertiesOriginal, 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, type ListRecentItemsRequest as ListRecentItemsRequestOriginal, type ListRecentItemsResponse as ListRecentItemsResponseOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Model3D as Model3DOriginal, type Model3dAdditionalProperties as Model3dAdditionalPropertiesOriginal, 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 QueryFileDescriptorsRequest as QueryFileDescriptorsRequestOriginal, type QueryFileDescriptorsResponse as QueryFileDescriptorsResponseOriginal, 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 SyncImportFileDescriptorRequest as SyncImportFileDescriptorRequestOriginal, type SyncImportFileDescriptorResponse as SyncImportFileDescriptorResponseOriginal, type SyncImportFileRequest as SyncImportFileRequestOriginal, type SyncImportFileResponse as SyncImportFileResponseOriginal, 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 VideoAdditionalProperties as VideoAdditionalPropertiesOriginal, type VideoResolutionAdditionalProperties as VideoResolutionAdditionalPropertiesOriginal, 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, queryFileDescriptors, searchFiles, updateFileDescriptor };