@gptmarket/temporal-types 0.0.5 → 0.0.6
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 +4 -5
- package/schemas/RubyInput.json +13 -6
- package/types.ts +2 -2
package/package.json
CHANGED
package/registry.ts
CHANGED
|
@@ -95,10 +95,9 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
95
95
|
name: "text_overlay",
|
|
96
96
|
type: "textarea",
|
|
97
97
|
label: "Text Overlay",
|
|
98
|
-
description:
|
|
99
|
-
'Text to display on video (e.g., "You won\'t believe this...")',
|
|
98
|
+
description: "Optional text to display on video",
|
|
100
99
|
required: false,
|
|
101
|
-
default:
|
|
100
|
+
default: null,
|
|
102
101
|
},
|
|
103
102
|
{
|
|
104
103
|
name: "gender",
|
|
@@ -131,7 +130,7 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
131
130
|
label: "Image Model",
|
|
132
131
|
description: "Image model ID from registry",
|
|
133
132
|
required: false,
|
|
134
|
-
default: "
|
|
133
|
+
default: "nano-banana",
|
|
135
134
|
hidden: true,
|
|
136
135
|
},
|
|
137
136
|
{
|
|
@@ -140,7 +139,7 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
140
139
|
label: "Video Model",
|
|
141
140
|
description: "Video model ID from registry",
|
|
142
141
|
required: false,
|
|
143
|
-
default: "
|
|
142
|
+
default: "kling-v2.6",
|
|
144
143
|
hidden: true,
|
|
145
144
|
},
|
|
146
145
|
{
|
package/schemas/RubyInput.json
CHANGED
|
@@ -13,10 +13,17 @@
|
|
|
13
13
|
"type": "string"
|
|
14
14
|
},
|
|
15
15
|
"text_overlay": {
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
"anyOf": [
|
|
17
|
+
{
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"type": "null"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"default": null,
|
|
25
|
+
"description": "Optional text to display on video",
|
|
26
|
+
"title": "Text Overlay"
|
|
20
27
|
},
|
|
21
28
|
"gender": {
|
|
22
29
|
"default": "female",
|
|
@@ -31,13 +38,13 @@
|
|
|
31
38
|
"type": "string"
|
|
32
39
|
},
|
|
33
40
|
"image_model": {
|
|
34
|
-
"default": "
|
|
41
|
+
"default": "nano-banana",
|
|
35
42
|
"description": "Image model ID from registry",
|
|
36
43
|
"title": "Image Model",
|
|
37
44
|
"type": "string"
|
|
38
45
|
},
|
|
39
46
|
"video_model": {
|
|
40
|
-
"default": "
|
|
47
|
+
"default": "kling-v2.6",
|
|
41
48
|
"description": "Video model ID from registry",
|
|
42
49
|
"title": "Video Model",
|
|
43
50
|
"type": "string"
|
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
|
-
/**
|
|
44
|
-
text_overlay?: string;
|
|
43
|
+
/** Optional text to display on video */
|
|
44
|
+
text_overlay?: string | null;
|
|
45
45
|
/** Gender: female or male */
|
|
46
46
|
gender?: string;
|
|
47
47
|
/** Aspect ratio: 9:16, 16:9, 1:1 */
|