@gptmarket/temporal-types 0.0.17 → 0.0.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/package.json +1 -1
- package/registry.ts +2 -11
package/package.json
CHANGED
package/registry.ts
CHANGED
|
@@ -158,15 +158,11 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
name: "gender",
|
|
161
|
-
type: "
|
|
161
|
+
type: "text",
|
|
162
162
|
label: "Gender",
|
|
163
163
|
description: "Gender: female, male",
|
|
164
164
|
required: false,
|
|
165
165
|
default: "female",
|
|
166
|
-
options: [
|
|
167
|
-
{ value: "female", label: "Female" },
|
|
168
|
-
{ value: "male", label: "Male" },
|
|
169
|
-
],
|
|
170
166
|
},
|
|
171
167
|
{
|
|
172
168
|
name: "age_range",
|
|
@@ -304,16 +300,11 @@ export const ruby: WorkflowDefinition<Types.RubyInput, Types.RubyOutput> = {
|
|
|
304
300
|
},
|
|
305
301
|
{
|
|
306
302
|
name: "aspect_ratio",
|
|
307
|
-
type: "
|
|
303
|
+
type: "text",
|
|
308
304
|
label: "Aspect Ratio",
|
|
309
305
|
description: "Aspect ratio: 9:16, 16:9, 1:1",
|
|
310
306
|
required: false,
|
|
311
307
|
default: "9:16",
|
|
312
|
-
options: [
|
|
313
|
-
{ value: "9:16", label: "9:16" },
|
|
314
|
-
{ value: "16:9", label: "16:9" },
|
|
315
|
-
{ value: "1:1", label: "1:1" },
|
|
316
|
-
],
|
|
317
308
|
},
|
|
318
309
|
{
|
|
319
310
|
name: "video_duration",
|