@gptmarket/temporal-types 0.0.30 → 0.0.32

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.30",
3
+ "version": "0.0.32",
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
@@ -133,6 +133,15 @@ export const inspirations_pinterest: WorkflowDefinition<
133
133
  required: true,
134
134
  default: null,
135
135
  },
136
+ {
137
+ name: "num_images",
138
+ type: "number",
139
+ label: "Num Images",
140
+ description: "Number of inspiration images to return",
141
+ required: false,
142
+ default: 50,
143
+ validation: { min: 1, max: 100 },
144
+ },
136
145
  ],
137
146
  };
138
147
 
@@ -60,6 +60,14 @@
60
60
  "description": "What kind of inspiration the user wants (e.g., \"landing page design\")",
61
61
  "title": "Prompt",
62
62
  "type": "string"
63
+ },
64
+ "num_images": {
65
+ "default": 50,
66
+ "description": "Number of inspiration images to return",
67
+ "maximum": 100,
68
+ "minimum": 1,
69
+ "title": "Num Images",
70
+ "type": "integer"
63
71
  }
64
72
  },
65
73
  "required": [
package/types.ts CHANGED
@@ -66,6 +66,8 @@ export interface InspirationsPinterestInput {
66
66
  | null;
67
67
  /** What kind of inspiration the user wants (e.g., "landing page design") */
68
68
  prompt: string;
69
+ /** Number of inspiration images to return */
70
+ num_images?: number;
69
71
  }
70
72
 
71
73
  export interface InspirationsPinterestOutput {