@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gptmarket/temporal-types",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "TypeScript types and workflow registry for GPTMarket Temporal workflows",
5
5
  "main": "index.ts",
6
6
  "types": "index.ts",
package/registry.ts CHANGED
@@ -92,10 +92,11 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
92
92
  ],
93
93
  },
94
94
  {
95
- name: "hook",
96
- type: "text",
97
- label: "Hook",
98
- description: 'Text overlay (e.g., "You won\'t believe this...")',
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
  },
@@ -12,10 +12,10 @@
12
12
  "title": "Emotion",
13
13
  "type": "string"
14
14
  },
15
- "hook": {
15
+ "text_overlay": {
16
16
  "default": "",
17
- "description": "Text overlay (e.g., \"You won't believe this...\")",
18
- "title": "Hook",
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 overlay (e.g., "You won't believe this...") */
44
- hook?: string;
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 */