@adobe/premierepro 26.3.0-beta.29 → 26.3.0-beta.43

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.29",
3
+ "version": "26.3.0-beta.43",
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
  *
@@ -2147,6 +2161,14 @@ export declare type Project = {
2147
2161
  */
2148
2162
  createSequence(name: string, presetPath?: string): Promise<Sequence>;
2149
2163
 
2164
+ /**
2165
+ * Create a new sequence with a preset path
2166
+ *
2167
+ * @param name
2168
+ * @param presetPath
2169
+ */
2170
+ createSequenceWithPresetPath(name: string, presetPath: string): Promise<Sequence>;
2171
+
2150
2172
  /**
2151
2173
  * Create a new sequence with a given name and medias
2152
2174
  *
@@ -2793,7 +2815,7 @@ export declare type Sequence = {
2793
2815
  *
2794
2816
  * @param trackItemSelection
2795
2817
  */
2796
- setSelection(trackItemSelection: TrackItemSelection): Promise<boolean>;
2818
+ setSelection(trackItemSelection: TrackItemSelection): boolean;
2797
2819
 
2798
2820
  /**
2799
2821
  * Get video track count from this sequence
@@ -4002,6 +4024,13 @@ export declare type VideoTrackStatic = {
4002
4024
  };
4003
4025
 
4004
4026
  export declare type VideoTrack = {
4027
+ /**
4028
+ * Action to change the name of the track
4029
+ *
4030
+ * @param name
4031
+ */
4032
+ createSetNameAction(name: string): object;
4033
+
4005
4034
  /**
4006
4035
  * sets the mute state of the track to muted/unmuted
4007
4036
  *