@gptmarket/temporal-types 0.0.34 → 0.0.36
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/schemas/ScreenshotGeneratorOutput.json +13 -0
- package/types.ts +2 -0
package/package.json
CHANGED
|
@@ -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 */
|