@adobe/ccweb-add-on-sdk-types 1.2.1 → 1.3.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ui/ui-sdk.d.ts +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/ccweb-add-on-sdk-types",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "author": "Adobe",
5
5
  "license": "MIT",
6
6
  "description": "Type definitions for Adobe Creative Cloud Web Add-on SDK.",
package/ui/ui-sdk.d.ts CHANGED
@@ -25,7 +25,7 @@
25
25
  /**
26
26
  * Base interface for all type of add-ons
27
27
  */
28
- export declare interface AddOn {
28
+ export declare interface AddOn extends AddOnBase {
29
29
  /**
30
30
  * Represents the current add-on runtime
31
31
  */
@@ -40,6 +40,11 @@ export declare interface AddOn {
40
40
  readonly clientStorage: ClientStorage;
41
41
  }
42
42
 
43
+ /**
44
+ * Interface that represents the APIs directly exposed by the AddOn interface
45
+ */
46
+ declare interface AddOnBase {}
47
+
43
48
  /**
44
49
  * @public
45
50
  * The main API Interface exposed by this SDK to the consuming Add-on code.