@framingui/mcp-server 0.5.2 → 0.5.3

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.
Files changed (46) hide show
  1. package/README.md +13 -13
  2. package/dist/auth/verify.d.ts +2 -2
  3. package/dist/auth/verify.d.ts.map +1 -1
  4. package/dist/auth/verify.js +7 -3
  5. package/dist/auth/verify.js.map +1 -1
  6. package/dist/cli/agent-md-templates.d.ts +1 -1
  7. package/dist/cli/agent-md-templates.js +4 -4
  8. package/dist/cli/credentials.d.ts +3 -5
  9. package/dist/cli/credentials.d.ts.map +1 -1
  10. package/dist/cli/credentials.js +20 -10
  11. package/dist/cli/credentials.js.map +1 -1
  12. package/dist/cli/guide-template.d.ts +2 -2
  13. package/dist/cli/guide-template.js +5 -5
  14. package/dist/cli/index.d.ts +1 -1
  15. package/dist/cli/index.js +1 -1
  16. package/dist/cli/init.js +21 -21
  17. package/dist/cli/init.js.map +1 -1
  18. package/dist/cli/login.d.ts.map +1 -1
  19. package/dist/cli/login.js +5 -2
  20. package/dist/cli/login.js.map +1 -1
  21. package/dist/cli/logout.d.ts +1 -1
  22. package/dist/cli/logout.js +1 -1
  23. package/dist/cli/status.js +1 -1
  24. package/dist/cli/status.js.map +1 -1
  25. package/dist/data/examples/screen-examples.js +4 -4
  26. package/dist/data/examples/screen-examples.js.map +1 -1
  27. package/dist/generators/css-generator.js +1 -1
  28. package/dist/generators/css-generator.js.map +1 -1
  29. package/dist/index.js +4 -4
  30. package/dist/index.js.map +1 -1
  31. package/dist/prompts/getting-started.d.ts +2 -2
  32. package/dist/prompts/getting-started.js +5 -5
  33. package/dist/prompts/screen-workflow.js +2 -2
  34. package/dist/schemas/mcp-schemas.d.ts +376 -376
  35. package/dist/schemas/mcp-schemas.js +1 -1
  36. package/dist/schemas/mcp-schemas.js.map +1 -1
  37. package/dist/storage/blueprint-storage.js +1 -1
  38. package/dist/storage/blueprint-storage.js.map +1 -1
  39. package/dist/utils/api-url.d.ts +17 -0
  40. package/dist/utils/api-url.d.ts.map +1 -0
  41. package/dist/utils/api-url.js +52 -0
  42. package/dist/utils/api-url.js.map +1 -0
  43. package/dist/utils/tailwind-config-reader.js +1 -1
  44. package/dist/utils/tailwind-config-reader.js.map +1 -1
  45. package/package.json +17 -16
  46. package/LICENSE +0 -21
@@ -78,14 +78,14 @@ export declare const GenerateBlueprintInputSchema: z.ZodObject<{
78
78
  description: string;
79
79
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
80
80
  themeId: string;
81
- iconLibrary?: string | undefined;
82
81
  componentHints?: string[] | undefined;
82
+ iconLibrary?: string | undefined;
83
83
  }, {
84
84
  description: string;
85
85
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
86
86
  themeId: string;
87
- iconLibrary?: string | undefined;
88
87
  componentHints?: string[] | undefined;
88
+ iconLibrary?: string | undefined;
89
89
  }>;
90
90
  export type GenerateBlueprintInput = z.infer<typeof GenerateBlueprintInputSchema>;
