@better-fullstack/types 1.3.17 → 1.4.1

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.
@@ -58,6 +58,7 @@ declare const FrontendSchema: z.ZodEnum<{
58
58
  "native-unistyles": "native-unistyles";
59
59
  svelte: "svelte";
60
60
  solid: "solid";
61
+ "solid-start": "solid-start";
61
62
  astro: "astro";
62
63
  qwik: "qwik";
63
64
  angular: "angular";
@@ -94,6 +95,7 @@ declare const AddonsSchema: z.ZodEnum<{
94
95
  declare const ExamplesSchema: z.ZodEnum<{
95
96
  none: "none";
96
97
  ai: "ai";
98
+ "chat-sdk": "chat-sdk";
97
99
  }>;
98
100
  declare const PackageManagerSchema: z.ZodEnum<{
99
101
  bun: "bun";
@@ -405,6 +407,74 @@ declare const UILibrarySchema: z.ZodEnum<{
405
407
  "ark-ui": "ark-ui";
406
408
  "react-aria": "react-aria";
407
409
  }>;
410
+ declare const ShadcnBaseSchema: z.ZodEnum<{
411
+ radix: "radix";
412
+ base: "base";
413
+ }>;
414
+ declare const ShadcnStyleSchema: z.ZodEnum<{
415
+ vega: "vega";
416
+ nova: "nova";
417
+ maia: "maia";
418
+ lyra: "lyra";
419
+ mira: "mira";
420
+ }>;
421
+ declare const ShadcnIconLibrarySchema: z.ZodEnum<{
422
+ lucide: "lucide";
423
+ tabler: "tabler";
424
+ hugeicons: "hugeicons";
425
+ phosphor: "phosphor";
426
+ remixicon: "remixicon";
427
+ }>;
428
+ declare const ShadcnColorThemeSchema: z.ZodEnum<{
429
+ neutral: "neutral";
430
+ stone: "stone";
431
+ zinc: "zinc";
432
+ gray: "gray";
433
+ amber: "amber";
434
+ blue: "blue";
435
+ cyan: "cyan";
436
+ emerald: "emerald";
437
+ fuchsia: "fuchsia";
438
+ green: "green";
439
+ indigo: "indigo";
440
+ lime: "lime";
441
+ orange: "orange";
442
+ pink: "pink";
443
+ purple: "purple";
444
+ red: "red";
445
+ rose: "rose";
446
+ sky: "sky";
447
+ teal: "teal";
448
+ violet: "violet";
449
+ yellow: "yellow";
450
+ }>;
451
+ declare const ShadcnBaseColorSchema: z.ZodEnum<{
452
+ neutral: "neutral";
453
+ stone: "stone";
454
+ zinc: "zinc";
455
+ gray: "gray";
456
+ }>;
457
+ declare const ShadcnFontSchema: z.ZodEnum<{
458
+ inter: "inter";
459
+ geist: "geist";
460
+ "noto-sans": "noto-sans";
461
+ "nunito-sans": "nunito-sans";
462
+ figtree: "figtree";
463
+ roboto: "roboto";
464
+ raleway: "raleway";
465
+ "dm-sans": "dm-sans";
466
+ "public-sans": "public-sans";
467
+ outfit: "outfit";
468
+ "jetbrains-mono": "jetbrains-mono";
469
+ "geist-mono": "geist-mono";
470
+ }>;
471
+ declare const ShadcnRadiusSchema: z.ZodEnum<{
472
+ none: "none";
473
+ default: "default";
474
+ small: "small";
475
+ medium: "medium";
476
+ large: "large";
477
+ }>;
408
478
  declare const DirectoryConflictSchema: z.ZodEnum<{
409
479
  merge: "merge";
410
480
  overwrite: "overwrite";
@@ -485,6 +555,7 @@ declare const CreateInputSchema: z.ZodObject<{
485
555
  "native-unistyles": "native-unistyles";
486
556
  svelte: "svelte";
487
557
  solid: "solid";
558
+ "solid-start": "solid-start";
488
559
  astro: "astro";
489
560
  qwik: "qwik";
490
561
  angular: "angular";
@@ -514,6 +585,7 @@ declare const CreateInputSchema: z.ZodObject<{
514
585
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
515
586
  none: "none";
516
587
  ai: "ai";
588
+ "chat-sdk": "chat-sdk";
517
589
  }>>>;
518
590
  git: z.ZodOptional<z.ZodBoolean>;
519
591
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -671,6 +743,74 @@ declare const CreateInputSchema: z.ZodObject<{
671
743
  "ark-ui": "ark-ui";
672
744
  "react-aria": "react-aria";
673
745
  }>>;
746
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
747
+ radix: "radix";
748
+ base: "base";
749
+ }>>;
750
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
751
+ vega: "vega";
752
+ nova: "nova";
753
+ maia: "maia";
754
+ lyra: "lyra";
755
+ mira: "mira";
756
+ }>>;
757
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
758
+ lucide: "lucide";
759
+ tabler: "tabler";
760
+ hugeicons: "hugeicons";
761
+ phosphor: "phosphor";
762
+ remixicon: "remixicon";
763
+ }>>;
764
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
765
+ neutral: "neutral";
766
+ stone: "stone";
767
+ zinc: "zinc";
768
+ gray: "gray";
769
+ amber: "amber";
770
+ blue: "blue";
771
+ cyan: "cyan";
772
+ emerald: "emerald";
773
+ fuchsia: "fuchsia";
774
+ green: "green";
775
+ indigo: "indigo";
776
+ lime: "lime";
777
+ orange: "orange";
778
+ pink: "pink";
779
+ purple: "purple";
780
+ red: "red";
781
+ rose: "rose";
782
+ sky: "sky";
783
+ teal: "teal";
784
+ violet: "violet";
785
+ yellow: "yellow";
786
+ }>>;
787
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
788
+ neutral: "neutral";
789
+ stone: "stone";
790
+ zinc: "zinc";
791
+ gray: "gray";
792
+ }>>;
793
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
794
+ inter: "inter";
795
+ geist: "geist";
796
+ "noto-sans": "noto-sans";
797
+ "nunito-sans": "nunito-sans";
798
+ figtree: "figtree";
799
+ roboto: "roboto";
800
+ raleway: "raleway";
801
+ "dm-sans": "dm-sans";
802
+ "public-sans": "public-sans";
803
+ outfit: "outfit";
804
+ "jetbrains-mono": "jetbrains-mono";
805
+ "geist-mono": "geist-mono";
806
+ }>>;
807
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
808
+ none: "none";
809
+ default: "default";
810
+ small: "small";
811
+ medium: "medium";
812
+ large: "large";
813
+ }>>;
674
814
  validation: z.ZodOptional<z.ZodEnum<{
675
815
  none: "none";
676
816
  zod: "zod";
@@ -958,6 +1098,7 @@ declare const CLIInputSchema: z.ZodObject<{
958
1098
  "native-unistyles": "native-unistyles";
959
1099
  svelte: "svelte";
960
1100
  solid: "solid";
1101
+ "solid-start": "solid-start";
961
1102
  astro: "astro";
962
1103
  qwik: "qwik";
963
1104
  angular: "angular";
@@ -987,6 +1128,7 @@ declare const CLIInputSchema: z.ZodObject<{
987
1128
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
988
1129
  none: "none";
989
1130
  ai: "ai";
1131
+ "chat-sdk": "chat-sdk";
990
1132
  }>>>;
991
1133
  git: z.ZodOptional<z.ZodBoolean>;
992
1134
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -1144,6 +1286,74 @@ declare const CLIInputSchema: z.ZodObject<{
1144
1286
  "ark-ui": "ark-ui";
1145
1287
  "react-aria": "react-aria";
1146
1288
  }>>;
1289
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1290
+ radix: "radix";
1291
+ base: "base";
1292
+ }>>;
1293
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1294
+ vega: "vega";
1295
+ nova: "nova";
1296
+ maia: "maia";
1297
+ lyra: "lyra";
1298
+ mira: "mira";
1299
+ }>>;
1300
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1301
+ lucide: "lucide";
1302
+ tabler: "tabler";
1303
+ hugeicons: "hugeicons";
1304
+ phosphor: "phosphor";
1305
+ remixicon: "remixicon";
1306
+ }>>;
1307
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1308
+ neutral: "neutral";
1309
+ stone: "stone";
1310
+ zinc: "zinc";
1311
+ gray: "gray";
1312
+ amber: "amber";
1313
+ blue: "blue";
1314
+ cyan: "cyan";
1315
+ emerald: "emerald";
1316
+ fuchsia: "fuchsia";
1317
+ green: "green";
1318
+ indigo: "indigo";
1319
+ lime: "lime";
1320
+ orange: "orange";
1321
+ pink: "pink";
1322
+ purple: "purple";
1323
+ red: "red";
1324
+ rose: "rose";
1325
+ sky: "sky";
1326
+ teal: "teal";
1327
+ violet: "violet";
1328
+ yellow: "yellow";
1329
+ }>>;
1330
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1331
+ neutral: "neutral";
1332
+ stone: "stone";
1333
+ zinc: "zinc";
1334
+ gray: "gray";
1335
+ }>>;
1336
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1337
+ inter: "inter";
1338
+ geist: "geist";
1339
+ "noto-sans": "noto-sans";
1340
+ "nunito-sans": "nunito-sans";
1341
+ figtree: "figtree";
1342
+ roboto: "roboto";
1343
+ raleway: "raleway";
1344
+ "dm-sans": "dm-sans";
1345
+ "public-sans": "public-sans";
1346
+ outfit: "outfit";
1347
+ "jetbrains-mono": "jetbrains-mono";
1348
+ "geist-mono": "geist-mono";
1349
+ }>>;
1350
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1351
+ none: "none";
1352
+ default: "default";
1353
+ small: "small";
1354
+ medium: "medium";
1355
+ large: "large";
1356
+ }>>;
1147
1357
  validation: z.ZodOptional<z.ZodEnum<{
1148
1358
  none: "none";
1149
1359
  zod: "zod";
@@ -1382,6 +1592,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
1382
1592
  "native-unistyles": "native-unistyles";
1383
1593
  svelte: "svelte";
1384
1594
  solid: "solid";
1595
+ "solid-start": "solid-start";
1385
1596
  astro: "astro";
1386
1597
  qwik: "qwik";
1387
1598
  angular: "angular";
@@ -1411,6 +1622,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
1411
1622
  examples: z.ZodArray<z.ZodEnum<{
1412
1623
  none: "none";
1413
1624
  ai: "ai";
1625
+ "chat-sdk": "chat-sdk";
1414
1626
  }>>;
1415
1627
  auth: z.ZodEnum<{
1416
1628
  none: "none";
@@ -1556,6 +1768,74 @@ declare const ProjectConfigSchema: z.ZodObject<{
1556
1768
  "ark-ui": "ark-ui";
1557
1769
  "react-aria": "react-aria";
1558
1770
  }>;
1771
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1772
+ radix: "radix";
1773
+ base: "base";
1774
+ }>>;
1775
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1776
+ vega: "vega";
1777
+ nova: "nova";
1778
+ maia: "maia";
1779
+ lyra: "lyra";
1780
+ mira: "mira";
1781
+ }>>;
1782
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1783
+ lucide: "lucide";
1784
+ tabler: "tabler";
1785
+ hugeicons: "hugeicons";
1786
+ phosphor: "phosphor";
1787
+ remixicon: "remixicon";
1788
+ }>>;
1789
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1790
+ neutral: "neutral";
1791
+ stone: "stone";
1792
+ zinc: "zinc";
1793
+ gray: "gray";
1794
+ amber: "amber";
1795
+ blue: "blue";
1796
+ cyan: "cyan";
1797
+ emerald: "emerald";
1798
+ fuchsia: "fuchsia";
1799
+ green: "green";
1800
+ indigo: "indigo";
1801
+ lime: "lime";
1802
+ orange: "orange";
1803
+ pink: "pink";
1804
+ purple: "purple";
1805
+ red: "red";
1806
+ rose: "rose";
1807
+ sky: "sky";
1808
+ teal: "teal";
1809
+ violet: "violet";
1810
+ yellow: "yellow";
1811
+ }>>;
1812
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1813
+ neutral: "neutral";
1814
+ stone: "stone";
1815
+ zinc: "zinc";
1816
+ gray: "gray";
1817
+ }>>;
1818
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1819
+ inter: "inter";
1820
+ geist: "geist";
1821
+ "noto-sans": "noto-sans";
1822
+ "nunito-sans": "nunito-sans";
1823
+ figtree: "figtree";
1824
+ roboto: "roboto";
1825
+ raleway: "raleway";
1826
+ "dm-sans": "dm-sans";
1827
+ "public-sans": "public-sans";
1828
+ outfit: "outfit";
1829
+ "jetbrains-mono": "jetbrains-mono";
1830
+ "geist-mono": "geist-mono";
1831
+ }>>;
1832
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1833
+ none: "none";
1834
+ default: "default";
1835
+ small: "small";
1836
+ medium: "medium";
1837
+ large: "large";
1838
+ }>>;
1559
1839
  validation: z.ZodEnum<{
1560
1840
  none: "none";
1561
1841
  zod: "zod";
@@ -1792,6 +2072,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1792
2072
  "native-unistyles": "native-unistyles";
1793
2073
  svelte: "svelte";
1794
2074
  solid: "solid";
2075
+ "solid-start": "solid-start";
1795
2076
  astro: "astro";
1796
2077
  qwik: "qwik";
1797
2078
  angular: "angular";
@@ -1821,6 +2102,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1821
2102
  examples: z.ZodArray<z.ZodEnum<{
1822
2103
  none: "none";
1823
2104
  ai: "ai";
2105
+ "chat-sdk": "chat-sdk";
1824
2106
  }>>;
1825
2107
  auth: z.ZodEnum<{
1826
2108
  none: "none";
@@ -1964,6 +2246,74 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1964
2246
  "ark-ui": "ark-ui";
1965
2247
  "react-aria": "react-aria";
1966
2248
  }>;
2249
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
2250
+ radix: "radix";
2251
+ base: "base";
2252
+ }>>;
2253
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
2254
+ vega: "vega";
2255
+ nova: "nova";
2256
+ maia: "maia";
2257
+ lyra: "lyra";
2258
+ mira: "mira";
2259
+ }>>;
2260
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
2261
+ lucide: "lucide";
2262
+ tabler: "tabler";
2263
+ hugeicons: "hugeicons";
2264
+ phosphor: "phosphor";
2265
+ remixicon: "remixicon";
2266
+ }>>;
2267
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
2268
+ neutral: "neutral";
2269
+ stone: "stone";
2270
+ zinc: "zinc";
2271
+ gray: "gray";
2272
+ amber: "amber";
2273
+ blue: "blue";
2274
+ cyan: "cyan";
2275
+ emerald: "emerald";
2276
+ fuchsia: "fuchsia";
2277
+ green: "green";
2278
+ indigo: "indigo";
2279
+ lime: "lime";
2280
+ orange: "orange";
2281
+ pink: "pink";
2282
+ purple: "purple";
2283
+ red: "red";
2284
+ rose: "rose";
2285
+ sky: "sky";
2286
+ teal: "teal";
2287
+ violet: "violet";
2288
+ yellow: "yellow";
2289
+ }>>;
2290
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
2291
+ neutral: "neutral";
2292
+ stone: "stone";
2293
+ zinc: "zinc";
2294
+ gray: "gray";
2295
+ }>>;
2296
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
2297
+ inter: "inter";
2298
+ geist: "geist";
2299
+ "noto-sans": "noto-sans";
2300
+ "nunito-sans": "nunito-sans";
2301
+ figtree: "figtree";
2302
+ roboto: "roboto";
2303
+ raleway: "raleway";
2304
+ "dm-sans": "dm-sans";
2305
+ "public-sans": "public-sans";
2306
+ outfit: "outfit";
2307
+ "jetbrains-mono": "jetbrains-mono";
2308
+ "geist-mono": "geist-mono";
2309
+ }>>;
2310
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
2311
+ none: "none";
2312
+ default: "default";
2313
+ small: "small";
2314
+ medium: "medium";
2315
+ large: "large";
2316
+ }>>;
1967
2317
  validation: z.ZodEnum<{
1968
2318
  none: "none";
1969
2319
  zod: "zod";
@@ -2201,6 +2551,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2201
2551
  "native-unistyles": "native-unistyles";
2202
2552
  svelte: "svelte";
2203
2553
  solid: "solid";
2554
+ "solid-start": "solid-start";
2204
2555
  astro: "astro";
2205
2556
  qwik: "qwik";
2206
2557
  angular: "angular";
@@ -2230,6 +2581,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2230
2581
  examples: z.ZodArray<z.ZodEnum<{
2231
2582
  none: "none";
2232
2583
  ai: "ai";
2584
+ "chat-sdk": "chat-sdk";
2233
2585
  }>>;
2234
2586
  auth: z.ZodEnum<{
2235
2587
  none: "none";
@@ -2373,6 +2725,74 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2373
2725
  "ark-ui": "ark-ui";
2374
2726
  "react-aria": "react-aria";
2375
2727
  }>;
2728
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
2729
+ radix: "radix";
2730
+ base: "base";
2731
+ }>>;
2732
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
2733
+ vega: "vega";
2734
+ nova: "nova";
2735
+ maia: "maia";
2736
+ lyra: "lyra";
2737
+ mira: "mira";
2738
+ }>>;
2739
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
2740
+ lucide: "lucide";
2741
+ tabler: "tabler";
2742
+ hugeicons: "hugeicons";
2743
+ phosphor: "phosphor";
2744
+ remixicon: "remixicon";
2745
+ }>>;
2746
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
2747
+ neutral: "neutral";
2748
+ stone: "stone";
2749
+ zinc: "zinc";
2750
+ gray: "gray";
2751
+ amber: "amber";
2752
+ blue: "blue";
2753
+ cyan: "cyan";
2754
+ emerald: "emerald";
2755
+ fuchsia: "fuchsia";
2756
+ green: "green";
2757
+ indigo: "indigo";
2758
+ lime: "lime";
2759
+ orange: "orange";
2760
+ pink: "pink";
2761
+ purple: "purple";
2762
+ red: "red";
2763
+ rose: "rose";
2764
+ sky: "sky";
2765
+ teal: "teal";
2766
+ violet: "violet";
2767
+ yellow: "yellow";
2768
+ }>>;
2769
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
2770
+ neutral: "neutral";
2771
+ stone: "stone";
2772
+ zinc: "zinc";
2773
+ gray: "gray";
2774
+ }>>;
2775
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
2776
+ inter: "inter";
2777
+ geist: "geist";
2778
+ "noto-sans": "noto-sans";
2779
+ "nunito-sans": "nunito-sans";
2780
+ figtree: "figtree";
2781
+ roboto: "roboto";
2782
+ raleway: "raleway";
2783
+ "dm-sans": "dm-sans";
2784
+ "public-sans": "public-sans";
2785
+ outfit: "outfit";
2786
+ "jetbrains-mono": "jetbrains-mono";
2787
+ "geist-mono": "geist-mono";
2788
+ }>>;
2789
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
2790
+ none: "none";
2791
+ default: "default";
2792
+ small: "small";
2793
+ medium: "medium";
2794
+ large: "large";
2795
+ }>>;
2376
2796
  validation: z.ZodEnum<{
2377
2797
  none: "none";
2378
2798
  zod: "zod";
@@ -2612,6 +3032,7 @@ declare const InitResultSchema: z.ZodObject<{
2612
3032
  "native-unistyles": "native-unistyles";
2613
3033
  svelte: "svelte";
2614
3034
  solid: "solid";
3035
+ "solid-start": "solid-start";
2615
3036
  astro: "astro";
2616
3037
  qwik: "qwik";
2617
3038
  angular: "angular";
@@ -2641,6 +3062,7 @@ declare const InitResultSchema: z.ZodObject<{
2641
3062
  examples: z.ZodArray<z.ZodEnum<{
2642
3063
  none: "none";
2643
3064
  ai: "ai";
3065
+ "chat-sdk": "chat-sdk";
2644
3066
  }>>;
2645
3067
  auth: z.ZodEnum<{
2646
3068
  none: "none";
@@ -2786,6 +3208,74 @@ declare const InitResultSchema: z.ZodObject<{
2786
3208
  "ark-ui": "ark-ui";
2787
3209
  "react-aria": "react-aria";
2788
3210
  }>;
3211
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
3212
+ radix: "radix";
3213
+ base: "base";
3214
+ }>>;
3215
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
3216
+ vega: "vega";
3217
+ nova: "nova";
3218
+ maia: "maia";
3219
+ lyra: "lyra";
3220
+ mira: "mira";
3221
+ }>>;
3222
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
3223
+ lucide: "lucide";
3224
+ tabler: "tabler";
3225
+ hugeicons: "hugeicons";
3226
+ phosphor: "phosphor";
3227
+ remixicon: "remixicon";
3228
+ }>>;
3229
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
3230
+ neutral: "neutral";
3231
+ stone: "stone";
3232
+ zinc: "zinc";
3233
+ gray: "gray";
3234
+ amber: "amber";
3235
+ blue: "blue";
3236
+ cyan: "cyan";
3237
+ emerald: "emerald";
3238
+ fuchsia: "fuchsia";
3239
+ green: "green";
3240
+ indigo: "indigo";
3241
+ lime: "lime";
3242
+ orange: "orange";
3243
+ pink: "pink";
3244
+ purple: "purple";
3245
+ red: "red";
3246
+ rose: "rose";
3247
+ sky: "sky";
3248
+ teal: "teal";
3249
+ violet: "violet";
3250
+ yellow: "yellow";
3251
+ }>>;
3252
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
3253
+ neutral: "neutral";
3254
+ stone: "stone";
3255
+ zinc: "zinc";
3256
+ gray: "gray";
3257
+ }>>;
3258
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
3259
+ inter: "inter";
3260
+ geist: "geist";
3261
+ "noto-sans": "noto-sans";
3262
+ "nunito-sans": "nunito-sans";
3263
+ figtree: "figtree";
3264
+ roboto: "roboto";
3265
+ raleway: "raleway";
3266
+ "dm-sans": "dm-sans";
3267
+ "public-sans": "public-sans";
3268
+ outfit: "outfit";
3269
+ "jetbrains-mono": "jetbrains-mono";
3270
+ "geist-mono": "geist-mono";
3271
+ }>>;
3272
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
3273
+ none: "none";
3274
+ default: "default";
3275
+ small: "small";
3276
+ medium: "medium";
3277
+ large: "large";
3278
+ }>>;
2789
3279
  validation: z.ZodEnum<{
2790
3280
  none: "none";
2791
3281
  zod: "zod";
@@ -2973,9 +3463,9 @@ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mong
2973
3463
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
2974
3464
  declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
2975
3465
  declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
2976
- declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
3466
+ declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
2977
3467
  declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
2978
- declare const EXAMPLES_VALUES: ("none" | "ai")[];
3468
+ declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk")[];
2979
3469
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
2980
3470
  declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
2981
3471
  declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
@@ -3026,6 +3516,13 @@ declare const GO_API_VALUES: ("none" | "grpc-go")[];
3026
3516
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
3027
3517
  declare const GO_LOGGING_VALUES: ("none" | "zap")[];
3028
3518
  declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
3519
+ declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
3520
+ declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira")[];
3521
+ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon")[];
3522
+ declare const SHADCN_COLOR_THEME_VALUES: ("neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow")[];
3523
+ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
3524
+ declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
3525
+ declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
3029
3526
  //#endregion
3030
- export { FrontendSchema as $, SEARCH_VALUES as $t, DATABASE_SETUP_VALUES as A, ProjectNameSchema as At, EcosystemSchema as B, RUST_CLI_VALUES as Bt, CLIInputSchema as C, PYTHON_QUALITY_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, PackageManagerSchema as Dt, CSSFrameworkSchema as E, PYTHON_WEB_FRAMEWORK_VALUES as Et, DirectoryConflictSchema as F, PythonValidationSchema as Ft, FILE_STORAGE_VALUES as G, RealtimeSchema as Gt, EmailSchema as H, RUST_LIBRARIES_VALUES as Ht, ECOSYSTEM_VALUES as I, PythonWebFrameworkSchema as It, FRONTEND_VALUES as J, RustCliSchema as Jt, FILE_UPLOAD_VALUES as K, RuntimeSchema as Kt, EFFECT_VALUES as L, REALTIME_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, PythonOrmSchema as Mt, DatabaseSchema as N, PythonQualitySchema as Nt, CachingSchema as O, PaymentsSchema as Ot, DatabaseSetupSchema as P, PythonTaskQueueSchema as Pt, FormsSchema as Q, RustWebFrameworkSchema as Qt, EMAIL_VALUES as R, RUNTIME_VALUES as Rt, CACHING_VALUES as S, PYTHON_ORM_VALUES as St, CMS_VALUES as T, PYTHON_VALIDATION_VALUES as Tt, ExamplesSchema as U, RUST_ORM_VALUES as Ut, EffectSchema as V, RUST_FRONTEND_VALUES as Vt, FEATURE_FLAGS_VALUES as W, RUST_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, RustLibrariesSchema as Xt, FeatureFlagsSchema as Y, RustFrontendSchema as Yt, FileUploadSchema as Z, RustOrmSchema as Zt, AuthSchema as _, ORM_VALUES as _t, ANALYTICS_VALUES as a, TEMPLATE_VALUES as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, PAYMENTS_VALUES as bt, API_VALUES as c, TestingSchema as cn, GoOrmSchema as ct, AddInputSchema as d, VALIDATION_VALUES as dn, JOB_QUEUE_VALUES as dt, SERVER_DEPLOY_VALUES as en, GO_API_VALUES as et, AddonsSchema as f, ValidationSchema as fn, JobQueueSchema as ft, AstroIntegrationSchema as g, ORMSchema as gt, AnimationSchema as h, OBSERVABILITY_VALUES as ht, AI_VALUES as i, StateManagementSchema as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, PythonAiSchema as jt, CreateInputSchema as k, ProjectConfigSchema as kt, ASTRO_INTEGRATION_VALUES as l, UILibrarySchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, WebDeploySchema as mn, LoggingSchema as mt, AISchema as n, SearchSchema as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, TESTING_VALUES as on, GoCliSchema as ot, AiDocsSchema as p, WEB_DEPLOY_VALUES as pn, LOGGING_VALUES as pt, FORMS_VALUES as q, RustApiSchema as qt, AI_DOCS_VALUES as r, ServerDeploySchema as rn, GO_ORM_VALUES as rt, APISchema as s, TemplateSchema as sn, GoLoggingSchema as st, ADDONS_VALUES as t, STATE_MANAGEMENT_VALUES as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, UI_LIBRARY_VALUES as un, InitResultSchema as ut, BACKEND_VALUES as v, ObservabilitySchema as vt, CMSSchema as w, PYTHON_TASK_QUEUE_VALUES as wt, BetterTStackConfigSchema as x, PYTHON_AI_VALUES as xt, BackendSchema as y, PACKAGE_MANAGER_VALUES as yt, EXAMPLES_VALUES as z, RUST_API_VALUES as zt };
3031
- //# sourceMappingURL=schemas-Cuius1p4.d.mts.map
3527
+ export { FrontendSchema as $, SEARCH_VALUES as $t, DATABASE_SETUP_VALUES as A, ProjectNameSchema as At, EcosystemSchema as B, RUST_CLI_VALUES as Bt, CLIInputSchema as C, UILibrarySchema as Cn, PYTHON_QUALITY_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, WEB_DEPLOY_VALUES as Dn, PackageManagerSchema as Dt, CSSFrameworkSchema as E, ValidationSchema as En, PYTHON_WEB_FRAMEWORK_VALUES as Et, DirectoryConflictSchema as F, PythonValidationSchema as Ft, FILE_STORAGE_VALUES as G, RealtimeSchema as Gt, EmailSchema as H, RUST_LIBRARIES_VALUES as Ht, ECOSYSTEM_VALUES as I, PythonWebFrameworkSchema as It, FRONTEND_VALUES as J, RustCliSchema as Jt, FILE_UPLOAD_VALUES as K, RuntimeSchema as Kt, EFFECT_VALUES as L, REALTIME_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, PythonOrmSchema as Mt, DatabaseSchema as N, PythonQualitySchema as Nt, CachingSchema as O, WebDeploySchema as On, PaymentsSchema as Ot, DatabaseSetupSchema as P, PythonTaskQueueSchema as Pt, FormsSchema as Q, RustWebFrameworkSchema as Qt, EMAIL_VALUES as R, RUNTIME_VALUES as Rt, CACHING_VALUES as S, TestingSchema as Sn, PYTHON_ORM_VALUES as St, CMS_VALUES as T, VALIDATION_VALUES as Tn, PYTHON_VALIDATION_VALUES as Tt, ExamplesSchema as U, RUST_ORM_VALUES as Ut, EffectSchema as V, RUST_FRONTEND_VALUES as Vt, FEATURE_FLAGS_VALUES as W, RUST_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, RustLibrariesSchema as Xt, FeatureFlagsSchema as Y, RustFrontendSchema as Yt, FileUploadSchema as Z, RustOrmSchema as Zt, AuthSchema as _, ShadcnStyleSchema as _n, ORM_VALUES as _t, ANALYTICS_VALUES as a, SHADCN_ICON_LIBRARY_VALUES as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, TESTING_VALUES as bn, PAYMENTS_VALUES as bt, API_VALUES as c, STATE_MANAGEMENT_VALUES as cn, GoOrmSchema as ct, AddInputSchema as d, ShadcnBaseColorSchema as dn, JOB_QUEUE_VALUES as dt, SERVER_DEPLOY_VALUES as en, GO_API_VALUES as et, AddonsSchema as f, ShadcnBaseSchema as fn, JobQueueSchema as ft, AstroIntegrationSchema as g, ShadcnRadiusSchema as gn, ORMSchema as gt, AnimationSchema as h, ShadcnIconLibrarySchema as hn, OBSERVABILITY_VALUES as ht, AI_VALUES as i, SHADCN_FONT_VALUES as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, PythonAiSchema as jt, CreateInputSchema as k, ProjectConfigSchema as kt, ASTRO_INTEGRATION_VALUES as l, SearchSchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, ShadcnFontSchema as mn, LoggingSchema as mt, AISchema as n, SHADCN_BASE_VALUES as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, SHADCN_RADIUS_VALUES as on, GoCliSchema as ot, AiDocsSchema as p, ShadcnColorThemeSchema as pn, LOGGING_VALUES as pt, FORMS_VALUES as q, RustApiSchema as qt, AI_DOCS_VALUES as r, SHADCN_COLOR_THEME_VALUES as rn, GO_ORM_VALUES as rt, APISchema as s, SHADCN_STYLE_VALUES as sn, GoLoggingSchema as st, ADDONS_VALUES as t, SHADCN_BASE_COLOR_VALUES as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, ServerDeploySchema as un, InitResultSchema as ut, BACKEND_VALUES as v, StateManagementSchema as vn, ObservabilitySchema as vt, CMSSchema as w, UI_LIBRARY_VALUES as wn, PYTHON_TASK_QUEUE_VALUES as wt, BetterTStackConfigSchema as x, TemplateSchema as xn, PYTHON_AI_VALUES as xt, BackendSchema as y, TEMPLATE_VALUES as yn, PACKAGE_MANAGER_VALUES as yt, EXAMPLES_VALUES as z, RUST_API_VALUES as zt };
3528
+ //# sourceMappingURL=schemas-Jnd9B3Zu.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas-Jnd9B3Zu.d.mts","names":[],"sources":["../src/schemas.ts"],"sourcesContent":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0EnB,0BAAwB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuExB,8BAA4B,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAW5B,kBAAgB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAWhB;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA"}