@adobe/ccweb-add-on-sdk-types 1.6.0 → 1.6.1
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.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"author": "Adobe",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Type definitions for Adobe Creative Cloud Web Add-on SDK.",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"url": "https://github.com/adobe/create-ccweb-add-on"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"tslib": "2.
|
|
41
|
+
"tslib": "2.6.2",
|
|
42
42
|
"gl-matrix": "3.3.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/node": "16.
|
|
45
|
+
"@types/node": "16.18.36",
|
|
46
46
|
"prettier": "2.8.0",
|
|
47
|
-
"ts-node": "10.9.
|
|
48
|
-
"typescript": "4.
|
|
47
|
+
"ts-node": "10.9.2",
|
|
48
|
+
"typescript": "5.4.5"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"clean": "",
|
package/ui/ui-sdk.d.ts
CHANGED
|
@@ -621,6 +621,7 @@ declare interface Document_2 {
|
|
|
621
621
|
* Add audio to the current page
|
|
622
622
|
*/
|
|
623
623
|
addAudio(blob: Blob, attributes: MediaAttributes): Promise<void>;
|
|
624
|
+
|
|
624
625
|
/**
|
|
625
626
|
* Create renditions
|
|
626
627
|
*/
|
|
@@ -906,6 +907,10 @@ export declare interface MediaAttributes {
|
|
|
906
907
|
* Media title
|
|
907
908
|
*/
|
|
908
909
|
title: string;
|
|
910
|
+
/**
|
|
911
|
+
* Media author
|
|
912
|
+
*/
|
|
913
|
+
author?: string;
|
|
909
914
|
}
|
|
910
915
|
|
|
911
916
|
/**
|
|
@@ -1499,4 +1504,3 @@ export declare enum VideoResolution {
|
|
|
1499
1504
|
}
|
|
1500
1505
|
|
|
1501
1506
|
export {};
|
|
1502
|
-
|