@better-fullstack/types 1.3.17 → 1.3.18

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";
@@ -122,6 +124,7 @@ declare const APISchema: z.ZodEnum<{
122
124
  declare const AuthSchema: z.ZodEnum<{
123
125
  none: "none";
124
126
  "better-auth": "better-auth";
127
+ "go-better-auth": "go-better-auth";
125
128
  clerk: "clerk";
126
129
  nextauth: "nextauth";
127
130
  "stack-auth": "stack-auth";
@@ -405,6 +408,74 @@ declare const UILibrarySchema: z.ZodEnum<{
405
408
  "ark-ui": "ark-ui";
406
409
  "react-aria": "react-aria";
407
410
  }>;
411
+ declare const ShadcnBaseSchema: z.ZodEnum<{
412
+ radix: "radix";
413
+ base: "base";
414
+ }>;
415
+ declare const ShadcnStyleSchema: z.ZodEnum<{
416
+ vega: "vega";
417
+ nova: "nova";
418
+ maia: "maia";
419
+ lyra: "lyra";
420
+ mira: "mira";
421
+ }>;
422
+ declare const ShadcnIconLibrarySchema: z.ZodEnum<{
423
+ lucide: "lucide";
424
+ tabler: "tabler";
425
+ hugeicons: "hugeicons";
426
+ phosphor: "phosphor";
427
+ remixicon: "remixicon";
428
+ }>;
429
+ declare const ShadcnColorThemeSchema: z.ZodEnum<{
430
+ neutral: "neutral";
431
+ stone: "stone";
432
+ zinc: "zinc";
433
+ gray: "gray";
434
+ amber: "amber";
435
+ blue: "blue";
436
+ cyan: "cyan";
437
+ emerald: "emerald";
438
+ fuchsia: "fuchsia";
439
+ green: "green";
440
+ indigo: "indigo";
441
+ lime: "lime";
442
+ orange: "orange";
443
+ pink: "pink";
444
+ purple: "purple";
445
+ red: "red";
446
+ rose: "rose";
447
+ sky: "sky";
448
+ teal: "teal";
449
+ violet: "violet";
450
+ yellow: "yellow";
451
+ }>;
452
+ declare const ShadcnBaseColorSchema: z.ZodEnum<{
453
+ neutral: "neutral";
454
+ stone: "stone";
455
+ zinc: "zinc";
456
+ gray: "gray";
457
+ }>;
458
+ declare const ShadcnFontSchema: z.ZodEnum<{
459
+ inter: "inter";
460
+ geist: "geist";
461
+ "noto-sans": "noto-sans";
462
+ "nunito-sans": "nunito-sans";
463
+ figtree: "figtree";
464
+ roboto: "roboto";
465
+ raleway: "raleway";
466
+ "dm-sans": "dm-sans";
467
+ "public-sans": "public-sans";
468
+ outfit: "outfit";
469
+ "jetbrains-mono": "jetbrains-mono";
470
+ "geist-mono": "geist-mono";
471
+ }>;
472
+ declare const ShadcnRadiusSchema: z.ZodEnum<{
473
+ none: "none";
474
+ default: "default";
475
+ small: "small";
476
+ medium: "medium";
477
+ large: "large";
478
+ }>;
408
479
  declare const DirectoryConflictSchema: z.ZodEnum<{
409
480
  merge: "merge";
410
481
  overwrite: "overwrite";
@@ -459,6 +530,7 @@ declare const CreateInputSchema: z.ZodObject<{
459
530
  auth: z.ZodOptional<z.ZodEnum<{
460
531
  none: "none";
461
532
  "better-auth": "better-auth";
533
+ "go-better-auth": "go-better-auth";
462
534
  clerk: "clerk";
463
535
  nextauth: "nextauth";
464
536
  "stack-auth": "stack-auth";
@@ -485,6 +557,7 @@ declare const CreateInputSchema: z.ZodObject<{
485
557
  "native-unistyles": "native-unistyles";
486
558
  svelte: "svelte";
487
559
  solid: "solid";
560
+ "solid-start": "solid-start";
488
561
  astro: "astro";
489
562
  qwik: "qwik";
490
563
  angular: "angular";
@@ -514,6 +587,7 @@ declare const CreateInputSchema: z.ZodObject<{
514
587
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
515
588
  none: "none";
516
589
  ai: "ai";
590
+ "chat-sdk": "chat-sdk";
517
591
  }>>>;
518
592
  git: z.ZodOptional<z.ZodBoolean>;
519
593
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -671,6 +745,74 @@ declare const CreateInputSchema: z.ZodObject<{
671
745
  "ark-ui": "ark-ui";
672
746
  "react-aria": "react-aria";
673
747
  }>>;
748
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
749
+ radix: "radix";
750
+ base: "base";
751
+ }>>;
752
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
753
+ vega: "vega";
754
+ nova: "nova";
755
+ maia: "maia";
756
+ lyra: "lyra";
757
+ mira: "mira";
758
+ }>>;
759
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
760
+ lucide: "lucide";
761
+ tabler: "tabler";
762
+ hugeicons: "hugeicons";
763
+ phosphor: "phosphor";
764
+ remixicon: "remixicon";
765
+ }>>;
766
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
767
+ neutral: "neutral";
768
+ stone: "stone";
769
+ zinc: "zinc";
770
+ gray: "gray";
771
+ amber: "amber";
772
+ blue: "blue";
773
+ cyan: "cyan";
774
+ emerald: "emerald";
775
+ fuchsia: "fuchsia";
776
+ green: "green";
777
+ indigo: "indigo";
778
+ lime: "lime";
779
+ orange: "orange";
780
+ pink: "pink";
781
+ purple: "purple";
782
+ red: "red";
783
+ rose: "rose";
784
+ sky: "sky";
785
+ teal: "teal";
786
+ violet: "violet";
787
+ yellow: "yellow";
788
+ }>>;
789
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
790
+ neutral: "neutral";
791
+ stone: "stone";
792
+ zinc: "zinc";
793
+ gray: "gray";
794
+ }>>;
795
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
796
+ inter: "inter";
797
+ geist: "geist";
798
+ "noto-sans": "noto-sans";
799
+ "nunito-sans": "nunito-sans";
800
+ figtree: "figtree";
801
+ roboto: "roboto";
802
+ raleway: "raleway";
803
+ "dm-sans": "dm-sans";
804
+ "public-sans": "public-sans";
805
+ outfit: "outfit";
806
+ "jetbrains-mono": "jetbrains-mono";
807
+ "geist-mono": "geist-mono";
808
+ }>>;
809
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
810
+ none: "none";
811
+ default: "default";
812
+ small: "small";
813
+ medium: "medium";
814
+ large: "large";
815
+ }>>;
674
816
  validation: z.ZodOptional<z.ZodEnum<{
675
817
  none: "none";
676
818
  zod: "zod";
@@ -932,6 +1074,7 @@ declare const CLIInputSchema: z.ZodObject<{
932
1074
  auth: z.ZodOptional<z.ZodEnum<{
933
1075
  none: "none";
934
1076
  "better-auth": "better-auth";
1077
+ "go-better-auth": "go-better-auth";
935
1078
  clerk: "clerk";
936
1079
  nextauth: "nextauth";
937
1080
  "stack-auth": "stack-auth";
@@ -958,6 +1101,7 @@ declare const CLIInputSchema: z.ZodObject<{
958
1101
  "native-unistyles": "native-unistyles";
959
1102
  svelte: "svelte";
960
1103
  solid: "solid";
1104
+ "solid-start": "solid-start";
961
1105
  astro: "astro";
962
1106
  qwik: "qwik";
963
1107
  angular: "angular";
@@ -987,6 +1131,7 @@ declare const CLIInputSchema: z.ZodObject<{
987
1131
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
988
1132
  none: "none";
989
1133
  ai: "ai";
1134
+ "chat-sdk": "chat-sdk";
990
1135
  }>>>;
991
1136
  git: z.ZodOptional<z.ZodBoolean>;
992
1137
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -1144,6 +1289,74 @@ declare const CLIInputSchema: z.ZodObject<{
1144
1289
  "ark-ui": "ark-ui";
1145
1290
  "react-aria": "react-aria";
1146
1291
  }>>;
1292
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1293
+ radix: "radix";
1294
+ base: "base";
1295
+ }>>;
1296
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1297
+ vega: "vega";
1298
+ nova: "nova";
1299
+ maia: "maia";
1300
+ lyra: "lyra";
1301
+ mira: "mira";
1302
+ }>>;
1303
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1304
+ lucide: "lucide";
1305
+ tabler: "tabler";
1306
+ hugeicons: "hugeicons";
1307
+ phosphor: "phosphor";
1308
+ remixicon: "remixicon";
1309
+ }>>;
1310
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1311
+ neutral: "neutral";
1312
+ stone: "stone";
1313
+ zinc: "zinc";
1314
+ gray: "gray";
1315
+ amber: "amber";
1316
+ blue: "blue";
1317
+ cyan: "cyan";
1318
+ emerald: "emerald";
1319
+ fuchsia: "fuchsia";
1320
+ green: "green";
1321
+ indigo: "indigo";
1322
+ lime: "lime";
1323
+ orange: "orange";
1324
+ pink: "pink";
1325
+ purple: "purple";
1326
+ red: "red";
1327
+ rose: "rose";
1328
+ sky: "sky";
1329
+ teal: "teal";
1330
+ violet: "violet";
1331
+ yellow: "yellow";
1332
+ }>>;
1333
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1334
+ neutral: "neutral";
1335
+ stone: "stone";
1336
+ zinc: "zinc";
1337
+ gray: "gray";
1338
+ }>>;
1339
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1340
+ inter: "inter";
1341
+ geist: "geist";
1342
+ "noto-sans": "noto-sans";
1343
+ "nunito-sans": "nunito-sans";
1344
+ figtree: "figtree";
1345
+ roboto: "roboto";
1346
+ raleway: "raleway";
1347
+ "dm-sans": "dm-sans";
1348
+ "public-sans": "public-sans";
1349
+ outfit: "outfit";
1350
+ "jetbrains-mono": "jetbrains-mono";
1351
+ "geist-mono": "geist-mono";
1352
+ }>>;
1353
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1354
+ none: "none";
1355
+ default: "default";
1356
+ small: "small";
1357
+ medium: "medium";
1358
+ large: "large";
1359
+ }>>;
1147
1360
  validation: z.ZodOptional<z.ZodEnum<{
1148
1361
  none: "none";
1149
1362
  zod: "zod";
@@ -1382,6 +1595,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
1382
1595
  "native-unistyles": "native-unistyles";
1383
1596
  svelte: "svelte";
1384
1597
  solid: "solid";
1598
+ "solid-start": "solid-start";
1385
1599
  astro: "astro";
1386
1600
  qwik: "qwik";
1387
1601
  angular: "angular";
@@ -1411,10 +1625,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
1411
1625
  examples: z.ZodArray<z.ZodEnum<{
1412
1626
  none: "none";
1413
1627
  ai: "ai";
1628
+ "chat-sdk": "chat-sdk";
1414
1629
  }>>;
1415
1630
  auth: z.ZodEnum<{
1416
1631
  none: "none";
1417
1632
  "better-auth": "better-auth";
1633
+ "go-better-auth": "go-better-auth";
1418
1634
  clerk: "clerk";
1419
1635
  nextauth: "nextauth";
1420
1636
  "stack-auth": "stack-auth";
@@ -1556,6 +1772,74 @@ declare const ProjectConfigSchema: z.ZodObject<{
1556
1772
  "ark-ui": "ark-ui";
1557
1773
  "react-aria": "react-aria";
1558
1774
  }>;
1775
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1776
+ radix: "radix";
1777
+ base: "base";
1778
+ }>>;
1779
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1780
+ vega: "vega";
1781
+ nova: "nova";
1782
+ maia: "maia";
1783
+ lyra: "lyra";
1784
+ mira: "mira";
1785
+ }>>;
1786
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1787
+ lucide: "lucide";
1788
+ tabler: "tabler";
1789
+ hugeicons: "hugeicons";
1790
+ phosphor: "phosphor";
1791
+ remixicon: "remixicon";
1792
+ }>>;
1793
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1794
+ neutral: "neutral";
1795
+ stone: "stone";
1796
+ zinc: "zinc";
1797
+ gray: "gray";
1798
+ amber: "amber";
1799
+ blue: "blue";
1800
+ cyan: "cyan";
1801
+ emerald: "emerald";
1802
+ fuchsia: "fuchsia";
1803
+ green: "green";
1804
+ indigo: "indigo";
1805
+ lime: "lime";
1806
+ orange: "orange";
1807
+ pink: "pink";
1808
+ purple: "purple";
1809
+ red: "red";
1810
+ rose: "rose";
1811
+ sky: "sky";
1812
+ teal: "teal";
1813
+ violet: "violet";
1814
+ yellow: "yellow";
1815
+ }>>;
1816
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1817
+ neutral: "neutral";
1818
+ stone: "stone";
1819
+ zinc: "zinc";
1820
+ gray: "gray";
1821
+ }>>;
1822
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1823
+ inter: "inter";
1824
+ geist: "geist";
1825
+ "noto-sans": "noto-sans";
1826
+ "nunito-sans": "nunito-sans";
1827
+ figtree: "figtree";
1828
+ roboto: "roboto";
1829
+ raleway: "raleway";
1830
+ "dm-sans": "dm-sans";
1831
+ "public-sans": "public-sans";
1832
+ outfit: "outfit";
1833
+ "jetbrains-mono": "jetbrains-mono";
1834
+ "geist-mono": "geist-mono";
1835
+ }>>;
1836
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1837
+ none: "none";
1838
+ default: "default";
1839
+ small: "small";
1840
+ medium: "medium";
1841
+ large: "large";
1842
+ }>>;
1559
1843
  validation: z.ZodEnum<{
1560
1844
  none: "none";
1561
1845
  zod: "zod";
@@ -1792,6 +2076,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1792
2076
  "native-unistyles": "native-unistyles";
1793
2077
  svelte: "svelte";
1794
2078
  solid: "solid";
2079
+ "solid-start": "solid-start";
1795
2080
  astro: "astro";
1796
2081
  qwik: "qwik";
1797
2082
  angular: "angular";
@@ -1821,10 +2106,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1821
2106
  examples: z.ZodArray<z.ZodEnum<{
1822
2107
  none: "none";
1823
2108
  ai: "ai";
2109
+ "chat-sdk": "chat-sdk";
1824
2110
  }>>;
1825
2111
  auth: z.ZodEnum<{
1826
2112
  none: "none";
1827
2113
  "better-auth": "better-auth";
2114
+ "go-better-auth": "go-better-auth";
1828
2115
  clerk: "clerk";
1829
2116
  nextauth: "nextauth";
1830
2117
  "stack-auth": "stack-auth";
@@ -1964,6 +2251,74 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
1964
2251
  "ark-ui": "ark-ui";
1965
2252
  "react-aria": "react-aria";
1966
2253
  }>;
2254
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
2255
+ radix: "radix";
2256
+ base: "base";
2257
+ }>>;
2258
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
2259
+ vega: "vega";
2260
+ nova: "nova";
2261
+ maia: "maia";
2262
+ lyra: "lyra";
2263
+ mira: "mira";
2264
+ }>>;
2265
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
2266
+ lucide: "lucide";
2267
+ tabler: "tabler";
2268
+ hugeicons: "hugeicons";
2269
+ phosphor: "phosphor";
2270
+ remixicon: "remixicon";
2271
+ }>>;
2272
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
2273
+ neutral: "neutral";
2274
+ stone: "stone";
2275
+ zinc: "zinc";
2276
+ gray: "gray";
2277
+ amber: "amber";
2278
+ blue: "blue";
2279
+ cyan: "cyan";
2280
+ emerald: "emerald";
2281
+ fuchsia: "fuchsia";
2282
+ green: "green";
2283
+ indigo: "indigo";
2284
+ lime: "lime";
2285
+ orange: "orange";
2286
+ pink: "pink";
2287
+ purple: "purple";
2288
+ red: "red";
2289
+ rose: "rose";
2290
+ sky: "sky";
2291
+ teal: "teal";
2292
+ violet: "violet";
2293
+ yellow: "yellow";
2294
+ }>>;
2295
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
2296
+ neutral: "neutral";
2297
+ stone: "stone";
2298
+ zinc: "zinc";
2299
+ gray: "gray";
2300
+ }>>;
2301
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
2302
+ inter: "inter";
2303
+ geist: "geist";
2304
+ "noto-sans": "noto-sans";
2305
+ "nunito-sans": "nunito-sans";
2306
+ figtree: "figtree";
2307
+ roboto: "roboto";
2308
+ raleway: "raleway";
2309
+ "dm-sans": "dm-sans";
2310
+ "public-sans": "public-sans";
2311
+ outfit: "outfit";
2312
+ "jetbrains-mono": "jetbrains-mono";
2313
+ "geist-mono": "geist-mono";
2314
+ }>>;
2315
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
2316
+ none: "none";
2317
+ default: "default";
2318
+ small: "small";
2319
+ medium: "medium";
2320
+ large: "large";
2321
+ }>>;
1967
2322
  validation: z.ZodEnum<{
1968
2323
  none: "none";
1969
2324
  zod: "zod";
@@ -2201,6 +2556,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2201
2556
  "native-unistyles": "native-unistyles";
2202
2557
  svelte: "svelte";
2203
2558
  solid: "solid";
2559
+ "solid-start": "solid-start";
2204
2560
  astro: "astro";
2205
2561
  qwik: "qwik";
2206
2562
  angular: "angular";
@@ -2230,10 +2586,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2230
2586
  examples: z.ZodArray<z.ZodEnum<{
2231
2587
  none: "none";
2232
2588
  ai: "ai";
2589
+ "chat-sdk": "chat-sdk";
2233
2590
  }>>;
2234
2591
  auth: z.ZodEnum<{
2235
2592
  none: "none";
2236
2593
  "better-auth": "better-auth";
2594
+ "go-better-auth": "go-better-auth";
2237
2595
  clerk: "clerk";
2238
2596
  nextauth: "nextauth";
2239
2597
  "stack-auth": "stack-auth";
@@ -2373,6 +2731,74 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2373
2731
  "ark-ui": "ark-ui";
2374
2732
  "react-aria": "react-aria";
2375
2733
  }>;
2734
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
2735
+ radix: "radix";
2736
+ base: "base";
2737
+ }>>;
2738
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
2739
+ vega: "vega";
2740
+ nova: "nova";
2741
+ maia: "maia";
2742
+ lyra: "lyra";
2743
+ mira: "mira";
2744
+ }>>;
2745
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
2746
+ lucide: "lucide";
2747
+ tabler: "tabler";
2748
+ hugeicons: "hugeicons";
2749
+ phosphor: "phosphor";
2750
+ remixicon: "remixicon";
2751
+ }>>;
2752
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
2753
+ neutral: "neutral";
2754
+ stone: "stone";
2755
+ zinc: "zinc";
2756
+ gray: "gray";
2757
+ amber: "amber";
2758
+ blue: "blue";
2759
+ cyan: "cyan";
2760
+ emerald: "emerald";
2761
+ fuchsia: "fuchsia";
2762
+ green: "green";
2763
+ indigo: "indigo";
2764
+ lime: "lime";
2765
+ orange: "orange";
2766
+ pink: "pink";
2767
+ purple: "purple";
2768
+ red: "red";
2769
+ rose: "rose";
2770
+ sky: "sky";
2771
+ teal: "teal";
2772
+ violet: "violet";
2773
+ yellow: "yellow";
2774
+ }>>;
2775
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
2776
+ neutral: "neutral";
2777
+ stone: "stone";
2778
+ zinc: "zinc";
2779
+ gray: "gray";
2780
+ }>>;
2781
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
2782
+ inter: "inter";
2783
+ geist: "geist";
2784
+ "noto-sans": "noto-sans";
2785
+ "nunito-sans": "nunito-sans";
2786
+ figtree: "figtree";
2787
+ roboto: "roboto";
2788
+ raleway: "raleway";
2789
+ "dm-sans": "dm-sans";
2790
+ "public-sans": "public-sans";
2791
+ outfit: "outfit";
2792
+ "jetbrains-mono": "jetbrains-mono";
2793
+ "geist-mono": "geist-mono";
2794
+ }>>;
2795
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
2796
+ none: "none";
2797
+ default: "default";
2798
+ small: "small";
2799
+ medium: "medium";
2800
+ large: "large";
2801
+ }>>;
2376
2802
  validation: z.ZodEnum<{
2377
2803
  none: "none";
2378
2804
  zod: "zod";
@@ -2612,6 +3038,7 @@ declare const InitResultSchema: z.ZodObject<{
2612
3038
  "native-unistyles": "native-unistyles";
2613
3039
  svelte: "svelte";
2614
3040
  solid: "solid";
3041
+ "solid-start": "solid-start";
2615
3042
  astro: "astro";
2616
3043
  qwik: "qwik";
2617
3044
  angular: "angular";
@@ -2641,10 +3068,12 @@ declare const InitResultSchema: z.ZodObject<{
2641
3068
  examples: z.ZodArray<z.ZodEnum<{
2642
3069
  none: "none";
2643
3070
  ai: "ai";
3071
+ "chat-sdk": "chat-sdk";
2644
3072
  }>>;
2645
3073
  auth: z.ZodEnum<{
2646
3074
  none: "none";
2647
3075
  "better-auth": "better-auth";
3076
+ "go-better-auth": "go-better-auth";
2648
3077
  clerk: "clerk";
2649
3078
  nextauth: "nextauth";
2650
3079
  "stack-auth": "stack-auth";
@@ -2786,6 +3215,74 @@ declare const InitResultSchema: z.ZodObject<{
2786
3215
  "ark-ui": "ark-ui";
2787
3216
  "react-aria": "react-aria";
2788
3217
  }>;
3218
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
3219
+ radix: "radix";
3220
+ base: "base";
3221
+ }>>;
3222
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
3223
+ vega: "vega";
3224
+ nova: "nova";
3225
+ maia: "maia";
3226
+ lyra: "lyra";
3227
+ mira: "mira";
3228
+ }>>;
3229
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
3230
+ lucide: "lucide";
3231
+ tabler: "tabler";
3232
+ hugeicons: "hugeicons";
3233
+ phosphor: "phosphor";
3234
+ remixicon: "remixicon";
3235
+ }>>;
3236
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
3237
+ neutral: "neutral";
3238
+ stone: "stone";
3239
+ zinc: "zinc";
3240
+ gray: "gray";
3241
+ amber: "amber";
3242
+ blue: "blue";
3243
+ cyan: "cyan";
3244
+ emerald: "emerald";
3245
+ fuchsia: "fuchsia";
3246
+ green: "green";
3247
+ indigo: "indigo";
3248
+ lime: "lime";
3249
+ orange: "orange";
3250
+ pink: "pink";
3251
+ purple: "purple";
3252
+ red: "red";
3253
+ rose: "rose";
3254
+ sky: "sky";
3255
+ teal: "teal";
3256
+ violet: "violet";
3257
+ yellow: "yellow";
3258
+ }>>;
3259
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
3260
+ neutral: "neutral";
3261
+ stone: "stone";
3262
+ zinc: "zinc";
3263
+ gray: "gray";
3264
+ }>>;
3265
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
3266
+ inter: "inter";
3267
+ geist: "geist";
3268
+ "noto-sans": "noto-sans";
3269
+ "nunito-sans": "nunito-sans";
3270
+ figtree: "figtree";
3271
+ roboto: "roboto";
3272
+ raleway: "raleway";
3273
+ "dm-sans": "dm-sans";
3274
+ "public-sans": "public-sans";
3275
+ outfit: "outfit";
3276
+ "jetbrains-mono": "jetbrains-mono";
3277
+ "geist-mono": "geist-mono";
3278
+ }>>;
3279
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
3280
+ none: "none";
3281
+ default: "default";
3282
+ small: "small";
3283
+ medium: "medium";
3284
+ large: "large";
3285
+ }>>;
2789
3286
  validation: z.ZodEnum<{
2790
3287
  none: "none";
2791
3288
  zod: "zod";
@@ -2973,13 +3470,13 @@ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mong
2973
3470
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
2974
3471
  declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
2975
3472
  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")[];
3473
+ 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
3474
  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")[];
3475
+ declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk")[];
2979
3476
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
2980
3477
  declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
2981
3478
  declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
2982
- declare const AUTH_VALUES: ("none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
3479
+ declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
2983
3480
  declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
2984
3481
  declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
2985
3482
  declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
@@ -3026,6 +3523,13 @@ declare const GO_API_VALUES: ("none" | "grpc-go")[];
3026
3523
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
3027
3524
  declare const GO_LOGGING_VALUES: ("none" | "zap")[];
3028
3525
  declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
3526
+ declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
3527
+ declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira")[];
3528
+ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon")[];
3529
+ 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")[];
3530
+ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
3531
+ declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
3532
+ declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
3029
3533
  //#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
3534
+ 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 };
3535
+ //# sourceMappingURL=schemas-DGofeXE2.d.mts.map