@cesdk/cesdk-js 1.60.0-rc.1 → 1.60.0-rc.3

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
@@ -1327,6 +1327,7 @@ declare class CreativeEditorSDK {
1327
1327
  * the given mime types.
1328
1328
  * @category Upload Operations
1329
1329
  * @experimental This API is experimental and may change or be removed in future versions.
1330
+ * @deprecated This API will be removed in future versions. Please use the `engine.editor.getSetting('upload/supportedMimeTypes')` to check for supported mime types instead.
1330
1331
  */
1331
1332
  unstable_supportsUpload(mimeTypes?: string | string[]): boolean;
1332
1333
  /**
@@ -1336,6 +1337,7 @@ declare class CreativeEditorSDK {
1336
1337
  * @param file - The file to upload
1337
1338
  * @param onProgress - A callback to track the progress of the upload
1338
1339
  * @experimental This API is experimental and may change or be removed in future versions.
1340
+ * @deprecated This API will be removed in future versions. Please use the `uploadFile` action instead.
1339
1341
  */
1340
1342
  unstable_upload(file: File, onProgress: (progress: number) => void): Promise<AssetDefinition>;
1341
1343
  /**