@gptmarket/temporal-types 0.0.8 → 0.0.9

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.8",
3
+ "version": "0.0.9",
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
@@ -201,33 +201,6 @@ export const slideshows_pinterest: WorkflowDefinition<
201
201
  required: true,
202
202
  default: null,
203
203
  },
204
- {
205
- name: "num_images",
206
- type: "number",
207
- label: "Num Images",
208
- description: "Number of images to return",
209
- required: false,
210
- default: 10,
211
- validation: { min: 1, max: 50 },
212
- },
213
- {
214
- name: "num_queries",
215
- type: "number",
216
- label: "Num Queries",
217
- description: "Number of search queries to generate",
218
- required: false,
219
- default: 3,
220
- validation: { min: 1, max: 5 },
221
- },
222
- {
223
- name: "pages_per_query",
224
- type: "number",
225
- label: "Pages Per Query",
226
- description: "Pages to scrape per query",
227
- required: false,
228
- default: 1,
229
- validation: { min: 1, max: 3 },
230
- },
231
204
  ],
232
205
  };
233
206
 
@@ -5,30 +5,6 @@
5
5
  "description": "User text describing what kind of images they want",
6
6
  "title": "Prompt",
7
7
  "type": "string"
8
- },
9
- "num_images": {
10
- "default": 10,
11
- "description": "Number of images to return",
12
- "maximum": 50,
13
- "minimum": 1,
14
- "title": "Num Images",
15
- "type": "integer"
16
- },
17
- "num_queries": {
18
- "default": 3,
19
- "description": "Number of search queries to generate",
20
- "maximum": 5,
21
- "minimum": 1,
22
- "title": "Num Queries",
23
- "type": "integer"
24
- },
25
- "pages_per_query": {
26
- "default": 1,
27
- "description": "Pages to scrape per query",
28
- "maximum": 3,
29
- "minimum": 1,
30
- "title": "Pages Per Query",
31
- "type": "integer"
32
8
  }
33
9
  },
34
10
  "required": [
package/types.ts CHANGED
@@ -80,12 +80,6 @@ export interface RubyOutput {
80
80
  export interface SlideshowsPinterestInput {
81
81
  /** User text describing what kind of images they want */
82
82
  prompt: string;
83
- /** Number of images to return */
84
- num_images?: number;
85
- /** Number of search queries to generate */
86
- num_queries?: number;
87
- /** Pages to scrape per query */
88
- pages_per_query?: number;
89
83
  }
90
84
 
91
85
  export interface SlideshowsPinterestOutput {