@gptmarket/temporal-types 0.0.3 → 0.0.4
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 +1 -1
- package/registry.ts +5 -4
- package/schemas/RubyInput.json +3 -3
- package/types.ts +2 -2
package/package.json
CHANGED
package/registry.ts
CHANGED
|
@@ -92,10 +92,11 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
92
92
|
],
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
|
-
name: "
|
|
96
|
-
type: "
|
|
97
|
-
label: "
|
|
98
|
-
description:
|
|
95
|
+
name: "text_overlay",
|
|
96
|
+
type: "textarea",
|
|
97
|
+
label: "Text Overlay",
|
|
98
|
+
description:
|
|
99
|
+
'Text to display on video (e.g., "You won\'t believe this...")',
|
|
99
100
|
required: false,
|
|
100
101
|
default: "",
|
|
101
102
|
},
|
package/schemas/RubyInput.json
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"title": "Emotion",
|
|
13
13
|
"type": "string"
|
|
14
14
|
},
|
|
15
|
-
"
|
|
15
|
+
"text_overlay": {
|
|
16
16
|
"default": "",
|
|
17
|
-
"description": "Text
|
|
18
|
-
"title": "
|
|
17
|
+
"description": "Text to display on video (e.g., \"You won't believe this...\")",
|
|
18
|
+
"title": "Text Overlay",
|
|
19
19
|
"type": "string"
|
|
20
20
|
},
|
|
21
21
|
"style": {
|
package/types.ts
CHANGED
|
@@ -40,8 +40,8 @@ export interface RubyInput {
|
|
|
40
40
|
topic: string;
|
|
41
41
|
/** Emotion: shocked, scared, surprised, worried, excited */
|
|
42
42
|
emotion?: string;
|
|
43
|
-
/** Text
|
|
44
|
-
|
|
43
|
+
/** Text to display on video (e.g., "You won't believe this...") */
|
|
44
|
+
text_overlay?: string;
|
|
45
45
|
/** Style: realistic or stylized */
|
|
46
46
|
style?: string;
|
|
47
47
|
/** Gender: female or male */
|