@adobe/premierepro 26.3.0-beta.19 → 26.3.0-beta.39

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/premierepro",
3
- "version": "26.3.0-beta.19",
3
+ "version": "26.3.0-beta.39",
4
4
  "description": "The TypeScript definitions and declarations for UXP APIs in Premiere",
5
5
  "license": "Apache-2.0",
6
6
  "bugs": {
@@ -460,6 +460,13 @@ export declare type AudioTrackStatic = {
460
460
  };
461
461
 
462
462
  export declare type AudioTrack = {
463
+ /**
464
+ * Action to change the name of the track
465
+ *
466
+ * @param name
467
+ */
468
+ createSetNameAction(name: string): object;
469
+
463
470
  /**
464
471
  * sets the mute state of the track to muted/unmuted
465
472
  *
@@ -509,6 +516,13 @@ export declare type AudioTrack = {
509
516
  export declare type CaptionTrackStatic = {};
510
517
 
511
518
  export declare type CaptionTrack = {
519
+ /**
520
+ * Action to change the name of the track
521
+ *
522
+ * @param name
523
+ */
524
+ createSetNameAction(name: string): object;
525
+
512
526
  /**
513
527
  * sets the mute state of the track to muted/unmuted
514
528
  *
@@ -1741,6 +1755,12 @@ export declare type Marker = {
1741
1755
  * @param comments
1742
1756
  */
1743
1757
  createSetCommentsAction(comments: string): Action;
1758
+
1759
+ /**
1760
+ * The unique identifier of the marker.
1761
+ * @readonly
1762
+ */
1763
+ readonly guid: Guid;
1744
1764
  };
1745
1765
 
1746
1766
  export declare type MarkersStatic = {
@@ -3996,6 +4016,13 @@ export declare type VideoTrackStatic = {
3996
4016
  };
3997
4017
 
3998
4018
  export declare type VideoTrack = {
4019
+ /**
4020
+ * Action to change the name of the track
4021
+ *
4022
+ * @param name
4023
+ */
4024
+ createSetNameAction(name: string): object;
4025
+
3999
4026
  /**
4000
4027
  * sets the mute state of the track to muted/unmuted
4001
4028
  *