@adobe/ccweb-add-on-sdk-types 1.26.0 → 1.27.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/ccweb-add-on-sdk-types",
3
- "version": "1.26.0",
3
+ "version": "1.27.0",
4
4
  "author": "Adobe",
5
5
  "license": "MIT",
6
6
  "description": "Type definitions for Adobe Creative Cloud Web Add-on SDK.",
@@ -1080,9 +1080,18 @@ export declare class ImageRectangleNode extends MediaRectangleNode {
1080
1080
  * **IMPORTANT:** This is currently ***experimental only*** and should not be used in any add-ons you will be distributing until it has been declared stable. To use it, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../../../manifest/index.md#requirements) section of the `manifest.json`.
1081
1081
  *
1082
1082
  * @experimental
1083
- * Fetches the bitmap image resource used by this node. This will wait for the bitmap to be available if necessary.
1083
+ * Fetches the bitmap image resource used by this node. Waits up to a minute for the bitmap to be available if necessary.
1084
1084
  */
1085
1085
  fetchBitmapImage(): Promise<BitmapImage>;
1086
+ /**
1087
+ * <InlineAlert slots="text" variant="warning"/>
1088
+ *
1089
+ * **IMPORTANT:** This is currently ***experimental only*** and should not be used in any add-ons you will be distributing until it has been declared stable. To use it, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../../../manifest/index.md#requirements) section of the `manifest.json`.
1090
+ *
1091
+ * @experimental
1092
+ * Returns true if the media can be exported based on the user's entitlements.
1093
+ */
1094
+ canExportMedia(): boolean;
1086
1095
  }
1087
1096
 
1088
1097
  /**
package/ui/ui-sdk.d.ts CHANGED
@@ -912,7 +912,6 @@ declare interface Document_2 {
912
912
  */
913
913
  getPagesMetadata(options: PageMetadataOptions): Promise<PageMetadata[]>;
914
914
  /**
915
- * @experimental - Experimental API
916
915
  * Get the currently selected page ids.
917
916
  */
918
917
  getSelectedPageIds(): Promise<string[]>;