@wix/auto_sdk_media_files 1.0.49 → 1.0.51

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.
@@ -54,9 +54,6 @@ interface FileDescriptor {
54
54
  media?: FileMedia;
55
55
  /**
56
56
  * Status of the file that was uploaded.
57
- * * `FAILED`: The file failed to upload, for example, during media post processing.
58
- * * `READY`: The file uploaded, finished all processing, and is ready for use.
59
- * * `PENDING`: The file is processing and the URLs are not yet available. This response is returned when importing a file.
60
57
  * @readonly
61
58
  */
62
59
  operationStatus?: OperationStatusWithLiterals;
@@ -468,11 +465,11 @@ interface FontAsset {
468
465
  format?: string | null;
469
466
  }
470
467
  declare enum OperationStatus {
471
- /** File upload or processing failed */
468
+ /** The file failed to upload, for example, during media post processing. */
472
469
  FAILED = "FAILED",
473
- /** File is ready for consumption */
470
+ /** The file uploaded, finished all processing, and is ready for use. */
474
471
  READY = "READY",
475
- /** File is waiting for processing or currently being processed */
472
+ /** The file is processing and the URLs are not yet available. This response is returned when importing a file. */
476
473
  PENDING = "PENDING"
477
474
  }
478
475
  /** @enumType */