@cesdk/cesdk-js 1.61.0-nightly.20250914 → 1.61.0-nightly.20250916

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/index.d.ts CHANGED
@@ -2645,6 +2645,7 @@ declare class CreativeEditorSDK {
2645
2645
  * the given mime types.
2646
2646
  * @category Upload Operations
2647
2647
  * @experimental This API is experimental and may change or be removed in future versions.
2648
+ * @deprecated This API will be removed in future versions. Please use the `engine.editor.getSetting('upload/supportedMimeTypes')` to check for supported mime types instead.
2648
2649
  */
2649
2650
  unstable_supportsUpload(mimeTypes?: string | string[]): boolean;
2650
2651
  /**
@@ -2654,6 +2655,7 @@ declare class CreativeEditorSDK {
2654
2655
  * @param file - The file to upload
2655
2656
  * @param onProgress - A callback to track the progress of the upload
2656
2657
  * @experimental This API is experimental and may change or be removed in future versions.
2658
+ * @deprecated This API will be removed in future versions. Please use the `uploadFile` action instead.
2657
2659
  */
2658
2660
  unstable_upload(file: File, onProgress: (progress: number) => void): Promise<AssetDefinition>;
2659
2661
  /**