@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.
@@ -52,6 +52,7 @@ declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
52
52
  "native-unistyles": "native-unistyles";
53
53
  svelte: "svelte";
54
54
  solid: "solid";
55
+ "solid-start": "solid-start";
55
56
  astro: "astro";
56
57
  qwik: "qwik";
57
58
  angular: "angular";
@@ -81,6 +82,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
81
82
  declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
82
83
  none: "none";
83
84
  ai: "ai";
85
+ "chat-sdk": "chat-sdk";
84
86
  }>>;
85
87
  declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
86
88
  bun: "bun";
@@ -109,6 +111,7 @@ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
109
111
  declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
110
112
  none: "none";
111
113
  "better-auth": "better-auth";
114
+ "go-better-auth": "go-better-auth";
112
115
  clerk: "clerk";
113
116
  nextauth: "nextauth";
114
117
  "stack-auth": "stack-auth";
@@ -192,6 +195,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
192
195
  auth: z.ZodOptional<z.ZodEnum<{
193
196
  none: "none";
194
197
  "better-auth": "better-auth";
198
+ "go-better-auth": "go-better-auth";
195
199
  clerk: "clerk";
196
200
  nextauth: "nextauth";
197
201
  "stack-auth": "stack-auth";
@@ -218,6 +222,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
218
222
  "native-unistyles": "native-unistyles";
219
223
  svelte: "svelte";
220
224
  solid: "solid";
225
+ "solid-start": "solid-start";
221
226
  astro: "astro";
222
227
  qwik: "qwik";
223
228
  angular: "angular";
@@ -247,6 +252,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
247
252
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
248
253
  none: "none";
249
254
  ai: "ai";
255
+ "chat-sdk": "chat-sdk";
250
256
  }>>>;
251
257
  git: z.ZodOptional<z.ZodBoolean>;
252
258
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -404,6 +410,74 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
404
410
  "ark-ui": "ark-ui";
405
411
  "react-aria": "react-aria";
406
412
  }>>;
