@twick/studio 0.15.23 → 0.15.25

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.
@@ -11,6 +11,9 @@ export declare const CAPTION_PROPS: {
11
11
  bgColor: string;
12
12
  };
13
13
  lineWidth: number;
14
+ rectProps: {
15
+ gap: number;
16
+ };
14
17
  stroke: string;
15
18
  fontWeight: number;
16
19
  shadowOffset: number[];
@@ -28,6 +31,9 @@ export declare const CAPTION_PROPS: {
28
31
  bgColor: string;
29
32
  };
30
33
  lineWidth: number;
34
+ rectProps: {
35
+ gap: number;
36
+ };
31
37
  stroke: string;
32
38
  shadowOffset: number[];
33
39
  shadowColor: string;
@@ -45,6 +51,9 @@ export declare const CAPTION_PROPS: {
45
51
  bgColor: string;
46
52
  };
47
53
  lineWidth: number;
54
+ rectProps: {
55
+ gap: number;
56
+ };
48
57
  shadowOffset: number[];
49
58
  shadowColor: string;
50
59
  shadowBlur: number;
@@ -61,6 +70,9 @@ export declare const CAPTION_PROPS: {
61
70
  bgColor: string;
62
71
  };
63
72
  lineWidth: number;
73
+ rectProps: {
74
+ gap: number;
75
+ };
64
76
  stroke: string;
65
77
  fontWeight: number;
66
78
  shadowOffset: number[];
@@ -79,6 +91,9 @@ export declare const CAPTION_PROPS: {
79
91
  bgColor: string;
80
92
  };
81
93
  lineWidth: number;
94
+ rectProps: {
95
+ gap: number;
96
+ };
82
97
  stroke: string;
83
98
  fontWeight: number;
84
99
  shadowOffset: number[];
@@ -2,6 +2,10 @@ import { ProjectJSON, VideoElement } from '@twick/timeline';
2
2
  import { ICaptionGenerationPollingResponse, ICaptionGenerationService, CaptionEntry } from '../types';
3
3
 
4
4
  declare class GenerateCaptionsService implements ICaptionGenerationService {
5
+ /**
6
+ * Compatibility wrapper for legacy Studio caption service flow.
7
+ * New AI workflows should prefer @twick/workflow directly.
8
+ */
5
9
  videoElement: VideoElement | null;
6
10
  projectJSON: ProjectJSON | null;
7
11
  generateSubtiltesApi: (videoUrl: string) => Promise<string>;