@twick/studio 0.15.15 → 0.15.18
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/dist/components/container/properties-panel-container.d.ts +2 -1
- package/dist/components/properties/generate-captions.d.ts +2 -1
- package/dist/hooks/use-generate-captions.d.ts +1 -0
- package/dist/index.js +23 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -9
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +14 -14
package/dist/types/index.d.ts
CHANGED
|
@@ -73,6 +73,8 @@ export interface ICaptionGenerationService {
|
|
|
73
73
|
height: number;
|
|
74
74
|
}) => Promise<string>;
|
|
75
75
|
getRequestStatus: (reqId: string) => Promise<ICaptionGenerationPollingResponse>;
|
|
76
|
+
/** Polling interval in milliseconds for caption status checks. Defaults to 5000. */
|
|
77
|
+
pollingIntervalMs?: number;
|
|
76
78
|
}
|
|
77
79
|
export interface StudioConfig extends VideoEditorConfig {
|
|
78
80
|
/** Canvas behavior options (e.g. enableShiftAxisLock). Same as editorConfig.canvasConfig in TwickEditor. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/studio",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.18",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@twick/canvas": "0.15.
|
|
37
|
-
"@twick/core": "^0.15.
|
|
38
|
-
"@twick/live-player": "0.15.
|
|
39
|
-
"@twick/media-utils": "0.15.
|
|
40
|
-
"@twick/player-react": "^0.15.
|
|
41
|
-
"@twick/timeline": "0.15.
|
|
42
|
-
"@twick/video-editor": "0.15.
|
|
43
|
-
"@twick/visualizer": "0.15.
|
|
36
|
+
"@twick/canvas": "0.15.18",
|
|
37
|
+
"@twick/core": "^0.15.18",
|
|
38
|
+
"@twick/live-player": "0.15.18",
|
|
39
|
+
"@twick/media-utils": "0.15.18",
|
|
40
|
+
"@twick/player-react": "^0.15.18",
|
|
41
|
+
"@twick/timeline": "0.15.18",
|
|
42
|
+
"@twick/video-editor": "0.15.18",
|
|
43
|
+
"@twick/visualizer": "0.15.18",
|
|
44
44
|
"lucide-react": "^0.511.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"@types/node": "^20.11.24",
|
|
52
52
|
"@types/react": "^18.0.0 || ^19.0.0",
|
|
53
53
|
"@types/react-dom": "^18.0.0 || ^19.0.0",
|
|
54
|
-
"react": "^18.0.0",
|
|
55
|
-
"react-dom": "^18.0.0",
|
|
56
|
-
"@twick/timeline": "0.15.
|
|
57
|
-
"@twick/live-player": "0.15.
|
|
58
|
-
"@twick/video-editor": "0.15.
|
|
54
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
55
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
56
|
+
"@twick/timeline": "0.15.18",
|
|
57
|
+
"@twick/live-player": "0.15.18",
|
|
58
|
+
"@twick/video-editor": "0.15.18",
|
|
59
59
|
"rimraf": "^5.0.5",
|
|
60
60
|
"typedoc": "^0.25.8",
|
|
61
61
|
"typedoc-plugin-markdown": "^3.17.1",
|