413
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
414
+ radix: "radix";
415
+ base: "base";
416
+ }>>;
417
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
418
+ vega: "vega";
419
+ nova: "nova";
420
+ maia: "maia";
421
+ lyra: "lyra";
422
+ mira: "mira";
423
+ }>>;
424
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
425
+ lucide: "lucide";
426
+ tabler: "tabler";
427
+ hugeicons: "hugeicons";
428
+ phosphor: "phosphor";
429
+ remixicon: "remixicon";
430
+ }>>;
431
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
432
+ neutral: "neutral";
433
+ stone: "stone";
434
+ zinc: "zinc";
435
+ gray: "gray";
436
+ amber: "amber";
437
+ blue: "blue";
438
+ cyan: "cyan";
439
+ emerald: "emerald";
440
+ fuchsia: "fuchsia";
441
+ green: "green";
442
+ indigo: "indigo";
443
+ lime: "lime";
444
+ orange: "orange";
445
+ pink: "pink";
446
+ purple: "purple";
447
+ red: "red";
448
+ rose: "rose";
449
+ sky: "sky";
450
+ teal: "teal";
451
+ violet: "violet";
452
+ yellow: "yellow";
453
+ }>>;
454
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
455
+ neutral: "neutral";
456
+ stone: "stone";
457
+ zinc: "zinc";
458
+ gray: "gray";
459
+ }>>;
460
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
461
+ inter: "inter";
462
+ geist: "geist";
463
+ "noto-sans": "noto-sans";
464
+ "nunito-sans": "nunito-sans";
465
+ figtree: "figtree";
466
+ roboto: "roboto";
467
+ raleway: "raleway";
468
+ "dm-sans": "dm-sans";
469
+ "public-sans": "public-sans";
470
+ outfit: "outfit";
471
+ "jetbrains-mono": "jetbrains-mono";
472
+ "geist-mono": "geist-mono";
473
+ }>>;
474
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
475
+ none: "none";
476
+ default: "default";
477
+ small: "small";
478
+ medium: "medium";
479
+ large: "large";
480
+ }>>;
407
481
  validation: z.ZodOptional<z.ZodEnum<{
408
482
  none: "none";
409
483
  zod: "zod";
@@ -641,6 +715,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
641
715
  "native-unistyles": "native-unistyles";
642
716
  svelte: "svelte";
643
717
  solid: "solid";
718
+ "solid-start": "solid-start";
644
719
  astro: "astro";
645
720
  qwik: "qwik";
646
721
  angular: "angular";
@@ -670,10 +745,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
670
745
  examples: z.ZodArray<z.ZodEnum<{
671
746
  none: "none";
672
747
  ai: "ai";
748
+ "chat-sdk": "chat-sdk";
673
749
  }>>;
674
750
  auth: z.ZodEnum<{
675
751
  none: "none";
676
752
  "better-auth": "better-auth";
753
+ "go-better-auth": "go-better-auth";
677
754
  clerk: "clerk";
678
755
  nextauth: "nextauth";
679
756
  "stack-auth": "stack-auth";
@@ -815,6 +892,74 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
815
892
  "ark-ui": "ark-ui";
816
893
  "react-aria": "react-aria";
817
894
  }>;
895
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
896
+ radix: "radix";
897
+ base: "base";
898
+ }>>;
899
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
900
+ vega: "vega";
901
+ nova: "nova";
902
+ maia: "maia";
903
+ lyra: "lyra";
904
+ mira: "mira";
905
+ }>>;
906
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
907
+ lucide: "lucide";
908
+ tabler: "tabler";
909
+ hugeicons: "hugeicons";
910
+ phosphor: "phosphor";
911
+ remixicon: "remixicon";
912
+ }>>;
913
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
914
+ neutral: "neutral";
915
+ stone: "stone";
916
+ zinc: "zinc";
917
+ gray: "gray";
918
+ amber: "amber";
919
+ blue: "blue";
920
+ cyan: "cyan";
921
+ emerald: "emerald";
922
+ fuchsia: "fuchsia";
923
+ green: "green";
924
+ indigo: "indigo";
925
+ lime: "lime";
926
+ orange: "orange";
927
+ pink: "pink";
928
+ purple: "purple";
929
+ red: "red";
930
+ rose: "rose";
931
+ sky: "sky";
932
+ teal: "teal";
933
+ violet: "violet";
934
+ yellow: "yellow";
935
+ }>>;
936
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
937
+ neutral: "neutral";
938
+ stone: "stone";
939
+ zinc: "zinc";
940
+ gray: "gray";
941
+ }>>;
942
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
943
+ inter: "inter";
944
+ geist: "geist";
945
+ "noto-sans": "noto-sans";
946
+ "nunito-sans": "nunito-sans";
947
+ figtree: "figtree";
948
+ roboto: "roboto";
949
+ raleway: "raleway";
950
+ "dm-sans": "dm-sans";
951
+ "public-sans": "public-sans";
952
+ outfit: "outfit";
953
+ "jetbrains-mono": "jetbrains-mono";
954
+ "geist-mono": "geist-mono";
955
+ }>>;
956
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
957
+ none: "none";
958
+ default: "default";
959
+ small: "small";
960
+ medium: "medium";
961
+ large: "large";
962
+ }>>;
818
963
  validation: z.ZodEnum<{
819
964
  none: "none";
820
965
  zod: "zod";
@@ -1051,6 +1196,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1051
1196
  "native-unistyles": "native-unistyles";
1052
1197
  svelte: "svelte";
1053
1198
  solid: "solid";
1199
+ "solid-start": "solid-start";
1054
1200
  astro: "astro";
1055
1201
  qwik: "qwik";
1056
1202
  angular: "angular";
@@ -1080,10 +1226,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1080
1226
  examples: z.ZodArray<z.ZodEnum<{
1081
1227
  none: "none";
1082
1228
  ai: "ai";
1229
+ "chat-sdk": "chat-sdk";
1083
1230
  }>>;
1084
1231
  auth: z.ZodEnum<{
1085
1232
  none: "none";
1086
1233
  "better-auth": "better-auth";
1234
+ "go-better-auth": "go-better-auth";
1087
1235
  clerk: "clerk";
1088
1236
  nextauth: "nextauth";
1089
1237
  "stack-auth": "stack-auth";
@@ -1223,6 +1371,74 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1223
1371
  "ark-ui": "ark-ui";
1224
1372
  "react-aria": "react-aria";
1225
1373
  }>;
1374
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1375
+ radix: "radix";
1376
+ base: "base";
1377
+ }>>;
1378
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1379
+ vega: "vega";
1380
+ nova: "nova";
1381
+ maia: "maia";
1382
+ lyra: "lyra";
1383
+ mira: "mira";
1384
+ }>>;
1385
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1386
+ lucide: "lucide";
1387
+ tabler: "tabler";
1388
+ hugeicons: "hugeicons";
1389
+ phosphor: "phosphor";
1390
+ remixicon: "remixicon";
1391
+ }>>;
1392
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1393
+ neutral: "neutral";
1394
+ stone: "stone";
1395
+ zinc: "zinc";
1396
+ gray: "gray";
1397
+ amber: "amber";
1398
+ blue: "blue";
1399
+ cyan: "cyan";
1400
+ emerald: "emerald";
1401
+ fuchsia: "fuchsia";
1402
+ green: "green";
1403
+ indigo: "indigo";
1404
+ lime: "lime";
1405
+ orange: "orange";
1406
+ pink: "pink";
1407
+ purple: "purple";
1408
+ red: "red";
1409
+ rose: "rose";
1410
+ sky: "sky";
1411
+ teal: "teal";
1412
+ violet: "violet";
1413
+ yellow: "yellow";
1414
+ }>>;
1415
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1416
+ neutral: "neutral";
1417
+ stone: "stone";
1418
+ zinc: "zinc";
1419
+ gray: "gray";
1420
+ }>>;
1421
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1422
+ inter: "inter";
1423
+ geist: "geist";
1424
+ "noto-sans": "noto-sans";
1425
+ "nunito-sans": "nunito-sans";
1426
+ figtree: "figtree";
1427
+ roboto: "roboto";
1428
+ raleway: "raleway";
1429
+ "dm-sans": "dm-sans";
1430
+ "public-sans": "public-sans";
1431
+ outfit: "outfit";
1432
+ "jetbrains-mono": "jetbrains-mono";
1433
+ "geist-mono": "geist-mono";
1434
+ }>>;
1435
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1436
+ none: "none";
1437
+ default: "default";
1438
+ small: "small";
1439
+ medium: "medium";
1440
+ large: "large";
1441
+ }>>;
1226
1442
  validation: z.ZodEnum<{
1227
1443
  none: "none";
1228
1444
  zod: "zod";
@@ -1462,6 +1678,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
1462
1678
  "native-unistyles": "native-unistyles";
1463
1679
  svelte: "svelte";
1464
1680
  solid: "solid";
1681
+ "solid-start": "solid-start";
1465
1682
  astro: "astro";
1466
1683
  qwik: "qwik";
1467
1684
  angular: "angular";
@@ -1491,10 +1708,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
1491
1708
  examples: z.ZodArray<z.ZodEnum<{
1492
1709
  none: "none";
1493
1710
  ai: "ai";
1711
+ "chat-sdk": "chat-sdk";
1494
1712
  }>>;
1495
1713
  auth: z.ZodEnum<{
1496
1714
  none: "none";
1497
1715
  "better-auth": "better-auth";
1716
+ "go-better-auth": "go-better-auth";
1498
1717
  clerk: "clerk";
1499
1718
  nextauth: "nextauth";
1500
1719
  "stack-auth": "stack-auth";
@@ -1636,6 +1855,74 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
1636
1855
  "ark-ui": "ark-ui";
1637
1856
  "react-aria": "react-aria";
1638
1857
  }>;
1858
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1859
+ radix: "radix";
1860
+ base: "base";
1861
+ }>>;
1862
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1863
+ vega: "vega";
1864
+ nova: "nova";
1865
+ maia: "maia";
1866
+ lyra: "lyra";
1867
+ mira: "mira";
1868
+ }>>;
1869
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1870
+ lucide: "lucide";
1871
+ tabler: "tabler";
1872
+ hugeicons: "hugeicons";
1873
+ phosphor: "phosphor";
1874
+ remixicon: "remixicon";
1875
+ }>>;
1876
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1877
+ neutral: "neutral";
1878
+ stone: "stone";
1879
+ zinc: "zinc";
1880
+ gray: "gray";
1881
+ amber: "amber";
1882
+ blue: "blue";
1883
+ cyan: "cyan";
1884
+ emerald: "emerald";
1885
+ fuchsia: "fuchsia";
1886
+ green: "green";
1887
+ indigo: "indigo";
1888
+ lime: "lime";
1889
+ orange: "orange";
1890
+ pink: "pink";
1891
+ purple: "purple";
1892
+ red: "red";
1893
+ rose: "rose";
1894
+ sky: "sky";
1895
+ teal: "teal";
1896
+ violet: "violet";
1897
+ yellow: "yellow";
1898
+ }>>;
1899
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1900
+ neutral: "neutral";
1901
+ stone: "stone";
1902
+ zinc: "zinc";
1903
+ gray: "gray";
1904
+ }>>;
1905
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1906
+ inter: "inter";
1907
+ geist: "geist";
1908
+ "noto-sans": "noto-sans";
1909
+ "nunito-sans": "nunito-sans";
1910
+ figtree: "figtree";
1911
+ roboto: "roboto";
1912
+ raleway: "raleway";
1913
+ "dm-sans": "dm-sans";
1914
+ "public-sans": "public-sans";
1915
+ outfit: "outfit";
1916
+ "jetbrains-mono": "jetbrains-mono";
1917
+ "geist-mono": "geist-mono";
1918
+ }>>;
1919
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1920
+ none: "none";
1921
+ default: "default";
1922
+ small: "small";
1923
+ medium: "medium";
1924
+ large: "large";
1925
+ }>>;
1639
1926
  validation: z.ZodEnum<{
1640
1927
  none: "none";
1641
1928
  zod: "zod";
@@ -1871,6 +2158,7 @@ declare function getAllJsonSchemas(): {
1871
2158
  "native-unistyles": "native-unistyles";
1872
2159
  svelte: "svelte";
1873
2160
  solid: "solid";
2161
+ "solid-start": "solid-start";
1874
2162
  astro: "astro";
1875
2163
  qwik: "qwik";
1876
2164
  angular: "angular";
@@ -1900,6 +2188,7 @@ declare function getAllJsonSchemas(): {
1900
2188
  examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1901
2189
  none: "none";
1902
2190
  ai: "ai";
2191
+ "chat-sdk": "chat-sdk";
1903
2192
  }>>;
1904
2193
  packageManager: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1905
2194
  bun: "bun";
@@ -1928,6 +2217,7 @@ declare function getAllJsonSchemas(): {
1928
2217
  auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1929
2218
  none: "none";
1930
2219
  "better-auth": "better-auth";
2220
+ "go-better-auth": "go-better-auth";
1931
2221
  clerk: "clerk";
1932
2222
  nextauth: "nextauth";
1933
2223
  "stack-auth": "stack-auth";
@@ -2011,6 +2301,7 @@ declare function getAllJsonSchemas(): {
2011
2301
  auth: z.ZodOptional<z.ZodEnum<{
2012
2302
  none: "none";
2013
2303
  "better-auth": "better-auth";
2304
+ "go-better-auth": "go-better-auth";
2014
2305
  clerk: "clerk";
2015
2306
  nextauth: "nextauth";
2016
2307
  "stack-auth": "stack-auth";
@@ -2037,6 +2328,7 @@ declare function getAllJsonSchemas(): {
2037
2328
  "native-unistyles": "native-unistyles";
2038
2329
  svelte: "svelte";
2039
2330
  solid: "solid";
2331
+ "solid-start": "solid-start";
2040
2332
  astro: "astro";
2041
2333
  qwik: "qwik";
2042
2334
  angular: "angular";
@@ -2066,6 +2358,7 @@ declare function getAllJsonSchemas(): {
2066
2358
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2067
2359
  none: "none";
2068
2360
  ai: "ai";
2361
+ "chat-sdk": "chat-sdk";
2069
2362
  }>>>;
2070
2363
  git: z.ZodOptional<z.ZodBoolean>;
2071
2364
  packageManager: z.ZodOptional<z.ZodEnum<{
@@ -2223,6 +2516,74 @@ declare function getAllJsonSchemas(): {
2223
2516
  "ark-ui": "ark-ui";
2224
2517
  "react-aria": "react-aria";
2225
2518
  }>>;
2519
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
2520
+ radix: "radix";
2521
+ base: "base";
2522
+ }>>;
2523
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
2524
+ vega: "vega";
2525
+ nova: "nova";
2526
+ maia: "maia";
2527
+ lyra: "lyra";
2528
+ mira: "mira";
2529
+ }>>;
2530
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
2531
+ lucide: "lucide";
2532
+ tabler: "tabler";
2533
+ hugeicons: "hugeicons";
2534
+ phosphor: "phosphor";
2535
+ remixicon: "remixicon";
2536
+ }>>;
2537
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
2538
+ neutral: "neutral";
2539
+ stone: "stone";
2540
+ zinc: "zinc";
2541
+ gray: "gray";
2542
+ amber: "amber";
2543
+ blue: "blue";
2544
+ cyan: "cyan";
2545
+ emerald: "emerald";
2546
+ fuchsia: "fuchsia";
2547
+ green: "green";
2548
+ indigo: "indigo";
2549
+ lime: "lime";
2550
+ orange: "orange";
2551
+ pink: "pink";
2552
+ purple: "purple";
2553
+ red: "red";
2554
+ rose: "rose";
2555
+ sky: "sky";
2556
+ teal: "teal";
2557
+ violet: "violet";
2558
+ yellow: "yellow";
2559
+ }>>;
2560
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
2561
+ neutral: "neutral";
2562
+ stone: "stone";
2563
+ zinc: "zinc";
2564
+ gray: "gray";
2565
+ }>>;
2566
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
2567
+ inter: "inter";
2568
+ geist: "geist";
2569
+ "noto-sans": "noto-sans";
2570
+ "nunito-sans": "nunito-sans";
2571
+ figtree: "figtree";
2572
+ roboto: "roboto";
2573
+ raleway: "raleway";
2574
+ "dm-sans": "dm-sans";
2575
+ "public-sans": "public-sans";
2576
+ outfit: "outfit";
2577
+ "jetbrains-mono": "jetbrains-mono";
2578
+ "geist-mono": "geist-mono";
2579
+ }>>;
2580
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
2581
+ none: "none";
2582
+ default: "default";
2583
+ small: "small";
2584
+ medium: "medium";
2585
+ large: "large";
2586
+ }>>;
2226
2587
  validation: z.ZodOptional<z.ZodEnum<{
2227
2588
  none: "none";
2228
2589
  zod: "zod";
@@ -2460,6 +2821,7 @@ declare function getAllJsonSchemas(): {
2460
2821
  "native-unistyles": "native-unistyles";
2461
2822
  svelte: "svelte";
2462
2823
  solid: "solid";
2824
+ "solid-start": "solid-start";
2463
2825
  astro: "astro";
2464
2826
  qwik: "qwik";
2465
2827
  angular: "angular";
@@ -2489,10 +2851,12 @@ declare function getAllJsonSchemas(): {
2489
2851
  examples: z.ZodArray<z.ZodEnum<{
2490
2852
  none: "none";
2491
2853
  ai: "ai";
2854
+ "chat-sdk": "chat-sdk";
2492
2855
  }>>;
2493
2856
  auth: z.ZodEnum<{
2494
2857
  none: "none";
2495
2858
  "better-auth": "better-auth";
2859
+ "go-better-auth": "go-better-auth";
2496
2860
  clerk: "clerk";
2497
2861
  nextauth: "nextauth";
2498
2862
  "stack-auth": "stack-auth";
@@ -2634,6 +2998,74 @@ declare function getAllJsonSchemas(): {
2634
2998
  "ark-ui": "ark-ui";
2635
2999
  "react-aria": "react-aria";
2636
3000
  }>;
3001
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
3002
+ radix: "radix";
3003
+ base: "base";
3004
+ }>>;
3005
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
3006
+ vega: "vega";
3007
+ nova: "nova";
3008
+ maia: "maia";
3009
+ lyra: "lyra";
3010
+ mira: "mira";
3011
+ }>>;
3012
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
3013
+ lucide: "lucide";
3014
+ tabler: "tabler";
3015
+ hugeicons: "hugeicons";
3016
+ phosphor: "phosphor";
3017
+ remixicon: "remixicon";
3018
+ }>>;
3019
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
3020
+ neutral: "neutral";
3021
+ stone: "stone";
3022
+ zinc: "zinc";
3023
+ gray: "gray";
3024
+ amber: "amber";
3025
+ blue: "blue";
3026
+ cyan: "cyan";
3027
+ emerald: "emerald";
3028
+ fuchsia: "fuchsia";
3029
+ green: "green";
3030
+ indigo: "indigo";
3031
+ lime: "lime";
3032
+ orange: "orange";
3033
+ pink: "pink";
3034
+ purple: "purple";
3035
+ red: "red";
3036
+ rose: "rose";
3037
+ sky: "sky";
3038
+ teal: "teal";
3039
+ violet: "violet";
3040
+ yellow: "yellow";
3041
+ }>>;
3042
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
3043
+ neutral: "neutral";
3044
+ stone: "stone";
3045
+ zinc: "zinc";
3046
+ gray: "gray";
3047
+ }>>;
3048
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
3049
+ inter: "inter";
3050
+ geist: "geist";
3051
+ "noto-sans": "noto-sans";
3052
+ "nunito-sans": "nunito-sans";
3053
+ figtree: "figtree";
3054
+ roboto: "roboto";
3055
+ raleway: "raleway";
3056
+ "dm-sans": "dm-sans";
3057
+ "public-sans": "public-sans";
3058
+ outfit: "outfit";
3059
+ "jetbrains-mono": "jetbrains-mono";
3060
+ "geist-mono": "geist-mono";
3061
+ }>>;
3062
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
3063
+ none: "none";
3064
+ default: "default";
3065
+ small: "small";
3066
+ medium: "medium";
3067
+ large: "large";
3068
+ }>>;
2637
3069
  validation: z.ZodEnum<{
2638
3070
  none: "none";
2639
3071
  zod: "zod";
@@ -2870,6 +3302,7 @@ declare function getAllJsonSchemas(): {
2870
3302
  "native-unistyles": "native-unistyles";
2871
3303
  svelte: "svelte";
2872
3304
  solid: "solid";
3305
+ "solid-start": "solid-start";
2873
3306
  astro: "astro";
2874
3307
  qwik: "qwik";
2875
3308
  angular: "angular";
@@ -2899,10 +3332,12 @@ declare function getAllJsonSchemas(): {
2899
3332
  examples: z.ZodArray<z.ZodEnum<{
2900
3333
  none: "none";
2901
3334
  ai: "ai";
3335
+ "chat-sdk": "chat-sdk";
2902
3336
  }>>;
2903
3337
  auth: z.ZodEnum<{
2904
3338
  none: "none";
2905
3339
  "better-auth": "better-auth";
3340
+ "go-better-auth": "go-better-auth";
2906
3341
  clerk: "clerk";
2907
3342
  nextauth: "nextauth";
2908
3343
  "stack-auth": "stack-auth";
@@ -3042,6 +3477,74 @@ declare function getAllJsonSchemas(): {
3042
3477
  "ark-ui": "ark-ui";
3043
3478
  "react-aria": "react-aria";
3044
3479
  }>;
3480
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
3481
+ radix: "radix";
3482
+ base: "base";
3483
+ }>>;
3484
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
3485
+ vega: "vega";
3486
+ nova: "nova";
3487
+ maia: "maia";
3488
+ lyra: "lyra";
3489
+ mira: "mira";
3490
+ }>>;
3491
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
3492
+ lucide: "lucide";
3493
+ tabler: "tabler";
3494
+ hugeicons: "hugeicons";
3495
+ phosphor: "phosphor";
3496
+ remixicon: "remixicon";
3497
+ }>>;
3498
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
3499
+ neutral: "neutral";
3500
+ stone: "stone";
3501
+ zinc: "zinc";
3502
+ gray: "gray";
3503
+ amber: "amber";
3504
+ blue: "blue";
3505
+ cyan: "cyan";
3506
+ emerald: "emerald";
3507
+ fuchsia: "fuchsia";
3508
+ green: "green";
3509
+ indigo: "indigo";
3510
+ lime: "lime";
3511
+ orange: "orange";
3512
+ pink: "pink";
3513
+ purple: "purple";
3514
+ red: "red";
3515
+ rose: "rose";
3516
+ sky: "sky";
3517
+ teal: "teal";
3518
+ violet: "violet";
3519
+ yellow: "yellow";
3520
+ }>>;
3521
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
3522
+ neutral: "neutral";
3523
+ stone: "stone";
3524
+ zinc: "zinc";
3525
+ gray: "gray";
3526
+ }>>;
3527
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
3528
+ inter: "inter";
3529
+ geist: "geist";
3530
+ "noto-sans": "noto-sans";
3531
+ "nunito-sans": "nunito-sans";
3532
+ figtree: "figtree";
3533
+ roboto: "roboto";
3534
+ raleway: "raleway";
3535
+ "dm-sans": "dm-sans";
3536
+ "public-sans": "public-sans";
3537
+ outfit: "outfit";
3538
+ "jetbrains-mono": "jetbrains-mono";
3539
+ "geist-mono": "geist-mono";
3540
+ }>>;
3541
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
3542
+ none: "none";
3543
+ default: "default";
3544
+ small: "small";
3545
+ medium: "medium";
3546
+ large: "large";
3547
+ }>>;
3045
3548
  validation: z.ZodEnum<{
3046
3549
  none: "none";
3047
3550
  zod: "zod";
@@ -3281,6 +3784,7 @@ declare function getAllJsonSchemas(): {
3281
3784
  "native-unistyles": "native-unistyles";
3282
3785
  svelte: "svelte";
3283
3786
  solid: "solid";
3787
+ "solid-start": "solid-start";
3284
3788
  astro: "astro";
3285
3789
  qwik: "qwik";
3286
3790
  angular: "angular";
@@ -3310,10 +3814,12 @@ declare function getAllJsonSchemas(): {
3310
3814
  examples: z.ZodArray<z.ZodEnum<{
3311
3815
  none: "none";
3312
3816
  ai: "ai";
3817
+ "chat-sdk": "chat-sdk";
3313
3818
  }>>;
3314
3819
  auth: z.ZodEnum<{
3315
3820
  none: "none";
3316
3821
  "better-auth": "better-auth";
3822
+ "go-better-auth": "go-better-auth";
3317
3823
  clerk: "clerk";
3318
3824
  nextauth: "nextauth";
3319
3825
  "stack-auth": "stack-auth";
@@ -3455,6 +3961,74 @@ declare function getAllJsonSchemas(): {
3455
3961
  "ark-ui": "ark-ui";
3456
3962
  "react-aria": "react-aria";
3457
3963
  }>;
3964
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
3965
+ radix: "radix";
3966
+ base: "base";
3967
+ }>>;
3968
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
3969
+ vega: "vega";
3970
+ nova: "nova";
3971
+ maia: "maia";
3972
+ lyra: "lyra";
3973
+ mira: "mira";
3974
+ }>>;
3975
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
3976
+ lucide: "lucide";
3977
+ tabler: "tabler";
3978
+ hugeicons: "hugeicons";
3979
+ phosphor: "phosphor";
3980
+ remixicon: "remixicon";
3981
+ }>>;
3982
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
3983
+ neutral: "neutral";
3984
+ stone: "stone";
3985
+ zinc: "zinc";
3986
+ gray: "gray";
3987
+ amber: "amber";
3988
+ blue: "blue";
3989
+ cyan: "cyan";
3990
+ emerald: "emerald";
3991
+ fuchsia: "fuchsia";
3992
+ green: "green";
3993
+ indigo: "indigo";
3994
+ lime: "lime";
3995
+ orange: "orange";
3996
+ pink: "pink";
3997
+ purple: "purple";
3998
+ red: "red";
3999
+ rose: "rose";
4000
+ sky: "sky";
4001
+ teal: "teal";
4002
+ violet: "violet";
4003
+ yellow: "yellow";
4004
+ }>>;
4005
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
4006
+ neutral: "neutral";
4007
+ stone: "stone";
4008
+ zinc: "zinc";
4009
+ gray: "gray";
4010
+ }>>;
4011
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
4012
+ inter: "inter";
4013
+ geist: "geist";
4014
+ "noto-sans": "noto-sans";
4015
+ "nunito-sans": "nunito-sans";
4016
+ figtree: "figtree";
4017
+ roboto: "roboto";
4018
+ raleway: "raleway";
4019
+ "dm-sans": "dm-sans";
4020
+ "public-sans": "public-sans";
4021
+ outfit: "outfit";
4022
+ "jetbrains-mono": "jetbrains-mono";
4023
+ "geist-mono": "geist-mono";
4024
+ }>>;
4025
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
4026
+ none: "none";
4027
+ default: "default";
4028
+ small: "small";
4029
+ medium: "medium";
4030
+ large: "large";
4031
+ }>>;
3458
4032
  validation: z.ZodEnum<{
3459
4033
  none: "none";
3460
4034
  zod: "zod";