@framingui/mcp-server 0.6.25 → 0.6.26
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/README.md +2 -1
- package/dist/cli/agent-md-templates.d.ts.map +1 -1
- package/dist/cli/agent-md-templates.js +22 -2
- package/dist/cli/agent-md-templates.js.map +1 -1
- package/dist/cli/guide-template.d.ts.map +1 -1
- package/dist/cli/guide-template.js +29 -0
- package/dist/cli/guide-template.js.map +1 -1
- package/dist/cli/init.d.ts +3 -1
- package/dist/cli/init.d.ts.map +1 -1
- package/dist/cli/init.js +41 -21
- package/dist/cli/init.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/schemas/mcp-schemas.d.ts +410 -410
- package/dist/schemas/mcp-schemas.d.ts.map +1 -1
- package/dist/tools/validate-environment.d.ts.map +1 -1
- package/dist/tools/validate-environment.js +7 -3
- package/dist/tools/validate-environment.js.map +1 -1
- package/package.json +2 -2
- package/dist/cli/commands.d.ts +0 -2
- package/dist/cli/commands.d.ts.map +0 -1
- package/dist/cli/commands.js +0 -20
- package/dist/cli/commands.js.map +0 -1
- package/dist/cli/help.d.ts +0 -5
- package/dist/cli/help.d.ts.map +0 -1
- package/dist/cli/help.js +0 -59
- package/dist/cli/help.js.map +0 -1
- package/dist/cli/package-manager.d.ts +0 -5
- package/dist/cli/package-manager.d.ts.map +0 -1
- package/dist/cli/package-manager.js +0 -34
- package/dist/cli/package-manager.js.map +0 -1
- package/dist/cli/update.d.ts +0 -8
- package/dist/cli/update.d.ts.map +0 -1
- package/dist/cli/update.js +0 -53
- package/dist/cli/update.js.map +0 -1
- package/dist/commands/slash-command-adapters.d.ts +0 -9
- package/dist/commands/slash-command-adapters.d.ts.map +0 -1
- package/dist/commands/slash-command-adapters.js +0 -116
- package/dist/commands/slash-command-adapters.js.map +0 -1
- package/dist/data/component-props.d.ts +0 -30
- package/dist/data/component-props.d.ts.map +0 -1
- package/dist/data/component-props.js +0 -537
- package/dist/data/component-props.js.map +0 -1
- package/dist/data/component-registry.d.ts +0 -30
- package/dist/data/component-registry.d.ts.map +0 -1
- package/dist/data/component-registry.js +0 -320
- package/dist/data/component-registry.js.map +0 -1
- package/dist/data/examples/screen-examples.d.ts +0 -38
- package/dist/data/examples/screen-examples.d.ts.map +0 -1
- package/dist/data/examples/screen-examples.js +0 -500
- package/dist/data/examples/screen-examples.js.map +0 -1
- package/dist/utils/style-contract-reader.d.ts +0 -10
- package/dist/utils/style-contract-reader.d.ts.map +0 -1
- package/dist/utils/style-contract-reader.js +0 -67
- package/dist/utils/style-contract-reader.js.map +0 -1
|
@@ -36,6 +36,7 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
|
|
|
36
36
|
error: z.ZodOptional<z.ZodString>;
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
success: boolean;
|
|
39
|
+
error?: string | undefined;
|
|
39
40
|
message?: string | undefined;
|
|
40
41
|
plan?: "free" | "pro" | "enterprise" | "master" | undefined;
|
|
41
42
|
isMaster?: boolean | undefined;
|
|
@@ -48,9 +49,9 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
|
|
|
48
49
|
is_trial?: boolean | undefined;
|
|
49
50
|
trial_expires_at?: string | null | undefined;
|
|
50
51
|
trial_days_left?: number | null | undefined;
|
|
51
|
-
error?: string | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
success: boolean;
|
|
54
|
+
error?: string | undefined;
|
|
54
55
|
message?: string | undefined;
|
|
55
56
|
plan?: "free" | "pro" | "enterprise" | "master" | undefined;
|
|
56
57
|
isMaster?: boolean | undefined;
|
|
@@ -63,7 +64,6 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
|
|
|
63
64
|
is_trial?: boolean | undefined;
|
|
64
65
|
trial_expires_at?: string | null | undefined;
|
|
65
66
|
trial_days_left?: number | null | undefined;
|
|
66
|
-
error?: string | undefined;
|
|
67
67
|
}>;
|
|
68
68
|
export type WhoamiOutput = z.infer<typeof WhoamiOutputSchema>;
|
|
69
69
|
/**
|
|
@@ -87,14 +87,14 @@ export declare const GenerateBlueprintInputSchema: z.ZodObject<{
|
|
|
87
87
|
iconLibrary: z.ZodOptional<z.ZodString>;
|
|
88
88
|
componentHints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
91
90
|
description: string;
|
|
91
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
92
92
|
themeId: string;
|
|
93
93
|
componentHints?: string[] | undefined;
|
|
94
94
|
iconLibrary?: string | undefined;
|
|
95
95
|
}, {
|
|
96
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
97
96
|
description: string;
|
|
97
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
98
98
|
themeId: string;
|
|
99
99
|
componentHints?: string[] | undefined;
|
|
100
100
|
iconLibrary?: string | undefined;
|
|
@@ -115,13 +115,13 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
|
|
|
115
115
|
page: z.ZodString;
|
|
116
116
|
description: z.ZodString;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
description: string;
|
|
119
118
|
shell: string;
|
|
120
119
|
page: string;
|
|
121
|
-
}, {
|
|
122
120
|
description: string;
|
|
121
|
+
}, {
|
|
123
122
|
shell: string;
|
|
124
123
|
page: string;
|
|
124
|
+
description: string;
|
|
125
125
|
}>;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
127
|
category: string;
|
|
@@ -130,9 +130,9 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
|
|
|
130
130
|
confidence: number;
|
|
131
131
|
matchedKeywords: string[];
|
|
132
132
|
layoutRecommendation: {
|
|
133
|
-
description: string;
|
|
134
133
|
shell: string;
|
|
135
134
|
page: string;
|
|
135
|
+
description: string;
|
|
136
136
|
};
|
|
137
137
|
}, {
|
|
138
138
|
category: string;
|
|
@@ -141,9 +141,9 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
|
|
|
141
141
|
confidence: number;
|
|
142
142
|
matchedKeywords: string[];
|
|
143
143
|
layoutRecommendation: {
|
|
144
|
-
description: string;
|
|
145
144
|
shell: string;
|
|
146
145
|
page: string;
|
|
146
|
+
description: string;
|
|
147
147
|
};
|
|
148
148
|
}>;
|
|
149
149
|
export type TemplateRecommendation = z.infer<typeof TemplateRecommendationSchema>;
|
|
@@ -173,8 +173,8 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
173
173
|
}>, "many">;
|
|
174
174
|
timestamp: z.ZodNumber;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
177
176
|
name: string;
|
|
177
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
178
178
|
themeId: string;
|
|
179
179
|
iconLibrary: string;
|
|
180
180
|
id: string;
|
|
@@ -186,8 +186,8 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
186
186
|
}[];
|
|
187
187
|
timestamp: number;
|
|
188
188
|
}, {
|
|
189
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
190
189
|
name: string;
|
|
190
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
191
191
|
themeId: string;
|
|
192
192
|
iconLibrary: string;
|
|
193
193
|
id: string;
|
|
@@ -210,13 +210,13 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
210
210
|
page: z.ZodString;
|
|
211
211
|
description: z.ZodString;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
description: string;
|
|
214
213
|
shell: string;
|
|
215
214
|
page: string;
|
|
216
|
-
}, {
|
|
217
215
|
description: string;
|
|
216
|
+
}, {
|
|
218
217
|
shell: string;
|
|
219
218
|
page: string;
|
|
219
|
+
description: string;
|
|
220
220
|
}>;
|
|
221
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
222
|
category: string;
|
|
@@ -225,9 +225,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
225
225
|
confidence: number;
|
|
226
226
|
matchedKeywords: string[];
|
|
227
227
|
layoutRecommendation: {
|
|
228
|
-
description: string;
|
|
229
228
|
shell: string;
|
|
230
229
|
page: string;
|
|
230
|
+
description: string;
|
|
231
231
|
};
|
|
232
232
|
}, {
|
|
233
233
|
category: string;
|
|
@@ -236,17 +236,18 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
236
236
|
confidence: number;
|
|
237
237
|
matchedKeywords: string[];
|
|
238
238
|
layoutRecommendation: {
|
|
239
|
-
description: string;
|
|
240
239
|
shell: string;
|
|
241
240
|
page: string;
|
|
241
|
+
description: string;
|
|
242
242
|
};
|
|
243
243
|
}>, "many">>;
|
|
244
244
|
error: z.ZodOptional<z.ZodString>;
|
|
245
245
|
}, "strip", z.ZodTypeAny, {
|
|
246
246
|
success: boolean;
|
|
247
|
+
error?: string | undefined;
|
|
247
248
|
blueprint?: {
|
|
248
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
249
249
|
name: string;
|
|
250
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
250
251
|
themeId: string;
|
|
251
252
|
iconLibrary: string;
|
|
252
253
|
id: string;
|
|
@@ -258,7 +259,6 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
258
259
|
}[];
|
|
259
260
|
timestamp: number;
|
|
260
261
|
} | undefined;
|
|
261
|
-
error?: string | undefined;
|
|
262
262
|
templateRecommendations?: {
|
|
263
263
|
category: string;
|
|
264
264
|
templateId: string;
|
|
@@ -266,16 +266,17 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
266
266
|
confidence: number;
|
|
267
267
|
matchedKeywords: string[];
|
|
268
268
|
layoutRecommendation: {
|
|
269
|
-
description: string;
|
|
270
269
|
shell: string;
|
|
271
270
|
page: string;
|
|
271
|
+
description: string;
|
|
272
272
|
};
|
|
273
273
|
}[] | undefined;
|
|
274
274
|
}, {
|
|
275
275
|
success: boolean;
|
|
276
|
+
error?: string | undefined;
|
|
276
277
|
blueprint?: {
|
|
277
|
-
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
278
278
|
name: string;
|
|
279
|
+
layout: "dashboard" | "landing" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right";
|
|
279
280
|
themeId: string;
|
|
280
281
|
iconLibrary: string;
|
|
281
282
|
id: string;
|
|
@@ -287,7 +288,6 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
287
288
|
}[];
|
|
288
289
|
timestamp: number;
|
|
289
290
|
} | undefined;
|
|
290
|
-
error?: string | undefined;
|
|
291
291
|
templateRecommendations?: {
|
|
292
292
|
category: string;
|
|
293
293
|
templateId: string;
|
|
@@ -295,9 +295,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
295
295
|
confidence: number;
|
|
296
296
|
matchedKeywords: string[];
|
|
297
297
|
layoutRecommendation: {
|
|
298
|
-
description: string;
|
|
299
298
|
shell: string;
|
|
300
299
|
page: string;
|
|
300
|
+
description: string;
|
|
301
301
|
};
|
|
302
302
|
}[] | undefined;
|
|
303
303
|
}>;
|
|
@@ -360,7 +360,6 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
|
|
|
360
360
|
}, "strip", z.ZodTypeAny, {
|
|
361
361
|
success: boolean;
|
|
362
362
|
error?: string | undefined;
|
|
363
|
-
count?: number | undefined;
|
|
364
363
|
themes?: {
|
|
365
364
|
name: string;
|
|
366
365
|
id: string;
|
|
@@ -368,10 +367,10 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
|
|
|
368
367
|
schemaVersion: string;
|
|
369
368
|
description?: string | undefined;
|
|
370
369
|
}[] | undefined;
|
|
370
|
+
count?: number | undefined;
|
|
371
371
|
}, {
|
|
372
372
|
success: boolean;
|
|
373
373
|
error?: string | undefined;
|
|
374
|
-
count?: number | undefined;
|
|
375
374
|
themes?: {
|
|
376
375
|
name: string;
|
|
377
376
|
id: string;
|
|
@@ -379,6 +378,7 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
|
|
|
379
378
|
schemaVersion: string;
|
|
380
379
|
description?: string | undefined;
|
|
381
380
|
}[] | undefined;
|
|
381
|
+
count?: number | undefined;
|
|
382
382
|
}>;
|
|
383
383
|
export type ListThemesOutput = z.infer<typeof ListThemesOutputSchema>;
|
|
384
384
|
/**
|
|
@@ -426,14 +426,14 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
426
426
|
component: z.ZodOptional<z.ZodUnknown>;
|
|
427
427
|
recipes: z.ZodOptional<z.ZodUnknown>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
component?: unknown;
|
|
430
|
-
atomic?: unknown;
|
|
431
429
|
semantic?: unknown;
|
|
430
|
+
atomic?: unknown;
|
|
431
|
+
component?: unknown;
|
|
432
432
|
recipes?: unknown;
|
|
433
433
|
}, {
|
|
434
|
-
component?: unknown;
|
|
435
|
-
atomic?: unknown;
|
|
436
434
|
semantic?: unknown;
|
|
435
|
+
atomic?: unknown;
|
|
436
|
+
component?: unknown;
|
|
437
437
|
recipes?: unknown;
|
|
438
438
|
}>;
|
|
439
439
|
stateLayer: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -442,15 +442,15 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
442
442
|
typography: z.ZodOptional<z.ZodUnknown>;
|
|
443
443
|
}, "strip", z.ZodTypeAny, {
|
|
444
444
|
name: string;
|
|
445
|
-
id: string;
|
|
446
|
-
brandTone: string;
|
|
447
|
-
schemaVersion: string;
|
|
448
445
|
tokens: {
|
|
449
|
-
component?: unknown;
|
|
450
|
-
atomic?: unknown;
|
|
451
446
|
semantic?: unknown;
|
|
447
|
+
atomic?: unknown;
|
|
448
|
+
component?: unknown;
|
|
452
449
|
recipes?: unknown;
|
|
453
450
|
};
|
|
451
|
+
id: string;
|
|
452
|
+
brandTone: string;
|
|
453
|
+
schemaVersion: string;
|
|
454
454
|
description?: string | undefined;
|
|
455
455
|
designDNA?: {
|
|
456
456
|
moodKeywords: string[];
|
|
@@ -463,15 +463,15 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
463
463
|
typography?: unknown;
|
|
464
464
|
}, {
|
|
465
465
|
name: string;
|
|
466
|
-
id: string;
|
|
467
|
-
brandTone: string;
|
|
468
|
-
schemaVersion: string;
|
|
469
466
|
tokens: {
|
|
470
|
-
component?: unknown;
|
|
471
|
-
atomic?: unknown;
|
|
472
467
|
semantic?: unknown;
|
|
468
|
+
atomic?: unknown;
|
|
469
|
+
component?: unknown;
|
|
473
470
|
recipes?: unknown;
|
|
474
471
|
};
|
|
472
|
+
id: string;
|
|
473
|
+
brandTone: string;
|
|
474
|
+
schemaVersion: string;
|
|
475
475
|
description?: string | undefined;
|
|
476
476
|
designDNA?: {
|
|
477
477
|
moodKeywords: string[];
|
|
@@ -487,17 +487,19 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
487
487
|
error: z.ZodOptional<z.ZodString>;
|
|
488
488
|
}, "strip", z.ZodTypeAny, {
|
|
489
489
|
success: boolean;
|
|
490
|
+
error?: string | undefined;
|
|
491
|
+
css?: string | undefined;
|
|
490
492
|
theme?: {
|
|
491
493
|
name: string;
|
|
492
|
-
id: string;
|
|
493
|
-
brandTone: string;
|
|
494
|
-
schemaVersion: string;
|
|
495
494
|
tokens: {
|
|
496
|
-
component?: unknown;
|
|
497
|
-
atomic?: unknown;
|
|
498
495
|
semantic?: unknown;
|
|
496
|
+
atomic?: unknown;
|
|
497
|
+
component?: unknown;
|
|
499
498
|
recipes?: unknown;
|
|
500
499
|
};
|
|
500
|
+
id: string;
|
|
501
|
+
brandTone: string;
|
|
502
|
+
schemaVersion: string;
|
|
501
503
|
description?: string | undefined;
|
|
502
504
|
designDNA?: {
|
|
503
505
|
moodKeywords: string[];
|
|
@@ -509,21 +511,21 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
509
511
|
elevation?: unknown;
|
|
510
512
|
typography?: unknown;
|
|
511
513
|
} | undefined;
|
|
512
|
-
error?: string | undefined;
|
|
513
|
-
css?: string | undefined;
|
|
514
514
|
}, {
|
|
515
515
|
success: boolean;
|
|
516
|
+
error?: string | undefined;
|
|
517
|
+
css?: string | undefined;
|
|
516
518
|
theme?: {
|
|
517
519
|
name: string;
|
|
518
|
-
id: string;
|
|
519
|
-
brandTone: string;
|
|
520
|
-
schemaVersion: string;
|
|
521
520
|
tokens: {
|
|
522
|
-
component?: unknown;
|
|
523
|
-
atomic?: unknown;
|
|
524
521
|
semantic?: unknown;
|
|
522
|
+
atomic?: unknown;
|
|
523
|
+
component?: unknown;
|
|
525
524
|
recipes?: unknown;
|
|
526
525
|
};
|
|
526
|
+
id: string;
|
|
527
|
+
brandTone: string;
|
|
528
|
+
schemaVersion: string;
|
|
527
529
|
description?: string | undefined;
|
|
528
530
|
designDNA?: {
|
|
529
531
|
moodKeywords: string[];
|
|
@@ -535,8 +537,6 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
|
|
|
535
537
|
elevation?: unknown;
|
|
536
538
|
typography?: unknown;
|
|
537
539
|
} | undefined;
|
|
538
|
-
error?: string | undefined;
|
|
539
|
-
css?: string | undefined;
|
|
540
540
|
}>;
|
|
541
541
|
export type PreviewThemeOutput = z.infer<typeof PreviewThemeOutputSchema>;
|
|
542
542
|
/**
|
|
@@ -553,10 +553,10 @@ export declare const ExportScreenInputSchema: z.ZodObject<{
|
|
|
553
553
|
blueprint: z.ZodUnknown;
|
|
554
554
|
format: z.ZodEnum<["jsx", "tsx", "vue"]>;
|
|
555
555
|
}, "strip", z.ZodTypeAny, {
|
|
556
|
-
format: "
|
|
556
|
+
format: "tsx" | "jsx" | "vue";
|
|
557
557
|
blueprint?: unknown;
|
|
558
558
|
}, {
|
|
559
|
-
format: "
|
|
559
|
+
format: "tsx" | "jsx" | "vue";
|
|
560
560
|
blueprint?: unknown;
|
|
561
561
|
}>;
|
|
562
562
|
export type ExportScreenInput = z.infer<typeof ExportScreenInputSchema>;
|
|
@@ -569,12 +569,12 @@ export declare const ExportScreenOutputSchema: z.ZodObject<{
|
|
|
569
569
|
error: z.ZodOptional<z.ZodString>;
|
|
570
570
|
}, "strip", z.ZodTypeAny, {
|
|
571
571
|
success: boolean;
|
|
572
|
-
code?: string | undefined;
|
|
573
572
|
error?: string | undefined;
|
|
573
|
+
code?: string | undefined;
|
|
574
574
|
}, {
|
|
575
575
|
success: boolean;
|
|
576
|
-
code?: string | undefined;
|
|
577
576
|
error?: string | undefined;
|
|
577
|
+
code?: string | undefined;
|
|
578
578
|
}>;
|
|
579
579
|
/**
|
|
580
580
|
* Export component resolution tier
|
|
@@ -605,19 +605,19 @@ export declare const HybridExportInputSchema: z.ZodObject<{
|
|
|
605
605
|
themeId: z.ZodOptional<z.ZodString>;
|
|
606
606
|
}, "strip", z.ZodTypeAny, {
|
|
607
607
|
includeCSS: boolean;
|
|
608
|
-
format: "
|
|
608
|
+
format: "tsx" | "jsx" | "vue";
|
|
609
609
|
tier: "tier1" | "tier2" | "auto";
|
|
610
|
+
componentName?: string | undefined;
|
|
610
611
|
themeId?: string | undefined;
|
|
611
612
|
blueprint?: unknown;
|
|
612
|
-
componentName?: string | undefined;
|
|
613
613
|
componentDescription?: string | undefined;
|
|
614
614
|
}, {
|
|
615
|
-
format: "
|
|
615
|
+
format: "tsx" | "jsx" | "vue";
|
|
616
|
+
componentName?: string | undefined;
|
|
616
617
|
themeId?: string | undefined;
|
|
617
618
|
includeCSS?: boolean | undefined;
|
|
618
619
|
blueprint?: unknown;
|
|
619
620
|
tier?: "tier1" | "tier2" | "auto" | undefined;
|
|
620
|
-
componentName?: string | undefined;
|
|
621
621
|
componentDescription?: string | undefined;
|
|
622
622
|
}>;
|
|
623
623
|
export type HybridExportInput = z.input<typeof HybridExportInputSchema>;
|
|
@@ -667,25 +667,25 @@ export declare const HybridExportOutputSchema: z.ZodObject<{
|
|
|
667
667
|
error: z.ZodOptional<z.ZodString>;
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
669
|
success: boolean;
|
|
670
|
-
code?: string | undefined;
|
|
671
670
|
error?: string | undefined;
|
|
671
|
+
code?: string | undefined;
|
|
672
|
+
css?: string | undefined;
|
|
672
673
|
components?: {
|
|
673
674
|
code: string;
|
|
674
675
|
componentName: string;
|
|
675
676
|
source: "tier1-ui" | "tier1-example" | "tier2-llm" | "tier2-mock";
|
|
676
677
|
}[] | undefined;
|
|
677
|
-
css?: string | undefined;
|
|
678
678
|
tierUsed?: "tier1" | "tier2" | "auto" | undefined;
|
|
679
679
|
}, {
|
|
680
680
|
success: boolean;
|
|
681
|
-
code?: string | undefined;
|
|
682
681
|
error?: string | undefined;
|
|
682
|
+
code?: string | undefined;
|
|
683
|
+
css?: string | undefined;
|
|
683
684
|
components?: {
|
|
684
685
|
code: string;
|
|
685
686
|
componentName: string;
|
|
686
687
|
source: "tier1-ui" | "tier1-example" | "tier2-llm" | "tier2-mock";
|
|
687
688
|
}[] | undefined;
|
|
688
|
-
css?: string | undefined;
|
|
689
689
|
tierUsed?: "tier1" | "tier2" | "auto" | undefined;
|
|
690
690
|
}>;
|
|
691
691
|
export type HybridExportOutput = z.infer<typeof HybridExportOutputSchema>;
|
|
@@ -698,11 +698,11 @@ export declare const ErrorResponseSchema: z.ZodObject<{
|
|
|
698
698
|
success: z.ZodLiteral<false>;
|
|
699
699
|
error: z.ZodString;
|
|
700
700
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
success: false;
|
|
702
701
|
error: string;
|
|
703
|
-
}, {
|
|
704
702
|
success: false;
|
|
703
|
+
}, {
|
|
705
704
|
error: string;
|
|
705
|
+
success: false;
|
|
706
706
|
}>;
|
|
707
707
|
export type ErrorResponse = z.infer<typeof ErrorResponseSchema>;
|
|
708
708
|
/**
|
|
@@ -718,15 +718,15 @@ export declare const DependenciesSchema: z.ZodObject<{
|
|
|
718
718
|
pnpm: z.ZodString;
|
|
719
719
|
bun: z.ZodString;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
|
-
npm: string;
|
|
722
|
-
yarn: string;
|
|
723
721
|
pnpm: string;
|
|
722
|
+
yarn: string;
|
|
724
723
|
bun: string;
|
|
725
|
-
}, {
|
|
726
724
|
npm: string;
|
|
727
|
-
|
|
725
|
+
}, {
|
|
728
726
|
pnpm: string;
|
|
727
|
+
yarn: string;
|
|
729
728
|
bun: string;
|
|
729
|
+
npm: string;
|
|
730
730
|
}>;
|
|
731
731
|
compatibility: z.ZodOptional<z.ZodObject<{
|
|
732
732
|
react: z.ZodOptional<z.ZodString>;
|
|
@@ -743,10 +743,10 @@ export declare const DependenciesSchema: z.ZodObject<{
|
|
|
743
743
|
internal: string[];
|
|
744
744
|
external: string[];
|
|
745
745
|
installCommands: {
|
|
746
|
-
npm: string;
|
|
747
|
-
yarn: string;
|
|
748
746
|
pnpm: string;
|
|
747
|
+
yarn: string;
|
|
749
748
|
bun: string;
|
|
749
|
+
npm: string;
|
|
750
750
|
};
|
|
751
751
|
notes?: string[] | undefined;
|
|
752
752
|
compatibility?: {
|
|
@@ -757,10 +757,10 @@ export declare const DependenciesSchema: z.ZodObject<{
|
|
|
757
757
|
internal: string[];
|
|
758
758
|
external: string[];
|
|
759
759
|
installCommands: {
|
|
760
|
-
npm: string;
|
|
761
|
-
yarn: string;
|
|
762
760
|
pnpm: string;
|
|
761
|
+
yarn: string;
|
|
763
762
|
bun: string;
|
|
763
|
+
npm: string;
|
|
764
764
|
};
|
|
765
765
|
notes?: string[] | undefined;
|
|
766
766
|
compatibility?: {
|
|
@@ -785,15 +785,15 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
785
785
|
pnpm: z.ZodString;
|
|
786
786
|
bun: z.ZodString;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
npm: string;
|
|
789
|
-
yarn: string;
|
|
790
788
|
pnpm: string;
|
|
789
|
+
yarn: string;
|
|
791
790
|
bun: string;
|
|
792
|
-
}, {
|
|
793
791
|
npm: string;
|
|
794
|
-
|
|
792
|
+
}, {
|
|
795
793
|
pnpm: string;
|
|
794
|
+
yarn: string;
|
|
796
795
|
bun: string;
|
|
796
|
+
npm: string;
|
|
797
797
|
}>;
|
|
798
798
|
compatibility: z.ZodOptional<z.ZodObject<{
|
|
799
799
|
react: z.ZodOptional<z.ZodString>;
|
|
@@ -810,10 +810,10 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
810
810
|
internal: string[];
|
|
811
811
|
external: string[];
|
|
812
812
|
installCommands: {
|
|
813
|
-
npm: string;
|
|
814
|
-
yarn: string;
|
|
815
813
|
pnpm: string;
|
|
814
|
+
yarn: string;
|
|
816
815
|
bun: string;
|
|
816
|
+
npm: string;
|
|
817
817
|
};
|
|
818
818
|
notes?: string[] | undefined;
|
|
819
819
|
compatibility?: {
|
|
@@ -824,10 +824,10 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
824
824
|
internal: string[];
|
|
825
825
|
external: string[];
|
|
826
826
|
installCommands: {
|
|
827
|
-
npm: string;
|
|
828
|
-
yarn: string;
|
|
829
827
|
pnpm: string;
|
|
828
|
+
yarn: string;
|
|
830
829
|
bun: string;
|
|
830
|
+
npm: string;
|
|
831
831
|
};
|
|
832
832
|
notes?: string[] | undefined;
|
|
833
833
|
compatibility?: {
|
|
@@ -839,17 +839,15 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
839
839
|
error: z.ZodOptional<z.ZodString>;
|
|
840
840
|
}, "strip", z.ZodTypeAny, {
|
|
841
841
|
success: boolean;
|
|
842
|
-
code?: string | undefined;
|
|
843
842
|
error?: string | undefined;
|
|
844
|
-
errors?: string[] | undefined;
|
|
845
843
|
dependencies?: {
|
|
846
844
|
internal: string[];
|
|
847
845
|
external: string[];
|
|
848
846
|
installCommands: {
|
|
849
|
-
npm: string;
|
|
850
|
-
yarn: string;
|
|
851
847
|
pnpm: string;
|
|
848
|
+
yarn: string;
|
|
852
849
|
bun: string;
|
|
850
|
+
npm: string;
|
|
853
851
|
};
|
|
854
852
|
notes?: string[] | undefined;
|
|
855
853
|
compatibility?: {
|
|
@@ -857,20 +855,20 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
857
855
|
node?: string | undefined;
|
|
858
856
|
} | undefined;
|
|
859
857
|
} | undefined;
|
|
858
|
+
code?: string | undefined;
|
|
859
|
+
errors?: string[] | undefined;
|
|
860
860
|
cssVariables?: string | undefined;
|
|
861
861
|
}, {
|
|
862
862
|
success: boolean;
|
|
863
|
-
code?: string | undefined;
|
|
864
863
|
error?: string | undefined;
|
|
865
|
-
errors?: string[] | undefined;
|
|
866
864
|
dependencies?: {
|
|
867
865
|
internal: string[];
|
|
868
866
|
external: string[];
|
|
869
867
|
installCommands: {
|
|
870
|
-
npm: string;
|
|
871
|
-
yarn: string;
|
|
872
868
|
pnpm: string;
|
|
869
|
+
yarn: string;
|
|
873
870
|
bun: string;
|
|
871
|
+
npm: string;
|
|
874
872
|
};
|
|
875
873
|
notes?: string[] | undefined;
|
|
876
874
|
compatibility?: {
|
|
@@ -878,6 +876,8 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
878
876
|
node?: string | undefined;
|
|
879
877
|
} | undefined;
|
|
880
878
|
} | undefined;
|
|
879
|
+
code?: string | undefined;
|
|
880
|
+
errors?: string[] | undefined;
|
|
881
881
|
cssVariables?: string | undefined;
|
|
882
882
|
}>;
|
|
883
883
|
export type GenerateScreenOutput = z.infer<typeof GenerateScreenOutputSchema>;
|
|
@@ -903,12 +903,12 @@ export declare const ValidationSuggestionSchema: z.ZodObject<{
|
|
|
903
903
|
message: z.ZodString;
|
|
904
904
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
905
905
|
}, "strip", z.ZodTypeAny, {
|
|
906
|
-
field: string;
|
|
907
906
|
message: string;
|
|
907
|
+
field: string;
|
|
908
908
|
suggestion?: string | undefined;
|
|
909
909
|
}, {
|
|
910
|
-
field: string;
|
|
911
910
|
message: string;
|
|
911
|
+
field: string;
|
|
912
912
|
suggestion?: string | undefined;
|
|
913
913
|
}>;
|
|
914
914
|
export type ValidationSuggestion = z.infer<typeof ValidationSuggestionSchema>;
|
|
@@ -925,35 +925,35 @@ export declare const ValidateScreenOutputSchema: z.ZodObject<{
|
|
|
925
925
|
message: z.ZodString;
|
|
926
926
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
927
927
|
}, "strip", z.ZodTypeAny, {
|
|
928
|
-
field: string;
|
|
929
928
|
message: string;
|
|
929
|
+
field: string;
|
|
930
930
|
suggestion?: string | undefined;
|
|
931
931
|
}, {
|
|
932
|
-
field: string;
|
|
933
932
|
message: string;
|
|
933
|
+
field: string;
|
|
934
934
|
suggestion?: string | undefined;
|
|
935
935
|
}>, "many">>;
|
|
936
936
|
error: z.ZodOptional<z.ZodString>;
|
|
937
937
|
}, "strip", z.ZodTypeAny, {
|
|
938
938
|
success: boolean;
|
|
939
|
-
valid?: boolean | undefined;
|
|
940
939
|
error?: string | undefined;
|
|
940
|
+
valid?: boolean | undefined;
|
|
941
941
|
errors?: string[] | undefined;
|
|
942
942
|
warnings?: string[] | undefined;
|
|
943
943
|
suggestions?: {
|
|
944
|
-
field: string;
|
|
945
944
|
message: string;
|
|
945
|
+
field: string;
|
|
946
946
|
suggestion?: string | undefined;
|
|
947
947
|
}[] | undefined;
|
|
948
948
|
}, {
|
|
949
949
|
success: boolean;
|
|
950
|
-
valid?: boolean | undefined;
|
|
951
950
|
error?: string | undefined;
|
|
951
|
+
valid?: boolean | undefined;
|
|
952
952
|
errors?: string[] | undefined;
|
|
953
953
|
warnings?: string[] | undefined;
|
|
954
954
|
suggestions?: {
|
|
955
|
-
field: string;
|
|
956
955
|
message: string;
|
|
956
|
+
field: string;
|
|
957
957
|
suggestion?: string | undefined;
|
|
958
958
|
}[] | undefined;
|
|
959
959
|
}>;
|
|
@@ -970,11 +970,11 @@ export declare const ListTokensInputSchema: z.ZodObject<{
|
|
|
970
970
|
tokenType: z.ZodDefault<z.ZodOptional<z.ZodEnum<["shell", "page", "section", "all"]>>>;
|
|
971
971
|
filter: z.ZodOptional<z.ZodString>;
|
|
972
972
|
}, "strip", z.ZodTypeAny, {
|
|
973
|
-
tokenType: "
|
|
973
|
+
tokenType: "all" | "shell" | "page" | "section";
|
|
974
974
|
filter?: string | undefined;
|
|
975
975
|
}, {
|
|
976
976
|
filter?: string | undefined;
|
|
977
|
-
tokenType?: "
|
|
977
|
+
tokenType?: "all" | "shell" | "page" | "section" | undefined;
|
|
978
978
|
}>;
|
|
979
979
|
export type ListTokensInput = z.infer<typeof ListTokensInputSchema>;
|
|
980
980
|
/**
|
|
@@ -989,16 +989,16 @@ export declare const TokenMetadataSchema: z.ZodObject<{
|
|
|
989
989
|
type: z.ZodOptional<z.ZodString>;
|
|
990
990
|
}, "strip", z.ZodTypeAny, {
|
|
991
991
|
id: string;
|
|
992
|
-
type?: string | undefined;
|
|
993
|
-
description?: string | undefined;
|
|
994
992
|
name?: string | undefined;
|
|
993
|
+
description?: string | undefined;
|
|
994
|
+
type?: string | undefined;
|
|
995
995
|
platform?: string | undefined;
|
|
996
996
|
purpose?: string | undefined;
|
|
997
997
|
}, {
|
|
998
998
|
id: string;
|
|
999
|
-
type?: string | undefined;
|
|
1000
|
-
description?: string | undefined;
|
|
1001
999
|
name?: string | undefined;
|
|
1000
|
+
description?: string | undefined;
|
|
1001
|
+
type?: string | undefined;
|
|
1002
1002
|
platform?: string | undefined;
|
|
1003
1003
|
purpose?: string | undefined;
|
|
1004
1004
|
}>;
|
|
@@ -1017,16 +1017,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1017
1017
|
type: z.ZodOptional<z.ZodString>;
|
|
1018
1018
|
}, "strip", z.ZodTypeAny, {
|
|
1019
1019
|
id: string;
|
|
1020
|
-
type?: string | undefined;
|
|
1021
|
-
description?: string | undefined;
|
|
1022
1020
|
name?: string | undefined;
|
|
1021
|
+
description?: string | undefined;
|
|
1022
|
+
type?: string | undefined;
|
|
1023
1023
|
platform?: string | undefined;
|
|
1024
1024
|
purpose?: string | undefined;
|
|
1025
1025
|
}, {
|
|
1026
1026
|
id: string;
|
|
1027
|
-
type?: string | undefined;
|
|
1028
|
-
description?: string | undefined;
|
|
1029
1027
|
name?: string | undefined;
|
|
1028
|
+
description?: string | undefined;
|
|
1029
|
+
type?: string | undefined;
|
|
1030
1030
|
platform?: string | undefined;
|
|
1031
1031
|
purpose?: string | undefined;
|
|
1032
1032
|
}>, "many">>;
|
|
@@ -1039,16 +1039,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1039
1039
|
type: z.ZodOptional<z.ZodString>;
|
|
1040
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1041
1041
|
id: string;
|
|
1042
|
-
type?: string | undefined;
|
|
1043
|
-
description?: string | undefined;
|
|
1044
1042
|
name?: string | undefined;
|
|
1043
|
+
description?: string | undefined;
|
|
1044
|
+
type?: string | undefined;
|
|
1045
1045
|
platform?: string | undefined;
|
|
1046
1046
|
purpose?: string | undefined;
|
|
1047
1047
|
}, {
|
|
1048
1048
|
id: string;
|
|
1049
|
-
type?: string | undefined;
|
|
1050
|
-
description?: string | undefined;
|
|
1051
1049
|
name?: string | undefined;
|
|
1050
|
+
description?: string | undefined;
|
|
1051
|
+
type?: string | undefined;
|
|
1052
1052
|
platform?: string | undefined;
|
|
1053
1053
|
purpose?: string | undefined;
|
|
1054
1054
|
}>, "many">>;
|
|
@@ -1061,16 +1061,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1061
1061
|
type: z.ZodOptional<z.ZodString>;
|
|
1062
1062
|
}, "strip", z.ZodTypeAny, {
|
|
1063
1063
|
id: string;
|
|
1064
|
-
type?: string | undefined;
|
|
1065
|
-
description?: string | undefined;
|
|
1066
1064
|
name?: string | undefined;
|
|
1065
|
+
description?: string | undefined;
|
|
1066
|
+
type?: string | undefined;
|
|
1067
1067
|
platform?: string | undefined;
|
|
1068
1068
|
purpose?: string | undefined;
|
|
1069
1069
|
}, {
|
|
1070
1070
|
id: string;
|
|
1071
|
-
type?: string | undefined;
|
|
1072
|
-
description?: string | undefined;
|
|
1073
1071
|
name?: string | undefined;
|
|
1072
|
+
description?: string | undefined;
|
|
1073
|
+
type?: string | undefined;
|
|
1074
1074
|
platform?: string | undefined;
|
|
1075
1075
|
purpose?: string | undefined;
|
|
1076
1076
|
}>, "many">>;
|
|
@@ -1087,28 +1087,28 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1087
1087
|
error: z.ZodOptional<z.ZodString>;
|
|
1088
1088
|
}, "strip", z.ZodTypeAny, {
|
|
1089
1089
|
success: boolean;
|
|
1090
|
-
|
|
1090
|
+
error?: string | undefined;
|
|
1091
|
+
shells?: {
|
|
1091
1092
|
id: string;
|
|
1092
|
-
type?: string | undefined;
|
|
1093
|
-
description?: string | undefined;
|
|
1094
1093
|
name?: string | undefined;
|
|
1094
|
+
description?: string | undefined;
|
|
1095
|
+
type?: string | undefined;
|
|
1095
1096
|
platform?: string | undefined;
|
|
1096
1097
|
purpose?: string | undefined;
|
|
1097
1098
|
}[] | undefined;
|
|
1098
|
-
|
|
1099
|
-
shells?: {
|
|
1099
|
+
pages?: {
|
|
1100
1100
|
id: string;
|
|
1101
|
-
type?: string | undefined;
|
|
1102
|
-
description?: string | undefined;
|
|
1103
1101
|
name?: string | undefined;
|
|
1102
|
+
description?: string | undefined;
|
|
1103
|
+
type?: string | undefined;
|
|
1104
1104
|
platform?: string | undefined;
|
|
1105
1105
|
purpose?: string | undefined;
|
|
1106
1106
|
}[] | undefined;
|
|
1107
|
-
|
|
1107
|
+
sections?: {
|
|
1108
1108
|
id: string;
|
|
1109
|
-
type?: string | undefined;
|
|
1110
|
-
description?: string | undefined;
|
|
1111
1109
|
name?: string | undefined;
|
|
1110
|
+
description?: string | undefined;
|
|
1111
|
+
type?: string | undefined;
|
|
1112
1112
|
platform?: string | undefined;
|
|
1113
1113
|
purpose?: string | undefined;
|
|
1114
1114
|
}[] | undefined;
|
|
@@ -1118,28 +1118,28 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1118
1118
|
} | undefined;
|
|
1119
1119
|
}, {
|
|
1120
1120
|
success: boolean;
|
|
1121
|
-
|
|
1121
|
+
error?: string | undefined;
|
|
1122
|
+
shells?: {
|
|
1122
1123
|
id: string;
|
|
1123
|
-
type?: string | undefined;
|
|
1124
|
-
description?: string | undefined;
|
|
1125
1124
|
name?: string | undefined;
|
|
1125
|
+
description?: string | undefined;
|
|
1126
|
+
type?: string | undefined;
|
|
1126
1127
|
platform?: string | undefined;
|
|
1127
1128
|
purpose?: string | undefined;
|
|
1128
1129
|
}[] | undefined;
|
|
1129
|
-
|
|
1130
|
-
shells?: {
|
|
1130
|
+
pages?: {
|
|
1131
1131
|
id: string;
|
|
1132
|
-
type?: string | undefined;
|
|
1133
|
-
description?: string | undefined;
|
|
1134
1132
|
name?: string | undefined;
|
|
1133
|
+
description?: string | undefined;
|
|
1134
|
+
type?: string | undefined;
|
|
1135
1135
|
platform?: string | undefined;
|
|
1136
1136
|
purpose?: string | undefined;
|
|
1137
1137
|
}[] | undefined;
|
|
1138
|
-
|
|
1138
|
+
sections?: {
|
|
1139
1139
|
id: string;
|
|
1140
|
-
type?: string | undefined;
|
|
1141
|
-
description?: string | undefined;
|
|
1142
1140
|
name?: string | undefined;
|
|
1141
|
+
description?: string | undefined;
|
|
1142
|
+
type?: string | undefined;
|
|
1143
1143
|
platform?: string | undefined;
|
|
1144
1144
|
purpose?: string | undefined;
|
|
1145
1145
|
}[] | undefined;
|
|
@@ -1172,17 +1172,17 @@ export declare const IconLibraryMetaSchema: z.ZodObject<{
|
|
|
1172
1172
|
totalIcons: z.ZodNumber;
|
|
1173
1173
|
categories: z.ZodArray<z.ZodString, "many">;
|
|
1174
1174
|
}, "strip", z.ZodTypeAny, {
|
|
1175
|
-
version: string;
|
|
1176
|
-
description: string;
|
|
1177
1175
|
name: string;
|
|
1176
|
+
description: string;
|
|
1177
|
+
version: string;
|
|
1178
1178
|
id: string;
|
|
1179
1179
|
license: string;
|
|
1180
1180
|
totalIcons: number;
|
|
1181
1181
|
categories: string[];
|
|
1182
1182
|
}, {
|
|
1183
|
-
version: string;
|
|
1184
|
-
description: string;
|
|
1185
1183
|
name: string;
|
|
1184
|
+
description: string;
|
|
1185
|
+
version: string;
|
|
1186
1186
|
id: string;
|
|
1187
1187
|
license: string;
|
|
1188
1188
|
totalIcons: number;
|
|
@@ -1203,17 +1203,17 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
|
|
|
1203
1203
|
totalIcons: z.ZodNumber;
|
|
1204
1204
|
categories: z.ZodArray<z.ZodString, "many">;
|
|
1205
1205
|
}, "strip", z.ZodTypeAny, {
|
|
1206
|
-
version: string;
|
|
1207
|
-
description: string;
|
|
1208
1206
|
name: string;
|
|
1207
|
+
description: string;
|
|
1208
|
+
version: string;
|
|
1209
1209
|
id: string;
|
|
1210
1210
|
license: string;
|
|
1211
1211
|
totalIcons: number;
|
|
1212
1212
|
categories: string[];
|
|
1213
1213
|
}, {
|
|
1214
|
-
version: string;
|
|
1215
|
-
description: string;
|
|
1216
1214
|
name: string;
|
|
1215
|
+
description: string;
|
|
1216
|
+
version: string;
|
|
1217
1217
|
id: string;
|
|
1218
1218
|
license: string;
|
|
1219
1219
|
totalIcons: number;
|
|
@@ -1225,9 +1225,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
|
|
|
1225
1225
|
success: boolean;
|
|
1226
1226
|
error?: string | undefined;
|
|
1227
1227
|
libraries?: {
|
|
1228
|
-
version: string;
|
|
1229
|
-
description: string;
|
|
1230
1228
|
name: string;
|
|
1229
|
+
description: string;
|
|
1230
|
+
version: string;
|
|
1231
1231
|
id: string;
|
|
1232
1232
|
license: string;
|
|
1233
1233
|
totalIcons: number;
|
|
@@ -1238,9 +1238,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
|
|
|
1238
1238
|
success: boolean;
|
|
1239
1239
|
error?: string | undefined;
|
|
1240
1240
|
libraries?: {
|
|
1241
|
-
version: string;
|
|
1242
|
-
description: string;
|
|
1243
1241
|
name: string;
|
|
1242
|
+
description: string;
|
|
1243
|
+
version: string;
|
|
1244
1244
|
id: string;
|
|
1245
1245
|
license: string;
|
|
1246
1246
|
totalIcons: number;
|
|
@@ -1397,9 +1397,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
|
|
|
1397
1397
|
defaultVariant: z.ZodOptional<z.ZodString>;
|
|
1398
1398
|
iconSample: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1399
1399
|
}, "strip", z.ZodTypeAny, {
|
|
1400
|
-
version: string;
|
|
1401
|
-
description: string;
|
|
1402
1400
|
name: string;
|
|
1401
|
+
description: string;
|
|
1402
|
+
version: string;
|
|
1403
1403
|
id: string;
|
|
1404
1404
|
license: string;
|
|
1405
1405
|
totalIcons: number;
|
|
@@ -1429,9 +1429,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
|
|
|
1429
1429
|
defaultVariant?: string | undefined;
|
|
1430
1430
|
iconSample?: string[] | undefined;
|
|
1431
1431
|
}, {
|
|
1432
|
-
version: string;
|
|
1433
|
-
description: string;
|
|
1434
1432
|
name: string;
|
|
1433
|
+
description: string;
|
|
1434
|
+
version: string;
|
|
1435
1435
|
id: string;
|
|
1436
1436
|
license: string;
|
|
1437
1437
|
totalIcons: number;
|
|
@@ -1466,9 +1466,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
|
|
|
1466
1466
|
success: boolean;
|
|
1467
1467
|
error?: string | undefined;
|
|
1468
1468
|
library?: {
|
|
1469
|
-
version: string;
|
|
1470
|
-
description: string;
|
|
1471
1469
|
name: string;
|
|
1470
|
+
description: string;
|
|
1471
|
+
version: string;
|
|
1472
1472
|
id: string;
|
|
1473
1473
|
license: string;
|
|
1474
1474
|
totalIcons: number;
|
|
@@ -1502,9 +1502,9 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
|
|
|
1502
1502
|
success: boolean;
|
|
1503
1503
|
error?: string | undefined;
|
|
1504
1504
|
library?: {
|
|
1505
|
-
version: string;
|
|
1506
|
-
description: string;
|
|
1507
1505
|
name: string;
|
|
1506
|
+
description: string;
|
|
1507
|
+
version: string;
|
|
1508
1508
|
id: string;
|
|
1509
1509
|
license: string;
|
|
1510
1510
|
totalIcons: number;
|
|
@@ -1570,16 +1570,16 @@ export declare const ComponentMetaSchema: z.ZodObject<{
|
|
|
1570
1570
|
tier: z.ZodNumber;
|
|
1571
1571
|
}, "strip", z.ZodTypeAny, {
|
|
1572
1572
|
category: "core" | "complex" | "advanced";
|
|
1573
|
-
description: string;
|
|
1574
1573
|
name: string;
|
|
1574
|
+
description: string;
|
|
1575
1575
|
id: string;
|
|
1576
1576
|
variantsCount: number;
|
|
1577
1577
|
hasSubComponents: boolean;
|
|
1578
1578
|
tier: number;
|
|
1579
1579
|
}, {
|
|
1580
1580
|
category: "core" | "complex" | "advanced";
|
|
1581
|
-
description: string;
|
|
1582
1581
|
name: string;
|
|
1582
|
+
description: string;
|
|
1583
1583
|
id: string;
|
|
1584
1584
|
variantsCount: number;
|
|
1585
1585
|
hasSubComponents: boolean;
|
|
@@ -1601,16 +1601,16 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1601
1601
|
tier: z.ZodNumber;
|
|
1602
1602
|
}, "strip", z.ZodTypeAny, {
|
|
1603
1603
|
category: "core" | "complex" | "advanced";
|
|
1604
|
-
description: string;
|
|
1605
1604
|
name: string;
|
|
1605
|
+
description: string;
|
|
1606
1606
|
id: string;
|
|
1607
1607
|
variantsCount: number;
|
|
1608
1608
|
hasSubComponents: boolean;
|
|
1609
1609
|
tier: number;
|
|
1610
1610
|
}, {
|
|
1611
1611
|
category: "core" | "complex" | "advanced";
|
|
1612
|
-
description: string;
|
|
1613
1612
|
name: string;
|
|
1613
|
+
description: string;
|
|
1614
1614
|
id: string;
|
|
1615
1615
|
variantsCount: number;
|
|
1616
1616
|
hasSubComponents: boolean;
|
|
@@ -1636,8 +1636,8 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1636
1636
|
error?: string | undefined;
|
|
1637
1637
|
components?: {
|
|
1638
1638
|
category: "core" | "complex" | "advanced";
|
|
1639
|
-
description: string;
|
|
1640
1639
|
name: string;
|
|
1640
|
+
description: string;
|
|
1641
1641
|
id: string;
|
|
1642
1642
|
variantsCount: number;
|
|
1643
1643
|
hasSubComponents: boolean;
|
|
@@ -1654,8 +1654,8 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1654
1654
|
error?: string | undefined;
|
|
1655
1655
|
components?: {
|
|
1656
1656
|
category: "core" | "complex" | "advanced";
|
|
1657
|
-
description: string;
|
|
1658
1657
|
name: string;
|
|
1658
|
+
description: string;
|
|
1659
1659
|
id: string;
|
|
1660
1660
|
variantsCount: number;
|
|
1661
1661
|
hasSubComponents: boolean;
|
|
@@ -1697,14 +1697,14 @@ export declare const PropDefinitionSchema: z.ZodObject<{
|
|
|
1697
1697
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1698
1698
|
description: z.ZodOptional<z.ZodString>;
|
|
1699
1699
|
}, "strip", z.ZodTypeAny, {
|
|
1700
|
-
type: string;
|
|
1701
1700
|
name: string;
|
|
1701
|
+
type: string;
|
|
1702
1702
|
required: boolean;
|
|
1703
1703
|
description?: string | undefined;
|
|
1704
1704
|
defaultValue?: string | undefined;
|
|
1705
1705
|
}, {
|
|
1706
|
-
type: string;
|
|
1707
1706
|
name: string;
|
|
1707
|
+
type: string;
|
|
1708
1708
|
required: boolean;
|
|
1709
1709
|
description?: string | undefined;
|
|
1710
1710
|
defaultValue?: string | undefined;
|
|
@@ -1718,12 +1718,12 @@ export declare const VariantSchema: z.ZodObject<{
|
|
|
1718
1718
|
value: z.ZodString;
|
|
1719
1719
|
description: z.ZodOptional<z.ZodString>;
|
|
1720
1720
|
}, "strip", z.ZodTypeAny, {
|
|
1721
|
-
value: string;
|
|
1722
1721
|
name: string;
|
|
1722
|
+
value: string;
|
|
1723
1723
|
description?: string | undefined;
|
|
1724
1724
|
}, {
|
|
1725
|
-
value: string;
|
|
1726
1725
|
name: string;
|
|
1726
|
+
value: string;
|
|
1727
1727
|
description?: string | undefined;
|
|
1728
1728
|
}>;
|
|
1729
1729
|
export type Variant = z.infer<typeof VariantSchema>;
|
|
@@ -1762,14 +1762,14 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1762
1762
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1763
1763
|
description: z.ZodOptional<z.ZodString>;
|
|
1764
1764
|
}, "strip", z.ZodTypeAny, {
|
|
1765
|
-
type: string;
|
|
1766
1765
|
name: string;
|
|
1766
|
+
type: string;
|
|
1767
1767
|
required: boolean;
|
|
1768
1768
|
description?: string | undefined;
|
|
1769
1769
|
defaultValue?: string | undefined;
|
|
1770
1770
|
}, {
|
|
1771
|
-
type: string;
|
|
1772
1771
|
name: string;
|
|
1772
|
+
type: string;
|
|
1773
1773
|
required: boolean;
|
|
1774
1774
|
description?: string | undefined;
|
|
1775
1775
|
defaultValue?: string | undefined;
|
|
@@ -1779,12 +1779,12 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1779
1779
|
value: z.ZodString;
|
|
1780
1780
|
description: z.ZodOptional<z.ZodString>;
|
|
1781
1781
|
}, "strip", z.ZodTypeAny, {
|
|
1782
|
-
value: string;
|
|
1783
1782
|
name: string;
|
|
1783
|
+
value: string;
|
|
1784
1784
|
description?: string | undefined;
|
|
1785
1785
|
}, {
|
|
1786
|
-
value: string;
|
|
1787
1786
|
name: string;
|
|
1787
|
+
value: string;
|
|
1788
1788
|
description?: string | undefined;
|
|
1789
1789
|
}>, "many">>;
|
|
1790
1790
|
subComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1815,29 +1815,29 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1815
1815
|
accessibility: z.ZodOptional<z.ZodString>;
|
|
1816
1816
|
}, "strip", z.ZodTypeAny, {
|
|
1817
1817
|
category: "core" | "complex" | "advanced";
|
|
1818
|
-
description: string;
|
|
1819
1818
|
name: string;
|
|
1819
|
+
description: string;
|
|
1820
1820
|
id: string;
|
|
1821
1821
|
importStatement: string;
|
|
1822
1822
|
tier: number;
|
|
1823
1823
|
props: {
|
|
1824
|
-
type: string;
|
|
1825
1824
|
name: string;
|
|
1825
|
+
type: string;
|
|
1826
1826
|
required: boolean;
|
|
1827
1827
|
description?: string | undefined;
|
|
1828
1828
|
defaultValue?: string | undefined;
|
|
1829
1829
|
}[];
|
|
1830
|
+
dependencies?: {
|
|
1831
|
+
internal: string[];
|
|
1832
|
+
external: string[];
|
|
1833
|
+
} | undefined;
|
|
1830
1834
|
accessibility?: string | undefined;
|
|
1831
1835
|
variants?: {
|
|
1832
|
-
value: string;
|
|
1833
1836
|
name: string;
|
|
1837
|
+
value: string;
|
|
1834
1838
|
description?: string | undefined;
|
|
1835
1839
|
}[] | undefined;
|
|
1836
1840
|
subComponents?: string[] | undefined;
|
|
1837
|
-
dependencies?: {
|
|
1838
|
-
internal: string[];
|
|
1839
|
-
external: string[];
|
|
1840
|
-
} | undefined;
|
|
1841
1841
|
examples?: {
|
|
1842
1842
|
code: string;
|
|
1843
1843
|
title: string;
|
|
@@ -1845,29 +1845,29 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1845
1845
|
}[] | undefined;
|
|
1846
1846
|
}, {
|
|
1847
1847
|
category: "core" | "complex" | "advanced";
|
|
1848
|
-
description: string;
|
|
1849
1848
|
name: string;
|
|
1849
|
+
description: string;
|
|
1850
1850
|
id: string;
|
|
1851
1851
|
importStatement: string;
|
|
1852
1852
|
tier: number;
|
|
1853
1853
|
props: {
|
|
1854
|
-
type: string;
|
|
1855
1854
|
name: string;
|
|
1855
|
+
type: string;
|
|
1856
1856
|
required: boolean;
|
|
1857
1857
|
description?: string | undefined;
|
|
1858
1858
|
defaultValue?: string | undefined;
|
|
1859
1859
|
}[];
|
|
1860
|
+
dependencies?: {
|
|
1861
|
+
internal: string[];
|
|
1862
|
+
external: string[];
|
|
1863
|
+
} | undefined;
|
|
1860
1864
|
accessibility?: string | undefined;
|
|
1861
1865
|
variants?: {
|
|
1862
|
-
value: string;
|
|
1863
1866
|
name: string;
|
|
1867
|
+
value: string;
|
|
1864
1868
|
description?: string | undefined;
|
|
1865
1869
|
}[] | undefined;
|
|
1866
1870
|
subComponents?: string[] | undefined;
|
|
1867
|
-
dependencies?: {
|
|
1868
|
-
internal: string[];
|
|
1869
|
-
external: string[];
|
|
1870
|
-
} | undefined;
|
|
1871
1871
|
examples?: {
|
|
1872
1872
|
code: string;
|
|
1873
1873
|
title: string;
|
|
@@ -1877,72 +1877,72 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1877
1877
|
error: z.ZodOptional<z.ZodString>;
|
|
1878
1878
|
}, "strip", z.ZodTypeAny, {
|
|
1879
1879
|
success: boolean;
|
|
1880
|
+
error?: string | undefined;
|
|
1880
1881
|
component?: {
|
|
1881
1882
|
category: "core" | "complex" | "advanced";
|
|
1882
|
-
description: string;
|
|
1883
1883
|
name: string;
|
|
1884
|
+
description: string;
|
|
1884
1885
|
id: string;
|
|
1885
1886
|
importStatement: string;
|
|
1886
1887
|
tier: number;
|
|
1887
1888
|
props: {
|
|
1888
|
-
type: string;
|
|
1889
1889
|
name: string;
|
|
1890
|
+
type: string;
|
|
1890
1891
|
required: boolean;
|
|
1891
1892
|
description?: string | undefined;
|
|
1892
1893
|
defaultValue?: string | undefined;
|
|
1893
1894
|
}[];
|
|
1895
|
+
dependencies?: {
|
|
1896
|
+
internal: string[];
|
|
1897
|
+
external: string[];
|
|
1898
|
+
} | undefined;
|
|
1894
1899
|
accessibility?: string | undefined;
|
|
1895
1900
|
variants?: {
|
|
1896
|
-
value: string;
|
|
1897
1901
|
name: string;
|
|
1902
|
+
value: string;
|
|
1898
1903
|
description?: string | undefined;
|
|
1899
1904
|
}[] | undefined;
|
|
1900
1905
|
subComponents?: string[] | undefined;
|
|
1901
|
-
dependencies?: {
|
|
1902
|
-
internal: string[];
|
|
1903
|
-
external: string[];
|
|
1904
|
-
} | undefined;
|
|
1905
1906
|
examples?: {
|
|
1906
1907
|
code: string;
|
|
1907
1908
|
title: string;
|
|
1908
1909
|
description?: string | undefined;
|
|
1909
1910
|
}[] | undefined;
|
|
1910
1911
|
} | undefined;
|
|
1911
|
-
error?: string | undefined;
|
|
1912
1912
|
}, {
|
|
1913
1913
|
success: boolean;
|
|
1914
|
+
error?: string | undefined;
|
|
1914
1915
|
component?: {
|
|
1915
1916
|
category: "core" | "complex" | "advanced";
|
|
1916
|
-
description: string;
|
|
1917
1917
|
name: string;
|
|
1918
|
+
description: string;
|
|
1918
1919
|
id: string;
|
|
1919
1920
|
importStatement: string;
|
|
1920
1921
|
tier: number;
|
|
1921
1922
|
props: {
|
|
1922
|
-
type: string;
|
|
1923
1923
|
name: string;
|
|
1924
|
+
type: string;
|
|
1924
1925
|
required: boolean;
|
|
1925
1926
|
description?: string | undefined;
|
|
1926
1927
|
defaultValue?: string | undefined;
|
|
1927
1928
|
}[];
|
|
1929
|
+
dependencies?: {
|
|
1930
|
+
internal: string[];
|
|
1931
|
+
external: string[];
|
|
1932
|
+
} | undefined;
|
|
1928
1933
|
accessibility?: string | undefined;
|
|
1929
1934
|
variants?: {
|
|
1930
|
-
value: string;
|
|
1931
1935
|
name: string;
|
|
1936
|
+
value: string;
|
|
1932
1937
|
description?: string | undefined;
|
|
1933
1938
|
}[] | undefined;
|
|
1934
1939
|
subComponents?: string[] | undefined;
|
|
1935
|
-
dependencies?: {
|
|
1936
|
-
internal: string[];
|
|
1937
|
-
external: string[];
|
|
1938
|
-
} | undefined;
|
|
1939
1940
|
examples?: {
|
|
1940
1941
|
code: string;
|
|
1941
1942
|
title: string;
|
|
1942
1943
|
description?: string | undefined;
|
|
1943
1944
|
}[] | undefined;
|
|
1944
1945
|
} | undefined;
|
|
1945
|
-
error?: string | undefined;
|
|
1946
1946
|
}>;
|
|
1947
1947
|
export type PreviewComponentOutput = z.infer<typeof PreviewComponentOutputSchema>;
|
|
1948
1948
|
/**
|
|
@@ -1958,10 +1958,10 @@ export declare const ListScreenTemplatesInputSchema: z.ZodObject<{
|
|
|
1958
1958
|
category: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auth", "dashboard", "form", "marketing", "feedback", "all"]>>>;
|
|
1959
1959
|
search: z.ZodOptional<z.ZodString>;
|
|
1960
1960
|
}, "strip", z.ZodTypeAny, {
|
|
1961
|
-
category: "
|
|
1961
|
+
category: "all" | "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
1962
1962
|
search?: string | undefined;
|
|
1963
1963
|
}, {
|
|
1964
|
-
category?: "
|
|
1964
|
+
category?: "all" | "dashboard" | "auth" | "form" | "marketing" | "feedback" | undefined;
|
|
1965
1965
|
search?: string | undefined;
|
|
1966
1966
|
}>;
|
|
1967
1967
|
export type ListScreenTemplatesInput = z.infer<typeof ListScreenTemplatesInputSchema>;
|
|
@@ -1983,22 +1983,22 @@ export declare const TemplateMetaSchema: z.ZodObject<{
|
|
|
1983
1983
|
version: z.ZodString;
|
|
1984
1984
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1985
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1986
|
-
category: "dashboard" | "
|
|
1987
|
-
version: string;
|
|
1988
|
-
description: string;
|
|
1986
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
1989
1987
|
name: string;
|
|
1988
|
+
description: string;
|
|
1989
|
+
version: string;
|
|
1990
1990
|
id: string;
|
|
1991
1991
|
requiredComponentsCount: number;
|
|
1992
|
-
layoutType: "
|
|
1992
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
1993
1993
|
tags?: string[] | undefined;
|
|
1994
1994
|
}, {
|
|
1995
|
-
category: "dashboard" | "
|
|
1996
|
-
version: string;
|
|
1997
|
-
description: string;
|
|
1995
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
1998
1996
|
name: string;
|
|
1997
|
+
description: string;
|
|
1998
|
+
version: string;
|
|
1999
1999
|
id: string;
|
|
2000
2000
|
requiredComponentsCount: number;
|
|
2001
|
-
layoutType: "
|
|
2001
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
2002
2002
|
tags?: string[] | undefined;
|
|
2003
2003
|
}>;
|
|
2004
2004
|
export type TemplateMeta = z.infer<typeof TemplateMetaSchema>;
|
|
@@ -2017,22 +2017,22 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2017
2017
|
version: z.ZodString;
|
|
2018
2018
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2019
2019
|
}, "strip", z.ZodTypeAny, {
|
|
2020
|
-
category: "dashboard" | "
|
|
2021
|
-
version: string;
|
|
2022
|
-
description: string;
|
|
2020
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2023
2021
|
name: string;
|
|
2022
|
+
description: string;
|
|
2023
|
+
version: string;
|
|
2024
2024
|
id: string;
|
|
2025
2025
|
requiredComponentsCount: number;
|
|
2026
|
-
layoutType: "
|
|
2026
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
2027
2027
|
tags?: string[] | undefined;
|
|
2028
2028
|
}, {
|
|
2029
|
-
category: "dashboard" | "
|
|
2030
|
-
version: string;
|
|
2031
|
-
description: string;
|
|
2029
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2032
2030
|
name: string;
|
|
2031
|
+
description: string;
|
|
2032
|
+
version: string;
|
|
2033
2033
|
id: string;
|
|
2034
2034
|
requiredComponentsCount: number;
|
|
2035
|
-
layoutType: "
|
|
2035
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
2036
2036
|
tags?: string[] | undefined;
|
|
2037
2037
|
}>, "many">>;
|
|
2038
2038
|
count: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2044,14 +2044,14 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2044
2044
|
feedback: z.ZodNumber;
|
|
2045
2045
|
}, "strip", z.ZodTypeAny, {
|
|
2046
2046
|
dashboard: number;
|
|
2047
|
-
form: number;
|
|
2048
2047
|
auth: number;
|
|
2048
|
+
form: number;
|
|
2049
2049
|
marketing: number;
|
|
2050
2050
|
feedback: number;
|
|
2051
2051
|
}, {
|
|
2052
2052
|
dashboard: number;
|
|
2053
|
-
form: number;
|
|
2054
2053
|
auth: number;
|
|
2054
|
+
form: number;
|
|
2055
2055
|
marketing: number;
|
|
2056
2056
|
feedback: number;
|
|
2057
2057
|
}>>;
|
|
@@ -2061,20 +2061,20 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2061
2061
|
error?: string | undefined;
|
|
2062
2062
|
categories?: {
|
|
2063
2063
|
dashboard: number;
|
|
2064
|
-
form: number;
|
|
2065
2064
|
auth: number;
|
|
2065
|
+
form: number;
|
|
2066
2066
|
marketing: number;
|
|
2067
2067
|
feedback: number;
|
|
2068
2068
|
} | undefined;
|
|
2069
2069
|
count?: number | undefined;
|
|
2070
2070
|
templates?: {
|
|
2071
|
-
category: "dashboard" | "
|
|
2072
|
-
version: string;
|
|
2073
|
-
description: string;
|
|
2071
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2074
2072
|
name: string;
|
|
2073
|
+
description: string;
|
|
2074
|
+
version: string;
|
|
2075
2075
|
id: string;
|
|
2076
2076
|
requiredComponentsCount: number;
|
|
2077
|
-
layoutType: "
|
|
2077
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
2078
2078
|
tags?: string[] | undefined;
|
|
2079
2079
|
}[] | undefined;
|
|
2080
2080
|
}, {
|
|
@@ -2082,20 +2082,20 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2082
2082
|
error?: string | undefined;
|
|
2083
2083
|
categories?: {
|
|
2084
2084
|
dashboard: number;
|
|
2085
|
-
form: number;
|
|
2086
2085
|
auth: number;
|
|
2086
|
+
form: number;
|
|
2087
2087
|
marketing: number;
|
|
2088
2088
|
feedback: number;
|
|
2089
2089
|
} | undefined;
|
|
2090
2090
|
count?: number | undefined;
|
|
2091
2091
|
templates?: {
|
|
2092
|
-
category: "dashboard" | "
|
|
2093
|
-
version: string;
|
|
2094
|
-
description: string;
|
|
2092
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2095
2093
|
name: string;
|
|
2094
|
+
description: string;
|
|
2095
|
+
version: string;
|
|
2096
2096
|
id: string;
|
|
2097
2097
|
requiredComponentsCount: number;
|
|
2098
|
-
layoutType: "
|
|
2098
|
+
layoutType: "sidebar" | "full" | "centered";
|
|
2099
2099
|
tags?: string[] | undefined;
|
|
2100
2100
|
}[] | undefined;
|
|
2101
2101
|
}>;
|
|
@@ -2138,23 +2138,23 @@ export declare const SkeletonSchema: z.ZodObject<{
|
|
|
2138
2138
|
slot: string;
|
|
2139
2139
|
}>, "many">;
|
|
2140
2140
|
}, "strip", z.ZodTypeAny, {
|
|
2141
|
+
shell: string;
|
|
2142
|
+
page: string;
|
|
2141
2143
|
sections: {
|
|
2142
2144
|
name: string;
|
|
2143
2145
|
required: boolean;
|
|
2144
2146
|
id: string;
|
|
2145
2147
|
slot: string;
|
|
2146
2148
|
}[];
|
|
2149
|
+
}, {
|
|
2147
2150
|
shell: string;
|
|
2148
2151
|
page: string;
|
|
2149
|
-
}, {
|
|
2150
2152
|
sections: {
|
|
2151
2153
|
name: string;
|
|
2152
2154
|
required: boolean;
|
|
2153
2155
|
id: string;
|
|
2154
2156
|
slot: string;
|
|
2155
2157
|
}[];
|
|
2156
|
-
shell: string;
|
|
2157
|
-
page: string;
|
|
2158
2158
|
}>;
|
|
2159
2159
|
export type Skeleton = z.infer<typeof SkeletonSchema>;
|
|
2160
2160
|
/**
|
|
@@ -2282,23 +2282,23 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2282
2282
|
slot: string;
|
|
2283
2283
|
}>, "many">;
|
|
2284
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2285
|
+
shell: string;
|
|
2286
|
+
page: string;
|
|
2285
2287
|
sections: {
|
|
2286
2288
|
name: string;
|
|
2287
2289
|
required: boolean;
|
|
2288
2290
|
id: string;
|
|
2289
2291
|
slot: string;
|
|
2290
2292
|
}[];
|
|
2293
|
+
}, {
|
|
2291
2294
|
shell: string;
|
|
2292
2295
|
page: string;
|
|
2293
|
-
}, {
|
|
2294
2296
|
sections: {
|
|
2295
2297
|
name: string;
|
|
2296
2298
|
required: boolean;
|
|
2297
2299
|
id: string;
|
|
2298
2300
|
slot: string;
|
|
2299
2301
|
}[];
|
|
2300
|
-
shell: string;
|
|
2301
|
-
page: string;
|
|
2302
2302
|
}>;
|
|
2303
2303
|
layout: z.ZodObject<{
|
|
2304
2304
|
type: z.ZodEnum<["centered", "sidebar", "full"]>;
|
|
@@ -2376,7 +2376,7 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2376
2376
|
};
|
|
2377
2377
|
}>>;
|
|
2378
2378
|
}, "strip", z.ZodTypeAny, {
|
|
2379
|
-
type: "
|
|
2379
|
+
type: "sidebar" | "full" | "centered";
|
|
2380
2380
|
responsive?: {
|
|
2381
2381
|
mobile: {
|
|
2382
2382
|
columns: number;
|
|
@@ -2395,7 +2395,7 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2395
2395
|
};
|
|
2396
2396
|
} | undefined;
|
|
2397
2397
|
}, {
|
|
2398
|
-
type: "
|
|
2398
|
+
type: "sidebar" | "full" | "centered";
|
|
2399
2399
|
responsive?: {
|
|
2400
2400
|
mobile: {
|
|
2401
2401
|
columns: number;
|
|
@@ -2446,9 +2446,12 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2446
2446
|
updated: z.ZodString;
|
|
2447
2447
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2448
2448
|
}, "strip", z.ZodTypeAny, {
|
|
2449
|
-
category: "dashboard" | "
|
|
2449
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2450
|
+
name: string;
|
|
2451
|
+
description: string;
|
|
2452
|
+
version: string;
|
|
2450
2453
|
layout: {
|
|
2451
|
-
type: "
|
|
2454
|
+
type: "sidebar" | "full" | "centered";
|
|
2452
2455
|
responsive?: {
|
|
2453
2456
|
mobile: {
|
|
2454
2457
|
columns: number;
|
|
@@ -2467,20 +2470,17 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2467
2470
|
};
|
|
2468
2471
|
} | undefined;
|
|
2469
2472
|
};
|
|
2470
|
-
version: string;
|
|
2471
|
-
description: string;
|
|
2472
|
-
name: string;
|
|
2473
2473
|
id: string;
|
|
2474
2474
|
importStatement: string;
|
|
2475
2475
|
skeleton: {
|
|
2476
|
+
shell: string;
|
|
2477
|
+
page: string;
|
|
2476
2478
|
sections: {
|
|
2477
2479
|
name: string;
|
|
2478
2480
|
required: boolean;
|
|
2479
2481
|
id: string;
|
|
2480
2482
|
slot: string;
|
|
2481
2483
|
}[];
|
|
2482
|
-
shell: string;
|
|
2483
|
-
page: string;
|
|
2484
2484
|
};
|
|
2485
2485
|
customizable: {
|
|
2486
2486
|
optional: string[];
|
|
@@ -2497,9 +2497,12 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2497
2497
|
slots?: string[] | undefined;
|
|
2498
2498
|
} | undefined;
|
|
2499
2499
|
}, {
|
|
2500
|
-
category: "dashboard" | "
|
|
2500
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2501
|
+
name: string;
|
|
2502
|
+
description: string;
|
|
2503
|
+
version: string;
|
|
2501
2504
|
layout: {
|
|
2502
|
-
type: "
|
|
2505
|
+
type: "sidebar" | "full" | "centered";
|
|
2503
2506
|
responsive?: {
|
|
2504
2507
|
mobile: {
|
|
2505
2508
|
columns: number;
|
|
@@ -2518,20 +2521,17 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2518
2521
|
};
|
|
2519
2522
|
} | undefined;
|
|
2520
2523
|
};
|
|
2521
|
-
version: string;
|
|
2522
|
-
description: string;
|
|
2523
|
-
name: string;
|
|
2524
2524
|
id: string;
|
|
2525
2525
|
importStatement: string;
|
|
2526
2526
|
skeleton: {
|
|
2527
|
+
shell: string;
|
|
2528
|
+
page: string;
|
|
2527
2529
|
sections: {
|
|
2528
2530
|
name: string;
|
|
2529
2531
|
required: boolean;
|
|
2530
2532
|
id: string;
|
|
2531
2533
|
slot: string;
|
|
2532
2534
|
}[];
|
|
2533
|
-
shell: string;
|
|
2534
|
-
page: string;
|
|
2535
2535
|
};
|
|
2536
2536
|
customizable: {
|
|
2537
2537
|
optional: string[];
|
|
@@ -2553,9 +2553,12 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2553
2553
|
success: boolean;
|
|
2554
2554
|
error?: string | undefined;
|
|
2555
2555
|
template?: {
|
|
2556
|
-
category: "dashboard" | "
|
|
2556
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2557
|
+
name: string;
|
|
2558
|
+
description: string;
|
|
2559
|
+
version: string;
|
|
2557
2560
|
layout: {
|
|
2558
|
-
type: "
|
|
2561
|
+
type: "sidebar" | "full" | "centered";
|
|
2559
2562
|
responsive?: {
|
|
2560
2563
|
mobile: {
|
|
2561
2564
|
columns: number;
|
|
@@ -2574,20 +2577,17 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2574
2577
|
};
|
|
2575
2578
|
} | undefined;
|
|
2576
2579
|
};
|
|
2577
|
-
version: string;
|
|
2578
|
-
description: string;
|
|
2579
|
-
name: string;
|
|
2580
2580
|
id: string;
|
|
2581
2581
|
importStatement: string;
|
|
2582
2582
|
skeleton: {
|
|
2583
|
+
shell: string;
|
|
2584
|
+
page: string;
|
|
2583
2585
|
sections: {
|
|
2584
2586
|
name: string;
|
|
2585
2587
|
required: boolean;
|
|
2586
2588
|
id: string;
|
|
2587
2589
|
slot: string;
|
|
2588
2590
|
}[];
|
|
2589
|
-
shell: string;
|
|
2590
|
-
page: string;
|
|
2591
2591
|
};
|
|
2592
2592
|
customizable: {
|
|
2593
2593
|
optional: string[];
|
|
@@ -2608,9 +2608,12 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2608
2608
|
success: boolean;
|
|
2609
2609
|
error?: string | undefined;
|
|
2610
2610
|
template?: {
|
|
2611
|
-
category: "dashboard" | "
|
|
2611
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2612
|
+
name: string;
|
|
2613
|
+
description: string;
|
|
2614
|
+
version: string;
|
|
2612
2615
|
layout: {
|
|
2613
|
-
type: "
|
|
2616
|
+
type: "sidebar" | "full" | "centered";
|
|
2614
2617
|
responsive?: {
|
|
2615
2618
|
mobile: {
|
|
2616
2619
|
columns: number;
|
|
@@ -2629,20 +2632,17 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2629
2632
|
};
|
|
2630
2633
|
} | undefined;
|
|
2631
2634
|
};
|
|
2632
|
-
version: string;
|
|
2633
|
-
description: string;
|
|
2634
|
-
name: string;
|
|
2635
2635
|
id: string;
|
|
2636
2636
|
importStatement: string;
|
|
2637
2637
|
skeleton: {
|
|
2638
|
+
shell: string;
|
|
2639
|
+
page: string;
|
|
2638
2640
|
sections: {
|
|
2639
2641
|
name: string;
|
|
2640
2642
|
required: boolean;
|
|
2641
2643
|
id: string;
|
|
2642
2644
|
slot: string;
|
|
2643
2645
|
}[];
|
|
2644
|
-
shell: string;
|
|
2645
|
-
page: string;
|
|
2646
2646
|
};
|
|
2647
2647
|
customizable: {
|
|
2648
2648
|
optional: string[];
|
|
@@ -2711,23 +2711,23 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2711
2711
|
slot: string;
|
|
2712
2712
|
}>, "many">;
|
|
2713
2713
|
}, "strip", z.ZodTypeAny, {
|
|
2714
|
+
shell: string;
|
|
2715
|
+
page: string;
|
|
2714
2716
|
sections: {
|
|
2715
2717
|
name: string;
|
|
2716
2718
|
required: boolean;
|
|
2717
2719
|
id: string;
|
|
2718
2720
|
slot: string;
|
|
2719
2721
|
}[];
|
|
2722
|
+
}, {
|
|
2720
2723
|
shell: string;
|
|
2721
2724
|
page: string;
|
|
2722
|
-
}, {
|
|
2723
2725
|
sections: {
|
|
2724
2726
|
name: string;
|
|
2725
2727
|
required: boolean;
|
|
2726
2728
|
id: string;
|
|
2727
2729
|
slot: string;
|
|
2728
2730
|
}[];
|
|
2729
|
-
shell: string;
|
|
2730
|
-
page: string;
|
|
2731
2731
|
}>>;
|
|
2732
2732
|
requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2733
2733
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2737,14 +2737,14 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2737
2737
|
confidence: number;
|
|
2738
2738
|
matchedKeywords: string[];
|
|
2739
2739
|
skeleton?: {
|
|
2740
|
+
shell: string;
|
|
2741
|
+
page: string;
|
|
2740
2742
|
sections: {
|
|
2741
2743
|
name: string;
|
|
2742
2744
|
required: boolean;
|
|
2743
2745
|
id: string;
|
|
2744
2746
|
slot: string;
|
|
2745
2747
|
}[];
|
|
2746
|
-
shell: string;
|
|
2747
|
-
page: string;
|
|
2748
2748
|
} | undefined;
|
|
2749
2749
|
requiredComponents?: string[] | undefined;
|
|
2750
2750
|
}, {
|
|
@@ -2754,14 +2754,14 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2754
2754
|
confidence: number;
|
|
2755
2755
|
matchedKeywords: string[];
|
|
2756
2756
|
skeleton?: {
|
|
2757
|
+
shell: string;
|
|
2758
|
+
page: string;
|
|
2757
2759
|
sections: {
|
|
2758
2760
|
name: string;
|
|
2759
2761
|
required: boolean;
|
|
2760
2762
|
id: string;
|
|
2761
2763
|
slot: string;
|
|
2762
2764
|
}[];
|
|
2763
|
-
shell: string;
|
|
2764
|
-
page: string;
|
|
2765
2765
|
} | undefined;
|
|
2766
2766
|
requiredComponents?: string[] | undefined;
|
|
2767
2767
|
}>;
|
|
@@ -2782,14 +2782,14 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
|
|
|
2782
2782
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2783
2783
|
description: z.ZodOptional<z.ZodString>;
|
|
2784
2784
|
}, "strip", z.ZodTypeAny, {
|
|
2785
|
-
type: string;
|
|
2786
2785
|
name: string;
|
|
2786
|
+
type: string;
|
|
2787
2787
|
required: boolean;
|
|
2788
2788
|
description?: string | undefined;
|
|
2789
2789
|
defaultValue?: string | undefined;
|
|
2790
2790
|
}, {
|
|
2791
|
-
type: string;
|
|
2792
2791
|
name: string;
|
|
2792
|
+
type: string;
|
|
2793
2793
|
required: boolean;
|
|
2794
2794
|
description?: string | undefined;
|
|
2795
2795
|
defaultValue?: string | undefined;
|
|
@@ -2799,48 +2799,48 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
|
|
|
2799
2799
|
value: z.ZodString;
|
|
2800
2800
|
description: z.ZodOptional<z.ZodString>;
|
|
2801
2801
|
}, "strip", z.ZodTypeAny, {
|
|
2802
|
-
value: string;
|
|
2803
2802
|
name: string;
|
|
2803
|
+
value: string;
|
|
2804
2804
|
description?: string | undefined;
|
|
2805
2805
|
}, {
|
|
2806
|
-
value: string;
|
|
2807
2806
|
name: string;
|
|
2807
|
+
value: string;
|
|
2808
2808
|
description?: string | undefined;
|
|
2809
2809
|
}>, "many">>;
|
|
2810
2810
|
}, "strip", z.ZodTypeAny, {
|
|
2811
2811
|
category: "core" | "complex" | "advanced";
|
|
2812
|
-
description: string;
|
|
2813
2812
|
name: string;
|
|
2813
|
+
description: string;
|
|
2814
2814
|
id: string;
|
|
2815
2815
|
importStatement: string;
|
|
2816
2816
|
props: {
|
|
2817
|
-
type: string;
|
|
2818
2817
|
name: string;
|
|
2818
|
+
type: string;
|
|
2819
2819
|
required: boolean;
|
|
2820
2820
|
description?: string | undefined;
|
|
2821
2821
|
defaultValue?: string | undefined;
|
|
2822
2822
|
}[];
|
|
2823
2823
|
variants?: {
|
|
2824
|
-
value: string;
|
|
2825
2824
|
name: string;
|
|
2825
|
+
value: string;
|
|
2826
2826
|
description?: string | undefined;
|
|
2827
2827
|
}[] | undefined;
|
|
2828
2828
|
}, {
|
|
2829
2829
|
category: "core" | "complex" | "advanced";
|
|
2830
|
-
description: string;
|
|
2831
2830
|
name: string;
|
|
2831
|
+
description: string;
|
|
2832
2832
|
id: string;
|
|
2833
2833
|
importStatement: string;
|
|
2834
2834
|
props: {
|
|
2835
|
-
type: string;
|
|
2836
2835
|
name: string;
|
|
2836
|
+
type: string;
|
|
2837
2837
|
required: boolean;
|
|
2838
2838
|
description?: string | undefined;
|
|
2839
2839
|
defaultValue?: string | undefined;
|
|
2840
2840
|
}[];
|
|
2841
2841
|
variants?: {
|
|
2842
|
-
value: string;
|
|
2843
2842
|
name: string;
|
|
2843
|
+
value: string;
|
|
2844
2844
|
description?: string | undefined;
|
|
2845
2845
|
}[] | undefined;
|
|
2846
2846
|
}>;
|
|
@@ -2908,6 +2908,8 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2908
2908
|
author?: string | undefined;
|
|
2909
2909
|
}>>;
|
|
2910
2910
|
}, "strip", z.ZodTypeAny, {
|
|
2911
|
+
shell: string;
|
|
2912
|
+
page: string;
|
|
2911
2913
|
sections: {
|
|
2912
2914
|
pattern: string;
|
|
2913
2915
|
id: string;
|
|
@@ -2918,19 +2920,19 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2918
2920
|
}[];
|
|
2919
2921
|
slot?: string | undefined;
|
|
2920
2922
|
}[];
|
|
2921
|
-
shell: string;
|
|
2922
|
-
page: string;
|
|
2923
2923
|
id: string;
|
|
2924
|
-
description?: string | undefined;
|
|
2925
2924
|
name?: string | undefined;
|
|
2926
|
-
|
|
2925
|
+
description?: string | undefined;
|
|
2927
2926
|
metadata?: {
|
|
2928
2927
|
version?: string | undefined;
|
|
2929
2928
|
created?: string | undefined;
|
|
2930
2929
|
updated?: string | undefined;
|
|
2931
2930
|
author?: string | undefined;
|
|
2932
2931
|
} | undefined;
|
|
2932
|
+
themeId?: string | undefined;
|
|
2933
2933
|
}, {
|
|
2934
|
+
shell: string;
|
|
2935
|
+
page: string;
|
|
2934
2936
|
sections: {
|
|
2935
2937
|
pattern: string;
|
|
2936
2938
|
id: string;
|
|
@@ -2941,18 +2943,16 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2941
2943
|
}[];
|
|
2942
2944
|
slot?: string | undefined;
|
|
2943
2945
|
}[];
|
|
2944
|
-
shell: string;
|
|
2945
|
-
page: string;
|
|
2946
2946
|
id: string;
|
|
2947
|
-
description?: string | undefined;
|
|
2948
2947
|
name?: string | undefined;
|
|
2949
|
-
|
|
2948
|
+
description?: string | undefined;
|
|
2950
2949
|
metadata?: {
|
|
2951
2950
|
version?: string | undefined;
|
|
2952
2951
|
created?: string | undefined;
|
|
2953
2952
|
updated?: string | undefined;
|
|
2954
2953
|
author?: string | undefined;
|
|
2955
2954
|
} | undefined;
|
|
2955
|
+
themeId?: string | undefined;
|
|
2956
2956
|
}>;
|
|
2957
2957
|
export type ScreenDefinition = z.infer<typeof ScreenDefinitionSchema>;
|
|
2958
2958
|
/**
|
|
@@ -3021,6 +3021,8 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3021
3021
|
author?: string | undefined;
|
|
3022
3022
|
}>>;
|
|
3023
3023
|
}, "strip", z.ZodTypeAny, {
|
|
3024
|
+
shell: string;
|
|
3025
|
+
page: string;
|
|
3024
3026
|
sections: {
|
|
3025
3027
|
pattern: string;
|
|
3026
3028
|
id: string;
|
|
@@ -3031,19 +3033,19 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3031
3033
|
}[];
|
|
3032
3034
|
slot?: string | undefined;
|
|
3033
3035
|
}[];
|
|
3034
|
-
shell: string;
|
|
3035
|
-
page: string;
|
|
3036
3036
|
id: string;
|
|
3037
|
-
description?: string | undefined;
|
|
3038
3037
|
name?: string | undefined;
|
|
3039
|
-
|
|
3038
|
+
description?: string | undefined;
|
|
3040
3039
|
metadata?: {
|
|
3041
3040
|
version?: string | undefined;
|
|
3042
3041
|
created?: string | undefined;
|
|
3043
3042
|
updated?: string | undefined;
|
|
3044
3043
|
author?: string | undefined;
|
|
3045
3044
|
} | undefined;
|
|
3045
|
+
themeId?: string | undefined;
|
|
3046
3046
|
}, {
|
|
3047
|
+
shell: string;
|
|
3048
|
+
page: string;
|
|
3047
3049
|
sections: {
|
|
3048
3050
|
pattern: string;
|
|
3049
3051
|
id: string;
|
|
@@ -3054,23 +3056,23 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3054
3056
|
}[];
|
|
3055
3057
|
slot?: string | undefined;
|
|
3056
3058
|
}[];
|
|
3057
|
-
shell: string;
|
|
3058
|
-
page: string;
|
|
3059
3059
|
id: string;
|
|
3060
|
-
description?: string | undefined;
|
|
3061
3060
|
name?: string | undefined;
|
|
3062
|
-
|
|
3061
|
+
description?: string | undefined;
|
|
3063
3062
|
metadata?: {
|
|
3064
3063
|
version?: string | undefined;
|
|
3065
3064
|
created?: string | undefined;
|
|
3066
3065
|
updated?: string | undefined;
|
|
3067
3066
|
author?: string | undefined;
|
|
3068
3067
|
} | undefined;
|
|
3068
|
+
themeId?: string | undefined;
|
|
3069
3069
|
}>;
|
|
3070
3070
|
}, "strip", z.ZodTypeAny, {
|
|
3071
|
-
description: string;
|
|
3072
3071
|
name: string;
|
|
3072
|
+
description: string;
|
|
3073
3073
|
definition: {
|
|
3074
|
+
shell: string;
|
|
3075
|
+
page: string;
|
|
3074
3076
|
sections: {
|
|
3075
3077
|
pattern: string;
|
|
3076
3078
|
id: string;
|
|
@@ -3081,23 +3083,23 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3081
3083
|
}[];
|
|
3082
3084
|
slot?: string | undefined;
|
|
3083
3085
|
}[];
|
|
3084
|
-
shell: string;
|
|
3085
|
-
page: string;
|
|
3086
3086
|
id: string;
|
|
3087
|
-
description?: string | undefined;
|
|
3088
3087
|
name?: string | undefined;
|
|
3089
|
-
|
|
3088
|
+
description?: string | undefined;
|
|
3090
3089
|
metadata?: {
|
|
3091
3090
|
version?: string | undefined;
|
|
3092
3091
|
created?: string | undefined;
|
|
3093
3092
|
updated?: string | undefined;
|
|
3094
3093
|
author?: string | undefined;
|
|
3095
3094
|
} | undefined;
|
|
3095
|
+
themeId?: string | undefined;
|
|
3096
3096
|
};
|
|
3097
3097
|
}, {
|
|
3098
|
-
description: string;
|
|
3099
3098
|
name: string;
|
|
3099
|
+
description: string;
|
|
3100
3100
|
definition: {
|
|
3101
|
+
shell: string;
|
|
3102
|
+
page: string;
|
|
3101
3103
|
sections: {
|
|
3102
3104
|
pattern: string;
|
|
3103
3105
|
id: string;
|
|
@@ -3108,18 +3110,16 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3108
3110
|
}[];
|
|
3109
3111
|
slot?: string | undefined;
|
|
3110
3112
|
}[];
|
|
3111
|
-
shell: string;
|
|
3112
|
-
page: string;
|
|
3113
3113
|
id: string;
|
|
3114
|
-
description?: string | undefined;
|
|
3115
3114
|
name?: string | undefined;
|
|
3116
|
-
|
|
3115
|
+
description?: string | undefined;
|
|
3117
3116
|
metadata?: {
|
|
3118
3117
|
version?: string | undefined;
|
|
3119
3118
|
created?: string | undefined;
|
|
3120
3119
|
updated?: string | undefined;
|
|
3121
3120
|
author?: string | undefined;
|
|
3122
3121
|
} | undefined;
|
|
3122
|
+
themeId?: string | undefined;
|
|
3123
3123
|
};
|
|
3124
3124
|
}>;
|
|
3125
3125
|
export type ScreenExample = z.infer<typeof ScreenExampleSchema>;
|
|
@@ -3171,14 +3171,14 @@ export declare const WorkflowStepSchema: z.ZodObject<{
|
|
|
3171
3171
|
description: z.ZodString;
|
|
3172
3172
|
example: z.ZodOptional<z.ZodString>;
|
|
3173
3173
|
}, "strip", z.ZodTypeAny, {
|
|
3174
|
-
action: string;
|
|
3175
3174
|
description: string;
|
|
3175
|
+
action: string;
|
|
3176
3176
|
step: number;
|
|
3177
3177
|
example?: string | undefined;
|
|
3178
3178
|
tool?: string | undefined;
|
|
3179
3179
|
}, {
|
|
3180
|
-
action: string;
|
|
3181
3180
|
description: string;
|
|
3181
|
+
action: string;
|
|
3182
3182
|
step: number;
|
|
3183
3183
|
example?: string | undefined;
|
|
3184
3184
|
tool?: string | undefined;
|
|
@@ -3198,14 +3198,14 @@ export declare const WorkflowGuideSchema: z.ZodObject<{
|
|
|
3198
3198
|
description: z.ZodString;
|
|
3199
3199
|
example: z.ZodOptional<z.ZodString>;
|
|
3200
3200
|
}, "strip", z.ZodTypeAny, {
|
|
3201
|
-
action: string;
|
|
3202
3201
|
description: string;
|
|
3202
|
+
action: string;
|
|
3203
3203
|
step: number;
|
|
3204
3204
|
example?: string | undefined;
|
|
3205
3205
|
tool?: string | undefined;
|
|
3206
3206
|
}, {
|
|
3207
|
-
action: string;
|
|
3208
3207
|
description: string;
|
|
3208
|
+
action: string;
|
|
3209
3209
|
step: number;
|
|
3210
3210
|
example?: string | undefined;
|
|
3211
3211
|
tool?: string | undefined;
|
|
@@ -3215,8 +3215,8 @@ export declare const WorkflowGuideSchema: z.ZodObject<{
|
|
|
3215
3215
|
description: string;
|
|
3216
3216
|
title: string;
|
|
3217
3217
|
steps: {
|
|
3218
|
-
action: string;
|
|
3219
3218
|
description: string;
|
|
3219
|
+
action: string;
|
|
3220
3220
|
step: number;
|
|
3221
3221
|
example?: string | undefined;
|
|
3222
3222
|
tool?: string | undefined;
|
|
@@ -3226,8 +3226,8 @@ export declare const WorkflowGuideSchema: z.ZodObject<{
|
|
|
3226
3226
|
description: string;
|
|
3227
3227
|
title: string;
|
|
3228
3228
|
steps: {
|
|
3229
|
-
action: string;
|
|
3230
3229
|
description: string;
|
|
3230
|
+
action: string;
|
|
3231
3231
|
step: number;
|
|
3232
3232
|
example?: string | undefined;
|
|
3233
3233
|
tool?: string | undefined;
|
|
@@ -3269,6 +3269,8 @@ export declare const DefinitionStarterSchema: z.ZodObject<{
|
|
|
3269
3269
|
}[];
|
|
3270
3270
|
}>, "many">;
|
|
3271
3271
|
}, "strip", z.ZodTypeAny, {
|
|
3272
|
+
shell: string;
|
|
3273
|
+
page: string;
|
|
3272
3274
|
sections: {
|
|
3273
3275
|
pattern: string;
|
|
3274
3276
|
id: string;
|
|
@@ -3277,11 +3279,11 @@ export declare const DefinitionStarterSchema: z.ZodObject<{
|
|
|
3277
3279
|
props?: Record<string, unknown> | undefined;
|
|
3278
3280
|
}[];
|
|
3279
3281
|
}[];
|
|
3280
|
-
shell: string;
|
|
3281
|
-
page: string;
|
|
3282
3282
|
id: string;
|
|
3283
3283
|
themeId?: string | undefined;
|
|
3284
3284
|
}, {
|
|
3285
|
+
shell: string;
|
|
3286
|
+
page: string;
|
|
3285
3287
|
sections: {
|
|
3286
3288
|
pattern: string;
|
|
3287
3289
|
id: string;
|
|
@@ -3290,8 +3292,6 @@ export declare const DefinitionStarterSchema: z.ZodObject<{
|
|
|
3290
3292
|
props?: Record<string, unknown> | undefined;
|
|
3291
3293
|
}[];
|
|
3292
3294
|
}[];
|
|
3293
|
-
shell: string;
|
|
3294
|
-
page: string;
|
|
3295
3295
|
id: string;
|
|
3296
3296
|
themeId?: string | undefined;
|
|
3297
3297
|
}>;
|
|
@@ -3327,23 +3327,23 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3327
3327
|
slot: string;
|
|
3328
3328
|
}>, "many">;
|
|
3329
3329
|
}, "strip", z.ZodTypeAny, {
|
|
3330
|
+
shell: string;
|
|
3331
|
+
page: string;
|
|
3330
3332
|
sections: {
|
|
3331
3333
|
name: string;
|
|
3332
3334
|
required: boolean;
|
|
3333
3335
|
id: string;
|
|
3334
3336
|
slot: string;
|
|
3335
3337
|
}[];
|
|
3338
|
+
}, {
|
|
3336
3339
|
shell: string;
|
|
3337
3340
|
page: string;
|
|
3338
|
-
}, {
|
|
3339
3341
|
sections: {
|
|
3340
3342
|
name: string;
|
|
3341
3343
|
required: boolean;
|
|
3342
3344
|
id: string;
|
|
3343
3345
|
slot: string;
|
|
3344
3346
|
}[];
|
|
3345
|
-
shell: string;
|
|
3346
|
-
page: string;
|
|
3347
3347
|
}>>;
|
|
3348
3348
|
requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3349
3349
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3353,14 +3353,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3353
3353
|
confidence: number;
|
|
3354
3354
|
matchedKeywords: string[];
|
|
3355
3355
|
skeleton?: {
|
|
3356
|
+
shell: string;
|
|
3357
|
+
page: string;
|
|
3356
3358
|
sections: {
|
|
3357
3359
|
name: string;
|
|
3358
3360
|
required: boolean;
|
|
3359
3361
|
id: string;
|
|
3360
3362
|
slot: string;
|
|
3361
3363
|
}[];
|
|
3362
|
-
shell: string;
|
|
3363
|
-
page: string;
|
|
3364
3364
|
} | undefined;
|
|
3365
3365
|
requiredComponents?: string[] | undefined;
|
|
3366
3366
|
}, {
|
|
@@ -3370,14 +3370,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3370
3370
|
confidence: number;
|
|
3371
3371
|
matchedKeywords: string[];
|
|
3372
3372
|
skeleton?: {
|
|
3373
|
+
shell: string;
|
|
3374
|
+
page: string;
|
|
3373
3375
|
sections: {
|
|
3374
3376
|
name: string;
|
|
3375
3377
|
required: boolean;
|
|
3376
3378
|
id: string;
|
|
3377
3379
|
slot: string;
|
|
3378
3380
|
}[];
|
|
3379
|
-
shell: string;
|
|
3380
|
-
page: string;
|
|
3381
3381
|
} | undefined;
|
|
3382
3382
|
requiredComponents?: string[] | undefined;
|
|
3383
3383
|
}>>;
|
|
@@ -3394,14 +3394,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3394
3394
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3395
3395
|
description: z.ZodOptional<z.ZodString>;
|
|
3396
3396
|
}, "strip", z.ZodTypeAny, {
|
|
3397
|
-
type: string;
|
|
3398
3397
|
name: string;
|
|
3398
|
+
type: string;
|
|
3399
3399
|
required: boolean;
|
|
3400
3400
|
description?: string | undefined;
|
|
3401
3401
|
defaultValue?: string | undefined;
|
|
3402
3402
|
}, {
|
|
3403
|
-
type: string;
|
|
3404
3403
|
name: string;
|
|
3404
|
+
type: string;
|
|
3405
3405
|
required: boolean;
|
|
3406
3406
|
description?: string | undefined;
|
|
3407
3407
|
defaultValue?: string | undefined;
|
|
@@ -3411,48 +3411,48 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3411
3411
|
value: z.ZodString;
|
|
3412
3412
|
description: z.ZodOptional<z.ZodString>;
|
|
3413
3413
|
}, "strip", z.ZodTypeAny, {
|
|
3414
|
-
value: string;
|
|
3415
3414
|
name: string;
|
|
3415
|
+
value: string;
|
|
3416
3416
|
description?: string | undefined;
|
|
3417
3417
|
}, {
|
|
3418
|
-
value: string;
|
|
3419
3418
|
name: string;
|
|
3419
|
+
value: string;
|
|
3420
3420
|
description?: string | undefined;
|
|
3421
3421
|
}>, "many">>;
|
|
3422
3422
|
}, "strip", z.ZodTypeAny, {
|
|
3423
3423
|
category: "core" | "complex" | "advanced";
|
|
3424
|
-
description: string;
|
|
3425
3424
|
name: string;
|
|
3425
|
+
description: string;
|
|
3426
3426
|
id: string;
|
|
3427
3427
|
importStatement: string;
|
|
3428
3428
|
props: {
|
|
3429
|
-
type: string;
|
|
3430
3429
|
name: string;
|
|
3430
|
+
type: string;
|
|
3431
3431
|
required: boolean;
|
|
3432
3432
|
description?: string | undefined;
|
|
3433
3433
|
defaultValue?: string | undefined;
|
|
3434
3434
|
}[];
|
|
3435
3435
|
variants?: {
|
|
3436
|
-
value: string;
|
|
3437
3436
|
name: string;
|
|
3437
|
+
value: string;
|
|
3438
3438
|
description?: string | undefined;
|
|
3439
3439
|
}[] | undefined;
|
|
3440
3440
|
}, {
|
|
3441
3441
|
category: "core" | "complex" | "advanced";
|
|
3442
|
-
description: string;
|
|
3443
3442
|
name: string;
|
|
3443
|
+
description: string;
|
|
3444
3444
|
id: string;
|
|
3445
3445
|
importStatement: string;
|
|
3446
3446
|
props: {
|
|
3447
|
-
type: string;
|
|
3448
3447
|
name: string;
|
|
3448
|
+
type: string;
|
|
3449
3449
|
required: boolean;
|
|
3450
3450
|
description?: string | undefined;
|
|
3451
3451
|
defaultValue?: string | undefined;
|
|
3452
3452
|
}[];
|
|
3453
3453
|
variants?: {
|
|
3454
|
-
value: string;
|
|
3455
3454
|
name: string;
|
|
3455
|
+
value: string;
|
|
3456
3456
|
description?: string | undefined;
|
|
3457
3457
|
}[] | undefined;
|
|
3458
3458
|
}>, "many">>;
|
|
@@ -3490,6 +3490,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3490
3490
|
}[];
|
|
3491
3491
|
}>, "many">;
|
|
3492
3492
|
}, "strip", z.ZodTypeAny, {
|
|
3493
|
+
shell: string;
|
|
3494
|
+
page: string;
|
|
3493
3495
|
sections: {
|
|
3494
3496
|
pattern: string;
|
|
3495
3497
|
id: string;
|
|
@@ -3498,11 +3500,11 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3498
3500
|
props?: Record<string, unknown> | undefined;
|
|
3499
3501
|
}[];
|
|
3500
3502
|
}[];
|
|
3501
|
-
shell: string;
|
|
3502
|
-
page: string;
|
|
3503
3503
|
id: string;
|
|
3504
3504
|
themeId?: string | undefined;
|
|
3505
3505
|
}, {
|
|
3506
|
+
shell: string;
|
|
3507
|
+
page: string;
|
|
3506
3508
|
sections: {
|
|
3507
3509
|
pattern: string;
|
|
3508
3510
|
id: string;
|
|
@@ -3511,8 +3513,6 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3511
3513
|
props?: Record<string, unknown> | undefined;
|
|
3512
3514
|
}[];
|
|
3513
3515
|
}[];
|
|
3514
|
-
shell: string;
|
|
3515
|
-
page: string;
|
|
3516
3516
|
id: string;
|
|
3517
3517
|
themeId?: string | undefined;
|
|
3518
3518
|
}>>;
|
|
@@ -3589,6 +3589,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3589
3589
|
author?: string | undefined;
|
|
3590
3590
|
}>>;
|
|
3591
3591
|
}, "strip", z.ZodTypeAny, {
|
|
3592
|
+
shell: string;
|
|
3593
|
+
page: string;
|
|
3592
3594
|
sections: {
|
|
3593
3595
|
pattern: string;
|
|
3594
3596
|
id: string;
|
|
@@ -3599,19 +3601,19 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3599
3601
|
}[];
|
|
3600
3602
|
slot?: string | undefined;
|
|
3601
3603
|
}[];
|
|
3602
|
-
shell: string;
|
|
3603
|
-
page: string;
|
|
3604
3604
|
id: string;
|
|
3605
|
-
description?: string | undefined;
|
|
3606
3605
|
name?: string | undefined;
|
|
3607
|
-
|
|
3606
|
+
description?: string | undefined;
|
|
3608
3607
|
metadata?: {
|
|
3609
3608
|
version?: string | undefined;
|
|
3610
3609
|
created?: string | undefined;
|
|
3611
3610
|
updated?: string | undefined;
|
|
3612
3611
|
author?: string | undefined;
|
|
3613
3612
|
} | undefined;
|
|
3613
|
+
themeId?: string | undefined;
|
|
3614
3614
|
}, {
|
|
3615
|
+
shell: string;
|
|
3616
|
+
page: string;
|
|
3615
3617
|
sections: {
|
|
3616
3618
|
pattern: string;
|
|
3617
3619
|
id: string;
|
|
@@ -3622,23 +3624,23 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3622
3624
|
}[];
|
|
3623
3625
|
slot?: string | undefined;
|
|
3624
3626
|
}[];
|
|
3625
|
-
shell: string;
|
|
3626
|
-
page: string;
|
|
3627
3627
|
id: string;
|
|
3628
|
-
description?: string | undefined;
|
|
3629
3628
|
name?: string | undefined;
|
|
3630
|
-
|
|
3629
|
+
description?: string | undefined;
|
|
3631
3630
|
metadata?: {
|
|
3632
3631
|
version?: string | undefined;
|
|
3633
3632
|
created?: string | undefined;
|
|
3634
3633
|
updated?: string | undefined;
|
|
3635
3634
|
author?: string | undefined;
|
|
3636
3635
|
} | undefined;
|
|
3636
|
+
themeId?: string | undefined;
|
|
3637
3637
|
}>;
|
|
3638
3638
|
}, "strip", z.ZodTypeAny, {
|
|
3639
|
-
description: string;
|
|
3640
3639
|
name: string;
|
|
3640
|
+
description: string;
|
|
3641
3641
|
definition: {
|
|
3642
|
+
shell: string;
|
|
3643
|
+
page: string;
|
|
3642
3644
|
sections: {
|
|
3643
3645
|
pattern: string;
|
|
3644
3646
|
id: string;
|
|
@@ -3649,23 +3651,23 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3649
3651
|
}[];
|
|
3650
3652
|
slot?: string | undefined;
|
|
3651
3653
|
}[];
|
|
3652
|
-
shell: string;
|
|
3653
|
-
page: string;
|
|
3654
3654
|
id: string;
|
|
3655
|
-
description?: string | undefined;
|
|
3656
3655
|
name?: string | undefined;
|
|
3657
|
-
|
|
3656
|
+
description?: string | undefined;
|
|
3658
3657
|
metadata?: {
|
|
3659
3658
|
version?: string | undefined;
|
|
3660
3659
|
created?: string | undefined;
|
|
3661
3660
|
updated?: string | undefined;
|
|
3662
3661
|
author?: string | undefined;
|
|
3663
3662
|
} | undefined;
|
|
3663
|
+
themeId?: string | undefined;
|
|
3664
3664
|
};
|
|
3665
3665
|
}, {
|
|
3666
|
-
description: string;
|
|
3667
3666
|
name: string;
|
|
3667
|
+
description: string;
|
|
3668
3668
|
definition: {
|
|
3669
|
+
shell: string;
|
|
3670
|
+
page: string;
|
|
3669
3671
|
sections: {
|
|
3670
3672
|
pattern: string;
|
|
3671
3673
|
id: string;
|
|
@@ -3676,18 +3678,16 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3676
3678
|
}[];
|
|
3677
3679
|
slot?: string | undefined;
|
|
3678
3680
|
}[];
|
|
3679
|
-
shell: string;
|
|
3680
|
-
page: string;
|
|
3681
3681
|
id: string;
|
|
3682
|
-
description?: string | undefined;
|
|
3683
3682
|
name?: string | undefined;
|
|
3684
|
-
|
|
3683
|
+
description?: string | undefined;
|
|
3685
3684
|
metadata?: {
|
|
3686
3685
|
version?: string | undefined;
|
|
3687
3686
|
created?: string | undefined;
|
|
3688
3687
|
updated?: string | undefined;
|
|
3689
3688
|
author?: string | undefined;
|
|
3690
3689
|
} | undefined;
|
|
3690
|
+
themeId?: string | undefined;
|
|
3691
3691
|
};
|
|
3692
3692
|
}>, "many">>;
|
|
3693
3693
|
themeRecipes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3729,14 +3729,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3729
3729
|
description: z.ZodString;
|
|
3730
3730
|
example: z.ZodOptional<z.ZodString>;
|
|
3731
3731
|
}, "strip", z.ZodTypeAny, {
|
|
3732
|
-
action: string;
|
|
3733
3732
|
description: string;
|
|
3733
|
+
action: string;
|
|
3734
3734
|
step: number;
|
|
3735
3735
|
example?: string | undefined;
|
|
3736
3736
|
tool?: string | undefined;
|
|
3737
3737
|
}, {
|
|
3738
|
-
action: string;
|
|
3739
3738
|
description: string;
|
|
3739
|
+
action: string;
|
|
3740
3740
|
step: number;
|
|
3741
3741
|
example?: string | undefined;
|
|
3742
3742
|
tool?: string | undefined;
|
|
@@ -3746,8 +3746,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3746
3746
|
description: string;
|
|
3747
3747
|
title: string;
|
|
3748
3748
|
steps: {
|
|
3749
|
-
action: string;
|
|
3750
3749
|
description: string;
|
|
3750
|
+
action: string;
|
|
3751
3751
|
step: number;
|
|
3752
3752
|
example?: string | undefined;
|
|
3753
3753
|
tool?: string | undefined;
|
|
@@ -3757,8 +3757,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3757
3757
|
description: string;
|
|
3758
3758
|
title: string;
|
|
3759
3759
|
steps: {
|
|
3760
|
-
action: string;
|
|
3761
3760
|
description: string;
|
|
3761
|
+
action: string;
|
|
3762
3762
|
step: number;
|
|
3763
3763
|
example?: string | undefined;
|
|
3764
3764
|
tool?: string | undefined;
|
|
@@ -3771,27 +3771,29 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3771
3771
|
error?: string | undefined;
|
|
3772
3772
|
components?: {
|
|
3773
3773
|
category: "core" | "complex" | "advanced";
|
|
3774
|
-
description: string;
|
|
3775
3774
|
name: string;
|
|
3775
|
+
description: string;
|
|
3776
3776
|
id: string;
|
|
3777
3777
|
importStatement: string;
|
|
3778
3778
|
props: {
|
|
3779
|
-
type: string;
|
|
3780
3779
|
name: string;
|
|
3780
|
+
type: string;
|
|
3781
3781
|
required: boolean;
|
|
3782
3782
|
description?: string | undefined;
|
|
3783
3783
|
defaultValue?: string | undefined;
|
|
3784
3784
|
}[];
|
|
3785
3785
|
variants?: {
|
|
3786
|
-
value: string;
|
|
3787
3786
|
name: string;
|
|
3787
|
+
value: string;
|
|
3788
3788
|
description?: string | undefined;
|
|
3789
3789
|
}[] | undefined;
|
|
3790
3790
|
}[] | undefined;
|
|
3791
3791
|
examples?: {
|
|
3792
|
-
description: string;
|
|
3793
3792
|
name: string;
|
|
3793
|
+
description: string;
|
|
3794
3794
|
definition: {
|
|
3795
|
+
shell: string;
|
|
3796
|
+
page: string;
|
|
3795
3797
|
sections: {
|
|
3796
3798
|
pattern: string;
|
|
3797
3799
|
id: string;
|
|
@@ -3802,18 +3804,16 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3802
3804
|
}[];
|
|
3803
3805
|
slot?: string | undefined;
|
|
3804
3806
|
}[];
|
|
3805
|
-
shell: string;
|
|
3806
|
-
page: string;
|
|
3807
3807
|
id: string;
|
|
3808
|
-
description?: string | undefined;
|
|
3809
3808
|
name?: string | undefined;
|
|
3810
|
-
|
|
3809
|
+
description?: string | undefined;
|
|
3811
3810
|
metadata?: {
|
|
3812
3811
|
version?: string | undefined;
|
|
3813
3812
|
created?: string | undefined;
|
|
3814
3813
|
updated?: string | undefined;
|
|
3815
3814
|
author?: string | undefined;
|
|
3816
3815
|
} | undefined;
|
|
3816
|
+
themeId?: string | undefined;
|
|
3817
3817
|
};
|
|
3818
3818
|
}[] | undefined;
|
|
3819
3819
|
templateMatch?: {
|
|
@@ -3823,18 +3823,20 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3823
3823
|
confidence: number;
|
|
3824
3824
|
matchedKeywords: string[];
|
|
3825
3825
|
skeleton?: {
|
|
3826
|
+
shell: string;
|
|
3827
|
+
page: string;
|
|
3826
3828
|
sections: {
|
|
3827
3829
|
name: string;
|
|
3828
3830
|
required: boolean;
|
|
3829
3831
|
id: string;
|
|
3830
3832
|
slot: string;
|
|
3831
3833
|
}[];
|
|
3832
|
-
shell: string;
|
|
3833
|
-
page: string;
|
|
3834
3834
|
} | undefined;
|
|
3835
3835
|
requiredComponents?: string[] | undefined;
|
|
3836
3836
|
} | undefined;
|
|
3837
3837
|
definitionStarter?: {
|
|
3838
|
+
shell: string;
|
|
3839
|
+
page: string;
|
|
3838
3840
|
sections: {
|
|
3839
3841
|
pattern: string;
|
|
3840
3842
|
id: string;
|
|
@@ -3843,8 +3845,6 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3843
3845
|
props?: Record<string, unknown> | undefined;
|
|
3844
3846
|
}[];
|
|
3845
3847
|
}[];
|
|
3846
|
-
shell: string;
|
|
3847
|
-
page: string;
|
|
3848
3848
|
id: string;
|
|
3849
3849
|
themeId?: string | undefined;
|
|
3850
3850
|
} | undefined;
|
|
@@ -3867,8 +3867,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3867
3867
|
description: string;
|
|
3868
3868
|
title: string;
|
|
3869
3869
|
steps: {
|
|
3870
|
-
action: string;
|
|
3871
3870
|
description: string;
|
|
3871
|
+
action: string;
|
|
3872
3872
|
step: number;
|
|
3873
3873
|
example?: string | undefined;
|
|
3874
3874
|
tool?: string | undefined;
|
|
@@ -3880,27 +3880,29 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3880
3880
|
error?: string | undefined;
|
|
3881
3881
|
components?: {
|
|
3882
3882
|
category: "core" | "complex" | "advanced";
|
|
3883
|
-
description: string;
|
|
3884
3883
|
name: string;
|
|
3884
|
+
description: string;
|
|
3885
3885
|
id: string;
|
|
3886
3886
|
importStatement: string;
|
|
3887
3887
|
props: {
|
|
3888
|
-
type: string;
|
|
3889
3888
|
name: string;
|
|
3889
|
+
type: string;
|
|
3890
3890
|
required: boolean;
|
|
3891
3891
|
description?: string | undefined;
|
|
3892
3892
|
defaultValue?: string | undefined;
|
|
3893
3893
|
}[];
|
|
3894
3894
|
variants?: {
|
|
3895
|
-
value: string;
|
|
3896
3895
|
name: string;
|
|
3896
|
+
value: string;
|
|
3897
3897
|
description?: string | undefined;
|
|
3898
3898
|
}[] | undefined;
|
|
3899
3899
|
}[] | undefined;
|
|
3900
3900
|
examples?: {
|
|
3901
|
-
description: string;
|
|
3902
3901
|
name: string;
|
|
3902
|
+
description: string;
|
|
3903
3903
|
definition: {
|
|
3904
|
+
shell: string;
|
|
3905
|
+
page: string;
|
|
3904
3906
|
sections: {
|
|
3905
3907
|
pattern: string;
|
|
3906
3908
|
id: string;
|
|
@@ -3911,18 +3913,16 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3911
3913
|
}[];
|
|
3912
3914
|
slot?: string | undefined;
|
|
3913
3915
|
}[];
|
|
3914
|
-
shell: string;
|
|
3915
|
-
page: string;
|
|
3916
3916
|
id: string;
|
|
3917
|
-
description?: string | undefined;
|
|
3918
3917
|
name?: string | undefined;
|
|
3919
|
-
|
|
3918
|
+
description?: string | undefined;
|
|
3920
3919
|
metadata?: {
|
|
3921
3920
|
version?: string | undefined;
|
|
3922
3921
|
created?: string | undefined;
|
|
3923
3922
|
updated?: string | undefined;
|
|
3924
3923
|
author?: string | undefined;
|
|
3925
3924
|
} | undefined;
|
|
3925
|
+
themeId?: string | undefined;
|
|
3926
3926
|
};
|
|
3927
3927
|
}[] | undefined;
|
|
3928
3928
|
templateMatch?: {
|
|
@@ -3932,18 +3932,20 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3932
3932
|
confidence: number;
|
|
3933
3933
|
matchedKeywords: string[];
|
|
3934
3934
|
skeleton?: {
|
|
3935
|
+
shell: string;
|
|
3936
|
+
page: string;
|
|
3935
3937
|
sections: {
|
|
3936
3938
|
name: string;
|
|
3937
3939
|
required: boolean;
|
|
3938
3940
|
id: string;
|
|
3939
3941
|
slot: string;
|
|
3940
3942
|
}[];
|
|
3941
|
-
shell: string;
|
|
3942
|
-
page: string;
|
|
3943
3943
|
} | undefined;
|
|
3944
3944
|
requiredComponents?: string[] | undefined;
|
|
3945
3945
|
} | undefined;
|
|
3946
3946
|
definitionStarter?: {
|
|
3947
|
+
shell: string;
|
|
3948
|
+
page: string;
|
|
3947
3949
|
sections: {
|
|
3948
3950
|
pattern: string;
|
|
3949
3951
|
id: string;
|
|
@@ -3952,8 +3954,6 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3952
3954
|
props?: Record<string, unknown> | undefined;
|
|
3953
3955
|
}[];
|
|
3954
3956
|
}[];
|
|
3955
|
-
shell: string;
|
|
3956
|
-
page: string;
|
|
3957
3957
|
id: string;
|
|
3958
3958
|
themeId?: string | undefined;
|
|
3959
3959
|
} | undefined;
|
|
@@ -3976,8 +3976,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3976
3976
|
description: string;
|
|
3977
3977
|
title: string;
|
|
3978
3978
|
steps: {
|
|
3979
|
-
action: string;
|
|
3980
3979
|
description: string;
|
|
3980
|
+
action: string;
|
|
3981
3981
|
step: number;
|
|
3982
3982
|
example?: string | undefined;
|
|
3983
3983
|
tool?: string | undefined;
|
|
@@ -4108,9 +4108,9 @@ export declare const ValidationErrorSchema: z.ZodObject<{
|
|
|
4108
4108
|
value?: unknown;
|
|
4109
4109
|
}>, "many">>;
|
|
4110
4110
|
}, "strip", z.ZodTypeAny, {
|
|
4111
|
+
message: string;
|
|
4111
4112
|
code: string;
|
|
4112
4113
|
path: string;
|
|
4113
|
-
message: string;
|
|
4114
4114
|
expected?: string | undefined;
|
|
4115
4115
|
received?: string | undefined;
|
|
4116
4116
|
suggestion?: string | undefined;
|
|
@@ -4120,9 +4120,9 @@ export declare const ValidationErrorSchema: z.ZodObject<{
|
|
|
4120
4120
|
value?: unknown;
|
|
4121
4121
|
}[] | undefined;
|
|
4122
4122
|
}, {
|
|
4123
|
+
message: string;
|
|
4123
4124
|
code: string;
|
|
4124
4125
|
path: string;
|
|
4125
|
-
message: string;
|
|
4126
4126
|
expected?: string | undefined;
|
|
4127
4127
|
received?: string | undefined;
|
|
4128
4128
|
suggestion?: string | undefined;
|
|
@@ -4142,14 +4142,14 @@ export declare const ValidationWarningSchema: z.ZodObject<{
|
|
|
4142
4142
|
message: z.ZodString;
|
|
4143
4143
|
recommendation: z.ZodOptional<z.ZodString>;
|
|
4144
4144
|
}, "strip", z.ZodTypeAny, {
|
|
4145
|
+
message: string;
|
|
4145
4146
|
code: string;
|
|
4146
4147
|
path: string;
|
|
4147
|
-
message: string;
|
|
4148
4148
|
recommendation?: string | undefined;
|
|
4149
4149
|
}, {
|
|
4150
|
+
message: string;
|
|
4150
4151
|
code: string;
|
|
4151
4152
|
path: string;
|
|
4152
|
-
message: string;
|
|
4153
4153
|
recommendation?: string | undefined;
|
|
4154
4154
|
}>;
|
|
4155
4155
|
export type ValidationWarning = z.infer<typeof ValidationWarningSchema>;
|
|
@@ -4223,9 +4223,9 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4223
4223
|
value?: unknown;
|
|
4224
4224
|
}>, "many">>;
|
|
4225
4225
|
}, "strip", z.ZodTypeAny, {
|
|
4226
|
+
message: string;
|
|
4226
4227
|
code: string;
|
|
4227
4228
|
path: string;
|
|
4228
|
-
message: string;
|
|
4229
4229
|
expected?: string | undefined;
|
|
4230
4230
|
received?: string | undefined;
|
|
4231
4231
|
suggestion?: string | undefined;
|
|
@@ -4235,9 +4235,9 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4235
4235
|
value?: unknown;
|
|
4236
4236
|
}[] | undefined;
|
|
4237
4237
|
}, {
|
|
4238
|
+
message: string;
|
|
4238
4239
|
code: string;
|
|
4239
4240
|
path: string;
|
|
4240
|
-
message: string;
|
|
4241
4241
|
expected?: string | undefined;
|
|
4242
4242
|
received?: string | undefined;
|
|
4243
4243
|
suggestion?: string | undefined;
|
|
@@ -4253,14 +4253,14 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4253
4253
|
message: z.ZodString;
|
|
4254
4254
|
recommendation: z.ZodOptional<z.ZodString>;
|
|
4255
4255
|
}, "strip", z.ZodTypeAny, {
|
|
4256
|
+
message: string;
|
|
4256
4257
|
code: string;
|
|
4257
4258
|
path: string;
|
|
4258
|
-
message: string;
|
|
4259
4259
|
recommendation?: string | undefined;
|
|
4260
4260
|
}, {
|
|
4261
|
+
message: string;
|
|
4261
4262
|
code: string;
|
|
4262
4263
|
path: string;
|
|
4263
|
-
message: string;
|
|
4264
4264
|
recommendation?: string | undefined;
|
|
4265
4265
|
}>, "many">>;
|
|
4266
4266
|
suggestions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4318,12 +4318,12 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4318
4318
|
error: z.ZodOptional<z.ZodString>;
|
|
4319
4319
|
}, "strip", z.ZodTypeAny, {
|
|
4320
4320
|
success: boolean;
|
|
4321
|
-
valid?: boolean | undefined;
|
|
4322
4321
|
error?: string | undefined;
|
|
4322
|
+
valid?: boolean | undefined;
|
|
4323
4323
|
errors?: {
|
|
4324
|
+
message: string;
|
|
4324
4325
|
code: string;
|
|
4325
4326
|
path: string;
|
|
4326
|
-
message: string;
|
|
4327
4327
|
expected?: string | undefined;
|
|
4328
4328
|
received?: string | undefined;
|
|
4329
4329
|
suggestion?: string | undefined;
|
|
@@ -4334,9 +4334,9 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4334
4334
|
}[] | undefined;
|
|
4335
4335
|
}[] | undefined;
|
|
4336
4336
|
warnings?: {
|
|
4337
|
+
message: string;
|
|
4337
4338
|
code: string;
|
|
4338
4339
|
path: string;
|
|
4339
|
-
message: string;
|
|
4340
4340
|
recommendation?: string | undefined;
|
|
4341
4341
|
}[] | undefined;
|
|
4342
4342
|
suggestions?: {
|
|
@@ -4357,12 +4357,12 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4357
4357
|
}[] | undefined;
|
|
4358
4358
|
}, {
|
|
4359
4359
|
success: boolean;
|
|
4360
|
-
valid?: boolean | undefined;
|
|
4361
4360
|
error?: string | undefined;
|
|
4361
|
+
valid?: boolean | undefined;
|
|
4362
4362
|
errors?: {
|
|
4363
|
+
message: string;
|
|
4363
4364
|
code: string;
|
|
4364
4365
|
path: string;
|
|
4365
|
-
message: string;
|
|
4366
4366
|
expected?: string | undefined;
|
|
4367
4367
|
received?: string | undefined;
|
|
4368
4368
|
suggestion?: string | undefined;
|
|
@@ -4373,9 +4373,9 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4373
4373
|
}[] | undefined;
|
|
4374
4374
|
}[] | undefined;
|
|
4375
4375
|
warnings?: {
|
|
4376
|
+
message: string;
|
|
4376
4377
|
code: string;
|
|
4377
4378
|
path: string;
|
|
4378
|
-
message: string;
|
|
4379
4379
|
recommendation?: string | undefined;
|
|
4380
4380
|
}[] | undefined;
|
|
4381
4381
|
suggestions?: {
|
|
@@ -4427,15 +4427,15 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4427
4427
|
pnpm: z.ZodString;
|
|
4428
4428
|
bun: z.ZodString;
|
|
4429
4429
|
}, "strip", z.ZodTypeAny, {
|
|
4430
|
-
npm: string;
|
|
4431
|
-
yarn: string;
|
|
4432
4430
|
pnpm: string;
|
|
4431
|
+
yarn: string;
|
|
4433
4432
|
bun: string;
|
|
4434
|
-
}, {
|
|
4435
4433
|
npm: string;
|
|
4436
|
-
|
|
4434
|
+
}, {
|
|
4437
4435
|
pnpm: string;
|
|
4436
|
+
yarn: string;
|
|
4438
4437
|
bun: string;
|
|
4438
|
+
npm: string;
|
|
4439
4439
|
}>>;
|
|
4440
4440
|
warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4441
4441
|
tailwind: z.ZodOptional<z.ZodObject<{
|
|
@@ -4463,6 +4463,7 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4463
4463
|
error: z.ZodOptional<z.ZodString>;
|
|
4464
4464
|
}, "strip", z.ZodTypeAny, {
|
|
4465
4465
|
success: boolean;
|
|
4466
|
+
error?: string | undefined;
|
|
4466
4467
|
tailwind?: {
|
|
4467
4468
|
issues: string[];
|
|
4468
4469
|
configFound: boolean;
|
|
@@ -4471,18 +4472,18 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4471
4472
|
fixes: string[];
|
|
4472
4473
|
configPath?: string | undefined;
|
|
4473
4474
|
} | undefined;
|
|
4474
|
-
error?: string | undefined;
|
|
4475
4475
|
warnings?: string[] | undefined;
|
|
4476
4476
|
installCommands?: {
|
|
4477
|
-
npm: string;
|
|
4478
|
-
yarn: string;
|
|
4479
4477
|
pnpm: string;
|
|
4478
|
+
yarn: string;
|
|
4480
4479
|
bun: string;
|
|
4480
|
+
npm: string;
|
|
4481
4481
|
} | undefined;
|
|
4482
4482
|
installed?: Record<string, string> | undefined;
|
|
4483
4483
|
missing?: string[] | undefined;
|
|
4484
4484
|
}, {
|
|
4485
4485
|
success: boolean;
|
|
4486
|
+
error?: string | undefined;
|
|
4486
4487
|
tailwind?: {
|
|
4487
4488
|
issues: string[];
|
|
4488
4489
|
configFound: boolean;
|
|
@@ -4491,13 +4492,12 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4491
4492
|
fixes: string[];
|
|
4492
4493
|
configPath?: string | undefined;
|
|
4493
4494
|
} | undefined;
|
|
4494
|
-
error?: string | undefined;
|
|
4495
4495
|
warnings?: string[] | undefined;
|
|
4496
4496
|
installCommands?: {
|
|
4497
|
-
npm: string;
|
|
4498
|
-
yarn: string;
|
|
4499
4497
|
pnpm: string;
|
|
4498
|
+
yarn: string;
|
|
4500
4499
|
bun: string;
|
|
4500
|
+
npm: string;
|
|
4501
4501
|
} | undefined;
|
|
4502
4502
|
installed?: Record<string, string> | undefined;
|
|
4503
4503
|
missing?: string[] | undefined;
|