@adobe/premierepro 26.3.0-beta.67 → 26.3.0-beta.85
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 +2 -2
- package/src/premierepro.d.ts +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/premierepro",
|
|
3
|
-
"version": "26.3.0-beta.
|
|
3
|
+
"version": "26.3.0-beta.85",
|
|
4
4
|
"description": "The TypeScript definitions and declarations for UXP APIs in Premiere",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bugs": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"sideEffects": false,
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=20.0.0"
|
|
28
28
|
},
|
|
29
29
|
"types": "./src/premierepro.d.ts",
|
|
30
30
|
"exports": {
|
package/src/premierepro.d.ts
CHANGED
|
@@ -836,6 +836,23 @@ export declare type ClipProjectItem = {
|
|
|
836
836
|
*/
|
|
837
837
|
changeMediaFilePath(newPath: string, overrideCompatibilityCheck?: boolean): Promise<boolean>;
|
|
838
838
|
|
|
839
|
+
/**
|
|
840
|
+
* Returns a deferred Action that creates a subclip when committed inside a transaction. hasHardBoundaries: if true, prevents trimming beyond the subclip boundaries. Accepts additional options (defaults to true): { takeVideo?: boolean, takeAudio?: boolean }.
|
|
841
|
+
*
|
|
842
|
+
* @param name
|
|
843
|
+
* @param startTime
|
|
844
|
+
* @param endTime
|
|
845
|
+
* @param hasHardBoundaries
|
|
846
|
+
* @param options
|
|
847
|
+
*/
|
|
848
|
+
createSubClipAction(
|
|
849
|
+
name: string,
|
|
850
|
+
startTime: TickTime,
|
|
851
|
+
endTime: TickTime,
|
|
852
|
+
hasHardBoundaries: boolean,
|
|
853
|
+
options?: object
|
|
854
|
+
): Action;
|
|
855
|
+
|
|
839
856
|
/**
|
|
840
857
|
* Returns true if the clip Project item is a merged clip
|
|
841
858
|
*/
|