91
91
  /**
@@ -112,9 +112,9 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
112
112
  page: string;
113
113
  }>;
114
114
  }, "strip", z.ZodTypeAny, {
115
+ category: string;
115
116
  templateId: string;
116
117
  templateName: string;
117
- category: string;
118
118
  confidence: number;
119
119
  matchedKeywords: string[];
120
120
  layoutRecommendation: {
@@ -123,9 +123,9 @@ export declare const TemplateRecommendationSchema: z.ZodObject<{
123
123
  page: string;
124
124
  };
125
125
  }, {
126
+ category: string;
126
127
  templateId: string;
127
128
  templateName: string;
128
- category: string;
129
129
  confidence: number;
130
130
  matchedKeywords: string[];
131
131
  layoutRecommendation: {
@@ -161,11 +161,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
161
161
  }>, "many">;
162
162
  timestamp: z.ZodNumber;
163
163
  }, "strip", z.ZodTypeAny, {
164
+ name: string;
164
165
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
165
166
  themeId: string;
166
167
  iconLibrary: string;
167
168
  id: string;
168
- name: string;
169
169
  components: {
170
170
  type: string;
171
171
  props?: Record<string, unknown>;
@@ -174,11 +174,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
174
174
  }[];
175
175
  timestamp: number;
176
176
  }, {
177
+ name: string;
177
178
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
178
179
  themeId: string;
179
180
  iconLibrary: string;
180
181
  id: string;
181
- name: string;
182
182
  components: {
183
183
  type: string;
184
184
  props?: Record<string, unknown>;
@@ -207,9 +207,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
207
207
  page: string;
208
208
  }>;
209
209
  }, "strip", z.ZodTypeAny, {
210
+ category: string;
210
211
  templateId: string;
211
212
  templateName: string;
212
- category: string;
213
213
  confidence: number;
214
214
  matchedKeywords: string[];
215
215
  layoutRecommendation: {
@@ -218,9 +218,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
218
218
  page: string;
219
219
  };
220
220
  }, {
221
+ category: string;
221
222
  templateId: string;
222
223
  templateName: string;
223
- category: string;
224
224
  confidence: number;
225
225
  matchedKeywords: string[];
226
226
  layoutRecommendation: {
@@ -234,11 +234,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
234
234
  success: boolean;
235
235
  error?: string | undefined;
236
236
  blueprint?: {
237
+ name: string;
237
238
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
238
239
  themeId: string;
239
240
  iconLibrary: string;
240
241
  id: string;
241
- name: string;
242
242
  components: {
243
243
  type: string;
244
244
  props?: Record<string, unknown>;
@@ -248,9 +248,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
248
248
  timestamp: number;
249
249
  } | undefined;
250
250
  templateRecommendations?: {
251
+ category: string;
251
252
  templateId: string;
252
253
  templateName: string;
253
- category: string;
254
254
  confidence: number;
255
255
  matchedKeywords: string[];
256
256
  layoutRecommendation: {
@@ -263,11 +263,11 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
263
263
  success: boolean;
264
264
  error?: string | undefined;
265
265
  blueprint?: {
266
+ name: string;
266
267
  layout: "single-column" | "two-column" | "sidebar-left" | "sidebar-right" | "dashboard" | "landing";
267
268
  themeId: string;
268
269
  iconLibrary: string;
269
270
  id: string;
270
- name: string;
271
271
  components: {
272
272
  type: string;
273
273
  props?: Record<string, unknown>;
@@ -277,9 +277,9 @@ export declare const GenerateBlueprintOutputSchema: z.ZodObject<{
277
277
  timestamp: number;
278
278
  } | undefined;
279
279
  templateRecommendations?: {
280
+ category: string;
280
281
  templateId: string;
281
282
  templateName: string;
282
- category: string;
283
283
  confidence: number;
284
284
  matchedKeywords: string[];
285
285
  layoutRecommendation: {
@@ -306,14 +306,14 @@ export declare const ThemeMetaSchema: z.ZodObject<{
306
306
  brandTone: z.ZodString;
307
307
  schemaVersion: z.ZodString;
308
308
  }, "strip", z.ZodTypeAny, {
309
- id: string;
310
309
  name: string;
310
+ id: string;
311
311
  brandTone: string;
312
312
  schemaVersion: string;
313
313
  description?: string | undefined;
314
314
  }, {
315
- id: string;
316
315
  name: string;
316
+ id: string;
317
317
  brandTone: string;
318
318
  schemaVersion: string;
319
319
  description?: string | undefined;
@@ -331,14 +331,14 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
331
331
  brandTone: z.ZodString;
332
332
  schemaVersion: z.ZodString;
333
333
  }, "strip", z.ZodTypeAny, {
334
- id: string;
335
334
  name: string;
335
+ id: string;
336
336
  brandTone: string;
337
337
  schemaVersion: string;
338
338
  description?: string | undefined;
339
339
  }, {
340
- id: string;
341
340
  name: string;
341
+ id: string;
342
342
  brandTone: string;
343
343
  schemaVersion: string;
344
344
  description?: string | undefined;
@@ -349,8 +349,8 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
349
349
  success: boolean;
350
350
  error?: string | undefined;
351
351
  themes?: {
352
- id: string;
353
352
  name: string;
353
+ id: string;
354
354
  brandTone: string;
355
355
  schemaVersion: string;
356
356
  description?: string | undefined;
@@ -360,8 +360,8 @@ export declare const ListThemesOutputSchema: z.ZodObject<{
360
360
  success: boolean;
361
361
  error?: string | undefined;
362
362
  themes?: {
363
- id: string;
364
363
  name: string;
364
+ id: string;
365
365
  brandTone: string;
366
366
  schemaVersion: string;
367
367
  description?: string | undefined;
@@ -429,8 +429,8 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
429
429
  elevation: z.ZodOptional<z.ZodUnknown>;
430
430
  typography: z.ZodOptional<z.ZodUnknown>;
431
431
  }, "strip", z.ZodTypeAny, {
432
- id: string;
433
432
  name: string;
433
+ id: string;
434
434
  brandTone: string;
435
435
  schemaVersion: string;
436
436
  tokens: {
@@ -450,8 +450,8 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
450
450
  elevation?: unknown;
451
451
  typography?: unknown;
452
452
  }, {
453
- id: string;
454
453
  name: string;
454
+ id: string;
455
455
  brandTone: string;
456
456
  schemaVersion: string;
457
457
  tokens: {
@@ -477,8 +477,8 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
477
477
  success: boolean;
478
478
  error?: string | undefined;
479
479
  theme?: {
480
- id: string;
481
480
  name: string;
481
+ id: string;
482
482
  brandTone: string;
483
483
  schemaVersion: string;
484
484
  tokens: {
@@ -503,8 +503,8 @@ export declare const PreviewThemeOutputSchema: z.ZodObject<{
503
503
  success: boolean;
504
504
  error?: string | undefined;
505
505
  theme?: {
506
- id: string;
507
506
  name: string;
507
+ id: string;
508
508
  brandTone: string;
509
509
  schemaVersion: string;
510
510
  tokens: {
@@ -602,11 +602,11 @@ export declare const HybridExportInputSchema: z.ZodObject<{
602
602
  }, {
603
603
  format: "jsx" | "tsx" | "vue";
604
604
  themeId?: string | undefined;
605
- blueprint?: unknown;
606
605
  includeCSS?: boolean | undefined;
606
+ blueprint?: unknown;
607
+ tier?: "tier1" | "tier2" | "auto" | undefined;
607
608
  componentName?: string | undefined;
608
609
  componentDescription?: string | undefined;
609
- tier?: "tier1" | "tier2" | "auto" | undefined;
610
610
  }>;
611
611
  export type HybridExportInput = z.input<typeof HybridExportInputSchema>;
612
612
  /**
@@ -728,33 +728,33 @@ export declare const DependenciesSchema: z.ZodObject<{
728
728
  }>>;
729
729
  notes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
730
730
  }, "strip", z.ZodTypeAny, {
731
- external: string[];
732
731
  internal: string[];
732
+ external: string[];
733
733
  installCommands: {
734
734
  npm: string;
735
735
  yarn: string;
736
736
  pnpm: string;
737
737
  bun: string;
738
738
  };
739
+ notes?: string[] | undefined;
739
740
  compatibility?: {
740
741
  react?: string | undefined;
741
742
  node?: string | undefined;
742
743
  } | undefined;
743
- notes?: string[] | undefined;
744
744
  }, {
745
- external: string[];
746
745
  internal: string[];
746
+ external: string[];
747
747
  installCommands: {
748
748
  npm: string;
749
749
  yarn: string;
750
750
  pnpm: string;
751
751
  bun: string;
752
752
  };
753
+ notes?: string[] | undefined;
753
754
  compatibility?: {
754
755
  react?: string | undefined;
755
756
  node?: string | undefined;
756
757
  } | undefined;
757
- notes?: string[] | undefined;
758
758
  }>;
759
759
  export type Dependencies = z.infer<typeof DependenciesSchema>;
760
760
  /**
@@ -795,33 +795,33 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
795
795
  }>>;
796
796
  notes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
797
797
  }, "strip", z.ZodTypeAny, {
798
- external: string[];
799
798
  internal: string[];
799
+ external: string[];
800
800
  installCommands: {
801
801
  npm: string;
802
802
  yarn: string;
803
803
  pnpm: string;
804
804
  bun: string;
805
805
  };
806
+ notes?: string[] | undefined;
806
807
  compatibility?: {
807
808
  react?: string | undefined;
808
809
  node?: string | undefined;
809
810
  } | undefined;
810
- notes?: string[] | undefined;
811
811
  }, {
812
- external: string[];
813
812
  internal: string[];
813
+ external: string[];
814
814
  installCommands: {
815
815
  npm: string;
816
816
  yarn: string;
817
817
  pnpm: string;
818
818
  bun: string;
819
819
  };
820
+ notes?: string[] | undefined;
820
821
  compatibility?: {
821
822
  react?: string | undefined;
822
823
  node?: string | undefined;
823
824
  } | undefined;
824
- notes?: string[] | undefined;
825
825
  }>>;
826
826
  errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
827
827
  error: z.ZodOptional<z.ZodString>;
@@ -829,44 +829,44 @@ export declare const GenerateScreenOutputSchema: z.ZodObject<{
829
829
  success: boolean;
830
830
  error?: string | undefined;
831
831
  code?: string | undefined;
832
- cssVariables?: string | undefined;
832
+ errors?: string[] | undefined;
833
833
  dependencies?: {
834
- external: string[];
835
834
  internal: string[];
835
+ external: string[];
836
836
  installCommands: {
837
837
  npm: string;
838
838
  yarn: string;
839
839
  pnpm: string;
840
840
  bun: string;
841
841
  };
842
+ notes?: string[] | undefined;
842
843
  compatibility?: {
843
844
  react?: string | undefined;
844
845
  node?: string | undefined;
845
846
  } | undefined;
846
- notes?: string[] | undefined;
847
847
  } | undefined;
848
- errors?: string[] | undefined;
848
+ cssVariables?: string | undefined;
849
849
  }, {
850
850
  success: boolean;
851
851
  error?: string | undefined;
852
852
  code?: string | undefined;
853
- cssVariables?: string | undefined;
853
+ errors?: string[] | undefined;
854
854
  dependencies?: {
855
- external: string[];
856
855
  internal: string[];
856
+ external: string[];
857
857
  installCommands: {
858
858
  npm: string;
859
859
  yarn: string;
860
860
  pnpm: string;
861
861
  bun: string;
862
862
  };
863
+ notes?: string[] | undefined;
863
864
  compatibility?: {
864
865
  react?: string | undefined;
865
866
  node?: string | undefined;
866
867
  } | undefined;
867
- notes?: string[] | undefined;
868
868
  } | undefined;
869
- errors?: string[] | undefined;
869
+ cssVariables?: string | undefined;
870
870
  }>;
871
871
  export type GenerateScreenOutput = z.infer<typeof GenerateScreenOutputSchema>;
872
872
  /**
@@ -977,16 +977,16 @@ export declare const TokenMetadataSchema: z.ZodObject<{
977
977
  type: z.ZodOptional<z.ZodString>;
978
978
  }, "strip", z.ZodTypeAny, {
979
979
  id: string;
980
- type?: string | undefined;
981
980
  description?: string | undefined;
982
981
  name?: string | undefined;
982
+ type?: string | undefined;
983
983
  platform?: string | undefined;
984
984
  purpose?: string | undefined;
985
985
  }, {
986
986
  id: string;
987
- type?: string | undefined;
988
987
  description?: string | undefined;
989
988
  name?: string | undefined;
989
+ type?: string | undefined;
990
990
  platform?: string | undefined;
991
991
  purpose?: string | undefined;
992
992
  }>;
@@ -1005,16 +1005,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1005
1005
  type: z.ZodOptional<z.ZodString>;
1006
1006
  }, "strip", z.ZodTypeAny, {
1007
1007
  id: string;
1008
- type?: string | undefined;
1009
1008
  description?: string | undefined;
1010
1009
  name?: string | undefined;
1010
+ type?: string | undefined;
1011
1011
  platform?: string | undefined;
1012
1012
  purpose?: string | undefined;
1013
1013
  }, {
1014
1014
  id: string;
1015
- type?: string | undefined;
1016
1015
  description?: string | undefined;
1017
1016
  name?: string | undefined;
1017
+ type?: string | undefined;
1018
1018
  platform?: string | undefined;
1019
1019
  purpose?: string | undefined;
1020
1020
  }>, "many">>;
@@ -1027,16 +1027,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1027
1027
  type: z.ZodOptional<z.ZodString>;
1028
1028
  }, "strip", z.ZodTypeAny, {
1029
1029
  id: string;
1030
- type?: string | undefined;
1031
1030
  description?: string | undefined;
1032
1031
  name?: string | undefined;
1032
+ type?: string | undefined;
1033
1033
  platform?: string | undefined;
1034
1034
  purpose?: string | undefined;
1035
1035
  }, {
1036
1036
  id: string;
1037
- type?: string | undefined;
1038
1037
  description?: string | undefined;
1039
1038
  name?: string | undefined;
1039
+ type?: string | undefined;
1040
1040
  platform?: string | undefined;
1041
1041
  purpose?: string | undefined;
1042
1042
  }>, "many">>;
@@ -1049,16 +1049,16 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1049
1049
  type: z.ZodOptional<z.ZodString>;
1050
1050
  }, "strip", z.ZodTypeAny, {
1051
1051
  id: string;
1052
- type?: string | undefined;
1053
1052
  description?: string | undefined;
1054
1053
  name?: string | undefined;
1054
+ type?: string | undefined;
1055
1055
  platform?: string | undefined;
1056
1056
  purpose?: string | undefined;
1057
1057
  }, {
1058
1058
  id: string;
1059
- type?: string | undefined;
1060
1059
  description?: string | undefined;
1061
1060
  name?: string | undefined;
1061
+ type?: string | undefined;
1062
1062
  platform?: string | undefined;
1063
1063
  purpose?: string | undefined;
1064
1064
  }>, "many">>;
@@ -1078,25 +1078,25 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1078
1078
  error?: string | undefined;
1079
1079
  shells?: {
1080
1080
  id: string;
1081
- type?: string | undefined;
1082
1081
  description?: string | undefined;
1083
1082
  name?: string | undefined;
1083
+ type?: string | undefined;
1084
1084
  platform?: string | undefined;
1085
1085
  purpose?: string | undefined;
1086
1086
  }[] | undefined;
1087
1087
  pages?: {
1088
1088
  id: string;
1089
- type?: string | undefined;
1090
1089
  description?: string | undefined;
1091
1090
  name?: string | undefined;
1091
+ type?: string | undefined;
1092
1092
  platform?: string | undefined;
1093
1093
  purpose?: string | undefined;
1094
1094
  }[] | undefined;
1095
1095
  sections?: {
1096
1096
  id: string;
1097
- type?: string | undefined;
1098
1097
  description?: string | undefined;
1099
1098
  name?: string | undefined;
1099
+ type?: string | undefined;
1100
1100
  platform?: string | undefined;
1101
1101
  purpose?: string | undefined;
1102
1102
  }[] | undefined;
@@ -1109,25 +1109,25 @@ export declare const ListTokensOutputSchema: z.ZodObject<{
1109
1109
  error?: string | undefined;
1110
1110
  shells?: {
1111
1111
  id: string;
1112
- type?: string | undefined;
1113
1112
  description?: string | undefined;
1114
1113
  name?: string | undefined;
1114
+ type?: string | undefined;
1115
1115
  platform?: string | undefined;
1116
1116
  purpose?: string | undefined;
1117
1117
  }[] | undefined;
1118
1118
  pages?: {
1119
1119
  id: string;
1120
- type?: string | undefined;
1121
1120
  description?: string | undefined;
1122
1121
  name?: string | undefined;
1122
+ type?: string | undefined;
1123
1123
  platform?: string | undefined;
1124
1124
  purpose?: string | undefined;
1125
1125
  }[] | undefined;
1126
1126
  sections?: {
1127
1127
  id: string;
1128
- type?: string | undefined;
1129
1128
  description?: string | undefined;
1130
1129
  name?: string | undefined;
1130
+ type?: string | undefined;
1131
1131
  platform?: string | undefined;
1132
1132
  purpose?: string | undefined;
1133
1133
  }[] | undefined;
@@ -1160,18 +1160,18 @@ export declare const IconLibraryMetaSchema: z.ZodObject<{
1160
1160
  totalIcons: z.ZodNumber;
1161
1161
  categories: z.ZodArray<z.ZodString, "many">;
1162
1162
  }, "strip", z.ZodTypeAny, {
1163
+ version: string;
1163
1164
  description: string;
1164
- id: string;
1165
1165
  name: string;
1166
- version: string;
1166
+ id: string;
1167
1167
  license: string;
1168
1168
  totalIcons: number;
1169
1169
  categories: string[];
1170
1170
  }, {
1171
+ version: string;
1171
1172
  description: string;
1172
- id: string;
1173
1173
  name: string;
1174
- version: string;
1174
+ id: string;
1175
1175
  license: string;
1176
1176
  totalIcons: number;
1177
1177
  categories: string[];
@@ -1191,18 +1191,18 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
1191
1191
  totalIcons: z.ZodNumber;
1192
1192
  categories: z.ZodArray<z.ZodString, "many">;
1193
1193
  }, "strip", z.ZodTypeAny, {
1194
+ version: string;
1194
1195
  description: string;
1195
- id: string;
1196
1196
  name: string;
1197
- version: string;
1197
+ id: string;
1198
1198
  license: string;
1199
1199
  totalIcons: number;
1200
1200
  categories: string[];
1201
1201
  }, {
1202
+ version: string;
1202
1203
  description: string;
1203
- id: string;
1204
1204
  name: string;
1205
- version: string;
1205
+ id: string;
1206
1206
  license: string;
1207
1207
  totalIcons: number;
1208
1208
  categories: string[];
@@ -1212,29 +1212,29 @@ export declare const ListIconLibrariesOutputSchema: z.ZodObject<{
1212
1212
  }, "strip", z.ZodTypeAny, {
1213
1213
  success: boolean;
1214
1214
  error?: string | undefined;
1215
- count?: number | undefined;
1216
1215
  libraries?: {
1216
+ version: string;
1217
1217
  description: string;
1218
- id: string;
1219
1218
  name: string;
1220
- version: string;
1219
+ id: string;
1221
1220
  license: string;
1222
1221
  totalIcons: number;
1223
1222
  categories: string[];
1224
1223
  }[] | undefined;
1224
+ count?: number | undefined;
1225
1225
  }, {
1226
1226
  success: boolean;
1227
1227
  error?: string | undefined;
1228
- count?: number | undefined;
1229
1228
  libraries?: {
1229
+ version: string;
1230
1230
  description: string;
1231
- id: string;
1232
1231
  name: string;
1233
- version: string;
1232
+ id: string;
1234
1233
  license: string;
1235
1234
  totalIcons: number;
1236
1235
  categories: string[];
1237
1236
  }[] | undefined;
1237
+ count?: number | undefined;
1238
1238
  }>;
1239
1239
  export type ListIconLibrariesOutput = z.infer<typeof ListIconLibrariesOutputSchema>;
1240
1240
  /**
@@ -1385,10 +1385,10 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1385
1385
  defaultVariant: z.ZodOptional<z.ZodString>;
1386
1386
  iconSample: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1387
1387
  }, "strip", z.ZodTypeAny, {
1388
+ version: string;
1388
1389
  description: string;
1389
- id: string;
1390
1390
  name: string;
1391
- version: string;
1391
+ id: string;
1392
1392
  license: string;
1393
1393
  totalIcons: number;
1394
1394
  categories: string[];
@@ -1417,10 +1417,10 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1417
1417
  defaultVariant?: string | undefined;
1418
1418
  iconSample?: string[] | undefined;
1419
1419
  }, {
1420
+ version: string;
1420
1421
  description: string;
1421
- id: string;
1422
1422
  name: string;
1423
- version: string;
1423
+ id: string;
1424
1424
  license: string;
1425
1425
  totalIcons: number;
1426
1426
  categories: string[];
@@ -1454,10 +1454,10 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1454
1454
  success: boolean;
1455
1455
  error?: string | undefined;
1456
1456
  library?: {
1457
+ version: string;
1457
1458
  description: string;
1458
- id: string;
1459
1459
  name: string;
1460
- version: string;
1460
+ id: string;
1461
1461
  license: string;
1462
1462
  totalIcons: number;
1463
1463
  categories: string[];
@@ -1490,10 +1490,10 @@ export declare const PreviewIconLibraryOutputSchema: z.ZodObject<{
1490
1490
  success: boolean;
1491
1491
  error?: string | undefined;
1492
1492
  library?: {
1493
+ version: string;
1493
1494
  description: string;
1494
- id: string;
1495
1495
  name: string;
1496
- version: string;
1496
+ id: string;
1497
1497
  license: string;
1498
1498
  totalIcons: number;
1499
1499
  categories: string[];
@@ -1541,8 +1541,8 @@ export declare const ListComponentsInputSchema: z.ZodObject<{
1541
1541
  category: "all" | "core" | "complex" | "advanced";
1542
1542
  search?: string | undefined;
1543
1543
  }, {
1544
- search?: string | undefined;
1545
1544
  category?: "all" | "core" | "complex" | "advanced" | undefined;
1545
+ search?: string | undefined;
1546
1546
  }>;
1547
1547
  export type ListComponentsInput = z.infer<typeof ListComponentsInputSchema>;
1548
1548
  /**
@@ -1558,20 +1558,20 @@ export declare const ComponentMetaSchema: z.ZodObject<{
1558
1558
  tier: z.ZodNumber;
1559
1559
  }, "strip", z.ZodTypeAny, {
1560
1560
  description: string;
1561
+ name: string;
1561
1562
  category: "core" | "complex" | "advanced";
1562
1563
  id: string;
1563
- name: string;
1564
- tier: number;
1565
1564
  variantsCount: number;
1566
1565
  hasSubComponents: boolean;
1566
+ tier: number;
1567
1567
  }, {
1568
1568
  description: string;
1569
+ name: string;
1569
1570
  category: "core" | "complex" | "advanced";
1570
1571
  id: string;
1571
- name: string;
1572
- tier: number;
1573
1572
  variantsCount: number;
1574
1573
  hasSubComponents: boolean;
1574
+ tier: number;
1575
1575
  }>;
1576
1576
  export type ComponentMeta = z.infer<typeof ComponentMetaSchema>;
1577
1577
  /**
@@ -1589,20 +1589,20 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
1589
1589
  tier: z.ZodNumber;
1590
1590
  }, "strip", z.ZodTypeAny, {
1591
1591
  description: string;
1592
+ name: string;
1592
1593
  category: "core" | "complex" | "advanced";
1593
1594
  id: string;
1594
- name: string;
1595
- tier: number;
1596
1595
  variantsCount: number;
1597
1596
  hasSubComponents: boolean;
1597
+ tier: number;
1598
1598
  }, {
1599
1599
  description: string;
1600
+ name: string;
1600
1601
  category: "core" | "complex" | "advanced";
1601
1602
  id: string;
1602
- name: string;
1603
- tier: number;
1604
1603
  variantsCount: number;
1605
1604
  hasSubComponents: boolean;
1605
+ tier: number;
1606
1606
  }>, "many">>;
1607
1607
  count: z.ZodOptional<z.ZodNumber>;
1608
1608
  categories: z.ZodOptional<z.ZodObject<{
@@ -1624,37 +1624,37 @@ export declare const ListComponentsOutputSchema: z.ZodObject<{
1624
1624
  error?: string | undefined;
1625
1625
  components?: {
1626
1626
  description: string;
1627
+ name: string;
1627
1628
  category: "core" | "complex" | "advanced";
1628
1629
  id: string;
1629
- name: string;
1630
- tier: number;
1631
1630
  variantsCount: number;
1632
1631
  hasSubComponents: boolean;
1632
+ tier: number;
1633
1633
  }[] | undefined;
1634
- count?: number | undefined;
1635
1634
  categories?: {
1636
1635
  core: number;
1637
1636
  complex: number;
1638
1637
  advanced: number;
1639
1638
  } | undefined;
1639
+ count?: number | undefined;
1640
1640
  }, {
1641
1641
  success: boolean;
1642
1642
  error?: string | undefined;
1643
1643
  components?: {
1644
1644
  description: string;
1645
+ name: string;
1645
1646
  category: "core" | "complex" | "advanced";
1646
1647
  id: string;
1647
- name: string;
1648
- tier: number;
1649
1648
  variantsCount: number;
1650
1649
  hasSubComponents: boolean;
1650
+ tier: number;
1651
1651
  }[] | undefined;
1652
- count?: number | undefined;
1653
1652
  categories?: {
1654
1653
  core: number;
1655
1654
  complex: number;
1656
1655
  advanced: number;
1657
1656
  } | undefined;
1657
+ count?: number | undefined;
1658
1658
  }>;
1659
1659
  export type ListComponentsOutput = z.infer<typeof ListComponentsOutputSchema>;
1660
1660
  /**
@@ -1685,14 +1685,14 @@ export declare const PropDefinitionSchema: z.ZodObject<{
1685
1685
  defaultValue: z.ZodOptional<z.ZodString>;
1686
1686
  description: z.ZodOptional<z.ZodString>;
1687
1687
  }, "strip", z.ZodTypeAny, {
1688
- type: string;
1689
1688
  name: string;
1689
+ type: string;
1690
1690
  required: boolean;
1691
1691
  description?: string | undefined;
1692
1692
  defaultValue?: string | undefined;
1693
1693
  }, {
1694
- type: string;
1695
1694
  name: string;
1695
+ type: string;
1696
1696
  required: boolean;
1697
1697
  description?: string | undefined;
1698
1698
  defaultValue?: string | undefined;
@@ -1706,12 +1706,12 @@ export declare const VariantSchema: z.ZodObject<{
1706
1706
  value: z.ZodString;
1707
1707
  description: z.ZodOptional<z.ZodString>;
1708
1708
  }, "strip", z.ZodTypeAny, {
1709
- value: string;
1710
1709
  name: string;
1710
+ value: string;
1711
1711
  description?: string | undefined;
1712
1712
  }, {
1713
- value: string;
1714
1713
  name: string;
1714
+ value: string;
1715
1715
  description?: string | undefined;
1716
1716
  }>;
1717
1717
  export type Variant = z.infer<typeof VariantSchema>;
@@ -1723,12 +1723,12 @@ export declare const UsageExampleSchema: z.ZodObject<{
1723
1723
  code: z.ZodString;
1724
1724
  description: z.ZodOptional<z.ZodString>;
1725
1725
  }, "strip", z.ZodTypeAny, {
1726
- code: string;
1727
1726
  title: string;
1727
+ code: string;
1728
1728
  description?: string | undefined;
1729
1729
  }, {
1730
- code: string;
1731
1730
  title: string;
1731
+ code: string;
1732
1732
  description?: string | undefined;
1733
1733
  }>;
1734
1734
  export type UsageExample = z.infer<typeof UsageExampleSchema>;
@@ -1750,14 +1750,14 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1750
1750
  defaultValue: z.ZodOptional<z.ZodString>;
1751
1751
  description: z.ZodOptional<z.ZodString>;
1752
1752
  }, "strip", z.ZodTypeAny, {
1753
- type: string;
1754
1753
  name: string;
1754
+ type: string;
1755
1755
  required: boolean;
1756
1756
  description?: string | undefined;
1757
1757
  defaultValue?: string | undefined;
1758
1758
  }, {
1759
- type: string;
1760
1759
  name: string;
1760
+ type: string;
1761
1761
  required: boolean;
1762
1762
  description?: string | undefined;
1763
1763
  defaultValue?: string | undefined;
@@ -1767,12 +1767,12 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1767
1767
  value: z.ZodString;
1768
1768
  description: z.ZodOptional<z.ZodString>;
1769
1769
  }, "strip", z.ZodTypeAny, {
1770
- value: string;
1771
1770
  name: string;
1771
+ value: string;
1772
1772
  description?: string | undefined;
1773
1773
  }, {
1774
- value: string;
1775
1774
  name: string;
1775
+ value: string;
1776
1776
  description?: string | undefined;
1777
1777
  }>, "many">>;
1778
1778
  subComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1781,83 +1781,83 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1781
1781
  internal: z.ZodArray<z.ZodString, "many">;
1782
1782
  external: z.ZodArray<z.ZodString, "many">;
1783
1783
  }, "strip", z.ZodTypeAny, {
1784
- external: string[];
1785
1784
  internal: string[];
1786
- }, {
1787
1785
  external: string[];
1786
+ }, {
1788
1787
  internal: string[];
1788
+ external: string[];
1789
1789
  }>>;
1790
1790
  examples: z.ZodOptional<z.ZodArray<z.ZodObject<{
1791
1791
  title: z.ZodString;
1792
1792
  code: z.ZodString;
1793
1793
  description: z.ZodOptional<z.ZodString>;
1794
1794
  }, "strip", z.ZodTypeAny, {
1795
- code: string;
1796
1795
  title: string;
1796
+ code: string;
1797
1797
  description?: string | undefined;
1798
1798
  }, {
1799
- code: string;
1800
1799
  title: string;
1800
+ code: string;
1801
1801
  description?: string | undefined;
1802
1802
  }>, "many">>;
1803
1803
  accessibility: z.ZodOptional<z.ZodString>;
1804
1804
  }, "strip", z.ZodTypeAny, {
1805
+ description: string;
1806
+ name: string;
1807
+ category: "core" | "complex" | "advanced";
1808
+ id: string;
1809
+ importStatement: string;
1810
+ tier: number;
1805
1811
  props: {
1806
- type: string;
1807
1812
  name: string;
1813
+ type: string;
1808
1814
  required: boolean;
1809
1815
  description?: string | undefined;
1810
1816
  defaultValue?: string | undefined;
1811
1817
  }[];
1812
- description: string;
1813
- category: "core" | "complex" | "advanced";
1814
- id: string;
1815
- name: string;
1816
- tier: number;
1817
- importStatement: string;
1818
- dependencies?: {
1819
- external: string[];
1820
- internal: string[];
1821
- } | undefined;
1822
1818
  variants?: {
1823
- value: string;
1824
1819
  name: string;
1820
+ value: string;
1825
1821
  description?: string | undefined;
1826
1822
  }[] | undefined;
1827
1823
  subComponents?: string[] | undefined;
1824
+ dependencies?: {
1825
+ internal: string[];
1826
+ external: string[];
1827
+ } | undefined;
1828
1828
  examples?: {
1829
- code: string;
1830
1829
  title: string;
1830
+ code: string;
1831
1831
  description?: string | undefined;
1832
1832
  }[] | undefined;
1833
1833
  accessibility?: string | undefined;
1834
1834
  }, {
1835
+ description: string;
1836
+ name: string;
1837
+ category: "core" | "complex" | "advanced";
1838
+ id: string;
1839
+ importStatement: string;
1840
+ tier: number;
1835
1841
  props: {
1836
- type: string;
1837
1842
  name: string;
1843
+ type: string;
1838
1844
  required: boolean;
1839
1845
  description?: string | undefined;
1840
1846
  defaultValue?: string | undefined;
1841
1847
  }[];
1842
- description: string;
1843
- category: "core" | "complex" | "advanced";
1844
- id: string;
1845
- name: string;
1846
- tier: number;
1847
- importStatement: string;
1848
- dependencies?: {
1849
- external: string[];
1850
- internal: string[];
1851
- } | undefined;
1852
1848
  variants?: {
1853
- value: string;
1854
1849
  name: string;
1850
+ value: string;
1855
1851
  description?: string | undefined;
1856
1852
  }[] | undefined;
1857
1853
  subComponents?: string[] | undefined;
1854
+ dependencies?: {
1855
+ internal: string[];
1856
+ external: string[];
1857
+ } | undefined;
1858
1858
  examples?: {
1859
- code: string;
1860
1859
  title: string;
1860
+ code: string;
1861
1861
  description?: string | undefined;
1862
1862
  }[] | undefined;
1863
1863
  accessibility?: string | undefined;
@@ -1867,32 +1867,32 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1867
1867
  success: boolean;
1868
1868
  error?: string | undefined;
1869
1869
  component?: {
1870
+ description: string;
1871
+ name: string;
1872
+ category: "core" | "complex" | "advanced";
1873
+ id: string;
1874
+ importStatement: string;
1875
+ tier: number;
1870
1876
  props: {
1871
- type: string;
1872
1877
  name: string;
1878
+ type: string;
1873
1879
  required: boolean;
1874
1880
  description?: string | undefined;
1875
1881
  defaultValue?: string | undefined;
1876
1882
  }[];
1877
- description: string;
1878
- category: "core" | "complex" | "advanced";
1879
- id: string;
1880
- name: string;
1881
- tier: number;
1882
- importStatement: string;
1883
- dependencies?: {
1884
- external: string[];
1885
- internal: string[];
1886
- } | undefined;
1887
1883
  variants?: {
1888
- value: string;
1889
1884
  name: string;
1885
+ value: string;
1890
1886
  description?: string | undefined;
1891
1887
  }[] | undefined;
1892
1888
  subComponents?: string[] | undefined;
1889
+ dependencies?: {
1890
+ internal: string[];
1891
+ external: string[];
1892
+ } | undefined;
1893
1893
  examples?: {
1894
- code: string;
1895
1894
  title: string;
1895
+ code: string;
1896
1896
  description?: string | undefined;
1897
1897
  }[] | undefined;
1898
1898
  accessibility?: string | undefined;
@@ -1901,32 +1901,32 @@ export declare const PreviewComponentOutputSchema: z.ZodObject<{
1901
1901
  success: boolean;
1902
1902
  error?: string | undefined;
1903
1903
  component?: {
1904
+ description: string;
1905
+ name: string;
1906
+ category: "core" | "complex" | "advanced";
1907
+ id: string;
1908
+ importStatement: string;
1909
+ tier: number;
1904
1910
  props: {
1905
- type: string;
1906
1911
  name: string;
1912
+ type: string;
1907
1913
  required: boolean;
1908
1914
  description?: string | undefined;
1909
1915
  defaultValue?: string | undefined;
1910
1916
  }[];
1911
- description: string;
1912
- category: "core" | "complex" | "advanced";
1913
- id: string;
1914
- name: string;
1915
- tier: number;
1916
- importStatement: string;
1917
- dependencies?: {
1918
- external: string[];
1919
- internal: string[];
1920
- } | undefined;
1921
1917
  variants?: {
1922
- value: string;
1923
1918
  name: string;
1919
+ value: string;
1924
1920
  description?: string | undefined;
1925
1921
  }[] | undefined;
1926
1922
  subComponents?: string[] | undefined;
1923
+ dependencies?: {
1924
+ internal: string[];
1925
+ external: string[];
1926
+ } | undefined;
1927
1927
  examples?: {
1928
- code: string;
1929
1928
  title: string;
1929
+ code: string;
1930
1930
  description?: string | undefined;
1931
1931
  }[] | undefined;
1932
1932
  accessibility?: string | undefined;
@@ -1946,11 +1946,11 @@ export declare const ListScreenTemplatesInputSchema: z.ZodObject<{
1946
1946
  category: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auth", "dashboard", "form", "marketing", "feedback", "all"]>>>;
1947
1947
  search: z.ZodOptional<z.ZodString>;
1948
1948
  }, "strip", z.ZodTypeAny, {
1949
- category: "auth" | "dashboard" | "all" | "form" | "marketing" | "feedback";
1949
+ category: "dashboard" | "all" | "auth" | "form" | "marketing" | "feedback";
1950
1950
  search?: string | undefined;
1951
1951
  }, {
1952
+ category?: "dashboard" | "all" | "auth" | "form" | "marketing" | "feedback" | undefined;
1952
1953
  search?: string | undefined;
1953
- category?: "auth" | "dashboard" | "all" | "form" | "marketing" | "feedback" | undefined;
1954
1954
  }>;
1955
1955
  export type ListScreenTemplatesInput = z.infer<typeof ListScreenTemplatesInputSchema>;
1956
1956
  /**
@@ -1971,20 +1971,20 @@ export declare const TemplateMetaSchema: z.ZodObject<{
1971
1971
  version: z.ZodString;
1972
1972
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1973
1973
  }, "strip", z.ZodTypeAny, {
1974
+ version: string;
1974
1975
  description: string;
1975
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
1976
- id: string;
1977
1976
  name: string;
1978
- version: string;
1977
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
1978
+ id: string;
1979
1979
  requiredComponentsCount: number;
1980
1980
  layoutType: "centered" | "sidebar" | "full";
1981
1981
  tags?: string[] | undefined;
1982
1982
  }, {
1983
+ version: string;
1983
1984
  description: string;
1984
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
1985
- id: string;
1986
1985
  name: string;
1987
- version: string;
1986
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
1987
+ id: string;
1988
1988
  requiredComponentsCount: number;
1989
1989
  layoutType: "centered" | "sidebar" | "full";
1990
1990
  tags?: string[] | undefined;
@@ -2005,20 +2005,20 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2005
2005
  version: z.ZodString;
2006
2006
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2007
2007
  }, "strip", z.ZodTypeAny, {
2008
+ version: string;
2008
2009
  description: string;
2009
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2010
- id: string;
2011
2010
  name: string;
2012
- version: string;
2011
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2012
+ id: string;
2013
2013
  requiredComponentsCount: number;
2014
2014
  layoutType: "centered" | "sidebar" | "full";
2015
2015
  tags?: string[] | undefined;
2016
2016
  }, {
2017
+ version: string;
2017
2018
  description: string;
2018
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2019
- id: string;
2020
2019
  name: string;
2021
- version: string;
2020
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2021
+ id: string;
2022
2022
  requiredComponentsCount: number;
2023
2023
  layoutType: "centered" | "sidebar" | "full";
2024
2024
  tags?: string[] | undefined;
@@ -2031,14 +2031,14 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2031
2031
  marketing: z.ZodNumber;
2032
2032
  feedback: z.ZodNumber;
2033
2033
  }, "strip", z.ZodTypeAny, {
2034
- auth: number;
2035
2034
  dashboard: number;
2035
+ auth: number;
2036
2036
  form: number;
2037
2037
  marketing: number;
2038
2038
  feedback: number;
2039
2039
  }, {
2040
- auth: number;
2041
2040
  dashboard: number;
2041
+ auth: number;
2042
2042
  form: number;
2043
2043
  marketing: number;
2044
2044
  feedback: number;
@@ -2047,20 +2047,20 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2047
2047
  }, "strip", z.ZodTypeAny, {
2048
2048
  success: boolean;
2049
2049
  error?: string | undefined;
2050
- count?: number | undefined;
2051
2050
  categories?: {
2052
- auth: number;
2053
2051
  dashboard: number;
2052
+ auth: number;
2054
2053
  form: number;
2055
2054
  marketing: number;
2056
2055
  feedback: number;
2057
2056
  } | undefined;
2057
+ count?: number | undefined;
2058
2058
  templates?: {
2059
+ version: string;
2059
2060
  description: string;
2060
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2061
- id: string;
2062
2061
  name: string;
2063
- version: string;
2062
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2063
+ id: string;
2064
2064
  requiredComponentsCount: number;
2065
2065
  layoutType: "centered" | "sidebar" | "full";
2066
2066
  tags?: string[] | undefined;
@@ -2068,20 +2068,20 @@ export declare const ListScreenTemplatesOutputSchema: z.ZodObject<{
2068
2068
  }, {
2069
2069
  success: boolean;
2070
2070
  error?: string | undefined;
2071
- count?: number | undefined;
2072
2071
  categories?: {
2073
- auth: number;
2074
2072
  dashboard: number;
2073
+ auth: number;
2075
2074
  form: number;
2076
2075
  marketing: number;
2077
2076
  feedback: number;
2078
2077
  } | undefined;
2078
+ count?: number | undefined;
2079
2079
  templates?: {
2080
+ version: string;
2080
2081
  description: string;
2081
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2082
- id: string;
2083
2082
  name: string;
2084
- version: string;
2083
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2084
+ id: string;
2085
2085
  requiredComponentsCount: number;
2086
2086
  layoutType: "centered" | "sidebar" | "full";
2087
2087
  tags?: string[] | undefined;
@@ -2115,33 +2115,33 @@ export declare const SkeletonSchema: z.ZodObject<{
2115
2115
  slot: z.ZodString;
2116
2116
  required: z.ZodBoolean;
2117
2117
  }, "strip", z.ZodTypeAny, {
2118
- slot: string;
2119
- id: string;
2120
2118
  name: string;
2121
2119
  required: boolean;
2122
- }, {
2123
- slot: string;
2124
2120
  id: string;
2121
+ slot: string;
2122
+ }, {
2125
2123
  name: string;
2126
2124
  required: boolean;
2125
+ id: string;
2126
+ slot: string;
2127
2127
  }>, "many">;
2128
2128
  }, "strip", z.ZodTypeAny, {
2129
2129
  shell: string;
2130
2130
  page: string;
2131
2131
  sections: {
2132
- slot: string;
2133
- id: string;
2134
2132
  name: string;
2135
2133
  required: boolean;
2134
+ id: string;
2135
+ slot: string;
2136
2136
  }[];
2137
2137
  }, {
2138
2138
  shell: string;
2139
2139
  page: string;
2140
2140
  sections: {
2141
- slot: string;
2142
- id: string;
2143
2141
  name: string;
2144
2142
  required: boolean;
2143
+ id: string;
2144
+ slot: string;
2145
2145
  }[];
2146
2146
  }>;
2147
2147
  export type Skeleton = z.infer<typeof SkeletonSchema>;
@@ -2153,12 +2153,12 @@ export declare const CustomizationSchema: z.ZodObject<{
2153
2153
  optional: z.ZodArray<z.ZodString, "many">;
2154
2154
  slots: z.ZodArray<z.ZodString, "many">;
2155
2155
  }, "strip", z.ZodTypeAny, {
2156
- texts: string[];
2157
2156
  optional: string[];
2157
+ texts: string[];
2158
2158
  slots: string[];
2159
2159
  }, {
2160
- texts: string[];
2161
2160
  optional: string[];
2161
+ texts: string[];
2162
2162
  slots: string[];
2163
2163
  }>;
2164
2164
  export type Customization = z.infer<typeof CustomizationSchema>;
@@ -2259,33 +2259,33 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2259
2259
  slot: z.ZodString;
2260
2260
  required: z.ZodBoolean;
2261
2261
  }, "strip", z.ZodTypeAny, {
2262
- slot: string;
2263
- id: string;
2264
2262
  name: string;
2265
2263
  required: boolean;
2266
- }, {
2267
- slot: string;
2268
2264
  id: string;
2265
+ slot: string;
2266
+ }, {
2269
2267
  name: string;
2270
2268
  required: boolean;
2269
+ id: string;
2270
+ slot: string;
2271
2271
  }>, "many">;
2272
2272
  }, "strip", z.ZodTypeAny, {
2273
2273
  shell: string;
2274
2274
  page: string;
2275
2275
  sections: {
2276
- slot: string;
2277
- id: string;
2278
2276
  name: string;
2279
2277
  required: boolean;
2278
+ id: string;
2279
+ slot: string;
2280
2280
  }[];
2281
2281
  }, {
2282
2282
  shell: string;
2283
2283
  page: string;
2284
2284
  sections: {
2285
- slot: string;
2286
- id: string;
2287
2285
  name: string;
2288
2286
  required: boolean;
2287
+ id: string;
2288
+ slot: string;
2289
2289
  }[];
2290
2290
  }>;
2291
2291
  layout: z.ZodObject<{
@@ -2407,12 +2407,12 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2407
2407
  optional: z.ZodArray<z.ZodString, "many">;
2408
2408
  slots: z.ZodArray<z.ZodString, "many">;
2409
2409
  }, "strip", z.ZodTypeAny, {
2410
- texts: string[];
2411
2410
  optional: string[];
2411
+ texts: string[];
2412
2412
  slots: string[];
2413
2413
  }, {
2414
- texts: string[];
2415
2414
  optional: string[];
2415
+ texts: string[];
2416
2416
  slots: string[];
2417
2417
  }>;
2418
2418
  requiredComponents: z.ZodArray<z.ZodString, "many">;
@@ -2434,7 +2434,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2434
2434
  updated: z.ZodString;
2435
2435
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2436
2436
  }, "strip", z.ZodTypeAny, {
2437
+ version: string;
2437
2438
  description: string;
2439
+ name: string;
2438
2440
  layout: {
2439
2441
  type: "centered" | "sidebar" | "full";
2440
2442
  responsive?: {
@@ -2455,24 +2457,22 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2455
2457
  };
2456
2458
  } | undefined;
2457
2459
  };
2458
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2460
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2459
2461
  id: string;
2460
- name: string;
2461
- version: string;
2462
2462
  importStatement: string;
2463
2463
  skeleton: {
2464
2464
  shell: string;
2465
2465
  page: string;
2466
2466
  sections: {
2467
- slot: string;
2468
- id: string;
2469
2467
  name: string;
2470
2468
  required: boolean;
2469
+ id: string;
2470
+ slot: string;
2471
2471
  }[];
2472
2472
  };
2473
2473
  customizable: {
2474
- texts: string[];
2475
2474
  optional: string[];
2475
+ texts: string[];
2476
2476
  slots: string[];
2477
2477
  };
2478
2478
  requiredComponents: string[];
@@ -2485,7 +2485,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2485
2485
  slots?: string[] | undefined;
2486
2486
  } | undefined;
2487
2487
  }, {
2488
+ version: string;
2488
2489
  description: string;
2490
+ name: string;
2489
2491
  layout: {
2490
2492
  type: "centered" | "sidebar" | "full";
2491
2493
  responsive?: {
@@ -2506,24 +2508,22 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2506
2508
  };
2507
2509
  } | undefined;
2508
2510
  };
2509
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2511
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2510
2512
  id: string;
2511
- name: string;
2512
- version: string;
2513
2513
  importStatement: string;
2514
2514
  skeleton: {
2515
2515
  shell: string;
2516
2516
  page: string;
2517
2517
  sections: {
2518
- slot: string;
2519
- id: string;
2520
2518
  name: string;
2521
2519
  required: boolean;
2520
+ id: string;
2521
+ slot: string;
2522
2522
  }[];
2523
2523
  };
2524
2524
  customizable: {
2525
- texts: string[];
2526
2525
  optional: string[];
2526
+ texts: string[];
2527
2527
  slots: string[];
2528
2528
  };
2529
2529
  requiredComponents: string[];
@@ -2541,7 +2541,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2541
2541
  success: boolean;
2542
2542
  error?: string | undefined;
2543
2543
  template?: {
2544
+ version: string;
2544
2545
  description: string;
2546
+ name: string;
2545
2547
  layout: {
2546
2548
  type: "centered" | "sidebar" | "full";
2547
2549
  responsive?: {
@@ -2562,24 +2564,22 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2562
2564
  };
2563
2565
  } | undefined;
2564
2566
  };
2565
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2567
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2566
2568
  id: string;
2567
- name: string;
2568
- version: string;
2569
2569
  importStatement: string;
2570
2570
  skeleton: {
2571
2571
  shell: string;
2572
2572
  page: string;
2573
2573
  sections: {
2574
- slot: string;
2575
- id: string;
2576
2574
  name: string;
2577
2575
  required: boolean;
2576
+ id: string;
2577
+ slot: string;
2578
2578
  }[];
2579
2579
  };
2580
2580
  customizable: {
2581
- texts: string[];
2582
2581
  optional: string[];
2582
+ texts: string[];
2583
2583
  slots: string[];
2584
2584
  };
2585
2585
  requiredComponents: string[];
@@ -2596,7 +2596,9 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2596
2596
  success: boolean;
2597
2597
  error?: string | undefined;
2598
2598
  template?: {
2599
+ version: string;
2599
2600
  description: string;
2601
+ name: string;
2600
2602
  layout: {
2601
2603
  type: "centered" | "sidebar" | "full";
2602
2604
  responsive?: {
@@ -2617,24 +2619,22 @@ export declare const PreviewScreenTemplateOutputSchema: z.ZodObject<{
2617
2619
  };
2618
2620
  } | undefined;
2619
2621
  };
2620
- category: "auth" | "dashboard" | "form" | "marketing" | "feedback";
2622
+ category: "dashboard" | "auth" | "form" | "marketing" | "feedback";
2621
2623
  id: string;
2622
- name: string;
2623
- version: string;
2624
2624
  importStatement: string;
2625
2625
  skeleton: {
2626
2626
  shell: string;
2627
2627
  page: string;
2628
2628
  sections: {
2629
- slot: string;
2630
- id: string;
2631
2629
  name: string;
2632
2630
  required: boolean;
2631
+ id: string;
2632
+ slot: string;
2633
2633
  }[];
2634
2634
  };
2635
2635
  customizable: {
2636
- texts: string[];
2637
2636
  optional: string[];
2637
+ texts: string[];
2638
2638
  slots: string[];
2639
2639
  };
2640
2640
  requiredComponents: string[];
@@ -2685,67 +2685,67 @@ export declare const ContextTemplateMatchSchema: z.ZodObject<{
2685
2685
  slot: z.ZodString;
2686
2686
  required: z.ZodBoolean;
2687
2687
  }, "strip", z.ZodTypeAny, {
2688
- slot: string;
2689
- id: string;
2690
2688
  name: string;
2691
2689
  required: boolean;
2692
- }, {
2693
- slot: string;
2694
2690
  id: string;
2691
+ slot: string;
2692
+ }, {
2695
2693
  name: string;
2696
2694
  required: boolean;
2695
+ id: string;
2696
+ slot: string;
2697
2697
  }>, "many">;
2698
2698
  }, "strip", z.ZodTypeAny, {
2699
2699
  shell: string;
2700
2700
  page: string;
2701
2701
  sections: {
2702
- slot: string;
2703
- id: string;
2704
2702
  name: string;
2705
2703
  required: boolean;
2704
+ id: string;
2705
+ slot: string;
2706
2706
  }[];
2707
2707
  }, {
2708
2708
  shell: string;
2709
2709
  page: string;
2710
2710
  sections: {
2711
- slot: string;
2712
- id: string;
2713
2711
  name: string;
2714
2712
  required: boolean;
2713
+ id: string;
2714
+ slot: string;
2715
2715
  }[];
2716
2716
  }>>;
2717
2717
  requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2718
2718
  }, "strip", z.ZodTypeAny, {
2719
+ category: string;
2719
2720
  templateId: string;
2720
2721
  templateName: string;
2721
- category: string;
2722
2722
  confidence: number;
2723
2723
  matchedKeywords: string[];
2724
2724
  skeleton?: {
2725
2725
  shell: string;
2726
2726
  page: string;
2727
2727
  sections: {
2728
- slot: string;
2729
- id: string;
2730
2728
  name: string;
2731
2729
  required: boolean;
2730
+ id: string;
2731
+ slot: string;
2732
2732
  }[];
2733
2733
  } | undefined;
2734
2734
  requiredComponents?: string[] | undefined;
2735
2735
  }, {
2736
+ category: string;
2736
2737
  templateId: string;
2737
2738
  templateName: string;
2738
- category: string;
2739
2739
  confidence: number;
2740
2740
  matchedKeywords: string[];
2741
2741
  skeleton?: {
2742
2742
  shell: string;
2743
2743
  page: string;
2744
2744
  sections: {
2745
- slot: string;
2746
- id: string;
2747
2745
  name: string;
2748
2746
  required: boolean;
2747
+ id: string;
2748
+ slot: string;
2749
2749
  }[];
2750
2750
  } | undefined;
2751
2751
  requiredComponents?: string[] | undefined;
@@ -2767,14 +2767,14 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
2767
2767
  defaultValue: z.ZodOptional<z.ZodString>;
2768
2768
  description: z.ZodOptional<z.ZodString>;
2769
2769
  }, "strip", z.ZodTypeAny, {
2770
- type: string;
2771
2770
  name: string;
2771
+ type: string;
2772
2772
  required: boolean;
2773
2773
  description?: string | undefined;
2774
2774
  defaultValue?: string | undefined;
2775
2775
  }, {
2776
- type: string;
2777
2776
  name: string;
2777
+ type: string;
2778
2778
  required: boolean;
2779
2779
  description?: string | undefined;
2780
2780
  defaultValue?: string | undefined;
@@ -2784,48 +2784,48 @@ export declare const ContextComponentInfoSchema: z.ZodObject<{
2784
2784
  value: z.ZodString;
2785
2785
  description: z.ZodOptional<z.ZodString>;
2786
2786
  }, "strip", z.ZodTypeAny, {
2787
- value: string;
2788
2787
  name: string;
2788
+ value: string;
2789
2789
  description?: string | undefined;
2790
2790
  }, {
2791
- value: string;
2792
2791
  name: string;
2792
+ value: string;
2793
2793
  description?: string | undefined;
2794
2794
  }>, "many">>;
2795
2795
  }, "strip", z.ZodTypeAny, {
2796
+ description: string;
2797
+ name: string;
2798
+ category: "core" | "complex" | "advanced";
2799
+ id: string;
2800
+ importStatement: string;
2796
2801
  props: {
2797
- type: string;
2798
2802
  name: string;
2803
+ type: string;
2799
2804
  required: boolean;
2800
2805
  description?: string | undefined;
2801
2806
  defaultValue?: string | undefined;
2802
2807
  }[];
2803
- description: string;
2804
- category: "core" | "complex" | "advanced";
2805
- id: string;
2806
- name: string;
2807
- importStatement: string;
2808
2808
  variants?: {
2809
- value: string;
2810
2809
  name: string;
2810
+ value: string;
2811
2811
  description?: string | undefined;
2812
2812
  }[] | undefined;
2813
2813
  }, {
2814
+ description: string;
2815
+ name: string;
2816
+ category: "core" | "complex" | "advanced";
2817
+ id: string;
2818
+ importStatement: string;
2814
2819
  props: {
2815
- type: string;
2816
2820
  name: string;
2821
+ type: string;
2817
2822
  required: boolean;
2818
2823
  description?: string | undefined;
2819
2824
  defaultValue?: string | undefined;
2820
2825
  }[];
2821
- description: string;
2822
- category: "core" | "complex" | "advanced";
2823
- id: string;
2824
- name: string;
2825
- importStatement: string;
2826
2826
  variants?: {
2827
- value: string;
2828
2827
  name: string;
2828
+ value: string;
2829
2829
  description?: string | undefined;
2830
2830
  }[] | undefined;
2831
2831
  }>;
@@ -2858,22 +2858,22 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2858
2858
  children?: string | unknown[] | undefined;
2859
2859
  }>, "many">;
2860
2860
  }, "strip", z.ZodTypeAny, {
2861
+ pattern: string;
2861
2862
  id: string;
2862
2863
  components: {
2863
2864
  type: string;
2864
2865
  props?: Record<string, unknown> | undefined;
2865
2866
  children?: string | unknown[] | undefined;
2866
2867
  }[];
2867
- pattern: string;
2868
2868
  slot?: string | undefined;
2869
2869
  }, {
2870
+ pattern: string;
2870
2871
  id: string;
2871
2872
  components: {
2872
2873
  type: string;
2873
2874
  props?: Record<string, unknown> | undefined;
2874
2875
  children?: string | unknown[] | undefined;
2875
2876
  }[];
2876
- pattern: string;
2877
2877
  slot?: string | undefined;
2878
2878
  }>, "many">;
2879
2879
  metadata: z.ZodOptional<z.ZodObject<{
@@ -2897,18 +2897,18 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2897
2897
  page: string;
2898
2898
  id: string;
2899
2899
  sections: {
2900
+ pattern: string;
2900
2901
  id: string;
2901
2902
  components: {
2902
2903
  type: string;
2903
2904
  props?: Record<string, unknown> | undefined;
2904
2905
  children?: string | unknown[] | undefined;
2905
2906
  }[];
2906
- pattern: string;
2907
2907
  slot?: string | undefined;
2908
2908
  }[];
2909
2909
  description?: string | undefined;
2910
- themeId?: string | undefined;
2911
2910
  name?: string | undefined;
2911
+ themeId?: string | undefined;
2912
2912
  metadata?: {
2913
2913
  version?: string | undefined;
2914
2914
  created?: string | undefined;
@@ -2920,18 +2920,18 @@ export declare const ScreenDefinitionSchema: z.ZodObject<{
2920
2920
  page: string;
2921
2921
  id: string;
2922
2922
  sections: {
2923
+ pattern: string;
2923
2924
  id: string;
2924
2925
  components: {
2925
2926
  type: string;
2926
2927
  props?: Record<string, unknown> | undefined;
2927
2928
  children?: string | unknown[] | undefined;
2928
2929
  }[];
2929
- pattern: string;
2930
2930
  slot?: string | undefined;
2931
2931
  }[];
2932
2932
  description?: string | undefined;
2933
- themeId?: string | undefined;
2934
2933
  name?: string | undefined;
2934
+ themeId?: string | undefined;
2935
2935
  metadata?: {
2936
2936
  version?: string | undefined;
2937
2937
  created?: string | undefined;
@@ -2971,22 +2971,22 @@ export declare const ScreenExampleSchema: z.ZodObject<{
2971
2971
  children?: string | unknown[] | undefined;
2972
2972
  }>, "many">;
2973
2973
  }, "strip", z.ZodTypeAny, {
2974
+ pattern: string;
2974
2975
  id: string;
2975
2976
  components: {
2976
2977
  type: string;
2977
2978
  props?: Record<string, unknown> | undefined;
2978
2979
  children?: string | unknown[] | undefined;
2979
2980
  }[];
2980
- pattern: string;
2981
2981
  slot?: string | undefined;
2982
2982
  }, {
2983
+ pattern: string;
2983
2984
  id: string;
2984
2985
  components: {
2985
2986
  type: string;
2986
2987
  props?: Record<string, unknown> | undefined;
2987
2988
  children?: string | unknown[] | undefined;
2988
2989
  }[];
2989
- pattern: string;
2990
2990
  slot?: string | undefined;
2991
2991
  }>, "many">;
2992
2992
  metadata: z.ZodOptional<z.ZodObject<{
@@ -3010,18 +3010,18 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3010
3010
  page: string;
3011
3011
  id: string;
3012
3012
  sections: {
3013
+ pattern: string;
3013
3014
  id: string;
3014
3015
  components: {
3015
3016
  type: string;
3016
3017
  props?: Record<string, unknown> | undefined;
3017
3018
  children?: string | unknown[] | undefined;
3018
3019
  }[];
3019
- pattern: string;
3020
3020
  slot?: string | undefined;
3021
3021
  }[];
3022
3022
  description?: string | undefined;
3023
- themeId?: string | undefined;
3024
3023
  name?: string | undefined;
3024
+ themeId?: string | undefined;
3025
3025
  metadata?: {
3026
3026
  version?: string | undefined;
3027
3027
  created?: string | undefined;
@@ -3033,18 +3033,18 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3033
3033
  page: string;
3034
3034
  id: string;
3035
3035
  sections: {
3036
+ pattern: string;
3036
3037
  id: string;
3037
3038
  components: {
3038
3039
  type: string;
3039
3040
  props?: Record<string, unknown> | undefined;
3040
3041
  children?: string | unknown[] | undefined;
3041
3042
  }[];
3042
- pattern: string;
3043
3043
  slot?: string | undefined;
3044
3044
  }[];
3045
3045
  description?: string | undefined;
3046
- themeId?: string | undefined;
3047
3046
  name?: string | undefined;
3047
+ themeId?: string | undefined;
3048
3048
  metadata?: {
3049
3049
  version?: string | undefined;
3050
3050
  created?: string | undefined;
@@ -3060,18 +3060,18 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3060
3060
  page: string;
3061
3061
  id: string;
3062
3062
  sections: {
3063
+ pattern: string;
3063
3064
  id: string;
3064
3065
  components: {
3065
3066
  type: string;
3066
3067
  props?: Record<string, unknown> | undefined;
3067
3068
  children?: string | unknown[] | undefined;
3068
3069
  }[];
3069
- pattern: string;
3070
3070
  slot?: string | undefined;
3071
3071
  }[];
3072
3072
  description?: string | undefined;
3073
- themeId?: string | undefined;
3074
3073
  name?: string | undefined;
3074
+ themeId?: string | undefined;
3075
3075
  metadata?: {
3076
3076
  version?: string | undefined;
3077
3077
  created?: string | undefined;
@@ -3087,18 +3087,18 @@ export declare const ScreenExampleSchema: z.ZodObject<{
3087
3087
  page: string;
3088
3088
  id: string;
3089
3089
  sections: {
3090
+ pattern: string;
3090
3091
  id: string;
3091
3092
  components: {
3092
3093
  type: string;
3093
3094
  props?: Record<string, unknown> | undefined;
3094
3095
  children?: string | unknown[] | undefined;
3095
3096
  }[];
3096
- pattern: string;
3097
3097
  slot?: string | undefined;
3098
3098
  }[];
3099
3099
  description?: string | undefined;
3100
- themeId?: string | undefined;
3101
3100
  name?: string | undefined;
3101
+ themeId?: string | undefined;
3102
3102
  metadata?: {
3103
3103
  version?: string | undefined;
3104
3104
  created?: string | undefined;
@@ -3134,14 +3134,14 @@ export declare const GenerationHintSchema: z.ZodObject<{
3134
3134
  message: z.ZodString;
3135
3135
  example: z.ZodOptional<z.ZodString>;
3136
3136
  }, "strip", z.ZodTypeAny, {
3137
- message: string;
3138
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3139
3137
  priority: "high" | "medium" | "low";
3138
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3139
+ message: string;
3140
3140
  example?: string | undefined;
3141
3141
  }, {
3142
- message: string;
3143
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3144
3142
  priority: "high" | "medium" | "low";
3143
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3144
+ message: string;
3145
3145
  example?: string | undefined;
3146
3146
  }>;
3147
3147
  export type GenerationHint = z.infer<typeof GenerationHintSchema>;
@@ -3240,67 +3240,67 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3240
3240
  slot: z.ZodString;
3241
3241
  required: z.ZodBoolean;
3242
3242
  }, "strip", z.ZodTypeAny, {
3243
- slot: string;
3244
- id: string;
3245
3243
  name: string;
3246
3244
  required: boolean;
3247
- }, {
3248
- slot: string;
3249
3245
  id: string;
3246
+ slot: string;
3247
+ }, {
3250
3248
  name: string;
3251
3249
  required: boolean;
3250
+ id: string;
3251
+ slot: string;
3252
3252
  }>, "many">;
3253
3253
  }, "strip", z.ZodTypeAny, {
3254
3254
  shell: string;
3255
3255
  page: string;
3256
3256
  sections: {
3257
- slot: string;
3258
- id: string;
3259
3257
  name: string;
3260
3258
  required: boolean;
3259
+ id: string;
3260
+ slot: string;
3261
3261
  }[];
3262
3262
  }, {
3263
3263
  shell: string;
3264
3264
  page: string;
3265
3265
  sections: {
3266
- slot: string;
3267
- id: string;
3268
3266
  name: string;
3269
3267
  required: boolean;
3268
+ id: string;
3269
+ slot: string;
3270
3270
  }[];
3271
3271
  }>>;
3272
3272
  requiredComponents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3273
3273
  }, "strip", z.ZodTypeAny, {
3274
+ category: string;
3274
3275
  templateId: string;
3275
3276
  templateName: string;
3276
- category: string;
3277
3277
  confidence: number;
3278
3278
  matchedKeywords: string[];
3279
3279
  skeleton?: {
3280
3280
  shell: string;
3281
3281
  page: string;
3282
3282
  sections: {
3283
- slot: string;
3284
- id: string;
3285
3283
  name: string;
3286
3284
  required: boolean;
3285
+ id: string;
3286
+ slot: string;
3287
3287
  }[];
3288
3288
  } | undefined;
3289
3289
  requiredComponents?: string[] | undefined;
3290
3290
  }, {
3291
+ category: string;
3291
3292
  templateId: string;
3292
3293
  templateName: string;
3293
- category: string;
3294
3294
  confidence: number;
3295
3295
  matchedKeywords: string[];
3296
3296
  skeleton?: {
3297
3297
  shell: string;
3298
3298
  page: string;
3299
3299
  sections: {
3300
- slot: string;
3301
- id: string;
3302
3300
  name: string;
3303
3301
  required: boolean;
3302
+ id: string;
3303
+ slot: string;
3304
3304
  }[];
3305
3305
  } | undefined;
3306
3306
  requiredComponents?: string[] | undefined;
@@ -3318,14 +3318,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3318
3318
  defaultValue: z.ZodOptional<z.ZodString>;
3319
3319
  description: z.ZodOptional<z.ZodString>;
3320
3320
  }, "strip", z.ZodTypeAny, {
3321
- type: string;
3322
3321
  name: string;
3322
+ type: string;
3323
3323
  required: boolean;
3324
3324
  description?: string | undefined;
3325
3325
  defaultValue?: string | undefined;
3326
3326
  }, {
3327
- type: string;
3328
3327
  name: string;
3328
+ type: string;
3329
3329
  required: boolean;
3330
3330
  description?: string | undefined;
3331
3331
  defaultValue?: string | undefined;
@@ -3335,48 +3335,48 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3335
3335
  value: z.ZodString;
3336
3336
  description: z.ZodOptional<z.ZodString>;
3337
3337
  }, "strip", z.ZodTypeAny, {
3338
- value: string;
3339
3338
  name: string;
3339
+ value: string;
3340
3340
  description?: string | undefined;
3341
3341
  }, {
3342
- value: string;
3343
3342
  name: string;
3343
+ value: string;
3344
3344
  description?: string | undefined;
3345
3345
  }>, "many">>;
3346
3346
  }, "strip", z.ZodTypeAny, {
3347
+ description: string;
3348
+ name: string;
3349
+ category: "core" | "complex" | "advanced";
3350
+ id: string;
3351
+ importStatement: string;
3347
3352
  props: {
3348
- type: string;
3349
3353
  name: string;
3354
+ type: string;
3350
3355
  required: boolean;
3351
3356
  description?: string | undefined;
3352
3357
  defaultValue?: string | undefined;
3353
3358
  }[];
3354
- description: string;
3355
- category: "core" | "complex" | "advanced";
3356
- id: string;
3357
- name: string;
3358
- importStatement: string;
3359
3359
  variants?: {
3360
- value: string;
3361
3360
  name: string;
3361
+ value: string;
3362
3362
  description?: string | undefined;
3363
3363
  }[] | undefined;
3364
3364
  }, {
3365
+ description: string;
3366
+ name: string;
3367
+ category: "core" | "complex" | "advanced";
3368
+ id: string;
3369
+ importStatement: string;
3365
3370
  props: {
3366
- type: string;
3367
3371
  name: string;
3372
+ type: string;
3368
3373
  required: boolean;
3369
3374
  description?: string | undefined;
3370
3375
  defaultValue?: string | undefined;
3371
3376
  }[];
3372
- description: string;
3373
- category: "core" | "complex" | "advanced";
3374
- id: string;
3375
- name: string;
3376
- importStatement: string;
3377
3377
  variants?: {
3378
- value: string;
3379
3378
  name: string;
3379
+ value: string;
3380
3380
  description?: string | undefined;
3381
3381
  }[] | undefined;
3382
3382
  }>, "many">>;
@@ -3418,22 +3418,22 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3418
3418
  children?: string | unknown[] | undefined;
3419
3419
  }>, "many">;
3420
3420
  }, "strip", z.ZodTypeAny, {
3421
+ pattern: string;
3421
3422
  id: string;
3422
3423
  components: {
3423
3424
  type: string;
3424
3425
  props?: Record<string, unknown> | undefined;
3425
3426
  children?: string | unknown[] | undefined;
3426
3427
  }[];
3427
- pattern: string;
3428
3428
  slot?: string | undefined;
3429
3429
  }, {
3430
+ pattern: string;
3430
3431
  id: string;
3431
3432
  components: {
3432
3433
  type: string;
3433
3434
  props?: Record<string, unknown> | undefined;
3434
3435
  children?: string | unknown[] | undefined;
3435
3436
  }[];
3436
- pattern: string;
3437
3437
  slot?: string | undefined;
3438
3438
  }>, "many">;
3439
3439
  metadata: z.ZodOptional<z.ZodObject<{
@@ -3457,18 +3457,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3457
3457
  page: string;
3458
3458
  id: string;
3459
3459
  sections: {
3460
+ pattern: string;
3460
3461
  id: string;
3461
3462
  components: {
3462
3463
  type: string;
3463
3464
  props?: Record<string, unknown> | undefined;
3464
3465
  children?: string | unknown[] | undefined;
3465
3466
  }[];
3466
- pattern: string;
3467
3467
  slot?: string | undefined;
3468
3468
  }[];
3469
3469
  description?: string | undefined;
3470
- themeId?: string | undefined;
3471
3470
  name?: string | undefined;
3471
+ themeId?: string | undefined;
3472
3472
  metadata?: {
3473
3473
  version?: string | undefined;
3474
3474
  created?: string | undefined;
@@ -3480,18 +3480,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3480
3480
  page: string;
3481
3481
  id: string;
3482
3482
  sections: {
3483
+ pattern: string;
3483
3484
  id: string;
3484
3485
  components: {
3485
3486
  type: string;
3486
3487
  props?: Record<string, unknown> | undefined;
3487
3488
  children?: string | unknown[] | undefined;
3488
3489
  }[];
3489
- pattern: string;
3490
3490
  slot?: string | undefined;
3491
3491
  }[];
3492
3492
  description?: string | undefined;
3493
- themeId?: string | undefined;
3494
3493
  name?: string | undefined;
3494
+ themeId?: string | undefined;
3495
3495
  metadata?: {
3496
3496
  version?: string | undefined;
3497
3497
  created?: string | undefined;
@@ -3507,18 +3507,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3507
3507
  page: string;
3508
3508
  id: string;
3509
3509
  sections: {
3510
+ pattern: string;
3510
3511
  id: string;
3511
3512
  components: {
3512
3513
  type: string;
3513
3514
  props?: Record<string, unknown> | undefined;
3514
3515
  children?: string | unknown[] | undefined;
3515
3516
  }[];
3516
- pattern: string;
3517
3517
  slot?: string | undefined;
3518
3518
  }[];
3519
3519
  description?: string | undefined;
3520
- themeId?: string | undefined;
3521
3520
  name?: string | undefined;
3521
+ themeId?: string | undefined;
3522
3522
  metadata?: {
3523
3523
  version?: string | undefined;
3524
3524
  created?: string | undefined;
@@ -3534,18 +3534,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3534
3534
  page: string;
3535
3535
  id: string;
3536
3536
  sections: {
3537
+ pattern: string;
3537
3538
  id: string;
3538
3539
  components: {
3539
3540
  type: string;
3540
3541
  props?: Record<string, unknown> | undefined;
3541
3542
  children?: string | unknown[] | undefined;
3542
3543
  }[];
3543
- pattern: string;
3544
3544
  slot?: string | undefined;
3545
3545
  }[];
3546
3546
  description?: string | undefined;
3547
- themeId?: string | undefined;
3548
3547
  name?: string | undefined;
3548
+ themeId?: string | undefined;
3549
3549
  metadata?: {
3550
3550
  version?: string | undefined;
3551
3551
  created?: string | undefined;
@@ -3573,14 +3573,14 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3573
3573
  message: z.ZodString;
3574
3574
  example: z.ZodOptional<z.ZodString>;
3575
3575
  }, "strip", z.ZodTypeAny, {
3576
- message: string;
3577
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3578
3576
  priority: "high" | "medium" | "low";
3577
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3578
+ message: string;
3579
3579
  example?: string | undefined;
3580
3580
  }, {
3581
- message: string;
3582
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3583
3581
  priority: "high" | "medium" | "low";
3582
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3583
+ message: string;
3584
3584
  example?: string | undefined;
3585
3585
  }>, "many">>;
3586
3586
  workflow: z.ZodOptional<z.ZodObject<{
@@ -3634,21 +3634,21 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3634
3634
  success: boolean;
3635
3635
  error?: string | undefined;
3636
3636
  components?: {
3637
+ description: string;
3638
+ name: string;
3639
+ category: "core" | "complex" | "advanced";
3640
+ id: string;
3641
+ importStatement: string;
3637
3642
  props: {
3638
- type: string;
3639
3643
  name: string;
3644
+ type: string;
3640
3645
  required: boolean;
3641
3646
  description?: string | undefined;
3642
3647
  defaultValue?: string | undefined;
3643
3648
  }[];
3644
- description: string;
3645
- category: "core" | "complex" | "advanced";
3646
- id: string;
3647
- name: string;
3648
- importStatement: string;
3649
3649
  variants?: {
3650
- value: string;
3651
3650
  name: string;
3651
+ value: string;
3652
3652
  description?: string | undefined;
3653
3653
  }[] | undefined;
3654
3654
  }[] | undefined;
@@ -3660,18 +3660,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3660
3660
  page: string;
3661
3661
  id: string;
3662
3662
  sections: {
3663
+ pattern: string;
3663
3664
  id: string;
3664
3665
  components: {
3665
3666
  type: string;
3666
3667
  props?: Record<string, unknown> | undefined;
3667
3668
  children?: string | unknown[] | undefined;
3668
3669
  }[];
3669
- pattern: string;
3670
3670
  slot?: string | undefined;
3671
3671
  }[];
3672
3672
  description?: string | undefined;
3673
- themeId?: string | undefined;
3674
3673
  name?: string | undefined;
3674
+ themeId?: string | undefined;
3675
3675
  metadata?: {
3676
3676
  version?: string | undefined;
3677
3677
  created?: string | undefined;
@@ -3681,19 +3681,19 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3681
3681
  };
3682
3682
  }[] | undefined;
3683
3683
  templateMatch?: {
3684
+ category: string;
3684
3685
  templateId: string;
3685
3686
  templateName: string;
3686
- category: string;
3687
3687
  confidence: number;
3688
3688
  matchedKeywords: string[];
3689
3689
  skeleton?: {
3690
3690
  shell: string;
3691
3691
  page: string;
3692
3692
  sections: {
3693
- slot: string;
3694
- id: string;
3695
3693
  name: string;
3696
3694
  required: boolean;
3695
+ id: string;
3696
+ slot: string;
3697
3697
  }[];
3698
3698
  } | undefined;
3699
3699
  requiredComponents?: string[] | undefined;
@@ -3708,9 +3708,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3708
3708
  defaultClassName?: string | undefined;
3709
3709
  }[] | undefined;
3710
3710
  hints?: {
3711
- message: string;
3712
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3713
3711
  priority: "high" | "medium" | "low";
3712
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3713
+ message: string;
3714
3714
  example?: string | undefined;
3715
3715
  }[] | undefined;
3716
3716
  workflow?: {
@@ -3729,21 +3729,21 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3729
3729
  success: boolean;
3730
3730
  error?: string | undefined;
3731
3731
  components?: {
3732
+ description: string;
3733
+ name: string;
3734
+ category: "core" | "complex" | "advanced";
3735
+ id: string;
3736
+ importStatement: string;
3732
3737
  props: {
3733
- type: string;
3734
3738
  name: string;
3739
+ type: string;
3735
3740
  required: boolean;
3736
3741
  description?: string | undefined;
3737
3742
  defaultValue?: string | undefined;
3738
3743
  }[];
3739
- description: string;
3740
- category: "core" | "complex" | "advanced";
3741
- id: string;
3742
- name: string;
3743
- importStatement: string;
3744
3744
  variants?: {
3745
- value: string;
3746
3745
  name: string;
3746
+ value: string;
3747
3747
  description?: string | undefined;
3748
3748
  }[] | undefined;
3749
3749
  }[] | undefined;
@@ -3755,18 +3755,18 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3755
3755
  page: string;
3756
3756
  id: string;
3757
3757
  sections: {
3758
+ pattern: string;
3758
3759
  id: string;
3759
3760
  components: {
3760
3761
  type: string;
3761
3762
  props?: Record<string, unknown> | undefined;
3762
3763
  children?: string | unknown[] | undefined;
3763
3764
  }[];
3764
- pattern: string;
3765
3765
  slot?: string | undefined;
3766
3766
  }[];
3767
3767
  description?: string | undefined;
3768
- themeId?: string | undefined;
3769
3768
  name?: string | undefined;
3769
+ themeId?: string | undefined;
3770
3770
  metadata?: {
3771
3771
  version?: string | undefined;
3772
3772
  created?: string | undefined;
@@ -3776,19 +3776,19 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3776
3776
  };
3777
3777
  }[] | undefined;
3778
3778
  templateMatch?: {
3779
+ category: string;
3779
3780
  templateId: string;
3780
3781
  templateName: string;
3781
- category: string;
3782
3782
  confidence: number;
3783
3783
  matchedKeywords: string[];
3784
3784
  skeleton?: {
3785
3785
  shell: string;
3786
3786
  page: string;
3787
3787
  sections: {
3788
- slot: string;
3789
- id: string;
3790
3788
  name: string;
3791
3789
  required: boolean;
3790
+ id: string;
3791
+ slot: string;
3792
3792
  }[];
3793
3793
  } | undefined;
3794
3794
  requiredComponents?: string[] | undefined;
@@ -3803,9 +3803,9 @@ export declare const GetScreenGenerationContextOutputSchema: z.ZodObject<{
3803
3803
  defaultClassName?: string | undefined;
3804
3804
  }[] | undefined;
3805
3805
  hints?: {
3806
- message: string;
3807
- category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3808
3806
  priority: "high" | "medium" | "low";
3807
+ category: "layout" | "component" | "accessibility" | "styling" | "best-practice";
3808
+ message: string;
3809
3809
  example?: string | undefined;
3810
3810
  }[] | undefined;
3811
3811
  workflow?: {
@@ -3870,21 +3870,21 @@ export declare const GenerateScreenInputSchema: z.ZodObject<{
3870
3870
  prettier?: boolean | undefined;
3871
3871
  }>>;
3872
3872
  }, "strip", z.ZodTypeAny, {
3873
- outputFormat: "react" | "css-in-js" | "tailwind";
3873
+ outputFormat: "css-in-js" | "tailwind" | "react";
3874
+ screenDefinition?: unknown;
3874
3875
  options?: {
3875
3876
  typescript: boolean;
3876
3877
  prettier: boolean;
3877
3878
  cssFramework?: "styled-components" | "emotion" | undefined;
3878
3879
  } | undefined;
3879
- screenDefinition?: unknown;
3880
3880
  }, {
3881
- outputFormat: "react" | "css-in-js" | "tailwind";
3881
+ outputFormat: "css-in-js" | "tailwind" | "react";
3882
+ screenDefinition?: unknown;
3882
3883
  options?: {
3883
3884
  cssFramework?: "styled-components" | "emotion" | undefined;
3884
3885
  typescript?: boolean | undefined;
3885
3886
  prettier?: boolean | undefined;
3886
3887
  } | undefined;
3887
- screenDefinition?: unknown;
3888
3888
  }>;
3889
3889
  export type GenerateScreenInput = z.infer<typeof GenerateScreenInputSchema>;
3890
3890
  /**
@@ -4011,8 +4011,8 @@ export declare const ImprovementSuggestionSchema: z.ZodObject<{
4011
4011
  value?: unknown;
4012
4012
  }>, "many">>;
4013
4013
  }, "strip", z.ZodTypeAny, {
4014
- message: string;
4015
4014
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4015
+ message: string;
4016
4016
  autoFix?: {
4017
4017
  path: string;
4018
4018
  op: "replace" | "add" | "remove";
@@ -4021,8 +4021,8 @@ export declare const ImprovementSuggestionSchema: z.ZodObject<{
4021
4021
  affectedPath?: string | undefined;
4022
4022
  suggestedChange?: string | undefined;
4023
4023
  }, {
4024
- message: string;
4025
4024
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4025
+ message: string;
4026
4026
  autoFix?: {
4027
4027
  path: string;
4028
4028
  op: "replace" | "add" | "remove";
@@ -4118,8 +4118,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
4118
4118
  value?: unknown;
4119
4119
  }>, "many">>;
4120
4120
  }, "strip", z.ZodTypeAny, {
4121
- message: string;
4122
4121
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4122
+ message: string;
4123
4123
  autoFix?: {
4124
4124
  path: string;
4125
4125
  op: "replace" | "add" | "remove";
@@ -4128,8 +4128,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
4128
4128
  affectedPath?: string | undefined;
4129
4129
  suggestedChange?: string | undefined;
4130
4130
  }, {
4131
- message: string;
4132
4131
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4132
+ message: string;
4133
4133
  autoFix?: {
4134
4134
  path: string;
4135
4135
  op: "replace" | "add" | "remove";
@@ -4176,8 +4176,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
4176
4176
  recommendation?: string | undefined;
4177
4177
  }[] | undefined;
4178
4178
  suggestions?: {
4179
- message: string;
4180
4179
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4180
+ message: string;
4181
4181
  autoFix?: {
4182
4182
  path: string;
4183
4183
  op: "replace" | "add" | "remove";
@@ -4215,8 +4215,8 @@ export declare const ValidateScreenDefinitionOutputSchema: z.ZodObject<{
4215
4215
  recommendation?: string | undefined;
4216
4216
  }[] | undefined;
4217
4217
  suggestions?: {
4218
- message: string;
4219
4218
  category: "accessibility" | "performance" | "maintainability" | "consistency";
4219
+ message: string;
4220
4220
  autoFix?: {
4221
4221
  path: string;
4222
4222
  op: "replace" | "add" | "remove";
@@ -4300,13 +4300,6 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4300
4300
  }, "strip", z.ZodTypeAny, {
4301
4301
  success: boolean;
4302
4302
  error?: string | undefined;
4303
- installCommands?: {
4304
- npm: string;
4305
- yarn: string;
4306
- pnpm: string;
4307
- bun: string;
4308
- } | undefined;
4309
- warnings?: string[] | undefined;
4310
4303
  tailwind?: {
4311
4304
  issues: string[];
4312
4305
  configFound: boolean;
@@ -4315,18 +4308,18 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4315
4308
  fixes: string[];
4316
4309
  configPath?: string | undefined;
4317
4310
  } | undefined;
4318
- installed?: Record<string, string> | undefined;
4319
- missing?: string[] | undefined;
4320
- }, {
4321
- success: boolean;
4322
- error?: string | undefined;
4311
+ warnings?: string[] | undefined;
4323
4312
  installCommands?: {
4324
4313
  npm: string;
4325
4314
  yarn: string;
4326
4315
  pnpm: string;
4327
4316
  bun: string;
4328
4317
  } | undefined;
4329
- warnings?: string[] | undefined;
4318
+ installed?: Record<string, string> | undefined;
4319
+ missing?: string[] | undefined;
4320
+ }, {
4321
+ success: boolean;
4322
+ error?: string | undefined;
4330
4323
  tailwind?: {
4331
4324
  issues: string[];
4332
4325
  configFound: boolean;
@@ -4335,6 +4328,13 @@ export declare const ValidateEnvironmentOutputSchema: z.ZodObject<{
4335
4328
  fixes: string[];
4336
4329
  configPath?: string | undefined;
4337
4330
  } | undefined;
4331
+ warnings?: string[] | undefined;
4332
+ installCommands?: {
4333
+ npm: string;
4334
+ yarn: string;
4335
+ pnpm: string;
4336
+ bun: string;
4337
+ } | undefined;
4338
4338
  installed?: Record<string, string> | undefined;
4339
4339
  missing?: string[] | undefined;
4340
4340
  }>;