@framingui/mcp-server 0.6.10 → 0.6.12
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 +4 -3
- package/dist/commands/slash-command-adapters.d.ts.map +1 -1
- package/dist/commands/slash-command-adapters.js +4 -1
- package/dist/commands/slash-command-adapters.js.map +1 -1
- package/dist/commands/slash-command-registry.d.ts +6 -0
- package/dist/commands/slash-command-registry.d.ts.map +1 -1
- package/dist/commands/slash-command-registry.js +30 -2
- package/dist/commands/slash-command-registry.js.map +1 -1
- package/dist/index.js +0 -0
- package/dist/prompts/command-help.d.ts.map +1 -1
- package/dist/prompts/command-help.js +14 -0
- package/dist/prompts/command-help.js.map +1 -1
- package/dist/prompts/doctor-workflow.d.ts.map +1 -1
- package/dist/prompts/doctor-workflow.js +4 -2
- package/dist/prompts/doctor-workflow.js.map +1 -1
- package/dist/prompts/draft-command.d.ts +10 -0
- package/dist/prompts/draft-command.d.ts.map +1 -0
- package/dist/prompts/draft-command.js +5 -0
- package/dist/prompts/draft-command.js.map +1 -0
- package/dist/prompts/prompt-catalog.d.ts.map +1 -1
- package/dist/prompts/prompt-catalog.js +14 -0
- package/dist/prompts/prompt-catalog.js.map +1 -1
- package/dist/prompts/screen-command.d.ts +10 -0
- package/dist/prompts/screen-command.d.ts.map +1 -0
- package/dist/prompts/screen-command.js +5 -0
- package/dist/prompts/screen-command.js.map +1 -0
- package/dist/prompts/screen-workflow.d.ts +1 -1
- package/dist/prompts/screen-workflow.d.ts.map +1 -1
- package/dist/prompts/screen-workflow.js +42 -4
- package/dist/prompts/screen-workflow.js.map +1 -1
- package/dist/prompts/slash-commands.d.ts.map +1 -1
- package/dist/prompts/slash-commands.js +1 -0
- package/dist/prompts/slash-commands.js.map +1 -1
- package/dist/schemas/mcp-schemas.d.ts +288 -242
- package/dist/schemas/mcp-schemas.d.ts.map +1 -1
- package/dist/schemas/mcp-schemas.js +17 -0
- package/dist/schemas/mcp-schemas.js.map +1 -1
- package/dist/tools/validate-environment.d.ts.map +1 -1
- package/dist/tools/validate-environment.js +30 -1
- package/dist/tools/validate-environment.js.map +1 -1
- package/dist/utils/style-contract-reader.d.ts +10 -0
- package/dist/utils/style-contract-reader.d.ts.map +1 -0
- package/dist/utils/style-contract-reader.js +67 -0
- package/dist/utils/style-contract-reader.js.map +1 -0
- package/package.json +19 -18
- package/LICENSE +0 -21
|
@@ -36,7 +36,6 @@ 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;
|
|
40
39
|
message?: string | undefined;
|
|
41
40
|
plan?: "free" | "pro" | "enterprise" | "master" | undefined;
|
|
42
41
|
isMaster?: boolean | undefined;
|
|
@@ -49,9 +48,9 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
|
|
|
49
48
|
is_trial?: boolean | undefined;
|
|
50
49
|
trial_expires_at?: string | null | undefined;
|
|
51
50
|
trial_days_left?: number | null | undefined;
|
|
51
|
+
error?: string | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
success: boolean;
|
|
54
|
-
error?: string | undefined;
|
|
55
54
|
message?: string | undefined;
|
|
56
55
|
plan?: "free" | "pro" | "enterprise" | "master" | undefined;
|
|
57
56
|
isMaster?: boolean | undefined;
|
|
@@ -64,6 +63,7 @@ export declare const WhoamiOutputSchema: z.ZodObject<{
|
|
|
64
63
|
is_trial?: boolean | undefined;
|
|
65
64
|
trial_expires_at?: string | null | undefined;
|
|
66
65
|
trial_days_left?: number | null | undefined;
|
|
66
|
+
error?: string | undefined;
|
|
67
67
|
}>;
|
|
68
68
|
export type WhoamiOutput = z.infer<typeof WhoamiOutputSchema>;
|
|
69
69
|
/**
|
|
@@ -88,13 +88,13 @@ export declare const GenerateBlueprintInputSchema: z.ZodObject<{
|
|
|
88
88
|
componentHints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
description: string;
|
|
91
|
-
layout: "
|
|
91
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
92
92
|
themeId: string;
|
|
93
93
|
iconLibrary?: string | undefined;
|
|
94
94
|
componentHints?: string[] | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
description: string;
|
|
97
|
-
layout: "
|
|
97
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
98
98
|
themeId: string;
|
|
99
99
|
iconLibrary?: string | undefined;
|
|
100
100
|
componentHints?: string[] | undefined;
|
|
@@ -115,35 +115,35 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
|
|
|
115
115
|
page: z.ZodString;
|
|
116
116
|
description: z.ZodString;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
description: string;
|
|
118
119
|
shell: string;
|
|
119
120
|
page: string;
|
|
120
|
-
description: string;
|
|
121
121
|
}, {
|
|
122
|
+
description: string;
|
|
122
123
|
shell: string;
|
|
123
124
|
page: string;
|
|
124
|
-
description: string;
|
|
125
125
|
}>;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
|
-
category: string;
|
|
128
127
|
templateId: string;
|
|
129
128
|
templateName: string;
|
|
129
|
+
category: string;
|
|
130
130
|
confidence: number;
|
|
131
131
|
matchedKeywords: string[];
|
|
132
132
|
layoutRecommendation: {
|
|
133
|
+
description: string;
|
|
133
134
|
shell: string;
|
|
134
135
|
page: string;
|
|
135
|
-
description: string;
|
|
136
136
|
};
|
|
137
137
|
}, {
|
|
138
|
-
category: string;
|
|
139
138
|
templateId: string;
|
|
140
139
|
templateName: string;
|
|
140
|
+
category: string;
|
|
141
141
|
confidence: number;
|
|
142
142
|
matchedKeywords: string[];
|
|
143
143
|
layoutRecommendation: {
|
|
144
|
+
description: string;
|
|
144
145
|
shell: string;
|
|
145
146
|
page: string;
|
|
146
|
-
description: string;
|
|
147
147
|
};
|
|
148
148
|
}>;
|
|
149
149
|
export type TemplateRecommendation = z.infer<typeof TemplateRecommendationSchema>;
|
|
@@ -173,11 +173,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
173
173
|
}>, "many">;
|
|
174
174
|
timestamp: z.ZodNumber;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
|
|
177
|
-
name: string;
|
|
178
|
-
layout: "dashboard" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "landing";
|
|
176
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
179
177
|
themeId: string;
|
|
180
178
|
iconLibrary: string;
|
|
179
|
+
id: string;
|
|
180
|
+
name: string;
|
|
181
181
|
components: {
|
|
182
182
|
type: string;
|
|
183
183
|
props?: Record<string, unknown>;
|
|
@@ -186,11 +186,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
186
186
|
}[];
|
|
187
187
|
timestamp: number;
|
|
188
188
|
}, {
|
|
189
|
-
|
|
190
|
-
name: string;
|
|
191
|
-
layout: "dashboard" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "landing";
|
|
189
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
192
190
|
themeId: string;
|
|
193
191
|
iconLibrary: string;
|
|
192
|
+
id: string;
|
|
193
|
+
name: string;
|
|
194
194
|
components: {
|
|
195
195
|
type: string;
|
|
196
196
|
props?: Record<string, unknown>;
|
|
@@ -210,35 +210,35 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
210
210
|
page: z.ZodString;
|
|
211
211
|
description: z.ZodString;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
+
description: string;
|
|
213
214
|
shell: string;
|
|
214
215
|
page: string;
|
|
215
|
-
description: string;
|
|
216
216
|
}, {
|
|
217
|
+
description: string;
|
|
217
218
|
shell: string;
|
|
218
219
|
page: string;
|
|
219
|
-
description: string;
|
|
220
220
|
}>;
|
|
221
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
|
-
category: string;
|
|
223
222
|
templateId: string;
|
|
224
223
|
templateName: string;
|
|
224
|
+
category: string;
|
|
225
225
|
confidence: number;
|
|
226
226
|
matchedKeywords: string[];
|
|
227
227
|
layoutRecommendation: {
|
|
228
|
+
description: string;
|
|
228
229
|
shell: string;
|
|
229
230
|
page: string;
|
|
230
|
-
description: string;
|
|
231
231
|
};
|
|
232
232
|
}, {
|
|
233
|
-
category: string;
|
|
234
233
|
templateId: string;
|
|
235
234
|
templateName: string;
|
|
235
|
+
category: string;
|
|
236
236
|
confidence: number;
|
|
237
237
|
matchedKeywords: string[];
|
|
238
238
|
layoutRecommendation: {
|
|
239
|
+
description: string;
|
|
239
240
|
shell: string;
|
|
240
241
|
page: string;
|
|
241
|
-
description: string;
|
|
242
242
|
};
|
|
243
243
|
}>, "many">>;
|
|
244
244
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -246,11 +246,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
246
246
|
success: boolean;
|
|
247
247
|
error?: string | undefined;
|
|
248
248
|
blueprint?: {
|
|
249
|
-
|
|
250
|
-
name: string;
|
|
251
|
-
layout: "dashboard" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "landing";
|
|
249
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
252
250
|
themeId: string;
|
|
253
251
|
iconLibrary: string;
|
|
252
|
+
id: string;
|
|
253
|
+
name: string;
|
|
254
254
|
components: {
|
|
255
255
|
type: string;
|
|
256
256
|
props?: Record<string, unknown>;
|
|
@@ -260,26 +260,26 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
260
260
|
timestamp: number;
|
|
261
261
|
} | undefined;
|
|
262
262
|
templateRecommendations?: {
|
|
263
|
-
category: string;
|
|
264
263
|
templateId: string;
|
|
265
264
|
templateName: string;
|
|
265
|
+
category: string;
|
|
266
266
|
confidence: number;
|
|
267
267
|
matchedKeywords: string[];
|
|
268
268
|
layoutRecommendation: {
|
|
269
|
+
description: string;
|
|
269
270
|
shell: string;
|
|
270
271
|
page: string;
|
|
271
|
-
description: string;
|
|
272
272
|
};
|
|
273
273
|
}[] | undefined;
|
|
274
274
|
}, {
|
|
275
275
|
success: boolean;
|
|
276
276
|
error?: string | undefined;
|
|
277
277
|
blueprint?: {
|
|
278
|
-
|
|
279
|
-
name: string;
|
|
280
|
-
layout: "dashboard" | "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "landing";
|
|
278
|
+
layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
|
|
281
279
|
themeId: string;
|
|
282
280
|
iconLibrary: string;
|
|
281
|
+
id: string;
|
|
282
|
+
name: string;
|
|
283
283
|
components: {
|
|
284
284
|
type: string;
|
|
285
285
|
props?: Record<string, unknown>;
|
|
@@ -289,15 +289,15 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
|
|
|
289
289
|
timestamp: number;
|
|
290
290
|
} | undefined;
|
|
291
291
|
templateRecommendations?: {
|
|
292
|
-
category: string;
|
|
293
292
|
templateId: string;
|
|
294
293
|
templateName: string;
|
|
294
|
+
category: string;
|
|
295
295
|
confidence: number;
|
|
296
296
|
matchedKeywords: string[];
|
|
297
297
|
layoutRecommendation: {
|
|
298
|
+
description: string;
|
|
298
299
|
shell: string;
|
|
299
300
|
page: string;
|
|
300
|
-
description: string;
|
|
301
301
|
};
|
|
302
302
|
}[] | undefined;
|
|
303
303
|
}>;
|
|
@@ -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
|
-
error?: string | undefined;
|
|
573
572
|
code?: string | undefined;
|
|
573
|
+
error?: string | undefined;
|
|
574
574
|
}, {
|
|
575
575
|
success: boolean;
|
|
576
|
-
error?: string | undefined;
|
|
577
576
|
code?: string | undefined;
|
|
577
|
+
error?: string | undefined;
|
|
578
578
|
}>;
|
|
579
579
|
/**
|
|
580
580
|
* Export component resolution tier
|
|
@@ -667,8 +667,8 @@ export declare const HybridExportOutputSchema: z.ZodObject<{
|
|
|
667
667
|
error: z.ZodOptional<z.ZodString>;
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
669
|
success: boolean;
|
|
670
|
-
error?: string | undefined;
|
|
671
670
|
code?: string | undefined;
|
|
671
|
+
error?: string | undefined;
|
|
672
672
|
components?: {
|
|
673
673
|
code: string;
|
|
674
674
|
componentName: string;
|
|
@@ -678,8 +678,8 @@ export declare const HybridExportOutputSchema: z.ZodObject<{
|
|
|
678
678
|
tierUsed?: "tier1" | "tier2" | "auto" | undefined;
|
|
679
679
|
}, {
|
|
680
680
|
success: boolean;
|
|
681
|
-
error?: string | undefined;
|
|
682
681
|
code?: string | undefined;
|
|
682
|
+
error?: string | undefined;
|
|
683
683
|
components?: {
|
|
684
684
|
code: string;
|
|
685
685
|
componentName: string;
|
|
@@ -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
|
-
error: string;
|
|
702
701
|
success: false;
|
|
703
|
-
}, {
|
|
704
702
|
error: string;
|
|
703
|
+
}, {
|
|
705
704
|
success: false;
|
|
705
|
+
error: string;
|
|
706
706
|
}>;
|
|
707
707
|
export type ErrorResponse = z.infer<typeof ErrorResponseSchema>;
|
|
708
708
|
/**
|
|
@@ -839,8 +839,8 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
839
839
|
error: z.ZodOptional<z.ZodString>;
|
|
840
840
|
}, "strip", z.ZodTypeAny, {
|
|
841
841
|
success: boolean;
|
|
842
|
-
error?: string | undefined;
|
|
843
842
|
code?: string | undefined;
|
|
843
|
+
error?: string | undefined;
|
|
844
844
|
cssVariables?: string | undefined;
|
|
845
845
|
dependencies?: {
|
|
846
846
|
external: string[];
|
|
@@ -860,8 +860,8 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
|
|
|
860
860
|
errors?: string[] | undefined;
|
|
861
861
|
}, {
|
|
862
862
|
success: boolean;
|
|
863
|
-
error?: string | undefined;
|
|
864
863
|
code?: string | undefined;
|
|
864
|
+
error?: string | undefined;
|
|
865
865
|
cssVariables?: string | undefined;
|
|
866
866
|
dependencies?: {
|
|
867
867
|
external: string[];
|
|
@@ -936,8 +936,8 @@ export declare const ValidateScreenOutputSchema: z.ZodObject<{
|
|
|
936
936
|
error: z.ZodOptional<z.ZodString>;
|
|
937
937
|
}, "strip", z.ZodTypeAny, {
|
|
938
938
|
success: boolean;
|
|
939
|
-
error?: string | undefined;
|
|
940
939
|
valid?: boolean | undefined;
|
|
940
|
+
error?: string | undefined;
|
|
941
941
|
errors?: string[] | undefined;
|
|
942
942
|
warnings?: string[] | undefined;
|
|
943
943
|
suggestions?: {
|
|
@@ -947,8 +947,8 @@ export declare const ValidateScreenOutputSchema: z.ZodObject<{
|
|
|
947
947
|
}[] | undefined;
|
|
948
948
|
}, {
|
|
949
949
|
success: boolean;
|
|
950
|
-
error?: string | undefined;
|
|
951
950
|
valid?: boolean | undefined;
|
|
951
|
+
error?: string | undefined;
|
|
952
952
|
errors?: string[] | undefined;
|
|
953
953
|
warnings?: string[] | undefined;
|
|
954
954
|
suggestions?: {
|
|
@@ -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: "shell" | "page" | "section" | "all";
|
|
974
974
|
filter?: string | undefined;
|
|
975
975
|
}, {
|
|
976
976
|
filter?: string | undefined;
|
|
977
|
-
tokenType?: "
|
|
977
|
+
tokenType?: "shell" | "page" | "section" | "all" | 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
|
-
name?: string | undefined;
|
|
993
|
-
description?: string | undefined;
|
|
994
992
|
type?: string | undefined;
|
|
993
|
+
description?: string | undefined;
|
|
994
|
+
name?: string | undefined;
|
|
995
995
|
platform?: string | undefined;
|
|
996
996
|
purpose?: string | undefined;
|
|
997
997
|
}, {
|
|
998
998
|
id: string;
|
|
999
|
-
name?: string | undefined;
|
|
1000
|
-
description?: string | undefined;
|
|
1001
999
|
type?: string | undefined;
|
|
1000
|
+
description?: string | undefined;
|
|
1001
|
+
name?: 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
|
-
name?: string | undefined;
|
|
1021
|
-
description?: string | undefined;
|
|
1022
1020
|
type?: string | undefined;
|
|
1021
|
+
description?: string | undefined;
|
|
1022
|
+
name?: string | undefined;
|
|
1023
1023
|
platform?: string | undefined;
|
|
1024
1024
|
purpose?: string | undefined;
|
|
1025
1025
|
}, {
|
|
1026
1026
|
id: string;
|
|
1027
|
-
name?: string | undefined;
|
|
1028
|
-
description?: string | undefined;
|
|
1029
1027
|
type?: string | undefined;
|
|
1028
|
+
description?: string | undefined;
|
|
1029
|
+
name?: 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
|
-
name?: string | undefined;
|
|
1043
|
-
description?: string | undefined;
|
|
1044
1042
|
type?: string | undefined;
|
|
1043
|
+
description?: string | undefined;
|
|
1044
|
+
name?: string | undefined;
|
|
1045
1045
|
platform?: string | undefined;
|
|
1046
1046
|
purpose?: string | undefined;
|
|
1047
1047
|
}, {
|
|
1048
1048
|
id: string;
|
|
1049
|
-
name?: string | undefined;
|
|
1050
|
-
description?: string | undefined;
|
|
1051
1049
|
type?: string | undefined;
|
|
1050
|
+
description?: string | undefined;
|
|
1051
|
+
name?: 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
|
-
name?: string | undefined;
|
|
1065
|
-
description?: string | undefined;
|
|
1066
1064
|
type?: string | undefined;
|
|
1065
|
+
description?: string | undefined;
|
|
1066
|
+
name?: string | undefined;
|
|
1067
1067
|
platform?: string | undefined;
|
|
1068
1068
|
purpose?: string | undefined;
|
|
1069
1069
|
}, {
|
|
1070
1070
|
id: string;
|
|
1071
|
-
name?: string | undefined;
|
|
1072
|
-
description?: string | undefined;
|
|
1073
1071
|
type?: string | undefined;
|
|
1072
|
+
description?: string | undefined;
|
|
1073
|
+
name?: string | undefined;
|
|
1074
1074
|
platform?: string | undefined;
|
|
1075
1075
|
purpose?: string | undefined;
|
|
1076
1076
|
}>, "many">>;
|
|
@@ -1090,25 +1090,25 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1090
1090
|
error?: string | undefined;
|
|
1091
1091
|
shells?: {
|
|
1092
1092
|
id: string;
|
|
1093
|
-
name?: string | undefined;
|
|
1094
|
-
description?: string | undefined;
|
|
1095
1093
|
type?: string | undefined;
|
|
1094
|
+
description?: string | undefined;
|
|
1095
|
+
name?: string | undefined;
|
|
1096
1096
|
platform?: string | undefined;
|
|
1097
1097
|
purpose?: string | undefined;
|
|
1098
1098
|
}[] | undefined;
|
|
1099
1099
|
pages?: {
|
|
1100
1100
|
id: string;
|
|
1101
|
-
name?: string | undefined;
|
|
1102
|
-
description?: string | undefined;
|
|
1103
1101
|
type?: string | undefined;
|
|
1102
|
+
description?: string | undefined;
|
|
1103
|
+
name?: string | undefined;
|
|
1104
1104
|
platform?: string | undefined;
|
|
1105
1105
|
purpose?: string | undefined;
|
|
1106
1106
|
}[] | undefined;
|
|
1107
1107
|
sections?: {
|
|
1108
1108
|
id: string;
|
|
1109
|
-
name?: string | undefined;
|
|
1110
|
-
description?: string | undefined;
|
|
1111
1109
|
type?: string | undefined;
|
|
1110
|
+
description?: string | undefined;
|
|
1111
|
+
name?: string | undefined;
|
|
1112
1112
|
platform?: string | undefined;
|
|
1113
1113
|
purpose?: string | undefined;
|
|
1114
1114
|
}[] | undefined;
|
|
@@ -1121,25 +1121,25 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
|
|
|
1121
1121
|
error?: string | undefined;
|
|
1122
1122
|
shells?: {
|
|
1123
1123
|
id: string;
|
|
1124
|
-
name?: string | undefined;
|
|
1125
|
-
description?: string | undefined;
|
|
1126
1124
|
type?: string | undefined;
|
|
1125
|
+
description?: string | undefined;
|
|
1126
|
+
name?: string | undefined;
|
|
1127
1127
|
platform?: string | undefined;
|
|
1128
1128
|
purpose?: string | undefined;
|
|
1129
1129
|
}[] | undefined;
|
|
1130
1130
|
pages?: {
|
|
1131
1131
|
id: string;
|
|
1132
|
-
name?: string | undefined;
|
|
1133
|
-
description?: string | undefined;
|
|
1134
1132
|
type?: string | undefined;
|
|
1133
|
+
description?: string | undefined;
|
|
1134
|
+
name?: string | undefined;
|
|
1135
1135
|
platform?: string | undefined;
|
|
1136
1136
|
purpose?: string | undefined;
|
|
1137
1137
|
}[] | undefined;
|
|
1138
1138
|
sections?: {
|
|
1139
1139
|
id: string;
|
|
1140
|
-
name?: string | undefined;
|
|
1141
|
-
description?: string | undefined;
|
|
1142
1140
|
type?: string | undefined;
|
|
1141
|
+
description?: string | undefined;
|
|
1142
|
+
name?: 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
|
+
description: string;
|
|
1175
1176
|
id: string;
|
|
1176
1177
|
name: string;
|
|
1177
|
-
description: string;
|
|
1178
1178
|
version: string;
|
|
1179
1179
|
license: string;
|
|
1180
1180
|
totalIcons: number;
|
|
1181
1181
|
categories: string[];
|
|
1182
1182
|
}, {
|
|
1183
|
+
description: string;
|
|
1183
1184
|
id: string;
|
|
1184
1185
|
name: string;
|
|
1185
|
-
description: string;
|
|
1186
1186
|
version: 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
|
+
description: string;
|
|
1206
1207
|
id: string;
|
|
1207
1208
|
name: string;
|
|
1208
|
-
description: string;
|
|
1209
1209
|
version: string;
|
|
1210
1210
|
license: string;
|
|
1211
1211
|
totalIcons: number;
|
|
1212
1212
|
categories: string[];
|
|
1213
1213
|
}, {
|
|
1214
|
+
description: string;
|
|
1214
1215
|
id: string;
|
|
1215
1216
|
name: string;
|
|
1216
|
-
description: string;
|
|
1217
1217
|
version: string;
|
|
1218
1218
|
license: string;
|
|
1219
1219
|
totalIcons: number;
|
|
@@ -1226,9 +1226,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
|
|
|
1226
1226
|
error?: string | undefined;
|
|
1227
1227
|
count?: number | undefined;
|
|
1228
1228
|
libraries?: {
|
|
1229
|
+
description: string;
|
|
1229
1230
|
id: string;
|
|
1230
1231
|
name: string;
|
|
1231
|
-
description: string;
|
|
1232
1232
|
version: string;
|
|
1233
1233
|
license: string;
|
|
1234
1234
|
totalIcons: number;
|
|
@@ -1239,9 +1239,9 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
|
|
|
1239
1239
|
error?: string | undefined;
|
|
1240
1240
|
count?: number | undefined;
|
|
1241
1241
|
libraries?: {
|
|
1242
|
+
description: string;
|
|
1242
1243
|
id: string;
|
|
1243
1244
|
name: string;
|
|
1244
|
-
description: string;
|
|
1245
1245
|
version: string;
|
|
1246
1246
|
license: string;
|
|
1247
1247
|
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
|
+
description: string;
|
|
1400
1401
|
id: string;
|
|
1401
1402
|
name: string;
|
|
1402
|
-
description: string;
|
|
1403
1403
|
version: 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
|
+
description: string;
|
|
1432
1433
|
id: string;
|
|
1433
1434
|
name: string;
|
|
1434
|
-
description: string;
|
|
1435
1435
|
version: 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
|
+
description: string;
|
|
1469
1470
|
id: string;
|
|
1470
1471
|
name: string;
|
|
1471
|
-
description: string;
|
|
1472
1472
|
version: 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
|
+
description: string;
|
|
1505
1506
|
id: string;
|
|
1506
1507
|
name: string;
|
|
1507
|
-
description: string;
|
|
1508
1508
|
version: string;
|
|
1509
1509
|
license: string;
|
|
1510
1510
|
totalIcons: number;
|
|
@@ -1569,18 +1569,18 @@ export declare const ComponentMetaSchema: z.ZodObject<{
|
|
|
1569
1569
|
hasSubComponents: z.ZodBoolean;
|
|
1570
1570
|
tier: z.ZodNumber;
|
|
1571
1571
|
}, "strip", z.ZodTypeAny, {
|
|
1572
|
+
description: string;
|
|
1572
1573
|
category: "core" | "complex" | "advanced";
|
|
1573
1574
|
id: string;
|
|
1574
1575
|
name: string;
|
|
1575
|
-
description: string;
|
|
1576
1576
|
tier: number;
|
|
1577
1577
|
variantsCount: number;
|
|
1578
1578
|
hasSubComponents: boolean;
|
|
1579
1579
|
}, {
|
|
1580
|
+
description: string;
|
|
1580
1581
|
category: "core" | "complex" | "advanced";
|
|
1581
1582
|
id: string;
|
|
1582
1583
|
name: string;
|
|
1583
|
-
description: string;
|
|
1584
1584
|
tier: number;
|
|
1585
1585
|
variantsCount: number;
|
|
1586
1586
|
hasSubComponents: boolean;
|
|
@@ -1600,18 +1600,18 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1600
1600
|
hasSubComponents: z.ZodBoolean;
|
|
1601
1601
|
tier: z.ZodNumber;
|
|
1602
1602
|
}, "strip", z.ZodTypeAny, {
|
|
1603
|
+
description: string;
|
|
1603
1604
|
category: "core" | "complex" | "advanced";
|
|
1604
1605
|
id: string;
|
|
1605
1606
|
name: string;
|
|
1606
|
-
description: string;
|
|
1607
1607
|
tier: number;
|
|
1608
1608
|
variantsCount: number;
|
|
1609
1609
|
hasSubComponents: boolean;
|
|
1610
1610
|
}, {
|
|
1611
|
+
description: string;
|
|
1611
1612
|
category: "core" | "complex" | "advanced";
|
|
1612
1613
|
id: string;
|
|
1613
1614
|
name: string;
|
|
1614
|
-
description: string;
|
|
1615
1615
|
tier: number;
|
|
1616
1616
|
variantsCount: number;
|
|
1617
1617
|
hasSubComponents: boolean;
|
|
@@ -1635,10 +1635,10 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1635
1635
|
success: boolean;
|
|
1636
1636
|
error?: string | undefined;
|
|
1637
1637
|
components?: {
|
|
1638
|
+
description: string;
|
|
1638
1639
|
category: "core" | "complex" | "advanced";
|
|
1639
1640
|
id: string;
|
|
1640
1641
|
name: string;
|
|
1641
|
-
description: string;
|
|
1642
1642
|
tier: number;
|
|
1643
1643
|
variantsCount: number;
|
|
1644
1644
|
hasSubComponents: boolean;
|
|
@@ -1653,10 +1653,10 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
|
|
|
1653
1653
|
success: boolean;
|
|
1654
1654
|
error?: string | undefined;
|
|
1655
1655
|
components?: {
|
|
1656
|
+
description: string;
|
|
1656
1657
|
category: "core" | "complex" | "advanced";
|
|
1657
1658
|
id: string;
|
|
1658
1659
|
name: string;
|
|
1659
|
-
description: string;
|
|
1660
1660
|
tier: number;
|
|
1661
1661
|
variantsCount: number;
|
|
1662
1662
|
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
|
-
name: string;
|
|
1701
1700
|
type: string;
|
|
1701
|
+
name: string;
|
|
1702
1702
|
required: boolean;
|
|
1703
1703
|
description?: string | undefined;
|
|
1704
1704
|
defaultValue?: string | undefined;
|
|
1705
1705
|
}, {
|
|
1706
|
-
name: string;
|
|
1707
1706
|
type: string;
|
|
1707
|
+
name: 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
|
-
name: string;
|
|
1722
1721
|
value: string;
|
|
1722
|
+
name: string;
|
|
1723
1723
|
description?: string | undefined;
|
|
1724
1724
|
}, {
|
|
1725
|
-
name: string;
|
|
1726
1725
|
value: string;
|
|
1726
|
+
name: 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
|
-
name: string;
|
|
1766
1765
|
type: string;
|
|
1766
|
+
name: string;
|
|
1767
1767
|
required: boolean;
|
|
1768
1768
|
description?: string | undefined;
|
|
1769
1769
|
defaultValue?: string | undefined;
|
|
1770
1770
|
}, {
|
|
1771
|
-
name: string;
|
|
1772
1771
|
type: string;
|
|
1772
|
+
name: 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
|
-
name: string;
|
|
1783
1782
|
value: string;
|
|
1783
|
+
name: string;
|
|
1784
1784
|
description?: string | undefined;
|
|
1785
1785
|
}, {
|
|
1786
|
-
name: string;
|
|
1787
1786
|
value: string;
|
|
1787
|
+
name: string;
|
|
1788
1788
|
description?: string | undefined;
|
|
1789
1789
|
}>, "many">>;
|
|
1790
1790
|
subComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1814,26 +1814,26 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1814
1814
|
}>, "many">>;
|
|
1815
1815
|
accessibility: z.ZodOptional<z.ZodString>;
|
|
1816
1816
|
}, "strip", z.ZodTypeAny, {
|
|
1817
|
+
description: string;
|
|
1817
1818
|
category: "core" | "complex" | "advanced";
|
|
1818
1819
|
id: string;
|
|
1819
1820
|
name: string;
|
|
1820
|
-
|
|
1821
|
+
tier: number;
|
|
1822
|
+
importStatement: string;
|
|
1821
1823
|
props: {
|
|
1822
|
-
name: string;
|
|
1823
1824
|
type: string;
|
|
1825
|
+
name: string;
|
|
1824
1826
|
required: boolean;
|
|
1825
1827
|
description?: string | undefined;
|
|
1826
1828
|
defaultValue?: string | undefined;
|
|
1827
1829
|
}[];
|
|
1828
|
-
tier: number;
|
|
1829
|
-
importStatement: string;
|
|
1830
1830
|
dependencies?: {
|
|
1831
1831
|
external: string[];
|
|
1832
1832
|
internal: string[];
|
|
1833
1833
|
} | undefined;
|
|
1834
1834
|
variants?: {
|
|
1835
|
-
name: string;
|
|
1836
1835
|
value: string;
|
|
1836
|
+
name: string;
|
|
1837
1837
|
description?: string | undefined;
|
|
1838
1838
|
}[] | undefined;
|
|
1839
1839
|
subComponents?: string[] | undefined;
|
|
@@ -1844,26 +1844,26 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1844
1844
|
}[] | undefined;
|
|
1845
1845
|
accessibility?: string | undefined;
|
|
1846
1846
|
}, {
|
|
1847
|
+
description: string;
|
|
1847
1848
|
category: "core" | "complex" | "advanced";
|
|
1848
1849
|
id: string;
|
|
1849
1850
|
name: string;
|
|
1850
|
-
|
|
1851
|
+
tier: number;
|
|
1852
|
+
importStatement: string;
|
|
1851
1853
|
props: {
|
|
1852
|
-
name: string;
|
|
1853
1854
|
type: string;
|
|
1855
|
+
name: string;
|
|
1854
1856
|
required: boolean;
|
|
1855
1857
|
description?: string | undefined;
|
|
1856
1858
|
defaultValue?: string | undefined;
|
|
1857
1859
|
}[];
|
|
1858
|
-
tier: number;
|
|
1859
|
-
importStatement: string;
|
|
1860
1860
|
dependencies?: {
|
|
1861
1861
|
external: string[];
|
|
1862
1862
|
internal: string[];
|
|
1863
1863
|
} | undefined;
|
|
1864
1864
|
variants?: {
|
|
1865
|
-
name: string;
|
|
1866
1865
|
value: string;
|
|
1866
|
+
name: string;
|
|
1867
1867
|
description?: string | undefined;
|
|
1868
1868
|
}[] | undefined;
|
|
1869
1869
|
subComponents?: string[] | undefined;
|
|
@@ -1879,26 +1879,26 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1879
1879
|
success: boolean;
|
|
1880
1880
|
error?: string | undefined;
|
|
1881
1881
|
component?: {
|
|
1882
|
+
description: string;
|
|
1882
1883
|
category: "core" | "complex" | "advanced";
|
|
1883
1884
|
id: string;
|
|
1884
1885
|
name: string;
|
|
1885
|
-
|
|
1886
|
+
tier: number;
|
|
1887
|
+
importStatement: string;
|
|
1886
1888
|
props: {
|
|
1887
|
-
name: string;
|
|
1888
1889
|
type: string;
|
|
1890
|
+
name: string;
|
|
1889
1891
|
required: boolean;
|
|
1890
1892
|
description?: string | undefined;
|
|
1891
1893
|
defaultValue?: string | undefined;
|
|
1892
1894
|
}[];
|
|
1893
|
-
tier: number;
|
|
1894
|
-
importStatement: string;
|
|
1895
1895
|
dependencies?: {
|
|
1896
1896
|
external: string[];
|
|
1897
1897
|
internal: string[];
|
|
1898
1898
|
} | undefined;
|
|
1899
1899
|
variants?: {
|
|
1900
|
-
name: string;
|
|
1901
1900
|
value: string;
|
|
1901
|
+
name: string;
|
|
1902
1902
|
description?: string | undefined;
|
|
1903
1903
|
}[] | undefined;
|
|
1904
1904
|
subComponents?: string[] | undefined;
|
|
@@ -1913,26 +1913,26 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
|
|
|
1913
1913
|
success: boolean;
|
|
1914
1914
|
error?: string | undefined;
|
|
1915
1915
|
component?: {
|
|
1916
|
+
description: string;
|
|
1916
1917
|
category: "core" | "complex" | "advanced";
|
|
1917
1918
|
id: string;
|
|
1918
1919
|
name: string;
|
|
1919
|
-
|
|
1920
|
+
tier: number;
|
|
1921
|
+
importStatement: string;
|
|
1920
1922
|
props: {
|
|
1921
|
-
name: string;
|
|
1922
1923
|
type: string;
|
|
1924
|
+
name: string;
|
|
1923
1925
|
required: boolean;
|
|
1924
1926
|
description?: string | undefined;
|
|
1925
1927
|
defaultValue?: string | undefined;
|
|
1926
1928
|
}[];
|
|
1927
|
-
tier: number;
|
|
1928
|
-
importStatement: string;
|
|
1929
1929
|
dependencies?: {
|
|
1930
1930
|
external: string[];
|
|
1931
1931
|
internal: string[];
|
|
1932
1932
|
} | undefined;
|
|
1933
1933
|
variants?: {
|
|
1934
|
-
name: string;
|
|
1935
1934
|
value: string;
|
|
1935
|
+
name: string;
|
|
1936
1936
|
description?: string | undefined;
|
|
1937
1937
|
}[] | undefined;
|
|
1938
1938
|
subComponents?: string[] | undefined;
|
|
@@ -1983,19 +1983,19 @@ 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
|
+
description: string;
|
|
1986
1987
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
1987
1988
|
id: string;
|
|
1988
1989
|
name: string;
|
|
1989
|
-
description: string;
|
|
1990
1990
|
version: string;
|
|
1991
1991
|
requiredComponentsCount: number;
|
|
1992
1992
|
layoutType: "centered" | "sidebar" | "full";
|
|
1993
1993
|
tags?: string[] | undefined;
|
|
1994
1994
|
}, {
|
|
1995
|
+
description: string;
|
|
1995
1996
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
1996
1997
|
id: string;
|
|
1997
1998
|
name: string;
|
|
1998
|
-
description: string;
|
|
1999
1999
|
version: string;
|
|
2000
2000
|
requiredComponentsCount: number;
|
|
2001
2001
|
layoutType: "centered" | "sidebar" | "full";
|
|
@@ -2017,19 +2017,19 @@ 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
|
+
description: string;
|
|
2020
2021
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2021
2022
|
id: string;
|
|
2022
2023
|
name: string;
|
|
2023
|
-
description: string;
|
|
2024
2024
|
version: string;
|
|
2025
2025
|
requiredComponentsCount: number;
|
|
2026
2026
|
layoutType: "centered" | "sidebar" | "full";
|
|
2027
2027
|
tags?: string[] | undefined;
|
|
2028
2028
|
}, {
|
|
2029
|
+
description: string;
|
|
2029
2030
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2030
2031
|
id: string;
|
|
2031
2032
|
name: string;
|
|
2032
|
-
description: string;
|
|
2033
2033
|
version: string;
|
|
2034
2034
|
requiredComponentsCount: number;
|
|
2035
2035
|
layoutType: "centered" | "sidebar" | "full";
|
|
@@ -2068,10 +2068,10 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2068
2068
|
feedback: number;
|
|
2069
2069
|
} | undefined;
|
|
2070
2070
|
templates?: {
|
|
2071
|
+
description: string;
|
|
2071
2072
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2072
2073
|
id: string;
|
|
2073
2074
|
name: string;
|
|
2074
|
-
description: string;
|
|
2075
2075
|
version: string;
|
|
2076
2076
|
requiredComponentsCount: number;
|
|
2077
2077
|
layoutType: "centered" | "sidebar" | "full";
|
|
@@ -2089,10 +2089,10 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
|
|
|
2089
2089
|
feedback: number;
|
|
2090
2090
|
} | undefined;
|
|
2091
2091
|
templates?: {
|
|
2092
|
+
description: string;
|
|
2092
2093
|
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2093
2094
|
id: string;
|
|
2094
2095
|
name: string;
|
|
2095
|
-
description: string;
|
|
2096
2096
|
version: string;
|
|
2097
2097
|
requiredComponentsCount: number;
|
|
2098
2098
|
layoutType: "centered" | "sidebar" | "full";
|
|
@@ -2129,13 +2129,13 @@ export declare const SkeletonSchema: z.ZodObject<{
|
|
|
2129
2129
|
}, "strip", z.ZodTypeAny, {
|
|
2130
2130
|
id: string;
|
|
2131
2131
|
name: string;
|
|
2132
|
-
slot: string;
|
|
2133
2132
|
required: boolean;
|
|
2133
|
+
slot: string;
|
|
2134
2134
|
}, {
|
|
2135
2135
|
id: string;
|
|
2136
2136
|
name: string;
|
|
2137
|
-
slot: string;
|
|
2138
2137
|
required: boolean;
|
|
2138
|
+
slot: string;
|
|
2139
2139
|
}>, "many">;
|
|
2140
2140
|
}, "strip", z.ZodTypeAny, {
|
|
2141
2141
|
shell: string;
|
|
@@ -2143,8 +2143,8 @@ export declare const SkeletonSchema: z.ZodObject<{
|
|
|
2143
2143
|
sections: {
|
|
2144
2144
|
id: string;
|
|
2145
2145
|
name: string;
|
|
2146
|
-
slot: string;
|
|
2147
2146
|
required: boolean;
|
|
2147
|
+
slot: string;
|
|
2148
2148
|
}[];
|
|
2149
2149
|
}, {
|
|
2150
2150
|
shell: string;
|
|
@@ -2152,8 +2152,8 @@ export declare const SkeletonSchema: z.ZodObject<{
|
|
|
2152
2152
|
sections: {
|
|
2153
2153
|
id: string;
|
|
2154
2154
|
name: string;
|
|
2155
|
-
slot: string;
|
|
2156
2155
|
required: boolean;
|
|
2156
|
+
slot: string;
|
|
2157
2157
|
}[];
|
|
2158
2158
|
}>;
|
|
2159
2159
|
export type Skeleton = z.infer<typeof SkeletonSchema>;
|
|
@@ -2273,13 +2273,13 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2273
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2274
|
id: string;
|
|
2275
2275
|
name: string;
|
|
2276
|
-
slot: string;
|
|
2277
2276
|
required: boolean;
|
|
2277
|
+
slot: string;
|
|
2278
2278
|
}, {
|
|
2279
2279
|
id: string;
|
|
2280
2280
|
name: string;
|
|
2281
|
-
slot: string;
|
|
2282
2281
|
required: boolean;
|
|
2282
|
+
slot: string;
|
|
2283
2283
|
}>, "many">;
|
|
2284
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2285
2285
|
shell: string;
|
|
@@ -2287,8 +2287,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2287
2287
|
sections: {
|
|
2288
2288
|
id: string;
|
|
2289
2289
|
name: string;
|
|
2290
|
-
slot: string;
|
|
2291
2290
|
required: boolean;
|
|
2291
|
+
slot: string;
|
|
2292
2292
|
}[];
|
|
2293
2293
|
}, {
|
|
2294
2294
|
shell: string;
|
|
@@ -2296,8 +2296,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2296
2296
|
sections: {
|
|
2297
2297
|
id: string;
|
|
2298
2298
|
name: string;
|
|
2299
|
-
slot: string;
|
|
2300
2299
|
required: boolean;
|
|
2300
|
+
slot: string;
|
|
2301
2301
|
}[];
|
|
2302
2302
|
}>;
|
|
2303
2303
|
layout: z.ZodObject<{
|
|
@@ -2446,9 +2446,6 @@ 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" | "auth" | "form" | "marketing" | "feedback";
|
|
2450
|
-
id: string;
|
|
2451
|
-
name: string;
|
|
2452
2449
|
description: string;
|
|
2453
2450
|
layout: {
|
|
2454
2451
|
type: "centered" | "sidebar" | "full";
|
|
@@ -2470,6 +2467,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2470
2467
|
};
|
|
2471
2468
|
} | undefined;
|
|
2472
2469
|
};
|
|
2470
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2471
|
+
id: string;
|
|
2472
|
+
name: string;
|
|
2473
2473
|
version: string;
|
|
2474
2474
|
importStatement: string;
|
|
2475
2475
|
skeleton: {
|
|
@@ -2478,8 +2478,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2478
2478
|
sections: {
|
|
2479
2479
|
id: string;
|
|
2480
2480
|
name: string;
|
|
2481
|
-
slot: string;
|
|
2482
2481
|
required: boolean;
|
|
2482
|
+
slot: string;
|
|
2483
2483
|
}[];
|
|
2484
2484
|
};
|
|
2485
2485
|
customizable: {
|
|
@@ -2497,9 +2497,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2497
2497
|
slots?: string[] | undefined;
|
|
2498
2498
|
} | undefined;
|
|
2499
2499
|
}, {
|
|
2500
|
-
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2501
|
-
id: string;
|
|
2502
|
-
name: string;
|
|
2503
2500
|
description: string;
|
|
2504
2501
|
layout: {
|
|
2505
2502
|
type: "centered" | "sidebar" | "full";
|
|
@@ -2521,6 +2518,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2521
2518
|
};
|
|
2522
2519
|
} | undefined;
|
|
2523
2520
|
};
|
|
2521
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2522
|
+
id: string;
|
|
2523
|
+
name: string;
|
|
2524
2524
|
version: string;
|
|
2525
2525
|
importStatement: string;
|
|
2526
2526
|
skeleton: {
|
|
@@ -2529,8 +2529,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2529
2529
|
sections: {
|
|
2530
2530
|
id: string;
|
|
2531
2531
|
name: string;
|
|
2532
|
-
slot: string;
|
|
2533
2532
|
required: boolean;
|
|
2533
|
+
slot: string;
|
|
2534
2534
|
}[];
|
|
2535
2535
|
};
|
|
2536
2536
|
customizable: {
|
|
@@ -2553,9 +2553,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2553
2553
|
success: boolean;
|
|
2554
2554
|
error?: string | undefined;
|
|
2555
2555
|
template?: {
|
|
2556
|
-
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2557
|
-
id: string;
|
|
2558
|
-
name: string;
|
|
2559
2556
|
description: string;
|
|
2560
2557
|
layout: {
|
|
2561
2558
|
type: "centered" | "sidebar" | "full";
|
|
@@ -2577,6 +2574,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2577
2574
|
};
|
|
2578
2575
|
} | undefined;
|
|
2579
2576
|
};
|
|
2577
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2578
|
+
id: string;
|
|
2579
|
+
name: string;
|
|
2580
2580
|
version: string;
|
|
2581
2581
|
importStatement: string;
|
|
2582
2582
|
skeleton: {
|
|
@@ -2585,8 +2585,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2585
2585
|
sections: {
|
|
2586
2586
|
id: string;
|
|
2587
2587
|
name: string;
|
|
2588
|
-
slot: string;
|
|
2589
2588
|
required: boolean;
|
|
2589
|
+
slot: string;
|
|
2590
2590
|
}[];
|
|
2591
2591
|
};
|
|
2592
2592
|
customizable: {
|
|
@@ -2608,9 +2608,6 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2608
2608
|
success: boolean;
|
|
2609
2609
|
error?: string | undefined;
|
|
2610
2610
|
template?: {
|
|
2611
|
-
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2612
|
-
id: string;
|
|
2613
|
-
name: string;
|
|
2614
2611
|
description: string;
|
|
2615
2612
|
layout: {
|
|
2616
2613
|
type: "centered" | "sidebar" | "full";
|
|
@@ -2632,6 +2629,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2632
2629
|
};
|
|
2633
2630
|
} | undefined;
|
|
2634
2631
|
};
|
|
2632
|
+
category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
|
|
2633
|
+
id: string;
|
|
2634
|
+
name: string;
|
|
2635
2635
|
version: string;
|
|
2636
2636
|
importStatement: string;
|
|
2637
2637
|
skeleton: {
|
|
@@ -2640,8 +2640,8 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
|
|
|
2640
2640
|
sections: {
|
|
2641
2641
|
id: string;
|
|
2642
2642
|
name: string;
|
|
2643
|
-
slot: string;
|
|
2644
2643
|
required: boolean;
|
|
2644
|
+
slot: string;
|
|
2645
2645
|
}[];
|
|
2646
2646
|
};
|
|
2647
2647
|
customizable: {
|
|
@@ -2699,13 +2699,13 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2699
2699
|
}, "strip", z.ZodTypeAny, {
|
|
2700
2700
|
id: string;
|
|
2701
2701
|
name: string;
|
|
2702
|
-
slot: string;
|
|
2703
2702
|
required: boolean;
|
|
2703
|
+
slot: string;
|
|
2704
2704
|
}, {
|
|
2705
2705
|
id: string;
|
|
2706
2706
|
name: string;
|
|
2707
|
-
slot: string;
|
|
2708
2707
|
required: boolean;
|
|
2708
|
+
slot: string;
|
|
2709
2709
|
}>, "many">;
|
|
2710
2710
|
}, "strip", z.ZodTypeAny, {
|
|
2711
2711
|
shell: string;
|
|
@@ -2713,8 +2713,8 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2713
2713
|
sections: {
|
|
2714
2714
|
id: string;
|
|
2715
2715
|
name: string;
|
|
2716
|
-
slot: string;
|
|
2717
2716
|
required: boolean;
|
|
2717
|
+
slot: string;
|
|
2718
2718
|
}[];
|
|
2719
2719
|
}, {
|
|
2720
2720
|
shell: string;
|
|
@@ -2722,15 +2722,15 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2722
2722
|
sections: {
|
|
2723
2723
|
id: string;
|
|
2724
2724
|
name: string;
|
|
2725
|
-
slot: string;
|
|
2726
2725
|
required: boolean;
|
|
2726
|
+
slot: string;
|
|
2727
2727
|
}[];
|
|
2728
2728
|
}>>;
|
|
2729
2729
|
requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2730
2730
|
}, "strip", z.ZodTypeAny, {
|
|
2731
|
-
category: string;
|
|
2732
2731
|
templateId: string;
|
|
2733
2732
|
templateName: string;
|
|
2733
|
+
category: string;
|
|
2734
2734
|
confidence: number;
|
|
2735
2735
|
matchedKeywords: string[];
|
|
2736
2736
|
skeleton?: {
|
|
@@ -2739,15 +2739,15 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2739
2739
|
sections: {
|
|
2740
2740
|
id: string;
|
|
2741
2741
|
name: string;
|
|
2742
|
-
slot: string;
|
|
2743
2742
|
required: boolean;
|
|
2743
|
+
slot: string;
|
|
2744
2744
|
}[];
|
|
2745
2745
|
} | undefined;
|
|
2746
2746
|
requiredComponents?: string[] | undefined;
|
|
2747
2747
|
}, {
|
|
2748
|
-
category: string;
|
|
2749
2748
|
templateId: string;
|
|
2750
2749
|
templateName: string;
|
|
2750
|
+
category: string;
|
|
2751
2751
|
confidence: number;
|
|
2752
2752
|
matchedKeywords: string[];
|
|
2753
2753
|
skeleton?: {
|
|
@@ -2756,8 +2756,8 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
|
|
|
2756
2756
|
sections: {
|
|
2757
2757
|
id: string;
|
|
2758
2758
|
name: string;
|
|
2759
|
-
slot: string;
|
|
2760
2759
|
required: boolean;
|
|
2760
|
+
slot: string;
|
|
2761
2761
|
}[];
|
|
2762
2762
|
} | undefined;
|
|
2763
2763
|
requiredComponents?: string[] | undefined;
|
|
@@ -2779,14 +2779,14 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
|
|
|
2779
2779
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2780
2780
|
description: z.ZodOptional<z.ZodString>;
|
|
2781
2781
|
}, "strip", z.ZodTypeAny, {
|
|
2782
|
-
name: string;
|
|
2783
2782
|
type: string;
|
|
2783
|
+
name: string;
|
|
2784
2784
|
required: boolean;
|
|
2785
2785
|
description?: string | undefined;
|
|
2786
2786
|
defaultValue?: string | undefined;
|
|
2787
2787
|
}, {
|
|
2788
|
-
name: string;
|
|
2789
2788
|
type: string;
|
|
2789
|
+
name: string;
|
|
2790
2790
|
required: boolean;
|
|
2791
2791
|
description?: string | undefined;
|
|
2792
2792
|
defaultValue?: string | undefined;
|
|
@@ -2796,48 +2796,48 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
|
|
|
2796
2796
|
value: z.ZodString;
|
|
2797
2797
|
description: z.ZodOptional<z.ZodString>;
|
|
2798
2798
|
}, "strip", z.ZodTypeAny, {
|
|
2799
|
-
name: string;
|
|
2800
2799
|
value: string;
|
|
2800
|
+
name: string;
|
|
2801
2801
|
description?: string | undefined;
|
|
2802
2802
|
}, {
|
|
2803
|
-
name: string;
|
|
2804
2803
|
value: string;
|
|
2804
|
+
name: string;
|
|
2805
2805
|
description?: string | undefined;
|
|
2806
2806
|
}>, "many">>;
|
|
2807
2807
|
}, "strip", z.ZodTypeAny, {
|
|
2808
|
+
description: string;
|
|
2808
2809
|
category: "core" | "complex" | "advanced";
|
|
2809
2810
|
id: string;
|
|
2810
2811
|
name: string;
|
|
2811
|
-
|
|
2812
|
+
importStatement: string;
|
|
2812
2813
|
props: {
|
|
2813
|
-
name: string;
|
|
2814
2814
|
type: string;
|
|
2815
|
+
name: string;
|
|
2815
2816
|
required: boolean;
|
|
2816
2817
|
description?: string | undefined;
|
|
2817
2818
|
defaultValue?: string | undefined;
|
|
2818
2819
|
}[];
|
|
2819
|
-
importStatement: string;
|
|
2820
2820
|
variants?: {
|
|
2821
|
-
name: string;
|
|
2822
2821
|
value: string;
|
|
2822
|
+
name: string;
|
|
2823
2823
|
description?: string | undefined;
|
|
2824
2824
|
}[] | undefined;
|
|
2825
2825
|
}, {
|
|
2826
|
+
description: string;
|
|
2826
2827
|
category: "core" | "complex" | "advanced";
|
|
2827
2828
|
id: string;
|
|
2828
2829
|
name: string;
|
|
2829
|
-
|
|
2830
|
+
importStatement: string;
|
|
2830
2831
|
props: {
|
|
2831
|
-
name: string;
|
|
2832
2832
|
type: string;
|
|
2833
|
+
name: string;
|
|
2833
2834
|
required: boolean;
|
|
2834
2835
|
description?: string | undefined;
|
|
2835
2836
|
defaultValue?: string | undefined;
|
|
2836
2837
|
}[];
|
|
2837
|
-
importStatement: string;
|
|
2838
2838
|
variants?: {
|
|
2839
|
-
name: string;
|
|
2840
2839
|
value: string;
|
|
2840
|
+
name: string;
|
|
2841
2841
|
description?: string | undefined;
|
|
2842
2842
|
}[] | undefined;
|
|
2843
2843
|
}>;
|
|
@@ -2905,9 +2905,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2905
2905
|
author?: string | undefined;
|
|
2906
2906
|
}>>;
|
|
2907
2907
|
}, "strip", z.ZodTypeAny, {
|
|
2908
|
-
id: string;
|
|
2909
2908
|
shell: string;
|
|
2910
2909
|
page: string;
|
|
2910
|
+
id: string;
|
|
2911
2911
|
sections: {
|
|
2912
2912
|
id: string;
|
|
2913
2913
|
components: {
|
|
@@ -2918,9 +2918,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2918
2918
|
pattern: string;
|
|
2919
2919
|
slot?: string | undefined;
|
|
2920
2920
|
}[];
|
|
2921
|
-
name?: string | undefined;
|
|
2922
2921
|
description?: string | undefined;
|
|
2923
2922
|
themeId?: string | undefined;
|
|
2923
|
+
name?: string | undefined;
|
|
2924
2924
|
metadata?: {
|
|
2925
2925
|
version?: string | undefined;
|
|
2926
2926
|
created?: string | undefined;
|
|
@@ -2928,9 +2928,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2928
2928
|
author?: string | undefined;
|
|
2929
2929
|
} | undefined;
|
|
2930
2930
|
}, {
|
|
2931
|
-
id: string;
|
|
2932
2931
|
shell: string;
|
|
2933
2932
|
page: string;
|
|
2933
|
+
id: string;
|
|
2934
2934
|
sections: {
|
|
2935
2935
|
id: string;
|
|
2936
2936
|
components: {
|
|
@@ -2941,9 +2941,9 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
|
|
|
2941
2941
|
pattern: string;
|
|
2942
2942
|
slot?: string | undefined;
|
|
2943
2943
|
}[];
|
|
2944
|
-
name?: string | undefined;
|
|
2945
2944
|
description?: string | undefined;
|
|
2946
2945
|
themeId?: string | undefined;
|
|
2946
|
+
name?: string | undefined;
|
|
2947
2947
|
metadata?: {
|
|
2948
2948
|
version?: string | undefined;
|
|
2949
2949
|
created?: string | undefined;
|
|
@@ -3018,9 +3018,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3018
3018
|
author?: string | undefined;
|
|
3019
3019
|
}>>;
|
|
3020
3020
|
}, "strip", z.ZodTypeAny, {
|
|
3021
|
-
id: string;
|
|
3022
3021
|
shell: string;
|
|
3023
3022
|
page: string;
|
|
3023
|
+
id: string;
|
|
3024
3024
|
sections: {
|
|
3025
3025
|
id: string;
|
|
3026
3026
|
components: {
|
|
@@ -3031,9 +3031,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3031
3031
|
pattern: string;
|
|
3032
3032
|
slot?: string | undefined;
|
|
3033
3033
|
}[];
|
|
3034
|
-
name?: string | undefined;
|
|
3035
3034
|
description?: string | undefined;
|
|
3036
3035
|
themeId?: string | undefined;
|
|
3036
|
+
name?: string | undefined;
|
|
3037
3037
|
metadata?: {
|
|
3038
3038
|
version?: string | undefined;
|
|
3039
3039
|
created?: string | undefined;
|
|
@@ -3041,9 +3041,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3041
3041
|
author?: string | undefined;
|
|
3042
3042
|
} | undefined;
|
|
3043
3043
|
}, {
|
|
3044
|
-
id: string;
|
|
3045
3044
|
shell: string;
|
|
3046
3045
|
page: string;
|
|
3046
|
+
id: string;
|
|
3047
3047
|
sections: {
|
|
3048
3048
|
id: string;
|
|
3049
3049
|
components: {
|
|
@@ -3054,9 +3054,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3054
3054
|
pattern: string;
|
|
3055
3055
|
slot?: string | undefined;
|
|
3056
3056
|
}[];
|
|
3057
|
-
name?: string | undefined;
|
|
3058
3057
|
description?: string | undefined;
|
|
3059
3058
|
themeId?: string | undefined;
|
|
3059
|
+
name?: string | undefined;
|
|
3060
3060
|
metadata?: {
|
|
3061
3061
|
version?: string | undefined;
|
|
3062
3062
|
created?: string | undefined;
|
|
@@ -3065,12 +3065,12 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3065
3065
|
} | undefined;
|
|
3066
3066
|
}>;
|
|
3067
3067
|
}, "strip", z.ZodTypeAny, {
|
|
3068
|
-
name: string;
|
|
3069
3068
|
description: string;
|
|
3069
|
+
name: string;
|
|
3070
3070
|
definition: {
|
|
3071
|
-
id: string;
|
|
3072
3071
|
shell: string;
|
|
3073
3072
|
page: string;
|
|
3073
|
+
id: string;
|
|
3074
3074
|
sections: {
|
|
3075
3075
|
id: string;
|
|
3076
3076
|
components: {
|
|
@@ -3081,9 +3081,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3081
3081
|
pattern: string;
|
|
3082
3082
|
slot?: string | undefined;
|
|
3083
3083
|
}[];
|
|
3084
|
-
name?: string | undefined;
|
|
3085
3084
|
description?: string | undefined;
|
|
3086
3085
|
themeId?: string | undefined;
|
|
3086
|
+
name?: string | undefined;
|
|
3087
3087
|
metadata?: {
|
|
3088
3088
|
version?: string | undefined;
|
|
3089
3089
|
created?: string | undefined;
|
|
@@ -3092,12 +3092,12 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3092
3092
|
} | undefined;
|
|
3093
3093
|
};
|
|
3094
3094
|
}, {
|
|
3095
|
-
name: string;
|
|
3096
3095
|
description: string;
|
|
3096
|
+
name: string;
|
|
3097
3097
|
definition: {
|
|
3098
|
-
id: string;
|
|
3099
3098
|
shell: string;
|
|
3100
3099
|
page: string;
|
|
3100
|
+
id: string;
|
|
3101
3101
|
sections: {
|
|
3102
3102
|
id: string;
|
|
3103
3103
|
components: {
|
|
@@ -3108,9 +3108,9 @@ export declare const ScreenExampleSchema: z.ZodObject<{
|
|
|
3108
3108
|
pattern: string;
|
|
3109
3109
|
slot?: string | undefined;
|
|
3110
3110
|
}[];
|
|
3111
|
-
name?: string | undefined;
|
|
3112
3111
|
description?: string | undefined;
|
|
3113
3112
|
themeId?: string | undefined;
|
|
3113
|
+
name?: string | undefined;
|
|
3114
3114
|
metadata?: {
|
|
3115
3115
|
version?: string | undefined;
|
|
3116
3116
|
created?: string | undefined;
|
|
@@ -3146,13 +3146,13 @@ export declare const GenerationHintSchema: z.ZodObject<{
|
|
|
3146
3146
|
message: z.ZodString;
|
|
3147
3147
|
example: z.ZodOptional<z.ZodString>;
|
|
3148
3148
|
}, "strip", z.ZodTypeAny, {
|
|
3149
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3150
3149
|
message: string;
|
|
3150
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3151
3151
|
priority: "high" | "medium" | "low";
|
|
3152
3152
|
example?: string | undefined;
|
|
3153
3153
|
}, {
|
|
3154
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3155
3154
|
message: string;
|
|
3155
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3156
3156
|
priority: "high" | "medium" | "low";
|
|
3157
3157
|
example?: string | undefined;
|
|
3158
3158
|
}>;
|
|
@@ -3254,13 +3254,13 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3254
3254
|
}, "strip", z.ZodTypeAny, {
|
|
3255
3255
|
id: string;
|
|
3256
3256
|
name: string;
|
|
3257
|
-
slot: string;
|
|
3258
3257
|
required: boolean;
|
|
3258
|
+
slot: string;
|
|
3259
3259
|
}, {
|
|
3260
3260
|
id: string;
|
|
3261
3261
|
name: string;
|
|
3262
|
-
slot: string;
|
|
3263
3262
|
required: boolean;
|
|
3263
|
+
slot: string;
|
|
3264
3264
|
}>, "many">;
|
|
3265
3265
|
}, "strip", z.ZodTypeAny, {
|
|
3266
3266
|
shell: string;
|
|
@@ -3268,8 +3268,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3268
3268
|
sections: {
|
|
3269
3269
|
id: string;
|
|
3270
3270
|
name: string;
|
|
3271
|
-
slot: string;
|
|
3272
3271
|
required: boolean;
|
|
3272
|
+
slot: string;
|
|
3273
3273
|
}[];
|
|
3274
3274
|
}, {
|
|
3275
3275
|
shell: string;
|
|
@@ -3277,15 +3277,15 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3277
3277
|
sections: {
|
|
3278
3278
|
id: string;
|
|
3279
3279
|
name: string;
|
|
3280
|
-
slot: string;
|
|
3281
3280
|
required: boolean;
|
|
3281
|
+
slot: string;
|
|
3282
3282
|
}[];
|
|
3283
3283
|
}>>;
|
|
3284
3284
|
requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3285
3285
|
}, "strip", z.ZodTypeAny, {
|
|
3286
|
-
category: string;
|
|
3287
3286
|
templateId: string;
|
|
3288
3287
|
templateName: string;
|
|
3288
|
+
category: string;
|
|
3289
3289
|
confidence: number;
|
|
3290
3290
|
matchedKeywords: string[];
|
|
3291
3291
|
skeleton?: {
|
|
@@ -3294,15 +3294,15 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3294
3294
|
sections: {
|
|
3295
3295
|
id: string;
|
|
3296
3296
|
name: string;
|
|
3297
|
-
slot: string;
|
|
3298
3297
|
required: boolean;
|
|
3298
|
+
slot: string;
|
|
3299
3299
|
}[];
|
|
3300
3300
|
} | undefined;
|
|
3301
3301
|
requiredComponents?: string[] | undefined;
|
|
3302
3302
|
}, {
|
|
3303
|
-
category: string;
|
|
3304
3303
|
templateId: string;
|
|
3305
3304
|
templateName: string;
|
|
3305
|
+
category: string;
|
|
3306
3306
|
confidence: number;
|
|
3307
3307
|
matchedKeywords: string[];
|
|
3308
3308
|
skeleton?: {
|
|
@@ -3311,8 +3311,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3311
3311
|
sections: {
|
|
3312
3312
|
id: string;
|
|
3313
3313
|
name: string;
|
|
3314
|
-
slot: string;
|
|
3315
3314
|
required: boolean;
|
|
3315
|
+
slot: string;
|
|
3316
3316
|
}[];
|
|
3317
3317
|
} | undefined;
|
|
3318
3318
|
requiredComponents?: string[] | undefined;
|
|
@@ -3330,14 +3330,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3330
3330
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3331
3331
|
description: z.ZodOptional<z.ZodString>;
|
|
3332
3332
|
}, "strip", z.ZodTypeAny, {
|
|
3333
|
-
name: string;
|
|
3334
3333
|
type: string;
|
|
3334
|
+
name: string;
|
|
3335
3335
|
required: boolean;
|
|
3336
3336
|
description?: string | undefined;
|
|
3337
3337
|
defaultValue?: string | undefined;
|
|
3338
3338
|
}, {
|
|
3339
|
-
name: string;
|
|
3340
3339
|
type: string;
|
|
3340
|
+
name: string;
|
|
3341
3341
|
required: boolean;
|
|
3342
3342
|
description?: string | undefined;
|
|
3343
3343
|
defaultValue?: string | undefined;
|
|
@@ -3347,48 +3347,48 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3347
3347
|
value: z.ZodString;
|
|
3348
3348
|
description: z.ZodOptional<z.ZodString>;
|
|
3349
3349
|
}, "strip", z.ZodTypeAny, {
|
|
3350
|
-
name: string;
|
|
3351
3350
|
value: string;
|
|
3351
|
+
name: string;
|
|
3352
3352
|
description?: string | undefined;
|
|
3353
3353
|
}, {
|
|
3354
|
-
name: string;
|
|
3355
3354
|
value: string;
|
|
3355
|
+
name: string;
|
|
3356
3356
|
description?: string | undefined;
|
|
3357
3357
|
}>, "many">>;
|
|
3358
3358
|
}, "strip", z.ZodTypeAny, {
|
|
3359
|
+
description: string;
|
|
3359
3360
|
category: "core" | "complex" | "advanced";
|
|
3360
3361
|
id: string;
|
|
3361
3362
|
name: string;
|
|
3362
|
-
|
|
3363
|
+
importStatement: string;
|
|
3363
3364
|
props: {
|
|
3364
|
-
name: string;
|
|
3365
3365
|
type: string;
|
|
3366
|
+
name: string;
|
|
3366
3367
|
required: boolean;
|
|
3367
3368
|
description?: string | undefined;
|
|
3368
3369
|
defaultValue?: string | undefined;
|
|
3369
3370
|
}[];
|
|
3370
|
-
importStatement: string;
|
|
3371
3371
|
variants?: {
|
|
3372
|
-
name: string;
|
|
3373
3372
|
value: string;
|
|
3373
|
+
name: string;
|
|
3374
3374
|
description?: string | undefined;
|
|
3375
3375
|
}[] | undefined;
|
|
3376
3376
|
}, {
|
|
3377
|
+
description: string;
|
|
3377
3378
|
category: "core" | "complex" | "advanced";
|
|
3378
3379
|
id: string;
|
|
3379
3380
|
name: string;
|
|
3380
|
-
|
|
3381
|
+
importStatement: string;
|
|
3381
3382
|
props: {
|
|
3382
|
-
name: string;
|
|
3383
3383
|
type: string;
|
|
3384
|
+
name: string;
|
|
3384
3385
|
required: boolean;
|
|
3385
3386
|
description?: string | undefined;
|
|
3386
3387
|
defaultValue?: string | undefined;
|
|
3387
3388
|
}[];
|
|
3388
|
-
importStatement: string;
|
|
3389
3389
|
variants?: {
|
|
3390
|
-
name: string;
|
|
3391
3390
|
value: string;
|
|
3391
|
+
name: string;
|
|
3392
3392
|
description?: string | undefined;
|
|
3393
3393
|
}[] | undefined;
|
|
3394
3394
|
}>, "many">>;
|
|
@@ -3465,9 +3465,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3465
3465
|
author?: string | undefined;
|
|
3466
3466
|
}>>;
|
|
3467
3467
|
}, "strip", z.ZodTypeAny, {
|
|
3468
|
-
id: string;
|
|
3469
3468
|
shell: string;
|
|
3470
3469
|
page: string;
|
|
3470
|
+
id: string;
|
|
3471
3471
|
sections: {
|
|
3472
3472
|
id: string;
|
|
3473
3473
|
components: {
|
|
@@ -3478,9 +3478,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3478
3478
|
pattern: string;
|
|
3479
3479
|
slot?: string | undefined;
|
|
3480
3480
|
}[];
|
|
3481
|
-
name?: string | undefined;
|
|
3482
3481
|
description?: string | undefined;
|
|
3483
3482
|
themeId?: string | undefined;
|
|
3483
|
+
name?: string | undefined;
|
|
3484
3484
|
metadata?: {
|
|
3485
3485
|
version?: string | undefined;
|
|
3486
3486
|
created?: string | undefined;
|
|
@@ -3488,9 +3488,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3488
3488
|
author?: string | undefined;
|
|
3489
3489
|
} | undefined;
|
|
3490
3490
|
}, {
|
|
3491
|
-
id: string;
|
|
3492
3491
|
shell: string;
|
|
3493
3492
|
page: string;
|
|
3493
|
+
id: string;
|
|
3494
3494
|
sections: {
|
|
3495
3495
|
id: string;
|
|
3496
3496
|
components: {
|
|
@@ -3501,9 +3501,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3501
3501
|
pattern: string;
|
|
3502
3502
|
slot?: string | undefined;
|
|
3503
3503
|
}[];
|
|
3504
|
-
name?: string | undefined;
|
|
3505
3504
|
description?: string | undefined;
|
|
3506
3505
|
themeId?: string | undefined;
|
|
3506
|
+
name?: string | undefined;
|
|
3507
3507
|
metadata?: {
|
|
3508
3508
|
version?: string | undefined;
|
|
3509
3509
|
created?: string | undefined;
|
|
@@ -3512,12 +3512,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3512
3512
|
} | undefined;
|
|
3513
3513
|
}>;
|
|
3514
3514
|
}, "strip", z.ZodTypeAny, {
|
|
3515
|
-
name: string;
|
|
3516
3515
|
description: string;
|
|
3516
|
+
name: string;
|
|
3517
3517
|
definition: {
|
|
3518
|
-
id: string;
|
|
3519
3518
|
shell: string;
|
|
3520
3519
|
page: string;
|
|
3520
|
+
id: string;
|
|
3521
3521
|
sections: {
|
|
3522
3522
|
id: string;
|
|
3523
3523
|
components: {
|
|
@@ -3528,9 +3528,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3528
3528
|
pattern: string;
|
|
3529
3529
|
slot?: string | undefined;
|
|
3530
3530
|
}[];
|
|
3531
|
-
name?: string | undefined;
|
|
3532
3531
|
description?: string | undefined;
|
|
3533
3532
|
themeId?: string | undefined;
|
|
3533
|
+
name?: string | undefined;
|
|
3534
3534
|
metadata?: {
|
|
3535
3535
|
version?: string | undefined;
|
|
3536
3536
|
created?: string | undefined;
|
|
@@ -3539,12 +3539,12 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3539
3539
|
} | undefined;
|
|
3540
3540
|
};
|
|
3541
3541
|
}, {
|
|
3542
|
-
name: string;
|
|
3543
3542
|
description: string;
|
|
3543
|
+
name: string;
|
|
3544
3544
|
definition: {
|
|
3545
|
-
id: string;
|
|
3546
3545
|
shell: string;
|
|
3547
3546
|
page: string;
|
|
3547
|
+
id: string;
|
|
3548
3548
|
sections: {
|
|
3549
3549
|
id: string;
|
|
3550
3550
|
components: {
|
|
@@ -3555,9 +3555,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3555
3555
|
pattern: string;
|
|
3556
3556
|
slot?: string | undefined;
|
|
3557
3557
|
}[];
|
|
3558
|
-
name?: string | undefined;
|
|
3559
3558
|
description?: string | undefined;
|
|
3560
3559
|
themeId?: string | undefined;
|
|
3560
|
+
name?: string | undefined;
|
|
3561
3561
|
metadata?: {
|
|
3562
3562
|
version?: string | undefined;
|
|
3563
3563
|
created?: string | undefined;
|
|
@@ -3585,13 +3585,13 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3585
3585
|
message: z.ZodString;
|
|
3586
3586
|
example: z.ZodOptional<z.ZodString>;
|
|
3587
3587
|
}, "strip", z.ZodTypeAny, {
|
|
3588
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3589
3588
|
message: string;
|
|
3589
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3590
3590
|
priority: "high" | "medium" | "low";
|
|
3591
3591
|
example?: string | undefined;
|
|
3592
3592
|
}, {
|
|
3593
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3594
3593
|
message: string;
|
|
3594
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3595
3595
|
priority: "high" | "medium" | "low";
|
|
3596
3596
|
example?: string | undefined;
|
|
3597
3597
|
}>, "many">>;
|
|
@@ -3646,31 +3646,31 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3646
3646
|
success: boolean;
|
|
3647
3647
|
error?: string | undefined;
|
|
3648
3648
|
components?: {
|
|
3649
|
+
description: string;
|
|
3649
3650
|
category: "core" | "complex" | "advanced";
|
|
3650
3651
|
id: string;
|
|
3651
3652
|
name: string;
|
|
3652
|
-
|
|
3653
|
+
importStatement: string;
|
|
3653
3654
|
props: {
|
|
3654
|
-
name: string;
|
|
3655
3655
|
type: string;
|
|
3656
|
+
name: string;
|
|
3656
3657
|
required: boolean;
|
|
3657
3658
|
description?: string | undefined;
|
|
3658
3659
|
defaultValue?: string | undefined;
|
|
3659
3660
|
}[];
|
|
3660
|
-
importStatement: string;
|
|
3661
3661
|
variants?: {
|
|
3662
|
-
name: string;
|
|
3663
3662
|
value: string;
|
|
3663
|
+
name: string;
|
|
3664
3664
|
description?: string | undefined;
|
|
3665
3665
|
}[] | undefined;
|
|
3666
3666
|
}[] | undefined;
|
|
3667
3667
|
examples?: {
|
|
3668
|
-
name: string;
|
|
3669
3668
|
description: string;
|
|
3669
|
+
name: string;
|
|
3670
3670
|
definition: {
|
|
3671
|
-
id: string;
|
|
3672
3671
|
shell: string;
|
|
3673
3672
|
page: string;
|
|
3673
|
+
id: string;
|
|
3674
3674
|
sections: {
|
|
3675
3675
|
id: string;
|
|
3676
3676
|
components: {
|
|
@@ -3681,9 +3681,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3681
3681
|
pattern: string;
|
|
3682
3682
|
slot?: string | undefined;
|
|
3683
3683
|
}[];
|
|
3684
|
-
name?: string | undefined;
|
|
3685
3684
|
description?: string | undefined;
|
|
3686
3685
|
themeId?: string | undefined;
|
|
3686
|
+
name?: string | undefined;
|
|
3687
3687
|
metadata?: {
|
|
3688
3688
|
version?: string | undefined;
|
|
3689
3689
|
created?: string | undefined;
|
|
@@ -3693,9 +3693,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3693
3693
|
};
|
|
3694
3694
|
}[] | undefined;
|
|
3695
3695
|
templateMatch?: {
|
|
3696
|
-
category: string;
|
|
3697
3696
|
templateId: string;
|
|
3698
3697
|
templateName: string;
|
|
3698
|
+
category: string;
|
|
3699
3699
|
confidence: number;
|
|
3700
3700
|
matchedKeywords: string[];
|
|
3701
3701
|
skeleton?: {
|
|
@@ -3704,8 +3704,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3704
3704
|
sections: {
|
|
3705
3705
|
id: string;
|
|
3706
3706
|
name: string;
|
|
3707
|
-
slot: string;
|
|
3708
3707
|
required: boolean;
|
|
3708
|
+
slot: string;
|
|
3709
3709
|
}[];
|
|
3710
3710
|
} | undefined;
|
|
3711
3711
|
requiredComponents?: string[] | undefined;
|
|
@@ -3720,8 +3720,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3720
3720
|
defaultClassName?: string | undefined;
|
|
3721
3721
|
}[] | undefined;
|
|
3722
3722
|
hints?: {
|
|
3723
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3724
3723
|
message: string;
|
|
3724
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3725
3725
|
priority: "high" | "medium" | "low";
|
|
3726
3726
|
example?: string | undefined;
|
|
3727
3727
|
}[] | undefined;
|
|
@@ -3741,31 +3741,31 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3741
3741
|
success: boolean;
|
|
3742
3742
|
error?: string | undefined;
|
|
3743
3743
|
components?: {
|
|
3744
|
+
description: string;
|
|
3744
3745
|
category: "core" | "complex" | "advanced";
|
|
3745
3746
|
id: string;
|
|
3746
3747
|
name: string;
|
|
3747
|
-
|
|
3748
|
+
importStatement: string;
|
|
3748
3749
|
props: {
|
|
3749
|
-
name: string;
|
|
3750
3750
|
type: string;
|
|
3751
|
+
name: string;
|
|
3751
3752
|
required: boolean;
|
|
3752
3753
|
description?: string | undefined;
|
|
3753
3754
|
defaultValue?: string | undefined;
|
|
3754
3755
|
}[];
|
|
3755
|
-
importStatement: string;
|
|
3756
3756
|
variants?: {
|
|
3757
|
-
name: string;
|
|
3758
3757
|
value: string;
|
|
3758
|
+
name: string;
|
|
3759
3759
|
description?: string | undefined;
|
|
3760
3760
|
}[] | undefined;
|
|
3761
3761
|
}[] | undefined;
|
|
3762
3762
|
examples?: {
|
|
3763
|
-
name: string;
|
|
3764
3763
|
description: string;
|
|
3764
|
+
name: string;
|
|
3765
3765
|
definition: {
|
|
3766
|
-
id: string;
|
|
3767
3766
|
shell: string;
|
|
3768
3767
|
page: string;
|
|
3768
|
+
id: string;
|
|
3769
3769
|
sections: {
|
|
3770
3770
|
id: string;
|
|
3771
3771
|
components: {
|
|
@@ -3776,9 +3776,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3776
3776
|
pattern: string;
|
|
3777
3777
|
slot?: string | undefined;
|
|
3778
3778
|
}[];
|
|
3779
|
-
name?: string | undefined;
|
|
3780
3779
|
description?: string | undefined;
|
|
3781
3780
|
themeId?: string | undefined;
|
|
3781
|
+
name?: string | undefined;
|
|
3782
3782
|
metadata?: {
|
|
3783
3783
|
version?: string | undefined;
|
|
3784
3784
|
created?: string | undefined;
|
|
@@ -3788,9 +3788,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3788
3788
|
};
|
|
3789
3789
|
}[] | undefined;
|
|
3790
3790
|
templateMatch?: {
|
|
3791
|
-
category: string;
|
|
3792
3791
|
templateId: string;
|
|
3793
3792
|
templateName: string;
|
|
3793
|
+
category: string;
|
|
3794
3794
|
confidence: number;
|
|
3795
3795
|
matchedKeywords: string[];
|
|
3796
3796
|
skeleton?: {
|
|
@@ -3799,8 +3799,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3799
3799
|
sections: {
|
|
3800
3800
|
id: string;
|
|
3801
3801
|
name: string;
|
|
3802
|
-
slot: string;
|
|
3803
3802
|
required: boolean;
|
|
3803
|
+
slot: string;
|
|
3804
3804
|
}[];
|
|
3805
3805
|
} | undefined;
|
|
3806
3806
|
requiredComponents?: string[] | undefined;
|
|
@@ -3815,8 +3815,8 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
|
|
|
3815
3815
|
defaultClassName?: string | undefined;
|
|
3816
3816
|
}[] | undefined;
|
|
3817
3817
|
hints?: {
|
|
3818
|
-
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3819
3818
|
message: string;
|
|
3819
|
+
category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
|
|
3820
3820
|
priority: "high" | "medium" | "low";
|
|
3821
3821
|
example?: string | undefined;
|
|
3822
3822
|
}[] | undefined;
|
|
@@ -4023,8 +4023,8 @@ export declare const ImprovementSuggestionSchema: z.ZodObject<{
|
|
|
4023
4023
|
value?: unknown;
|
|
4024
4024
|
}>, "many">>;
|
|
4025
4025
|
}, "strip", z.ZodTypeAny, {
|
|
4026
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4027
4026
|
message: string;
|
|
4027
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4028
4028
|
autoFix?: {
|
|
4029
4029
|
path: string;
|
|
4030
4030
|
op: "replace" | "add" | "remove";
|
|
@@ -4033,8 +4033,8 @@ export declare const ImprovementSuggestionSchema: z.ZodObject<{
|
|
|
4033
4033
|
affectedPath?: string | undefined;
|
|
4034
4034
|
suggestedChange?: string | undefined;
|
|
4035
4035
|
}, {
|
|
4036
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4037
4036
|
message: string;
|
|
4037
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4038
4038
|
autoFix?: {
|
|
4039
4039
|
path: string;
|
|
4040
4040
|
op: "replace" | "add" | "remove";
|
|
@@ -4130,8 +4130,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4130
4130
|
value?: unknown;
|
|
4131
4131
|
}>, "many">>;
|
|
4132
4132
|
}, "strip", z.ZodTypeAny, {
|
|
4133
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4134
4133
|
message: string;
|
|
4134
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4135
4135
|
autoFix?: {
|
|
4136
4136
|
path: string;
|
|
4137
4137
|
op: "replace" | "add" | "remove";
|
|
@@ -4140,8 +4140,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4140
4140
|
affectedPath?: string | undefined;
|
|
4141
4141
|
suggestedChange?: string | undefined;
|
|
4142
4142
|
}, {
|
|
4143
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4144
4143
|
message: string;
|
|
4144
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4145
4145
|
autoFix?: {
|
|
4146
4146
|
path: string;
|
|
4147
4147
|
op: "replace" | "add" | "remove";
|
|
@@ -4166,8 +4166,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4166
4166
|
error: z.ZodOptional<z.ZodString>;
|
|
4167
4167
|
}, "strip", z.ZodTypeAny, {
|
|
4168
4168
|
success: boolean;
|
|
4169
|
-
error?: string | undefined;
|
|
4170
4169
|
valid?: boolean | undefined;
|
|
4170
|
+
error?: string | undefined;
|
|
4171
4171
|
errors?: {
|
|
4172
4172
|
code: string;
|
|
4173
4173
|
path: string;
|
|
@@ -4188,8 +4188,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4188
4188
|
recommendation?: string | undefined;
|
|
4189
4189
|
}[] | undefined;
|
|
4190
4190
|
suggestions?: {
|
|
4191
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4192
4191
|
message: string;
|
|
4192
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4193
4193
|
autoFix?: {
|
|
4194
4194
|
path: string;
|
|
4195
4195
|
op: "replace" | "add" | "remove";
|
|
@@ -4205,8 +4205,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4205
4205
|
}[] | undefined;
|
|
4206
4206
|
}, {
|
|
4207
4207
|
success: boolean;
|
|
4208
|
-
error?: string | undefined;
|
|
4209
4208
|
valid?: boolean | undefined;
|
|
4209
|
+
error?: string | undefined;
|
|
4210
4210
|
errors?: {
|
|
4211
4211
|
code: string;
|
|
4212
4212
|
path: string;
|
|
@@ -4227,8 +4227,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
|
|
|
4227
4227
|
recommendation?: string | undefined;
|
|
4228
4228
|
}[] | undefined;
|
|
4229
4229
|
suggestions?: {
|
|
4230
|
-
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4231
4230
|
message: string;
|
|
4231
|
+
category: "accessibility" | "performance" | "maintainability" | "consistency";
|
|
4232
4232
|
autoFix?: {
|
|
4233
4233
|
path: string;
|
|
4234
4234
|
op: "replace" | "add" | "remove";
|
|
@@ -4252,14 +4252,17 @@ export declare const ValidateEnvironmentInputSchema: z.ZodObject<{
|
|
|
4252
4252
|
projectPath: z.ZodString;
|
|
4253
4253
|
requiredPackages: z.ZodArray<z.ZodString, "many">;
|
|
4254
4254
|
checkTailwind: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4255
|
+
checkStyles: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4255
4256
|
}, "strip", z.ZodTypeAny, {
|
|
4256
4257
|
projectPath: string;
|
|
4257
4258
|
requiredPackages: string[];
|
|
4258
4259
|
checkTailwind: boolean;
|
|
4260
|
+
checkStyles: boolean;
|
|
4259
4261
|
}, {
|
|
4260
4262
|
projectPath: string;
|
|
4261
4263
|
requiredPackages: string[];
|
|
4262
4264
|
checkTailwind?: boolean | undefined;
|
|
4265
|
+
checkStyles?: boolean | undefined;
|
|
4263
4266
|
}>;
|
|
4264
4267
|
export type ValidateEnvironmentInput = z.infer<typeof ValidateEnvironmentInputSchema>;
|
|
4265
4268
|
/**
|
|
@@ -4308,6 +4311,31 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4308
4311
|
fixes: string[];
|
|
4309
4312
|
configPath?: string | undefined;
|
|
4310
4313
|
}>>;
|
|
4314
|
+
styles: z.ZodOptional<z.ZodObject<{
|
|
4315
|
+
styleContract: z.ZodEnum<["framingui-native", "host-utility", "mixed", "unknown"]>;
|
|
4316
|
+
cssFilesChecked: z.ZodArray<z.ZodString, "many">;
|
|
4317
|
+
uiStylesImportFound: z.ZodBoolean;
|
|
4318
|
+
definedVariables: z.ZodArray<z.ZodString, "many">;
|
|
4319
|
+
missingVariables: z.ZodArray<z.ZodString, "many">;
|
|
4320
|
+
issues: z.ZodArray<z.ZodString, "many">;
|
|
4321
|
+
fixes: z.ZodArray<z.ZodString, "many">;
|
|
4322
|
+
}, "strip", z.ZodTypeAny, {
|
|
4323
|
+
issues: string[];
|
|
4324
|
+
fixes: string[];
|
|
4325
|
+
styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
|
|
4326
|
+
cssFilesChecked: string[];
|
|
4327
|
+
uiStylesImportFound: boolean;
|
|
4328
|
+
definedVariables: string[];
|
|
4329
|
+
missingVariables: string[];
|
|
4330
|
+
}, {
|
|
4331
|
+
issues: string[];
|
|
4332
|
+
fixes: string[];
|
|
4333
|
+
styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
|
|
4334
|
+
cssFilesChecked: string[];
|
|
4335
|
+
uiStylesImportFound: boolean;
|
|
4336
|
+
definedVariables: string[];
|
|
4337
|
+
missingVariables: string[];
|
|
4338
|
+
}>>;
|
|
4311
4339
|
error: z.ZodOptional<z.ZodString>;
|
|
4312
4340
|
}, "strip", z.ZodTypeAny, {
|
|
4313
4341
|
success: boolean;
|
|
@@ -4329,6 +4357,15 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4329
4357
|
} | undefined;
|
|
4330
4358
|
installed?: Record<string, string> | undefined;
|
|
4331
4359
|
missing?: string[] | undefined;
|
|
4360
|
+
styles?: {
|
|
4361
|
+
issues: string[];
|
|
4362
|
+
fixes: string[];
|
|
4363
|
+
styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
|
|
4364
|
+
cssFilesChecked: string[];
|
|
4365
|
+
uiStylesImportFound: boolean;
|
|
4366
|
+
definedVariables: string[];
|
|
4367
|
+
missingVariables: string[];
|
|
4368
|
+
} | undefined;
|
|
4332
4369
|
}, {
|
|
4333
4370
|
success: boolean;
|
|
4334
4371
|
error?: string | undefined;
|
|
@@ -4349,6 +4386,15 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
|
|
|
4349
4386
|
} | undefined;
|
|
4350
4387
|
installed?: Record<string, string> | undefined;
|
|
4351
4388
|
missing?: string[] | undefined;
|
|
4389
|
+
styles?: {
|
|
4390
|
+
issues: string[];
|
|
4391
|
+
fixes: string[];
|
|
4392
|
+
styleContract: "unknown" | "framingui-native" | "host-utility" | "mixed";
|
|
4393
|
+
cssFilesChecked: string[];
|
|
4394
|
+
uiStylesImportFound: boolean;
|
|
4395
|
+
definedVariables: string[];
|
|
4396
|
+
missingVariables: string[];
|
|
4397
|
+
} | undefined;
|
|
4352
4398
|
}>;
|
|
4353
4399
|
export type ValidateEnvironmentOutput = z.infer<typeof ValidateEnvironmentOutputSchema>;
|
|
4354
4400
|
//# sourceMappingURL=mcp-schemas.d.ts.map
|