@gptmarket/temporal-types 0.0.26 → 0.0.27

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.26",
3
+ "version": "0.0.27",
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
@@ -649,15 +649,6 @@ export const slideshows_pinterest: WorkflowDefinition<
649
649
  { value: "bebas", label: "Bebas" },
650
650
  ],
651
651
  },
652
- {
653
- name: "text_font_scale",
654
- type: "number",
655
- label: "Text Font Scale",
656
- description: "Font scale divisor (height/scale). Lower = bigger text.",
657
- required: false,
658
- default: 30.0,
659
- validation: { min: 10.0, max: 100.0 },
660
- },
661
652
  {
662
653
  name: "text_color",
663
654
  type: "select",
@@ -674,22 +665,6 @@ export const slideshows_pinterest: WorkflowDefinition<
674
665
  { value: "green", label: "Green" },
675
666
  ],
676
667
  },
677
- {
678
- name: "text_background",
679
- type: "select",
680
- label: "Text Background",
681
- description:
682
- "Text background: black@0.6, black@0.8, white@0.6, white@0.8, none",
683
- required: false,
684
- default: "black@0.6",
685
- options: [
686
- { value: "black@0.6", label: "Black@0.6" },
687
- { value: "black@0.8", label: "Black@0.8" },
688
- { value: "white@0.6", label: "White@0.6" },
689
- { value: "white@0.8", label: "White@0.8" },
690
- { value: "none", label: "None" },
691
- ],
692
- },
693
668
  {
694
669
  name: "text_border_width",
695
670
  type: "select",
@@ -706,14 +681,6 @@ export const slideshows_pinterest: WorkflowDefinition<
706
681
  { value: "5", label: "5" },
707
682
  ],
708
683
  },
709
- {
710
- name: "text_border_color",
711
- type: "textarea",
712
- label: "Text Border Color",
713
- description: "Text border color",
714
- required: false,
715
- default: "black",
716
- },
717
684
  ],
718
685
  };
719
686
 
@@ -100,14 +100,6 @@
100
100
  "title": "Text Font",
101
101
  "type": "string"
102
102
  },
103
- "text_font_scale": {
104
- "default": 30.0,
105
- "description": "Font scale divisor (height/scale). Lower = bigger text.",
106
- "maximum": 100.0,
107
- "minimum": 10.0,
108
- "title": "Text Font Scale",
109
- "type": "number"
110
- },
111
103
  "text_color": {
112
104
  "default": "white",
113
105
  "description": "Text color: white, black, yellow, red, blue, green",
@@ -122,19 +114,6 @@
122
114
  "title": "Text Color",
123
115
  "type": "string"
124
116
  },
125
- "text_background": {
126
- "default": "black@0.6",
127
- "description": "Text background: black@0.6, black@0.8, white@0.6, white@0.8, none",
128
- "enum": [
129
- "black@0.6",
130
- "black@0.8",
131
- "white@0.6",
132
- "white@0.8",
133
- "none"
134
- ],
135
- "title": "Text Background",
136
- "type": "string"
137
- },
138
117
  "text_border_width": {
139
118
  "default": 2,
140
119
  "description": "Text border/outline width (0 to disable)",
@@ -148,12 +127,6 @@
148
127
  ],
149
128
  "title": "Text Border Width",
150
129
  "type": "integer"
151
- },
152
- "text_border_color": {
153
- "default": "black",
154
- "description": "Text border color",
155
- "title": "Text Border Color",
156
- "type": "string"
157
130
  }
158
131
  },
159
132
  "required": [
package/types.ts CHANGED
@@ -308,21 +308,10 @@ export interface SlideshowsPinterestInput {
308
308
  | "montserrat"
309
309
  | "oswald"
310
310
  | "bebas";
311
- /** Font scale divisor (height/scale). Lower = bigger text. */
312
- text_font_scale?: number;
313
311
  /** Text color: white, black, yellow, red, blue, green */
314
312
  text_color?: "white" | "black" | "yellow" | "red" | "blue" | "green";
315
- /** Text background: black@0.6, black@0.8, white@0.6, white@0.8, none */
316
- text_background?:
317
- | "black@0.6"
318
- | "black@0.8"
319
- | "white@0.6"
320
- | "white@0.8"
321
- | "none";
322
313
  /** Text border/outline width (0 to disable) */
323
314
  text_border_width?: 0 | 1 | 2 | 3 | 4 | 5;
324
- /** Text border color */
325
- text_border_color?: string;
326
315
  }
327
316
 
328
317
  export interface SlideshowsPinterestOutput {