@cesdk/cesdk-js 1.9.1 → 1.9.2

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
@@ -496,6 +496,11 @@ declare interface AssetsQueryResult_2 {
496
496
  total: number;
497
497
  }
498
498
 
499
+ /** @public */
500
+ declare interface AudioElement extends _AssetElement {
501
+ duration: number;
502
+ }
503
+
499
504
  /**
500
505
  * Bleed margin configuration options for a single design unit type.
501
506
  * @public
@@ -3462,6 +3467,15 @@ declare interface Vec3 {
3462
3467
  z: number;
3463
3468
  }
3464
3469
 
3470
+ /** @public */
3471
+ declare interface VideoElement extends _AssetElement {
3472
+ duration: number;
3473
+ size: {
3474
+ width: number;
3475
+ height: number;
3476
+ };
3477
+ }
3478
+
3465
3479
  /** @public */
3466
3480
  declare enum ViewStyle {
3467
3481
  Advanced = "advanced",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cesdk/cesdk-js",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "main": "./cesdk.umd.js",
5
5
  "types": "./index.d.ts",
6
6
  "homepage": "https://www.img.ly",