@gptmarket/temporal-types 0.0.33 → 0.0.35

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.33",
3
+ "version": "0.0.35",
4
4
  "description": "TypeScript types and workflow registry for GPTMarket Temporal workflows",
5
5
  "main": "index.ts",
6
6
  "types": "index.ts",
@@ -79,6 +79,19 @@
79
79
  "title": "Prompts",
80
80
  "type": "array"
81
81
  },
82
+ "global_typography": {
83
+ "anyOf": [
84
+ {
85
+ "type": "string"
86
+ },
87
+ {
88
+ "type": "null"
89
+ }
90
+ ],
91
+ "default": null,
92
+ "description": "The font selected for all screenshots (e.g. \"Plus Jakarta Sans ExtraBold\")",
93
+ "title": "Global Typography"
94
+ },
82
95
  "best_reference_app": {
83
96
  "anyOf": [
84
97
  {
package/types.ts CHANGED
@@ -577,6 +577,8 @@ export interface ScreenshotGeneratorOutput {
577
577
  app_description?: string | null;
578
578
  total_generated?: number;
579
579
  prompts?: string[];
580
+ /** The font selected for all screenshots (e.g. "Plus Jakarta Sans ExtraBold") */
581
+ global_typography?: string | null;
580
582
  /** Title of the best-rated reference app */
581
583
  best_reference_app?: string | null;
582
584
  /** URLs of the screenshots used as visual inspiration */