@better-fullstack/types 1.7.1 → 1.8.0

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 (36) hide show
  1. package/dist/{defaults-Ra4H-o6R.d.mts → defaults-CFAJhN--.d.mts} +2 -2
  2. package/dist/defaults-CFAJhN--.d.mts.map +1 -0
  3. package/dist/{defaults-DtBqH42_.mjs → defaults-D23vxGYl.mjs} +23 -1
  4. package/dist/defaults-D23vxGYl.mjs.map +1 -0
  5. package/dist/defaults.d.mts +3 -3
  6. package/dist/defaults.mjs +1 -1
  7. package/dist/index.d.mts +5 -5
  8. package/dist/index.mjs +4 -4
  9. package/dist/json-schema.d.mts +2938 -316
  10. package/dist/json-schema.d.mts.map +1 -1
  11. package/dist/json-schema.mjs +66 -2
  12. package/dist/json-schema.mjs.map +1 -1
  13. package/dist/{schemas-B2DBDBdl.mjs → schemas-BHCZL3uR.mjs} +195 -4
  14. package/dist/schemas-BHCZL3uR.mjs.map +1 -0
  15. package/dist/{schemas-CC-_Vkoh.d.mts → schemas-Bs_n2xLj.d.mts} +2405 -45
  16. package/dist/schemas-Bs_n2xLj.d.mts.map +1 -0
  17. package/dist/schemas.d.mts +2 -2
  18. package/dist/schemas.mjs +2 -2
  19. package/dist/{stack-translation-Bag2NJRD.mjs → stack-translation-_uOX-Io0.mjs} +848 -21
  20. package/dist/stack-translation-_uOX-Io0.mjs.map +1 -0
  21. package/dist/{stack-translation-B8OgQLwv.d.mts → stack-translation-xj8JvbAI.d.mts} +50 -6
  22. package/dist/stack-translation-xj8JvbAI.d.mts.map +1 -0
  23. package/dist/stack-translation.d.mts +4 -4
  24. package/dist/stack-translation.mjs +2 -2
  25. package/dist/types-DwFVhx5c.d.mts +119 -0
  26. package/dist/types-DwFVhx5c.d.mts.map +1 -0
  27. package/dist/types.d.mts +3 -3
  28. package/package.json +2 -2
  29. package/dist/defaults-DtBqH42_.mjs.map +0 -1
  30. package/dist/defaults-Ra4H-o6R.d.mts.map +0 -1
  31. package/dist/schemas-B2DBDBdl.mjs.map +0 -1
  32. package/dist/schemas-CC-_Vkoh.d.mts.map +0 -1
  33. package/dist/stack-translation-B8OgQLwv.d.mts.map +0 -1
  34. package/dist/stack-translation-Bag2NJRD.mjs.map +0 -1
  35. package/dist/types-Cd8oAhRY.d.mts +0 -96
  36. package/dist/types-Cd8oAhRY.d.mts.map +0 -1
@@ -3,10 +3,12 @@ import { z } from "zod";
3
3
  //#region src/schemas.d.ts
4
4
  declare const EcosystemSchema: z.ZodEnum<{
5
5
  typescript: "typescript";
6
+ "react-native": "react-native";
6
7
  rust: "rust";
7
8
  python: "python";
8
9
  go: "go";
9
10
  java: "java";
11
+ elixir: "elixir";
10
12
  }>;
11
13
  declare const DatabaseSchema: z.ZodEnum<{
12
14
  none: "none";
@@ -54,6 +56,7 @@ declare const FrontendSchema: z.ZodEnum<{
54
56
  "react-vite": "react-vite";
55
57
  "tanstack-start": "tanstack-start";
56
58
  next: "next";
59
+ vinext: "vinext";
57
60
  nuxt: "nuxt";
58
61
  "native-bare": "native-bare";
59
62
  "native-uniwind": "native-uniwind";
@@ -101,8 +104,8 @@ declare const AddonsSchema: z.ZodEnum<{
101
104
  "docker-compose": "docker-compose";
102
105
  }>;
103
106
  declare const ExamplesSchema: z.ZodEnum<{
104
- none: "none";
105
107
  ai: "ai";
108
+ none: "none";
106
109
  "chat-sdk": "chat-sdk";
107
110
  "tanstack-showcase": "tanstack-showcase";
108
111
  }>;
@@ -188,8 +191,8 @@ declare const AISchema: z.ZodEnum<{
188
191
  "ai-cli": "ai-cli";
189
192
  }>;
190
193
  declare const EffectSchema: z.ZodEnum<{
191
- none: "none";
192
194
  effect: "effect";
195
+ none: "none";
193
196
  "effect-full": "effect-full";
194
197
  }>;
195
198
  declare const StateManagementSchema: z.ZodEnum<{
@@ -324,6 +327,40 @@ declare const AnalyticsSchema: z.ZodEnum<{
324
327
  plausible: "plausible";
325
328
  umami: "umami";
326
329
  }>;
330
+ declare const MobileNavigationSchema: z.ZodEnum<{
331
+ none: "none";
332
+ "expo-router": "expo-router";
333
+ "react-navigation": "react-navigation";
334
+ }>;
335
+ declare const MobileUISchema: z.ZodEnum<{
336
+ none: "none";
337
+ uniwind: "uniwind";
338
+ tamagui: "tamagui";
339
+ "gluestack-ui": "gluestack-ui";
340
+ unistyles: "unistyles";
341
+ }>;
342
+ declare const MobileStorageSchema: z.ZodEnum<{
343
+ none: "none";
344
+ mmkv: "mmkv";
345
+ }>;
346
+ declare const MobileTestingSchema: z.ZodEnum<{
347
+ none: "none";
348
+ maestro: "maestro";
349
+ "react-native-testing-library": "react-native-testing-library";
350
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
351
+ }>;
352
+ declare const MobilePushSchema: z.ZodEnum<{
353
+ none: "none";
354
+ "expo-notifications": "expo-notifications";
355
+ }>;
356
+ declare const MobileOTASchema: z.ZodEnum<{
357
+ none: "none";
358
+ "expo-updates": "expo-updates";
359
+ }>;
360
+ declare const MobileDeepLinkingSchema: z.ZodEnum<{
361
+ none: "none";
362
+ "expo-linking": "expo-linking";
363
+ }>;
327
364
  declare const RustWebFrameworkSchema: z.ZodEnum<{
328
365
  none: "none";
329
366
  axum: "axum";
@@ -453,8 +490,8 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
453
490
  chi: "chi";
454
491
  }>;
455
492
  declare const GoOrmSchema: z.ZodEnum<{
456
- none: "none";
457
493
  gorm: "gorm";
494
+ none: "none";
458
495
  sqlc: "sqlc";
459
496
  ent: "ent";
460
497
  }>;
@@ -529,6 +566,88 @@ declare const JavaTestingLibrariesSchema: z.ZodEnum<{
529
566
  archunit: "archunit";
530
567
  jqwik: "jqwik";
531
568
  }>;
569
+ declare const ElixirWebFrameworkSchema: z.ZodEnum<{
570
+ none: "none";
571
+ phoenix: "phoenix";
572
+ "phoenix-live-view": "phoenix-live-view";
573
+ }>;
574
+ declare const ElixirOrmSchema: z.ZodEnum<{
575
+ none: "none";
576
+ ecto: "ecto";
577
+ "ecto-sql": "ecto-sql";
578
+ }>;
579
+ declare const ElixirAuthSchema: z.ZodEnum<{
580
+ none: "none";
581
+ "phx-gen-auth": "phx-gen-auth";
582
+ ueberauth: "ueberauth";
583
+ guardian: "guardian";
584
+ }>;
585
+ declare const ElixirApiSchema: z.ZodEnum<{
586
+ none: "none";
587
+ rest: "rest";
588
+ absinthe: "absinthe";
589
+ }>;
590
+ declare const ElixirRealtimeSchema: z.ZodEnum<{
591
+ none: "none";
592
+ channels: "channels";
593
+ presence: "presence";
594
+ pubsub: "pubsub";
595
+ "live-view-streams": "live-view-streams";
596
+ }>;
597
+ declare const ElixirJobsSchema: z.ZodEnum<{
598
+ none: "none";
599
+ oban: "oban";
600
+ quantum: "quantum";
601
+ }>;
602
+ declare const ElixirValidationSchema: z.ZodEnum<{
603
+ none: "none";
604
+ "ecto-changesets": "ecto-changesets";
605
+ "nimble-options": "nimble-options";
606
+ }>;
607
+ declare const ElixirHttpSchema: z.ZodEnum<{
608
+ none: "none";
609
+ req: "req";
610
+ finch: "finch";
611
+ }>;
612
+ declare const ElixirJsonSchema: z.ZodEnum<{
613
+ none: "none";
614
+ jason: "jason";
615
+ }>;
616
+ declare const ElixirEmailSchema: z.ZodEnum<{
617
+ none: "none";
618
+ swoosh: "swoosh";
619
+ }>;
620
+ declare const ElixirCachingSchema: z.ZodEnum<{
621
+ none: "none";
622
+ cachex: "cachex";
623
+ nebulex: "nebulex";
624
+ }>;
625
+ declare const ElixirObservabilitySchema: z.ZodEnum<{
626
+ none: "none";
627
+ opentelemetry: "opentelemetry";
628
+ telemetry: "telemetry";
629
+ prom_ex: "prom_ex";
630
+ }>;
631
+ declare const ElixirTestingSchema: z.ZodEnum<{
632
+ none: "none";
633
+ ex_unit: "ex_unit";
634
+ mox: "mox";
635
+ bypass: "bypass";
636
+ wallaby: "wallaby";
637
+ }>;
638
+ declare const ElixirQualitySchema: z.ZodEnum<{
639
+ none: "none";
640
+ credo: "credo";
641
+ dialyxir: "dialyxir";
642
+ sobelow: "sobelow";
643
+ }>;
644
+ declare const ElixirDeploySchema: z.ZodEnum<{
645
+ none: "none";
646
+ docker: "docker";
647
+ fly: "fly";
648
+ gigalixir: "gigalixir";
649
+ "mix-release": "mix-release";
650
+ }>;
532
651
  declare const AiDocsSchema: z.ZodEnum<{
533
652
  none: "none";
534
653
  "claude-md": "claude-md";
@@ -543,6 +662,7 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
543
662
  "postcss-only": "postcss-only";
544
663
  }>;
545
664
  declare const UILibrarySchema: z.ZodEnum<{
665
+ mui: "mui";
546
666
  none: "none";
547
667
  "shadcn-ui": "shadcn-ui";
548
668
  daisyui: "daisyui";
@@ -552,7 +672,6 @@ declare const UILibrarySchema: z.ZodEnum<{
552
672
  "chakra-ui": "chakra-ui";
553
673
  nextui: "nextui";
554
674
  mantine: "mantine";
555
- mui: "mui";
556
675
  antd: "antd";
557
676
  "base-ui": "base-ui";
558
677
  "ark-ui": "ark-ui";
@@ -659,10 +778,12 @@ declare const CreateInputSchema: z.ZodObject<{
659
778
  dryRun: z.ZodOptional<z.ZodBoolean>;
660
779
  ecosystem: z.ZodOptional<z.ZodEnum<{
661
780
  typescript: "typescript";
781
+ "react-native": "react-native";
662
782
  rust: "rust";
663
783
  python: "python";
664
784
  go: "go";
665
785
  java: "java";
786
+ elixir: "elixir";
666
787
  }>>;
667
788
  database: z.ZodOptional<z.ZodEnum<{
668
789
  none: "none";
@@ -708,6 +829,7 @@ declare const CreateInputSchema: z.ZodObject<{
708
829
  "react-vite": "react-vite";
709
830
  "tanstack-start": "tanstack-start";
710
831
  next: "next";
832
+ vinext: "vinext";
711
833
  nuxt: "nuxt";
712
834
  "native-bare": "native-bare";
713
835
  "native-uniwind": "native-uniwind";
@@ -748,8 +870,8 @@ declare const CreateInputSchema: z.ZodObject<{
748
870
  "docker-compose": "docker-compose";
749
871
  }>>>;
750
872
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
751
- none: "none";
752
873
  ai: "ai";
874
+ none: "none";
753
875
  "chat-sdk": "chat-sdk";
754
876
  "tanstack-showcase": "tanstack-showcase";
755
877
  }>>>;
@@ -855,8 +977,8 @@ declare const CreateInputSchema: z.ZodObject<{
855
977
  "ai-cli": "ai-cli";
856
978
  }>>;
857
979
  effect: z.ZodOptional<z.ZodEnum<{
858
- none: "none";
859
980
  effect: "effect";
981
+ none: "none";
860
982
  "effect-full": "effect-full";
861
983
  }>>;
862
984
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -907,6 +1029,7 @@ declare const CreateInputSchema: z.ZodObject<{
907
1029
  "postcss-only": "postcss-only";
908
1030
  }>>;
909
1031
  uiLibrary: z.ZodOptional<z.ZodEnum<{
1032
+ mui: "mui";
910
1033
  none: "none";
911
1034
  "shadcn-ui": "shadcn-ui";
912
1035
  daisyui: "daisyui";
@@ -916,7 +1039,6 @@ declare const CreateInputSchema: z.ZodObject<{
916
1039
  "chakra-ui": "chakra-ui";
917
1040
  nextui: "nextui";
918
1041
  mantine: "mantine";
919
- mui: "mui";
920
1042
  antd: "antd";
921
1043
  "base-ui": "base-ui";
922
1044
  "ark-ui": "ark-ui";
@@ -1086,6 +1208,40 @@ declare const CreateInputSchema: z.ZodObject<{
1086
1208
  s3: "s3";
1087
1209
  r2: "r2";
1088
1210
  }>>;
1211
+ mobileNavigation: z.ZodOptional<z.ZodEnum<{
1212
+ none: "none";
1213
+ "expo-router": "expo-router";
1214
+ "react-navigation": "react-navigation";
1215
+ }>>;
1216
+ mobileUI: z.ZodOptional<z.ZodEnum<{
1217
+ none: "none";
1218
+ uniwind: "uniwind";
1219
+ tamagui: "tamagui";
1220
+ "gluestack-ui": "gluestack-ui";
1221
+ unistyles: "unistyles";
1222
+ }>>;
1223
+ mobileStorage: z.ZodOptional<z.ZodEnum<{
1224
+ none: "none";
1225
+ mmkv: "mmkv";
1226
+ }>>;
1227
+ mobileTesting: z.ZodOptional<z.ZodEnum<{
1228
+ none: "none";
1229
+ maestro: "maestro";
1230
+ "react-native-testing-library": "react-native-testing-library";
1231
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
1232
+ }>>;
1233
+ mobilePush: z.ZodOptional<z.ZodEnum<{
1234
+ none: "none";
1235
+ "expo-notifications": "expo-notifications";
1236
+ }>>;
1237
+ mobileOTA: z.ZodOptional<z.ZodEnum<{
1238
+ none: "none";
1239
+ "expo-updates": "expo-updates";
1240
+ }>>;
1241
+ mobileDeepLinking: z.ZodOptional<z.ZodEnum<{
1242
+ none: "none";
1243
+ "expo-linking": "expo-linking";
1244
+ }>>;
1089
1245
  rustWebFramework: z.ZodOptional<z.ZodEnum<{
1090
1246
  none: "none";
1091
1247
  axum: "axum";
@@ -1215,8 +1371,8 @@ declare const CreateInputSchema: z.ZodObject<{
1215
1371
  chi: "chi";
1216
1372
  }>>;
1217
1373
  goOrm: z.ZodOptional<z.ZodEnum<{
1218
- none: "none";
1219
1374
  gorm: "gorm";
1375
+ none: "none";
1220
1376
  sqlc: "sqlc";
1221
1377
  ent: "ent";
1222
1378
  }>>;
@@ -1291,6 +1447,88 @@ declare const CreateInputSchema: z.ZodObject<{
1291
1447
  archunit: "archunit";
1292
1448
  jqwik: "jqwik";
1293
1449
  }>>>;
1450
+ elixirWebFramework: z.ZodOptional<z.ZodEnum<{
1451
+ none: "none";
1452
+ phoenix: "phoenix";
1453
+ "phoenix-live-view": "phoenix-live-view";
1454
+ }>>;
1455
+ elixirOrm: z.ZodOptional<z.ZodEnum<{
1456
+ none: "none";
1457
+ ecto: "ecto";
1458
+ "ecto-sql": "ecto-sql";
1459
+ }>>;
1460
+ elixirAuth: z.ZodOptional<z.ZodEnum<{
1461
+ none: "none";
1462
+ "phx-gen-auth": "phx-gen-auth";
1463
+ ueberauth: "ueberauth";
1464
+ guardian: "guardian";
1465
+ }>>;
1466
+ elixirApi: z.ZodOptional<z.ZodEnum<{
1467
+ none: "none";
1468
+ rest: "rest";
1469
+ absinthe: "absinthe";
1470
+ }>>;
1471
+ elixirRealtime: z.ZodOptional<z.ZodEnum<{
1472
+ none: "none";
1473
+ channels: "channels";
1474
+ presence: "presence";
1475
+ pubsub: "pubsub";
1476
+ "live-view-streams": "live-view-streams";
1477
+ }>>;
1478
+ elixirJobs: z.ZodOptional<z.ZodEnum<{
1479
+ none: "none";
1480
+ oban: "oban";
1481
+ quantum: "quantum";
1482
+ }>>;
1483
+ elixirValidation: z.ZodOptional<z.ZodEnum<{
1484
+ none: "none";
1485
+ "ecto-changesets": "ecto-changesets";
1486
+ "nimble-options": "nimble-options";
1487
+ }>>;
1488
+ elixirHttp: z.ZodOptional<z.ZodEnum<{
1489
+ none: "none";
1490
+ req: "req";
1491
+ finch: "finch";
1492
+ }>>;
1493
+ elixirJson: z.ZodOptional<z.ZodEnum<{
1494
+ none: "none";
1495
+ jason: "jason";
1496
+ }>>;
1497
+ elixirEmail: z.ZodOptional<z.ZodEnum<{
1498
+ none: "none";
1499
+ swoosh: "swoosh";
1500
+ }>>;
1501
+ elixirCaching: z.ZodOptional<z.ZodEnum<{
1502
+ none: "none";
1503
+ cachex: "cachex";
1504
+ nebulex: "nebulex";
1505
+ }>>;
1506
+ elixirObservability: z.ZodOptional<z.ZodEnum<{
1507
+ none: "none";
1508
+ opentelemetry: "opentelemetry";
1509
+ telemetry: "telemetry";
1510
+ prom_ex: "prom_ex";
1511
+ }>>;
1512
+ elixirTesting: z.ZodOptional<z.ZodEnum<{
1513
+ none: "none";
1514
+ ex_unit: "ex_unit";
1515
+ mox: "mox";
1516
+ bypass: "bypass";
1517
+ wallaby: "wallaby";
1518
+ }>>;
1519
+ elixirQuality: z.ZodOptional<z.ZodEnum<{
1520
+ none: "none";
1521
+ credo: "credo";
1522
+ dialyxir: "dialyxir";
1523
+ sobelow: "sobelow";
1524
+ }>>;
1525
+ elixirDeploy: z.ZodOptional<z.ZodEnum<{
1526
+ none: "none";
1527
+ docker: "docker";
1528
+ fly: "fly";
1529
+ gigalixir: "gigalixir";
1530
+ "mix-release": "mix-release";
1531
+ }>>;
1294
1532
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1295
1533
  none: "none";
1296
1534
  "claude-md": "claude-md";
@@ -1367,10 +1605,12 @@ declare const CLIInputSchema: z.ZodObject<{
1367
1605
  dryRun: z.ZodOptional<z.ZodBoolean>;
1368
1606
  ecosystem: z.ZodOptional<z.ZodEnum<{
1369
1607
  typescript: "typescript";
1608
+ "react-native": "react-native";
1370
1609
  rust: "rust";
1371
1610
  python: "python";
1372
1611
  go: "go";
1373
1612
  java: "java";
1613
+ elixir: "elixir";
1374
1614
  }>>;
1375
1615
  database: z.ZodOptional<z.ZodEnum<{
1376
1616
  none: "none";
@@ -1416,6 +1656,7 @@ declare const CLIInputSchema: z.ZodObject<{
1416
1656
  "react-vite": "react-vite";
1417
1657
  "tanstack-start": "tanstack-start";
1418
1658
  next: "next";
1659
+ vinext: "vinext";
1419
1660
  nuxt: "nuxt";
1420
1661
  "native-bare": "native-bare";
1421
1662
  "native-uniwind": "native-uniwind";
@@ -1456,8 +1697,8 @@ declare const CLIInputSchema: z.ZodObject<{
1456
1697
  "docker-compose": "docker-compose";
1457
1698
  }>>>;
1458
1699
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1459
- none: "none";
1460
1700
  ai: "ai";
1701
+ none: "none";
1461
1702
  "chat-sdk": "chat-sdk";
1462
1703
  "tanstack-showcase": "tanstack-showcase";
1463
1704
  }>>>;
@@ -1563,8 +1804,8 @@ declare const CLIInputSchema: z.ZodObject<{
1563
1804
  "ai-cli": "ai-cli";
1564
1805
  }>>;
1565
1806
  effect: z.ZodOptional<z.ZodEnum<{
1566
- none: "none";
1567
1807
  effect: "effect";
1808
+ none: "none";
1568
1809
  "effect-full": "effect-full";
1569
1810
  }>>;
1570
1811
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -1615,6 +1856,7 @@ declare const CLIInputSchema: z.ZodObject<{
1615
1856
  "postcss-only": "postcss-only";
1616
1857
  }>>;
1617
1858
  uiLibrary: z.ZodOptional<z.ZodEnum<{
1859
+ mui: "mui";
1618
1860
  none: "none";
1619
1861
  "shadcn-ui": "shadcn-ui";
1620
1862
  daisyui: "daisyui";
@@ -1624,7 +1866,6 @@ declare const CLIInputSchema: z.ZodObject<{
1624
1866
  "chakra-ui": "chakra-ui";
1625
1867
  nextui: "nextui";
1626
1868
  mantine: "mantine";
1627
- mui: "mui";
1628
1869
  antd: "antd";
1629
1870
  "base-ui": "base-ui";
1630
1871
  "ark-ui": "ark-ui";
@@ -1794,6 +2035,40 @@ declare const CLIInputSchema: z.ZodObject<{
1794
2035
  s3: "s3";
1795
2036
  r2: "r2";
1796
2037
  }>>;
2038
+ mobileNavigation: z.ZodOptional<z.ZodEnum<{
2039
+ none: "none";
2040
+ "expo-router": "expo-router";
2041
+ "react-navigation": "react-navigation";
2042
+ }>>;
2043
+ mobileUI: z.ZodOptional<z.ZodEnum<{
2044
+ none: "none";
2045
+ uniwind: "uniwind";
2046
+ tamagui: "tamagui";
2047
+ "gluestack-ui": "gluestack-ui";
2048
+ unistyles: "unistyles";
2049
+ }>>;
2050
+ mobileStorage: z.ZodOptional<z.ZodEnum<{
2051
+ none: "none";
2052
+ mmkv: "mmkv";
2053
+ }>>;
2054
+ mobileTesting: z.ZodOptional<z.ZodEnum<{
2055
+ none: "none";
2056
+ maestro: "maestro";
2057
+ "react-native-testing-library": "react-native-testing-library";
2058
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
2059
+ }>>;
2060
+ mobilePush: z.ZodOptional<z.ZodEnum<{
2061
+ none: "none";
2062
+ "expo-notifications": "expo-notifications";
2063
+ }>>;
2064
+ mobileOTA: z.ZodOptional<z.ZodEnum<{
2065
+ none: "none";
2066
+ "expo-updates": "expo-updates";
2067
+ }>>;
2068
+ mobileDeepLinking: z.ZodOptional<z.ZodEnum<{
2069
+ none: "none";
2070
+ "expo-linking": "expo-linking";
2071
+ }>>;
1797
2072
  rustWebFramework: z.ZodOptional<z.ZodEnum<{
1798
2073
  none: "none";
1799
2074
  axum: "axum";
@@ -1923,8 +2198,8 @@ declare const CLIInputSchema: z.ZodObject<{
1923
2198
  chi: "chi";
1924
2199
  }>>;
1925
2200
  goOrm: z.ZodOptional<z.ZodEnum<{
1926
- none: "none";
1927
2201
  gorm: "gorm";
2202
+ none: "none";
1928
2203
  sqlc: "sqlc";
1929
2204
  ent: "ent";
1930
2205
  }>>;
@@ -1999,6 +2274,88 @@ declare const CLIInputSchema: z.ZodObject<{
1999
2274
  archunit: "archunit";
2000
2275
  jqwik: "jqwik";
2001
2276
  }>>>;
2277
+ elixirWebFramework: z.ZodOptional<z.ZodEnum<{
2278
+ none: "none";
2279
+ phoenix: "phoenix";
2280
+ "phoenix-live-view": "phoenix-live-view";
2281
+ }>>;
2282
+ elixirOrm: z.ZodOptional<z.ZodEnum<{
2283
+ none: "none";
2284
+ ecto: "ecto";
2285
+ "ecto-sql": "ecto-sql";
2286
+ }>>;
2287
+ elixirAuth: z.ZodOptional<z.ZodEnum<{
2288
+ none: "none";
2289
+ "phx-gen-auth": "phx-gen-auth";
2290
+ ueberauth: "ueberauth";
2291
+ guardian: "guardian";
2292
+ }>>;
2293
+ elixirApi: z.ZodOptional<z.ZodEnum<{
2294
+ none: "none";
2295
+ rest: "rest";
2296
+ absinthe: "absinthe";
2297
+ }>>;
2298
+ elixirRealtime: z.ZodOptional<z.ZodEnum<{
2299
+ none: "none";
2300
+ channels: "channels";
2301
+ presence: "presence";
2302
+ pubsub: "pubsub";
2303
+ "live-view-streams": "live-view-streams";
2304
+ }>>;
2305
+ elixirJobs: z.ZodOptional<z.ZodEnum<{
2306
+ none: "none";
2307
+ oban: "oban";
2308
+ quantum: "quantum";
2309
+ }>>;
2310
+ elixirValidation: z.ZodOptional<z.ZodEnum<{
2311
+ none: "none";
2312
+ "ecto-changesets": "ecto-changesets";
2313
+ "nimble-options": "nimble-options";
2314
+ }>>;
2315
+ elixirHttp: z.ZodOptional<z.ZodEnum<{
2316
+ none: "none";
2317
+ req: "req";
2318
+ finch: "finch";
2319
+ }>>;
2320
+ elixirJson: z.ZodOptional<z.ZodEnum<{
2321
+ none: "none";
2322
+ jason: "jason";
2323
+ }>>;
2324
+ elixirEmail: z.ZodOptional<z.ZodEnum<{
2325
+ none: "none";
2326
+ swoosh: "swoosh";
2327
+ }>>;
2328
+ elixirCaching: z.ZodOptional<z.ZodEnum<{
2329
+ none: "none";
2330
+ cachex: "cachex";
2331
+ nebulex: "nebulex";
2332
+ }>>;
2333
+ elixirObservability: z.ZodOptional<z.ZodEnum<{
2334
+ none: "none";
2335
+ opentelemetry: "opentelemetry";
2336
+ telemetry: "telemetry";
2337
+ prom_ex: "prom_ex";
2338
+ }>>;
2339
+ elixirTesting: z.ZodOptional<z.ZodEnum<{
2340
+ none: "none";
2341
+ ex_unit: "ex_unit";
2342
+ mox: "mox";
2343
+ bypass: "bypass";
2344
+ wallaby: "wallaby";
2345
+ }>>;
2346
+ elixirQuality: z.ZodOptional<z.ZodEnum<{
2347
+ none: "none";
2348
+ credo: "credo";
2349
+ dialyxir: "dialyxir";
2350
+ sobelow: "sobelow";
2351
+ }>>;
2352
+ elixirDeploy: z.ZodOptional<z.ZodEnum<{
2353
+ none: "none";
2354
+ docker: "docker";
2355
+ fly: "fly";
2356
+ gigalixir: "gigalixir";
2357
+ "mix-release": "mix-release";
2358
+ }>>;
2002
2359
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2003
2360
  none: "none";
2004
2361
  "claude-md": "claude-md";
@@ -2013,10 +2370,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
2013
2370
  relativePath: z.ZodString;
2014
2371
  ecosystem: z.ZodEnum<{
2015
2372
  typescript: "typescript";
2373
+ "react-native": "react-native";
2016
2374
  rust: "rust";
2017
2375
  python: "python";
2018
2376
  go: "go";
2019
2377
  java: "java";
2378
+ elixir: "elixir";
2020
2379
  }>;
2021
2380
  database: z.ZodEnum<{
2022
2381
  none: "none";
@@ -2064,6 +2423,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2064
2423
  "react-vite": "react-vite";
2065
2424
  "tanstack-start": "tanstack-start";
2066
2425
  next: "next";
2426
+ vinext: "vinext";
2067
2427
  nuxt: "nuxt";
2068
2428
  "native-bare": "native-bare";
2069
2429
  "native-uniwind": "native-uniwind";
@@ -2104,8 +2464,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
2104
2464
  "docker-compose": "docker-compose";
2105
2465
  }>>;
2106
2466
  examples: z.ZodArray<z.ZodEnum<{
2107
- none: "none";
2108
2467
  ai: "ai";
2468
+ none: "none";
2109
2469
  "chat-sdk": "chat-sdk";
2110
2470
  "tanstack-showcase": "tanstack-showcase";
2111
2471
  }>>;
@@ -2200,8 +2560,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
2200
2560
  "ai-cli": "ai-cli";
2201
2561
  }>;
2202
2562
  effect: z.ZodEnum<{
2203
- none: "none";
2204
2563
  effect: "effect";
2564
+ none: "none";
2205
2565
  "effect-full": "effect-full";
2206
2566
  }>;
2207
2567
  stateManagement: z.ZodEnum<{
@@ -2252,6 +2612,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2252
2612
  "postcss-only": "postcss-only";
2253
2613
  }>;
2254
2614
  uiLibrary: z.ZodEnum<{
2615
+ mui: "mui";
2255
2616
  none: "none";
2256
2617
  "shadcn-ui": "shadcn-ui";
2257
2618
  daisyui: "daisyui";
@@ -2261,7 +2622,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
2261
2622
  "chakra-ui": "chakra-ui";
2262
2623
  nextui: "nextui";
2263
2624
  mantine: "mantine";
2264
- mui: "mui";
2265
2625
  antd: "antd";
2266
2626
  "base-ui": "base-ui";
2267
2627
  "ark-ui": "ark-ui";
@@ -2431,6 +2791,40 @@ declare const ProjectConfigSchema: z.ZodObject<{
2431
2791
  s3: "s3";
2432
2792
  r2: "r2";
2433
2793
  }>;
2794
+ mobileNavigation: z.ZodEnum<{
2795
+ none: "none";
2796
+ "expo-router": "expo-router";
2797
+ "react-navigation": "react-navigation";
2798
+ }>;
2799
+ mobileUI: z.ZodEnum<{
2800
+ none: "none";
2801
+ uniwind: "uniwind";
2802
+ tamagui: "tamagui";
2803
+ "gluestack-ui": "gluestack-ui";
2804
+ unistyles: "unistyles";
2805
+ }>;
2806
+ mobileStorage: z.ZodEnum<{
2807
+ none: "none";
2808
+ mmkv: "mmkv";
2809
+ }>;
2810
+ mobileTesting: z.ZodEnum<{
2811
+ none: "none";
2812
+ maestro: "maestro";
2813
+ "react-native-testing-library": "react-native-testing-library";
2814
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
2815
+ }>;
2816
+ mobilePush: z.ZodEnum<{
2817
+ none: "none";
2818
+ "expo-notifications": "expo-notifications";
2819
+ }>;
2820
+ mobileOTA: z.ZodEnum<{
2821
+ none: "none";
2822
+ "expo-updates": "expo-updates";
2823
+ }>;
2824
+ mobileDeepLinking: z.ZodEnum<{
2825
+ none: "none";
2826
+ "expo-linking": "expo-linking";
2827
+ }>;
2434
2828
  rustWebFramework: z.ZodEnum<{
2435
2829
  none: "none";
2436
2830
  axum: "axum";
@@ -2560,8 +2954,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
2560
2954
  chi: "chi";
2561
2955
  }>;
2562
2956
  goOrm: z.ZodEnum<{
2563
- none: "none";
2564
2957
  gorm: "gorm";
2958
+ none: "none";
2565
2959
  sqlc: "sqlc";
2566
2960
  ent: "ent";
2567
2961
  }>;
@@ -2636,6 +3030,88 @@ declare const ProjectConfigSchema: z.ZodObject<{
2636
3030
  archunit: "archunit";
2637
3031
  jqwik: "jqwik";
2638
3032
  }>>;
3033
+ elixirWebFramework: z.ZodEnum<{
3034
+ none: "none";
3035
+ phoenix: "phoenix";
3036
+ "phoenix-live-view": "phoenix-live-view";
3037
+ }>;
3038
+ elixirOrm: z.ZodEnum<{
3039
+ none: "none";
3040
+ ecto: "ecto";
3041
+ "ecto-sql": "ecto-sql";
3042
+ }>;
3043
+ elixirAuth: z.ZodEnum<{
3044
+ none: "none";
3045
+ "phx-gen-auth": "phx-gen-auth";
3046
+ ueberauth: "ueberauth";
3047
+ guardian: "guardian";
3048
+ }>;
3049
+ elixirApi: z.ZodEnum<{
3050
+ none: "none";
3051
+ rest: "rest";
3052
+ absinthe: "absinthe";
3053
+ }>;
3054
+ elixirRealtime: z.ZodEnum<{
3055
+ none: "none";
3056
+ channels: "channels";
3057
+ presence: "presence";
3058
+ pubsub: "pubsub";
3059
+ "live-view-streams": "live-view-streams";
3060
+ }>;
3061
+ elixirJobs: z.ZodEnum<{
3062
+ none: "none";
3063
+ oban: "oban";
3064
+ quantum: "quantum";
3065
+ }>;
3066
+ elixirValidation: z.ZodEnum<{
3067
+ none: "none";
3068
+ "ecto-changesets": "ecto-changesets";
3069
+ "nimble-options": "nimble-options";
3070
+ }>;
3071
+ elixirHttp: z.ZodEnum<{
3072
+ none: "none";
3073
+ req: "req";
3074
+ finch: "finch";
3075
+ }>;
3076
+ elixirJson: z.ZodEnum<{
3077
+ none: "none";
3078
+ jason: "jason";
3079
+ }>;
3080
+ elixirEmail: z.ZodEnum<{
3081
+ none: "none";
3082
+ swoosh: "swoosh";
3083
+ }>;
3084
+ elixirCaching: z.ZodEnum<{
3085
+ none: "none";
3086
+ cachex: "cachex";
3087
+ nebulex: "nebulex";
3088
+ }>;
3089
+ elixirObservability: z.ZodEnum<{
3090
+ none: "none";
3091
+ opentelemetry: "opentelemetry";
3092
+ telemetry: "telemetry";
3093
+ prom_ex: "prom_ex";
3094
+ }>;
3095
+ elixirTesting: z.ZodEnum<{
3096
+ none: "none";
3097
+ ex_unit: "ex_unit";
3098
+ mox: "mox";
3099
+ bypass: "bypass";
3100
+ wallaby: "wallaby";
3101
+ }>;
3102
+ elixirQuality: z.ZodEnum<{
3103
+ none: "none";
3104
+ credo: "credo";
3105
+ dialyxir: "dialyxir";
3106
+ sobelow: "sobelow";
3107
+ }>;
3108
+ elixirDeploy: z.ZodEnum<{
3109
+ none: "none";
3110
+ docker: "docker";
3111
+ fly: "fly";
3112
+ gigalixir: "gigalixir";
3113
+ "mix-release": "mix-release";
3114
+ }>;
2639
3115
  aiDocs: z.ZodArray<z.ZodEnum<{
2640
3116
  none: "none";
2641
3117
  "claude-md": "claude-md";
@@ -2648,10 +3124,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2648
3124
  createdAt: z.ZodString;
2649
3125
  ecosystem: z.ZodEnum<{
2650
3126
  typescript: "typescript";
3127
+ "react-native": "react-native";
2651
3128
  rust: "rust";
2652
3129
  python: "python";
2653
3130
  go: "go";
2654
3131
  java: "java";
3132
+ elixir: "elixir";
2655
3133
  }>;
2656
3134
  database: z.ZodEnum<{
2657
3135
  none: "none";
@@ -2699,6 +3177,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2699
3177
  "react-vite": "react-vite";
2700
3178
  "tanstack-start": "tanstack-start";
2701
3179
  next: "next";
3180
+ vinext: "vinext";
2702
3181
  nuxt: "nuxt";
2703
3182
  "native-bare": "native-bare";
2704
3183
  "native-uniwind": "native-uniwind";
@@ -2739,8 +3218,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2739
3218
  "docker-compose": "docker-compose";
2740
3219
  }>>;
2741
3220
  examples: z.ZodArray<z.ZodEnum<{
2742
- none: "none";
2743
3221
  ai: "ai";
3222
+ none: "none";
2744
3223
  "chat-sdk": "chat-sdk";
2745
3224
  "tanstack-showcase": "tanstack-showcase";
2746
3225
  }>>;
@@ -2833,8 +3312,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2833
3312
  "ai-cli": "ai-cli";
2834
3313
  }>;
2835
3314
  effect: z.ZodEnum<{
2836
- none: "none";
2837
3315
  effect: "effect";
3316
+ none: "none";
2838
3317
  "effect-full": "effect-full";
2839
3318
  }>;
2840
3319
  stateManagement: z.ZodEnum<{
@@ -2885,6 +3364,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2885
3364
  "postcss-only": "postcss-only";
2886
3365
  }>;
2887
3366
  uiLibrary: z.ZodEnum<{
3367
+ mui: "mui";
2888
3368
  none: "none";
2889
3369
  "shadcn-ui": "shadcn-ui";
2890
3370
  daisyui: "daisyui";
@@ -2894,7 +3374,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2894
3374
  "chakra-ui": "chakra-ui";
2895
3375
  nextui: "nextui";
2896
3376
  mantine: "mantine";
2897
- mui: "mui";
2898
3377
  antd: "antd";
2899
3378
  "base-ui": "base-ui";
2900
3379
  "ark-ui": "ark-ui";
@@ -3064,6 +3543,40 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3064
3543
  s3: "s3";
3065
3544
  r2: "r2";
3066
3545
  }>;
3546
+ mobileNavigation: z.ZodEnum<{
3547
+ none: "none";
3548
+ "expo-router": "expo-router";
3549
+ "react-navigation": "react-navigation";
3550
+ }>;
3551
+ mobileUI: z.ZodEnum<{
3552
+ none: "none";
3553
+ uniwind: "uniwind";
3554
+ tamagui: "tamagui";
3555
+ "gluestack-ui": "gluestack-ui";
3556
+ unistyles: "unistyles";
3557
+ }>;
3558
+ mobileStorage: z.ZodEnum<{
3559
+ none: "none";
3560
+ mmkv: "mmkv";
3561
+ }>;
3562
+ mobileTesting: z.ZodEnum<{
3563
+ none: "none";
3564
+ maestro: "maestro";
3565
+ "react-native-testing-library": "react-native-testing-library";
3566
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
3567
+ }>;
3568
+ mobilePush: z.ZodEnum<{
3569
+ none: "none";
3570
+ "expo-notifications": "expo-notifications";
3571
+ }>;
3572
+ mobileOTA: z.ZodEnum<{
3573
+ none: "none";
3574
+ "expo-updates": "expo-updates";
3575
+ }>;
3576
+ mobileDeepLinking: z.ZodEnum<{
3577
+ none: "none";
3578
+ "expo-linking": "expo-linking";
3579
+ }>;
3067
3580
  rustWebFramework: z.ZodEnum<{
3068
3581
  none: "none";
3069
3582
  axum: "axum";
@@ -3193,8 +3706,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3193
3706
  chi: "chi";
3194
3707
  }>;
3195
3708
  goOrm: z.ZodEnum<{
3196
- none: "none";
3197
3709
  gorm: "gorm";
3710
+ none: "none";
3198
3711
  sqlc: "sqlc";
3199
3712
  ent: "ent";
3200
3713
  }>;
@@ -3269,23 +3782,1612 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3269
3782
  archunit: "archunit";
3270
3783
  jqwik: "jqwik";
3271
3784
  }>>;
3272
- aiDocs: z.ZodArray<z.ZodEnum<{
3785
+ elixirWebFramework: z.ZodEnum<{
3273
3786
  none: "none";
3274
- "claude-md": "claude-md";
3275
- "agents-md": "agents-md";
3276
- cursorrules: "cursorrules";
3277
- }>>;
3278
- }, z.core.$strip>;
3279
- declare const BetterTStackConfigFileSchema: z.ZodObject<{
3280
- $schema: z.ZodOptional<z.ZodString>;
3281
- version: z.ZodString;
3787
+ phoenix: "phoenix";
3788
+ "phoenix-live-view": "phoenix-live-view";
3789
+ }>;
3790
+ elixirOrm: z.ZodEnum<{
3791
+ none: "none";
3792
+ ecto: "ecto";
3793
+ "ecto-sql": "ecto-sql";
3794
+ }>;
3795
+ elixirAuth: z.ZodEnum<{
3796
+ none: "none";
3797
+ "phx-gen-auth": "phx-gen-auth";
3798
+ ueberauth: "ueberauth";
3799
+ guardian: "guardian";
3800
+ }>;
3801
+ elixirApi: z.ZodEnum<{
3802
+ none: "none";
3803
+ rest: "rest";
3804
+ absinthe: "absinthe";
3805
+ }>;
3806
+ elixirRealtime: z.ZodEnum<{
3807
+ none: "none";
3808
+ channels: "channels";
3809
+ presence: "presence";
3810
+ pubsub: "pubsub";
3811
+ "live-view-streams": "live-view-streams";
3812
+ }>;
3813
+ elixirJobs: z.ZodEnum<{
3814
+ none: "none";
3815
+ oban: "oban";
3816
+ quantum: "quantum";
3817
+ }>;
3818
+ elixirValidation: z.ZodEnum<{
3819
+ none: "none";
3820
+ "ecto-changesets": "ecto-changesets";
3821
+ "nimble-options": "nimble-options";
3822
+ }>;
3823
+ elixirHttp: z.ZodEnum<{
3824
+ none: "none";
3825
+ req: "req";
3826
+ finch: "finch";
3827
+ }>;
3828
+ elixirJson: z.ZodEnum<{
3829
+ none: "none";
3830
+ jason: "jason";
3831
+ }>;
3832
+ elixirEmail: z.ZodEnum<{
3833
+ none: "none";
3834
+ swoosh: "swoosh";
3835
+ }>;
3836
+ elixirCaching: z.ZodEnum<{
3837
+ none: "none";
3838
+ cachex: "cachex";
3839
+ nebulex: "nebulex";
3840
+ }>;
3841
+ elixirObservability: z.ZodEnum<{
3842
+ none: "none";
3843
+ opentelemetry: "opentelemetry";
3844
+ telemetry: "telemetry";
3845
+ prom_ex: "prom_ex";
3846
+ }>;
3847
+ elixirTesting: z.ZodEnum<{
3848
+ none: "none";
3849
+ ex_unit: "ex_unit";
3850
+ mox: "mox";
3851
+ bypass: "bypass";
3852
+ wallaby: "wallaby";
3853
+ }>;
3854
+ elixirQuality: z.ZodEnum<{
3855
+ none: "none";
3856
+ credo: "credo";
3857
+ dialyxir: "dialyxir";
3858
+ sobelow: "sobelow";
3859
+ }>;
3860
+ elixirDeploy: z.ZodEnum<{
3861
+ none: "none";
3862
+ docker: "docker";
3863
+ fly: "fly";
3864
+ gigalixir: "gigalixir";
3865
+ "mix-release": "mix-release";
3866
+ }>;
3867
+ aiDocs: z.ZodArray<z.ZodEnum<{
3868
+ none: "none";
3869
+ "claude-md": "claude-md";
3870
+ "agents-md": "agents-md";
3871
+ cursorrules: "cursorrules";
3872
+ }>>;
3873
+ }, z.core.$strip>;
3874
+ declare const BetterFullstackConfigSchema: z.ZodObject<{
3875
+ version: z.ZodString;
3876
+ createdAt: z.ZodString;
3877
+ ecosystem: z.ZodEnum<{
3878
+ typescript: "typescript";
3879
+ "react-native": "react-native";
3880
+ rust: "rust";
3881
+ python: "python";
3882
+ go: "go";
3883
+ java: "java";
3884
+ elixir: "elixir";
3885
+ }>;
3886
+ database: z.ZodEnum<{
3887
+ none: "none";
3888
+ sqlite: "sqlite";
3889
+ postgres: "postgres";
3890
+ mysql: "mysql";
3891
+ mongodb: "mongodb";
3892
+ edgedb: "edgedb";
3893
+ redis: "redis";
3894
+ }>;
3895
+ orm: z.ZodEnum<{
3896
+ none: "none";
3897
+ drizzle: "drizzle";
3898
+ prisma: "prisma";
3899
+ mongoose: "mongoose";
3900
+ typeorm: "typeorm";
3901
+ kysely: "kysely";
3902
+ mikroorm: "mikroorm";
3903
+ sequelize: "sequelize";
3904
+ }>;
3905
+ backend: z.ZodEnum<{
3906
+ none: "none";
3907
+ hono: "hono";
3908
+ express: "express";
3909
+ fastify: "fastify";
3910
+ elysia: "elysia";
3911
+ fets: "fets";
3912
+ nestjs: "nestjs";
3913
+ adonisjs: "adonisjs";
3914
+ nitro: "nitro";
3915
+ encore: "encore";
3916
+ convex: "convex";
3917
+ self: "self";
3918
+ }>;
3919
+ runtime: z.ZodEnum<{
3920
+ none: "none";
3921
+ bun: "bun";
3922
+ node: "node";
3923
+ workers: "workers";
3924
+ }>;
3925
+ frontend: z.ZodArray<z.ZodEnum<{
3926
+ none: "none";
3927
+ "tanstack-router": "tanstack-router";
3928
+ "react-router": "react-router";
3929
+ "react-vite": "react-vite";
3930
+ "tanstack-start": "tanstack-start";
3931
+ next: "next";
3932
+ vinext: "vinext";
3933
+ nuxt: "nuxt";
3934
+ "native-bare": "native-bare";
3935
+ "native-uniwind": "native-uniwind";
3936
+ "native-unistyles": "native-unistyles";
3937
+ svelte: "svelte";
3938
+ solid: "solid";
3939
+ "solid-start": "solid-start";
3940
+ astro: "astro";
3941
+ qwik: "qwik";
3942
+ angular: "angular";
3943
+ redwood: "redwood";
3944
+ fresh: "fresh";
3945
+ }>>;
3946
+ addons: z.ZodArray<z.ZodEnum<{
3947
+ none: "none";
3948
+ pwa: "pwa";
3949
+ tauri: "tauri";
3950
+ starlight: "starlight";
3951
+ biome: "biome";
3952
+ lefthook: "lefthook";
3953
+ husky: "husky";
3954
+ ruler: "ruler";
3955
+ mcp: "mcp";
3956
+ skills: "skills";
3957
+ turborepo: "turborepo";
3958
+ fumadocs: "fumadocs";
3959
+ ultracite: "ultracite";
3960
+ oxlint: "oxlint";
3961
+ opentui: "opentui";
3962
+ wxt: "wxt";
3963
+ msw: "msw";
3964
+ storybook: "storybook";
3965
+ "tanstack-query": "tanstack-query";
3966
+ "tanstack-table": "tanstack-table";
3967
+ "tanstack-virtual": "tanstack-virtual";
3968
+ "tanstack-db": "tanstack-db";
3969
+ "tanstack-pacer": "tanstack-pacer";
3970
+ "docker-compose": "docker-compose";
3971
+ }>>;
3972
+ examples: z.ZodArray<z.ZodEnum<{
3973
+ ai: "ai";
3974
+ none: "none";
3975
+ "chat-sdk": "chat-sdk";
3976
+ "tanstack-showcase": "tanstack-showcase";
3977
+ }>>;
3978
+ auth: z.ZodEnum<{
3979
+ none: "none";
3980
+ "better-auth": "better-auth";
3981
+ "go-better-auth": "go-better-auth";
3982
+ clerk: "clerk";
3983
+ nextauth: "nextauth";
3984
+ "stack-auth": "stack-auth";
3985
+ "supabase-auth": "supabase-auth";
3986
+ auth0: "auth0";
3987
+ }>;
3988
+ payments: z.ZodEnum<{
3989
+ none: "none";
3990
+ polar: "polar";
3991
+ stripe: "stripe";
3992
+ "lemon-squeezy": "lemon-squeezy";
3993
+ paddle: "paddle";
3994
+ dodo: "dodo";
3995
+ }>;
3996
+ packageManager: z.ZodEnum<{
3997
+ bun: "bun";
3998
+ npm: "npm";
3999
+ pnpm: "pnpm";
4000
+ yarn: "yarn";
4001
+ }>;
4002
+ versionChannel: z.ZodEnum<{
4003
+ stable: "stable";
4004
+ latest: "latest";
4005
+ beta: "beta";
4006
+ }>;
4007
+ dbSetup: z.ZodEnum<{
4008
+ none: "none";
4009
+ turso: "turso";
4010
+ neon: "neon";
4011
+ "prisma-postgres": "prisma-postgres";
4012
+ planetscale: "planetscale";
4013
+ "mongodb-atlas": "mongodb-atlas";
4014
+ supabase: "supabase";
4015
+ upstash: "upstash";
4016
+ d1: "d1";
4017
+ docker: "docker";
4018
+ }>;
4019
+ api: z.ZodEnum<{
4020
+ none: "none";
4021
+ trpc: "trpc";
4022
+ orpc: "orpc";
4023
+ "ts-rest": "ts-rest";
4024
+ garph: "garph";
4025
+ "graphql-yoga": "graphql-yoga";
4026
+ }>;
4027
+ webDeploy: z.ZodEnum<{
4028
+ none: "none";
4029
+ docker: "docker";
4030
+ cloudflare: "cloudflare";
4031
+ fly: "fly";
4032
+ railway: "railway";
4033
+ sst: "sst";
4034
+ vercel: "vercel";
4035
+ }>;
4036
+ serverDeploy: z.ZodEnum<{
4037
+ none: "none";
4038
+ docker: "docker";
4039
+ cloudflare: "cloudflare";
4040
+ fly: "fly";
4041
+ railway: "railway";
4042
+ sst: "sst";
4043
+ vercel: "vercel";
4044
+ }>;
4045
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
4046
+ none: "none";
4047
+ svelte: "svelte";
4048
+ solid: "solid";
4049
+ react: "react";
4050
+ vue: "vue";
4051
+ }>>;
4052
+ ai: z.ZodEnum<{
4053
+ none: "none";
4054
+ "vercel-ai": "vercel-ai";
4055
+ mastra: "mastra";
4056
+ voltagent: "voltagent";
4057
+ langgraph: "langgraph";
4058
+ "openai-agents": "openai-agents";
4059
+ "google-adk": "google-adk";
4060
+ modelfusion: "modelfusion";
4061
+ langchain: "langchain";
4062
+ llamaindex: "llamaindex";
4063
+ "tanstack-ai": "tanstack-ai";
4064
+ "ai-cli": "ai-cli";
4065
+ }>;
4066
+ effect: z.ZodEnum<{
4067
+ effect: "effect";
4068
+ none: "none";
4069
+ "effect-full": "effect-full";
4070
+ }>;
4071
+ stateManagement: z.ZodEnum<{
4072
+ none: "none";
4073
+ zustand: "zustand";
4074
+ jotai: "jotai";
4075
+ nanostores: "nanostores";
4076
+ "redux-toolkit": "redux-toolkit";
4077
+ mobx: "mobx";
4078
+ xstate: "xstate";
4079
+ valtio: "valtio";
4080
+ "tanstack-store": "tanstack-store";
4081
+ "legend-state": "legend-state";
4082
+ }>;
4083
+ forms: z.ZodEnum<{
4084
+ none: "none";
4085
+ "tanstack-form": "tanstack-form";
4086
+ "react-hook-form": "react-hook-form";
4087
+ formik: "formik";
4088
+ "final-form": "final-form";
4089
+ conform: "conform";
4090
+ "modular-forms": "modular-forms";
4091
+ }>;
4092
+ testing: z.ZodEnum<{
4093
+ none: "none";
4094
+ vitest: "vitest";
4095
+ playwright: "playwright";
4096
+ "vitest-playwright": "vitest-playwright";
4097
+ jest: "jest";
4098
+ cypress: "cypress";
4099
+ }>;
4100
+ email: z.ZodEnum<{
4101
+ none: "none";
4102
+ "react-email": "react-email";
4103
+ resend: "resend";
4104
+ nodemailer: "nodemailer";
4105
+ postmark: "postmark";
4106
+ sendgrid: "sendgrid";
4107
+ "aws-ses": "aws-ses";
4108
+ mailgun: "mailgun";
4109
+ plunk: "plunk";
4110
+ }>;
4111
+ cssFramework: z.ZodEnum<{
4112
+ none: "none";
4113
+ tailwind: "tailwind";
4114
+ scss: "scss";
4115
+ less: "less";
4116
+ "postcss-only": "postcss-only";
4117
+ }>;
4118
+ uiLibrary: z.ZodEnum<{
4119
+ mui: "mui";
4120
+ none: "none";
4121
+ "shadcn-ui": "shadcn-ui";
4122
+ daisyui: "daisyui";
4123
+ "radix-ui": "radix-ui";
4124
+ "headless-ui": "headless-ui";
4125
+ "park-ui": "park-ui";
4126
+ "chakra-ui": "chakra-ui";
4127
+ nextui: "nextui";
4128
+ mantine: "mantine";
4129
+ antd: "antd";
4130
+ "base-ui": "base-ui";
4131
+ "ark-ui": "ark-ui";
4132
+ "react-aria": "react-aria";
4133
+ }>;
4134
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
4135
+ radix: "radix";
4136
+ base: "base";
4137
+ }>>;
4138
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
4139
+ vega: "vega";
4140
+ nova: "nova";
4141
+ maia: "maia";
4142
+ lyra: "lyra";
4143
+ mira: "mira";
4144
+ luma: "luma";
4145
+ sera: "sera";
4146
+ }>>;
4147
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
4148
+ lucide: "lucide";
4149
+ tabler: "tabler";
4150
+ hugeicons: "hugeicons";
4151
+ phosphor: "phosphor";
4152
+ remixicon: "remixicon";
4153
+ heroicons: "heroicons";
4154
+ "react-icons": "react-icons";
4155
+ }>>;
4156
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
4157
+ neutral: "neutral";
4158
+ stone: "stone";
4159
+ zinc: "zinc";
4160
+ gray: "gray";
4161
+ amber: "amber";
4162
+ blue: "blue";
4163
+ cyan: "cyan";
4164
+ emerald: "emerald";
4165
+ fuchsia: "fuchsia";
4166
+ green: "green";
4167
+ indigo: "indigo";
4168
+ lime: "lime";
4169
+ orange: "orange";
4170
+ pink: "pink";
4171
+ purple: "purple";
4172
+ red: "red";
4173
+ rose: "rose";
4174
+ sky: "sky";
4175
+ teal: "teal";
4176
+ violet: "violet";
4177
+ yellow: "yellow";
4178
+ }>>;
4179
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
4180
+ neutral: "neutral";
4181
+ stone: "stone";
4182
+ zinc: "zinc";
4183
+ gray: "gray";
4184
+ }>>;
4185
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
4186
+ inter: "inter";
4187
+ geist: "geist";
4188
+ "noto-sans": "noto-sans";
4189
+ "nunito-sans": "nunito-sans";
4190
+ figtree: "figtree";
4191
+ roboto: "roboto";
4192
+ raleway: "raleway";
4193
+ "dm-sans": "dm-sans";
4194
+ "public-sans": "public-sans";
4195
+ outfit: "outfit";
4196
+ "jetbrains-mono": "jetbrains-mono";
4197
+ "geist-mono": "geist-mono";
4198
+ }>>;
4199
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
4200
+ none: "none";
4201
+ default: "default";
4202
+ small: "small";
4203
+ medium: "medium";
4204
+ large: "large";
4205
+ }>>;
4206
+ validation: z.ZodEnum<{
4207
+ none: "none";
4208
+ zod: "zod";
4209
+ valibot: "valibot";
4210
+ arktype: "arktype";
4211
+ typebox: "typebox";
4212
+ typia: "typia";
4213
+ runtypes: "runtypes";
4214
+ "effect-schema": "effect-schema";
4215
+ }>;
4216
+ realtime: z.ZodEnum<{
4217
+ none: "none";
4218
+ "socket-io": "socket-io";
4219
+ partykit: "partykit";
4220
+ ably: "ably";
4221
+ pusher: "pusher";
4222
+ liveblocks: "liveblocks";
4223
+ yjs: "yjs";
4224
+ }>;
4225
+ jobQueue: z.ZodEnum<{
4226
+ none: "none";
4227
+ bullmq: "bullmq";
4228
+ "trigger-dev": "trigger-dev";
4229
+ inngest: "inngest";
4230
+ temporal: "temporal";
4231
+ }>;
4232
+ animation: z.ZodEnum<{
4233
+ none: "none";
4234
+ "framer-motion": "framer-motion";
4235
+ gsap: "gsap";
4236
+ "react-spring": "react-spring";
4237
+ "auto-animate": "auto-animate";
4238
+ lottie: "lottie";
4239
+ }>;
4240
+ fileUpload: z.ZodEnum<{
4241
+ none: "none";
4242
+ uploadthing: "uploadthing";
4243
+ filepond: "filepond";
4244
+ uppy: "uppy";
4245
+ }>;
4246
+ logging: z.ZodEnum<{
4247
+ none: "none";
4248
+ pino: "pino";
4249
+ winston: "winston";
4250
+ }>;
4251
+ observability: z.ZodEnum<{
4252
+ none: "none";
4253
+ opentelemetry: "opentelemetry";
4254
+ sentry: "sentry";
4255
+ grafana: "grafana";
4256
+ }>;
4257
+ featureFlags: z.ZodEnum<{
4258
+ none: "none";
4259
+ growthbook: "growthbook";
4260
+ posthog: "posthog";
4261
+ launchdarkly: "launchdarkly";
4262
+ flagsmith: "flagsmith";
4263
+ unleash: "unleash";
4264
+ }>;
4265
+ analytics: z.ZodEnum<{
4266
+ none: "none";
4267
+ plausible: "plausible";
4268
+ umami: "umami";
4269
+ }>;
4270
+ cms: z.ZodEnum<{
4271
+ none: "none";
4272
+ payload: "payload";
4273
+ sanity: "sanity";
4274
+ strapi: "strapi";
4275
+ tinacms: "tinacms";
4276
+ }>;
4277
+ caching: z.ZodEnum<{
4278
+ none: "none";
4279
+ "upstash-redis": "upstash-redis";
4280
+ }>;
4281
+ i18n: z.ZodEnum<{
4282
+ none: "none";
4283
+ i18next: "i18next";
4284
+ "next-intl": "next-intl";
4285
+ }>;
4286
+ search: z.ZodEnum<{
4287
+ none: "none";
4288
+ meilisearch: "meilisearch";
4289
+ typesense: "typesense";
4290
+ elasticsearch: "elasticsearch";
4291
+ algolia: "algolia";
4292
+ }>;
4293
+ fileStorage: z.ZodEnum<{
4294
+ none: "none";
4295
+ s3: "s3";
4296
+ r2: "r2";
4297
+ }>;
4298
+ mobileNavigation: z.ZodEnum<{
4299
+ none: "none";
4300
+ "expo-router": "expo-router";
4301
+ "react-navigation": "react-navigation";
4302
+ }>;
4303
+ mobileUI: z.ZodEnum<{
4304
+ none: "none";
4305
+ uniwind: "uniwind";
4306
+ tamagui: "tamagui";
4307
+ "gluestack-ui": "gluestack-ui";
4308
+ unistyles: "unistyles";
4309
+ }>;
4310
+ mobileStorage: z.ZodEnum<{
4311
+ none: "none";
4312
+ mmkv: "mmkv";
4313
+ }>;
4314
+ mobileTesting: z.ZodEnum<{
4315
+ none: "none";
4316
+ maestro: "maestro";
4317
+ "react-native-testing-library": "react-native-testing-library";
4318
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
4319
+ }>;
4320
+ mobilePush: z.ZodEnum<{
4321
+ none: "none";
4322
+ "expo-notifications": "expo-notifications";
4323
+ }>;
4324
+ mobileOTA: z.ZodEnum<{
4325
+ none: "none";
4326
+ "expo-updates": "expo-updates";
4327
+ }>;
4328
+ mobileDeepLinking: z.ZodEnum<{
4329
+ none: "none";
4330
+ "expo-linking": "expo-linking";
4331
+ }>;
4332
+ rustWebFramework: z.ZodEnum<{
4333
+ none: "none";
4334
+ axum: "axum";
4335
+ "actix-web": "actix-web";
4336
+ rocket: "rocket";
4337
+ }>;
4338
+ rustFrontend: z.ZodEnum<{
4339
+ none: "none";
4340
+ leptos: "leptos";
4341
+ dioxus: "dioxus";
4342
+ }>;
4343
+ rustOrm: z.ZodEnum<{
4344
+ none: "none";
4345
+ "sea-orm": "sea-orm";
4346
+ sqlx: "sqlx";
4347
+ diesel: "diesel";
4348
+ }>;
4349
+ rustApi: z.ZodEnum<{
4350
+ none: "none";
4351
+ tonic: "tonic";
4352
+ "async-graphql": "async-graphql";
4353
+ }>;
4354
+ rustCli: z.ZodEnum<{
4355
+ none: "none";
4356
+ clap: "clap";
4357
+ ratatui: "ratatui";
4358
+ }>;
4359
+ rustLibraries: z.ZodArray<z.ZodEnum<{
4360
+ none: "none";
4361
+ serde: "serde";
4362
+ uuid: "uuid";
4363
+ chrono: "chrono";
4364
+ reqwest: "reqwest";
4365
+ config: "config";
4366
+ dashmap: "dashmap";
4367
+ "parking-lot": "parking-lot";
4368
+ secrecy: "secrecy";
4369
+ "tokio-util": "tokio-util";
4370
+ utoipa: "utoipa";
4371
+ validator: "validator";
4372
+ jsonwebtoken: "jsonwebtoken";
4373
+ argon2: "argon2";
4374
+ "tokio-test": "tokio-test";
4375
+ mockall: "mockall";
4376
+ proptest: "proptest";
4377
+ insta: "insta";
4378
+ }>>;
4379
+ rustLogging: z.ZodEnum<{
4380
+ none: "none";
4381
+ tracing: "tracing";
4382
+ "env-logger": "env-logger";
4383
+ }>;
4384
+ rustErrorHandling: z.ZodEnum<{
4385
+ none: "none";
4386
+ "anyhow-thiserror": "anyhow-thiserror";
4387
+ eyre: "eyre";
4388
+ }>;
4389
+ rustCaching: z.ZodEnum<{
4390
+ none: "none";
4391
+ redis: "redis";
4392
+ moka: "moka";
4393
+ }>;
4394
+ rustAuth: z.ZodEnum<{
4395
+ none: "none";
4396
+ oauth2: "oauth2";
4397
+ }>;
4398
+ pythonWebFramework: z.ZodEnum<{
4399
+ none: "none";
4400
+ fastapi: "fastapi";
4401
+ django: "django";
4402
+ flask: "flask";
4403
+ litestar: "litestar";
4404
+ }>;
4405
+ pythonOrm: z.ZodEnum<{
4406
+ none: "none";
4407
+ sqlalchemy: "sqlalchemy";
4408
+ sqlmodel: "sqlmodel";
4409
+ "tortoise-orm": "tortoise-orm";
4410
+ }>;
4411
+ pythonValidation: z.ZodEnum<{
4412
+ none: "none";
4413
+ pydantic: "pydantic";
4414
+ }>;
4415
+ pythonAi: z.ZodArray<z.ZodEnum<{
4416
+ none: "none";
4417
+ langgraph: "langgraph";
4418
+ langchain: "langchain";
4419
+ llamaindex: "llamaindex";
4420
+ "openai-sdk": "openai-sdk";
4421
+ "anthropic-sdk": "anthropic-sdk";
4422
+ crewai: "crewai";
4423
+ haystack: "haystack";
4424
+ }>>;
4425
+ pythonAuth: z.ZodEnum<{
4426
+ none: "none";
4427
+ authlib: "authlib";
4428
+ jwt: "jwt";
4429
+ }>;
4430
+ pythonApi: z.ZodOptional<z.ZodEnum<{
4431
+ none: "none";
4432
+ "django-rest-framework": "django-rest-framework";
4433
+ "django-ninja": "django-ninja";
4434
+ }>>;
4435
+ pythonTaskQueue: z.ZodEnum<{
4436
+ none: "none";
4437
+ celery: "celery";
4438
+ rq: "rq";
4439
+ dramatiq: "dramatiq";
4440
+ huey: "huey";
4441
+ }>;
4442
+ pythonGraphql: z.ZodEnum<{
4443
+ none: "none";
4444
+ strawberry: "strawberry";
4445
+ ariadne: "ariadne";
4446
+ }>;
4447
+ pythonQuality: z.ZodEnum<{
4448
+ none: "none";
4449
+ ruff: "ruff";
4450
+ mypy: "mypy";
4451
+ pyright: "pyright";
4452
+ }>;
4453
+ goWebFramework: z.ZodEnum<{
4454
+ none: "none";
4455
+ gin: "gin";
4456
+ echo: "echo";
4457
+ fiber: "fiber";
4458
+ chi: "chi";
4459
+ }>;
4460
+ goOrm: z.ZodEnum<{
4461
+ gorm: "gorm";
4462
+ none: "none";
4463
+ sqlc: "sqlc";
4464
+ ent: "ent";
4465
+ }>;
4466
+ goApi: z.ZodEnum<{
4467
+ none: "none";
4468
+ "grpc-go": "grpc-go";
4469
+ }>;
4470
+ goCli: z.ZodEnum<{
4471
+ none: "none";
4472
+ cobra: "cobra";
4473
+ bubbletea: "bubbletea";
4474
+ "urfave-cli": "urfave-cli";
4475
+ }>;
4476
+ goLogging: z.ZodEnum<{
4477
+ none: "none";
4478
+ zap: "zap";
4479
+ zerolog: "zerolog";
4480
+ slog: "slog";
4481
+ logrus: "logrus";
4482
+ }>;
4483
+ goAuth: z.ZodEnum<{
4484
+ none: "none";
4485
+ jwt: "jwt";
4486
+ casbin: "casbin";
4487
+ }>;
4488
+ javaWebFramework: z.ZodEnum<{
4489
+ none: "none";
4490
+ "spring-boot": "spring-boot";
4491
+ quarkus: "quarkus";
4492
+ }>;
4493
+ javaBuildTool: z.ZodEnum<{
4494
+ none: "none";
4495
+ maven: "maven";
4496
+ gradle: "gradle";
4497
+ }>;
4498
+ javaOrm: z.ZodEnum<{
4499
+ none: "none";
4500
+ "spring-data-jpa": "spring-data-jpa";
4501
+ }>;
4502
+ javaAuth: z.ZodEnum<{
4503
+ none: "none";
4504
+ "spring-security": "spring-security";
4505
+ }>;
4506
+ javaLibraries: z.ZodArray<z.ZodEnum<{
4507
+ none: "none";
4508
+ "spring-actuator": "spring-actuator";
4509
+ "spring-validation": "spring-validation";
4510
+ flyway: "flyway";
4511
+ liquibase: "liquibase";
4512
+ "springdoc-openapi": "springdoc-openapi";
4513
+ lombok: "lombok";
4514
+ mapstruct: "mapstruct";
4515
+ caffeine: "caffeine";
4516
+ resilience4j: "resilience4j";
4517
+ "spring-webflux": "spring-webflux";
4518
+ "spring-batch": "spring-batch";
4519
+ "spring-kafka": "spring-kafka";
4520
+ "spring-mail": "spring-mail";
4521
+ "spring-devtools": "spring-devtools";
4522
+ "micrometer-prometheus": "micrometer-prometheus";
4523
+ thymeleaf: "thymeleaf";
4524
+ }>>;
4525
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
4526
+ none: "none";
4527
+ junit5: "junit5";
4528
+ mockito: "mockito";
4529
+ testcontainers: "testcontainers";
4530
+ assertj: "assertj";
4531
+ "rest-assured": "rest-assured";
4532
+ wiremock: "wiremock";
4533
+ awaitility: "awaitility";
4534
+ archunit: "archunit";
4535
+ jqwik: "jqwik";
4536
+ }>>;
4537
+ elixirWebFramework: z.ZodEnum<{
4538
+ none: "none";
4539
+ phoenix: "phoenix";
4540
+ "phoenix-live-view": "phoenix-live-view";
4541
+ }>;
4542
+ elixirOrm: z.ZodEnum<{
4543
+ none: "none";
4544
+ ecto: "ecto";
4545
+ "ecto-sql": "ecto-sql";
4546
+ }>;
4547
+ elixirAuth: z.ZodEnum<{
4548
+ none: "none";
4549
+ "phx-gen-auth": "phx-gen-auth";
4550
+ ueberauth: "ueberauth";
4551
+ guardian: "guardian";
4552
+ }>;
4553
+ elixirApi: z.ZodEnum<{
4554
+ none: "none";
4555
+ rest: "rest";
4556
+ absinthe: "absinthe";
4557
+ }>;
4558
+ elixirRealtime: z.ZodEnum<{
4559
+ none: "none";
4560
+ channels: "channels";
4561
+ presence: "presence";
4562
+ pubsub: "pubsub";
4563
+ "live-view-streams": "live-view-streams";
4564
+ }>;
4565
+ elixirJobs: z.ZodEnum<{
4566
+ none: "none";
4567
+ oban: "oban";
4568
+ quantum: "quantum";
4569
+ }>;
4570
+ elixirValidation: z.ZodEnum<{
4571
+ none: "none";
4572
+ "ecto-changesets": "ecto-changesets";
4573
+ "nimble-options": "nimble-options";
4574
+ }>;
4575
+ elixirHttp: z.ZodEnum<{
4576
+ none: "none";
4577
+ req: "req";
4578
+ finch: "finch";
4579
+ }>;
4580
+ elixirJson: z.ZodEnum<{
4581
+ none: "none";
4582
+ jason: "jason";
4583
+ }>;
4584
+ elixirEmail: z.ZodEnum<{
4585
+ none: "none";
4586
+ swoosh: "swoosh";
4587
+ }>;
4588
+ elixirCaching: z.ZodEnum<{
4589
+ none: "none";
4590
+ cachex: "cachex";
4591
+ nebulex: "nebulex";
4592
+ }>;
4593
+ elixirObservability: z.ZodEnum<{
4594
+ none: "none";
4595
+ opentelemetry: "opentelemetry";
4596
+ telemetry: "telemetry";
4597
+ prom_ex: "prom_ex";
4598
+ }>;
4599
+ elixirTesting: z.ZodEnum<{
4600
+ none: "none";
4601
+ ex_unit: "ex_unit";
4602
+ mox: "mox";
4603
+ bypass: "bypass";
4604
+ wallaby: "wallaby";
4605
+ }>;
4606
+ elixirQuality: z.ZodEnum<{
4607
+ none: "none";
4608
+ credo: "credo";
4609
+ dialyxir: "dialyxir";
4610
+ sobelow: "sobelow";
4611
+ }>;
4612
+ elixirDeploy: z.ZodEnum<{
4613
+ none: "none";
4614
+ docker: "docker";
4615
+ fly: "fly";
4616
+ gigalixir: "gigalixir";
4617
+ "mix-release": "mix-release";
4618
+ }>;
4619
+ aiDocs: z.ZodArray<z.ZodEnum<{
4620
+ none: "none";
4621
+ "claude-md": "claude-md";
4622
+ "agents-md": "agents-md";
4623
+ cursorrules: "cursorrules";
4624
+ }>>;
4625
+ }, z.core.$strip>;
4626
+ declare const BetterTStackConfigFileSchema: z.ZodObject<{
4627
+ $schema: z.ZodOptional<z.ZodString>;
4628
+ version: z.ZodString;
4629
+ createdAt: z.ZodString;
4630
+ ecosystem: z.ZodEnum<{
4631
+ typescript: "typescript";
4632
+ "react-native": "react-native";
4633
+ rust: "rust";
4634
+ python: "python";
4635
+ go: "go";
4636
+ java: "java";
4637
+ elixir: "elixir";
4638
+ }>;
4639
+ database: z.ZodEnum<{
4640
+ none: "none";
4641
+ sqlite: "sqlite";
4642
+ postgres: "postgres";
4643
+ mysql: "mysql";
4644
+ mongodb: "mongodb";
4645
+ edgedb: "edgedb";
4646
+ redis: "redis";
4647
+ }>;
4648
+ orm: z.ZodEnum<{
4649
+ none: "none";
4650
+ drizzle: "drizzle";
4651
+ prisma: "prisma";
4652
+ mongoose: "mongoose";
4653
+ typeorm: "typeorm";
4654
+ kysely: "kysely";
4655
+ mikroorm: "mikroorm";
4656
+ sequelize: "sequelize";
4657
+ }>;
4658
+ backend: z.ZodEnum<{
4659
+ none: "none";
4660
+ hono: "hono";
4661
+ express: "express";
4662
+ fastify: "fastify";
4663
+ elysia: "elysia";
4664
+ fets: "fets";
4665
+ nestjs: "nestjs";
4666
+ adonisjs: "adonisjs";
4667
+ nitro: "nitro";
4668
+ encore: "encore";
4669
+ convex: "convex";
4670
+ self: "self";
4671
+ }>;
4672
+ runtime: z.ZodEnum<{
4673
+ none: "none";
4674
+ bun: "bun";
4675
+ node: "node";
4676
+ workers: "workers";
4677
+ }>;
4678
+ frontend: z.ZodArray<z.ZodEnum<{
4679
+ none: "none";
4680
+ "tanstack-router": "tanstack-router";
4681
+ "react-router": "react-router";
4682
+ "react-vite": "react-vite";
4683
+ "tanstack-start": "tanstack-start";
4684
+ next: "next";
4685
+ vinext: "vinext";
4686
+ nuxt: "nuxt";
4687
+ "native-bare": "native-bare";
4688
+ "native-uniwind": "native-uniwind";
4689
+ "native-unistyles": "native-unistyles";
4690
+ svelte: "svelte";
4691
+ solid: "solid";
4692
+ "solid-start": "solid-start";
4693
+ astro: "astro";
4694
+ qwik: "qwik";
4695
+ angular: "angular";
4696
+ redwood: "redwood";
4697
+ fresh: "fresh";
4698
+ }>>;
4699
+ addons: z.ZodArray<z.ZodEnum<{
4700
+ none: "none";
4701
+ pwa: "pwa";
4702
+ tauri: "tauri";
4703
+ starlight: "starlight";
4704
+ biome: "biome";
4705
+ lefthook: "lefthook";
4706
+ husky: "husky";
4707
+ ruler: "ruler";
4708
+ mcp: "mcp";
4709
+ skills: "skills";
4710
+ turborepo: "turborepo";
4711
+ fumadocs: "fumadocs";
4712
+ ultracite: "ultracite";
4713
+ oxlint: "oxlint";
4714
+ opentui: "opentui";
4715
+ wxt: "wxt";
4716
+ msw: "msw";
4717
+ storybook: "storybook";
4718
+ "tanstack-query": "tanstack-query";
4719
+ "tanstack-table": "tanstack-table";
4720
+ "tanstack-virtual": "tanstack-virtual";
4721
+ "tanstack-db": "tanstack-db";
4722
+ "tanstack-pacer": "tanstack-pacer";
4723
+ "docker-compose": "docker-compose";
4724
+ }>>;
4725
+ examples: z.ZodArray<z.ZodEnum<{
4726
+ ai: "ai";
4727
+ none: "none";
4728
+ "chat-sdk": "chat-sdk";
4729
+ "tanstack-showcase": "tanstack-showcase";
4730
+ }>>;
4731
+ auth: z.ZodEnum<{
4732
+ none: "none";
4733
+ "better-auth": "better-auth";
4734
+ "go-better-auth": "go-better-auth";
4735
+ clerk: "clerk";
4736
+ nextauth: "nextauth";
4737
+ "stack-auth": "stack-auth";
4738
+ "supabase-auth": "supabase-auth";
4739
+ auth0: "auth0";
4740
+ }>;
4741
+ payments: z.ZodEnum<{
4742
+ none: "none";
4743
+ polar: "polar";
4744
+ stripe: "stripe";
4745
+ "lemon-squeezy": "lemon-squeezy";
4746
+ paddle: "paddle";
4747
+ dodo: "dodo";
4748
+ }>;
4749
+ packageManager: z.ZodEnum<{
4750
+ bun: "bun";
4751
+ npm: "npm";
4752
+ pnpm: "pnpm";
4753
+ yarn: "yarn";
4754
+ }>;
4755
+ versionChannel: z.ZodEnum<{
4756
+ stable: "stable";
4757
+ latest: "latest";
4758
+ beta: "beta";
4759
+ }>;
4760
+ dbSetup: z.ZodEnum<{
4761
+ none: "none";
4762
+ turso: "turso";
4763
+ neon: "neon";
4764
+ "prisma-postgres": "prisma-postgres";
4765
+ planetscale: "planetscale";
4766
+ "mongodb-atlas": "mongodb-atlas";
4767
+ supabase: "supabase";
4768
+ upstash: "upstash";
4769
+ d1: "d1";
4770
+ docker: "docker";
4771
+ }>;
4772
+ api: z.ZodEnum<{
4773
+ none: "none";
4774
+ trpc: "trpc";
4775
+ orpc: "orpc";
4776
+ "ts-rest": "ts-rest";
4777
+ garph: "garph";
4778
+ "graphql-yoga": "graphql-yoga";
4779
+ }>;
4780
+ webDeploy: z.ZodEnum<{
4781
+ none: "none";
4782
+ docker: "docker";
4783
+ cloudflare: "cloudflare";
4784
+ fly: "fly";
4785
+ railway: "railway";
4786
+ sst: "sst";
4787
+ vercel: "vercel";
4788
+ }>;
4789
+ serverDeploy: z.ZodEnum<{
4790
+ none: "none";
4791
+ docker: "docker";
4792
+ cloudflare: "cloudflare";
4793
+ fly: "fly";
4794
+ railway: "railway";
4795
+ sst: "sst";
4796
+ vercel: "vercel";
4797
+ }>;
4798
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
4799
+ none: "none";
4800
+ svelte: "svelte";
4801
+ solid: "solid";
4802
+ react: "react";
4803
+ vue: "vue";
4804
+ }>>;
4805
+ ai: z.ZodEnum<{
4806
+ none: "none";
4807
+ "vercel-ai": "vercel-ai";
4808
+ mastra: "mastra";
4809
+ voltagent: "voltagent";
4810
+ langgraph: "langgraph";
4811
+ "openai-agents": "openai-agents";
4812
+ "google-adk": "google-adk";
4813
+ modelfusion: "modelfusion";
4814
+ langchain: "langchain";
4815
+ llamaindex: "llamaindex";
4816
+ "tanstack-ai": "tanstack-ai";
4817
+ "ai-cli": "ai-cli";
4818
+ }>;
4819
+ effect: z.ZodEnum<{
4820
+ effect: "effect";
4821
+ none: "none";
4822
+ "effect-full": "effect-full";
4823
+ }>;
4824
+ stateManagement: z.ZodEnum<{
4825
+ none: "none";
4826
+ zustand: "zustand";
4827
+ jotai: "jotai";
4828
+ nanostores: "nanostores";
4829
+ "redux-toolkit": "redux-toolkit";
4830
+ mobx: "mobx";
4831
+ xstate: "xstate";
4832
+ valtio: "valtio";
4833
+ "tanstack-store": "tanstack-store";
4834
+ "legend-state": "legend-state";
4835
+ }>;
4836
+ forms: z.ZodEnum<{
4837
+ none: "none";
4838
+ "tanstack-form": "tanstack-form";
4839
+ "react-hook-form": "react-hook-form";
4840
+ formik: "formik";
4841
+ "final-form": "final-form";
4842
+ conform: "conform";
4843
+ "modular-forms": "modular-forms";
4844
+ }>;
4845
+ testing: z.ZodEnum<{
4846
+ none: "none";
4847
+ vitest: "vitest";
4848
+ playwright: "playwright";
4849
+ "vitest-playwright": "vitest-playwright";
4850
+ jest: "jest";
4851
+ cypress: "cypress";
4852
+ }>;
4853
+ email: z.ZodEnum<{
4854
+ none: "none";
4855
+ "react-email": "react-email";
4856
+ resend: "resend";
4857
+ nodemailer: "nodemailer";
4858
+ postmark: "postmark";
4859
+ sendgrid: "sendgrid";
4860
+ "aws-ses": "aws-ses";
4861
+ mailgun: "mailgun";
4862
+ plunk: "plunk";
4863
+ }>;
4864
+ cssFramework: z.ZodEnum<{
4865
+ none: "none";
4866
+ tailwind: "tailwind";
4867
+ scss: "scss";
4868
+ less: "less";
4869
+ "postcss-only": "postcss-only";
4870
+ }>;
4871
+ uiLibrary: z.ZodEnum<{
4872
+ mui: "mui";
4873
+ none: "none";
4874
+ "shadcn-ui": "shadcn-ui";
4875
+ daisyui: "daisyui";
4876
+ "radix-ui": "radix-ui";
4877
+ "headless-ui": "headless-ui";
4878
+ "park-ui": "park-ui";
4879
+ "chakra-ui": "chakra-ui";
4880
+ nextui: "nextui";
4881
+ mantine: "mantine";
4882
+ antd: "antd";
4883
+ "base-ui": "base-ui";
4884
+ "ark-ui": "ark-ui";
4885
+ "react-aria": "react-aria";
4886
+ }>;
4887
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
4888
+ radix: "radix";
4889
+ base: "base";
4890
+ }>>;
4891
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
4892
+ vega: "vega";
4893
+ nova: "nova";
4894
+ maia: "maia";
4895
+ lyra: "lyra";
4896
+ mira: "mira";
4897
+ luma: "luma";
4898
+ sera: "sera";
4899
+ }>>;
4900
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
4901
+ lucide: "lucide";
4902
+ tabler: "tabler";
4903
+ hugeicons: "hugeicons";
4904
+ phosphor: "phosphor";
4905
+ remixicon: "remixicon";
4906
+ heroicons: "heroicons";
4907
+ "react-icons": "react-icons";
4908
+ }>>;
4909
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
4910
+ neutral: "neutral";
4911
+ stone: "stone";
4912
+ zinc: "zinc";
4913
+ gray: "gray";
4914
+ amber: "amber";
4915
+ blue: "blue";
4916
+ cyan: "cyan";
4917
+ emerald: "emerald";
4918
+ fuchsia: "fuchsia";
4919
+ green: "green";
4920
+ indigo: "indigo";
4921
+ lime: "lime";
4922
+ orange: "orange";
4923
+ pink: "pink";
4924
+ purple: "purple";
4925
+ red: "red";
4926
+ rose: "rose";
4927
+ sky: "sky";
4928
+ teal: "teal";
4929
+ violet: "violet";
4930
+ yellow: "yellow";
4931
+ }>>;
4932
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
4933
+ neutral: "neutral";
4934
+ stone: "stone";
4935
+ zinc: "zinc";
4936
+ gray: "gray";
4937
+ }>>;
4938
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
4939
+ inter: "inter";
4940
+ geist: "geist";
4941
+ "noto-sans": "noto-sans";
4942
+ "nunito-sans": "nunito-sans";
4943
+ figtree: "figtree";
4944
+ roboto: "roboto";
4945
+ raleway: "raleway";
4946
+ "dm-sans": "dm-sans";
4947
+ "public-sans": "public-sans";
4948
+ outfit: "outfit";
4949
+ "jetbrains-mono": "jetbrains-mono";
4950
+ "geist-mono": "geist-mono";
4951
+ }>>;
4952
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
4953
+ none: "none";
4954
+ default: "default";
4955
+ small: "small";
4956
+ medium: "medium";
4957
+ large: "large";
4958
+ }>>;
4959
+ validation: z.ZodEnum<{
4960
+ none: "none";
4961
+ zod: "zod";
4962
+ valibot: "valibot";
4963
+ arktype: "arktype";
4964
+ typebox: "typebox";
4965
+ typia: "typia";
4966
+ runtypes: "runtypes";
4967
+ "effect-schema": "effect-schema";
4968
+ }>;
4969
+ realtime: z.ZodEnum<{
4970
+ none: "none";
4971
+ "socket-io": "socket-io";
4972
+ partykit: "partykit";
4973
+ ably: "ably";
4974
+ pusher: "pusher";
4975
+ liveblocks: "liveblocks";
4976
+ yjs: "yjs";
4977
+ }>;
4978
+ jobQueue: z.ZodEnum<{
4979
+ none: "none";
4980
+ bullmq: "bullmq";
4981
+ "trigger-dev": "trigger-dev";
4982
+ inngest: "inngest";
4983
+ temporal: "temporal";
4984
+ }>;
4985
+ animation: z.ZodEnum<{
4986
+ none: "none";
4987
+ "framer-motion": "framer-motion";
4988
+ gsap: "gsap";
4989
+ "react-spring": "react-spring";
4990
+ "auto-animate": "auto-animate";
4991
+ lottie: "lottie";
4992
+ }>;
4993
+ fileUpload: z.ZodEnum<{
4994
+ none: "none";
4995
+ uploadthing: "uploadthing";
4996
+ filepond: "filepond";
4997
+ uppy: "uppy";
4998
+ }>;
4999
+ logging: z.ZodEnum<{
5000
+ none: "none";
5001
+ pino: "pino";
5002
+ winston: "winston";
5003
+ }>;
5004
+ observability: z.ZodEnum<{
5005
+ none: "none";
5006
+ opentelemetry: "opentelemetry";
5007
+ sentry: "sentry";
5008
+ grafana: "grafana";
5009
+ }>;
5010
+ featureFlags: z.ZodEnum<{
5011
+ none: "none";
5012
+ growthbook: "growthbook";
5013
+ posthog: "posthog";
5014
+ launchdarkly: "launchdarkly";
5015
+ flagsmith: "flagsmith";
5016
+ unleash: "unleash";
5017
+ }>;
5018
+ analytics: z.ZodEnum<{
5019
+ none: "none";
5020
+ plausible: "plausible";
5021
+ umami: "umami";
5022
+ }>;
5023
+ cms: z.ZodEnum<{
5024
+ none: "none";
5025
+ payload: "payload";
5026
+ sanity: "sanity";
5027
+ strapi: "strapi";
5028
+ tinacms: "tinacms";
5029
+ }>;
5030
+ caching: z.ZodEnum<{
5031
+ none: "none";
5032
+ "upstash-redis": "upstash-redis";
5033
+ }>;
5034
+ i18n: z.ZodEnum<{
5035
+ none: "none";
5036
+ i18next: "i18next";
5037
+ "next-intl": "next-intl";
5038
+ }>;
5039
+ search: z.ZodEnum<{
5040
+ none: "none";
5041
+ meilisearch: "meilisearch";
5042
+ typesense: "typesense";
5043
+ elasticsearch: "elasticsearch";
5044
+ algolia: "algolia";
5045
+ }>;
5046
+ fileStorage: z.ZodEnum<{
5047
+ none: "none";
5048
+ s3: "s3";
5049
+ r2: "r2";
5050
+ }>;
5051
+ mobileNavigation: z.ZodEnum<{
5052
+ none: "none";
5053
+ "expo-router": "expo-router";
5054
+ "react-navigation": "react-navigation";
5055
+ }>;
5056
+ mobileUI: z.ZodEnum<{
5057
+ none: "none";
5058
+ uniwind: "uniwind";
5059
+ tamagui: "tamagui";
5060
+ "gluestack-ui": "gluestack-ui";
5061
+ unistyles: "unistyles";
5062
+ }>;
5063
+ mobileStorage: z.ZodEnum<{
5064
+ none: "none";
5065
+ mmkv: "mmkv";
5066
+ }>;
5067
+ mobileTesting: z.ZodEnum<{
5068
+ none: "none";
5069
+ maestro: "maestro";
5070
+ "react-native-testing-library": "react-native-testing-library";
5071
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
5072
+ }>;
5073
+ mobilePush: z.ZodEnum<{
5074
+ none: "none";
5075
+ "expo-notifications": "expo-notifications";
5076
+ }>;
5077
+ mobileOTA: z.ZodEnum<{
5078
+ none: "none";
5079
+ "expo-updates": "expo-updates";
5080
+ }>;
5081
+ mobileDeepLinking: z.ZodEnum<{
5082
+ none: "none";
5083
+ "expo-linking": "expo-linking";
5084
+ }>;
5085
+ rustWebFramework: z.ZodEnum<{
5086
+ none: "none";
5087
+ axum: "axum";
5088
+ "actix-web": "actix-web";
5089
+ rocket: "rocket";
5090
+ }>;
5091
+ rustFrontend: z.ZodEnum<{
5092
+ none: "none";
5093
+ leptos: "leptos";
5094
+ dioxus: "dioxus";
5095
+ }>;
5096
+ rustOrm: z.ZodEnum<{
5097
+ none: "none";
5098
+ "sea-orm": "sea-orm";
5099
+ sqlx: "sqlx";
5100
+ diesel: "diesel";
5101
+ }>;
5102
+ rustApi: z.ZodEnum<{
5103
+ none: "none";
5104
+ tonic: "tonic";
5105
+ "async-graphql": "async-graphql";
5106
+ }>;
5107
+ rustCli: z.ZodEnum<{
5108
+ none: "none";
5109
+ clap: "clap";
5110
+ ratatui: "ratatui";
5111
+ }>;
5112
+ rustLibraries: z.ZodArray<z.ZodEnum<{
5113
+ none: "none";
5114
+ serde: "serde";
5115
+ uuid: "uuid";
5116
+ chrono: "chrono";
5117
+ reqwest: "reqwest";
5118
+ config: "config";
5119
+ dashmap: "dashmap";
5120
+ "parking-lot": "parking-lot";
5121
+ secrecy: "secrecy";
5122
+ "tokio-util": "tokio-util";
5123
+ utoipa: "utoipa";
5124
+ validator: "validator";
5125
+ jsonwebtoken: "jsonwebtoken";
5126
+ argon2: "argon2";
5127
+ "tokio-test": "tokio-test";
5128
+ mockall: "mockall";
5129
+ proptest: "proptest";
5130
+ insta: "insta";
5131
+ }>>;
5132
+ rustLogging: z.ZodEnum<{
5133
+ none: "none";
5134
+ tracing: "tracing";
5135
+ "env-logger": "env-logger";
5136
+ }>;
5137
+ rustErrorHandling: z.ZodEnum<{
5138
+ none: "none";
5139
+ "anyhow-thiserror": "anyhow-thiserror";
5140
+ eyre: "eyre";
5141
+ }>;
5142
+ rustCaching: z.ZodEnum<{
5143
+ none: "none";
5144
+ redis: "redis";
5145
+ moka: "moka";
5146
+ }>;
5147
+ rustAuth: z.ZodEnum<{
5148
+ none: "none";
5149
+ oauth2: "oauth2";
5150
+ }>;
5151
+ pythonWebFramework: z.ZodEnum<{
5152
+ none: "none";
5153
+ fastapi: "fastapi";
5154
+ django: "django";
5155
+ flask: "flask";
5156
+ litestar: "litestar";
5157
+ }>;
5158
+ pythonOrm: z.ZodEnum<{
5159
+ none: "none";
5160
+ sqlalchemy: "sqlalchemy";
5161
+ sqlmodel: "sqlmodel";
5162
+ "tortoise-orm": "tortoise-orm";
5163
+ }>;
5164
+ pythonValidation: z.ZodEnum<{
5165
+ none: "none";
5166
+ pydantic: "pydantic";
5167
+ }>;
5168
+ pythonAi: z.ZodArray<z.ZodEnum<{
5169
+ none: "none";
5170
+ langgraph: "langgraph";
5171
+ langchain: "langchain";
5172
+ llamaindex: "llamaindex";
5173
+ "openai-sdk": "openai-sdk";
5174
+ "anthropic-sdk": "anthropic-sdk";
5175
+ crewai: "crewai";
5176
+ haystack: "haystack";
5177
+ }>>;
5178
+ pythonAuth: z.ZodEnum<{
5179
+ none: "none";
5180
+ authlib: "authlib";
5181
+ jwt: "jwt";
5182
+ }>;
5183
+ pythonApi: z.ZodOptional<z.ZodEnum<{
5184
+ none: "none";
5185
+ "django-rest-framework": "django-rest-framework";
5186
+ "django-ninja": "django-ninja";
5187
+ }>>;
5188
+ pythonTaskQueue: z.ZodEnum<{
5189
+ none: "none";
5190
+ celery: "celery";
5191
+ rq: "rq";
5192
+ dramatiq: "dramatiq";
5193
+ huey: "huey";
5194
+ }>;
5195
+ pythonGraphql: z.ZodEnum<{
5196
+ none: "none";
5197
+ strawberry: "strawberry";
5198
+ ariadne: "ariadne";
5199
+ }>;
5200
+ pythonQuality: z.ZodEnum<{
5201
+ none: "none";
5202
+ ruff: "ruff";
5203
+ mypy: "mypy";
5204
+ pyright: "pyright";
5205
+ }>;
5206
+ goWebFramework: z.ZodEnum<{
5207
+ none: "none";
5208
+ gin: "gin";
5209
+ echo: "echo";
5210
+ fiber: "fiber";
5211
+ chi: "chi";
5212
+ }>;
5213
+ goOrm: z.ZodEnum<{
5214
+ gorm: "gorm";
5215
+ none: "none";
5216
+ sqlc: "sqlc";
5217
+ ent: "ent";
5218
+ }>;
5219
+ goApi: z.ZodEnum<{
5220
+ none: "none";
5221
+ "grpc-go": "grpc-go";
5222
+ }>;
5223
+ goCli: z.ZodEnum<{
5224
+ none: "none";
5225
+ cobra: "cobra";
5226
+ bubbletea: "bubbletea";
5227
+ "urfave-cli": "urfave-cli";
5228
+ }>;
5229
+ goLogging: z.ZodEnum<{
5230
+ none: "none";
5231
+ zap: "zap";
5232
+ zerolog: "zerolog";
5233
+ slog: "slog";
5234
+ logrus: "logrus";
5235
+ }>;
5236
+ goAuth: z.ZodEnum<{
5237
+ none: "none";
5238
+ jwt: "jwt";
5239
+ casbin: "casbin";
5240
+ }>;
5241
+ javaWebFramework: z.ZodEnum<{
5242
+ none: "none";
5243
+ "spring-boot": "spring-boot";
5244
+ quarkus: "quarkus";
5245
+ }>;
5246
+ javaBuildTool: z.ZodEnum<{
5247
+ none: "none";
5248
+ maven: "maven";
5249
+ gradle: "gradle";
5250
+ }>;
5251
+ javaOrm: z.ZodEnum<{
5252
+ none: "none";
5253
+ "spring-data-jpa": "spring-data-jpa";
5254
+ }>;
5255
+ javaAuth: z.ZodEnum<{
5256
+ none: "none";
5257
+ "spring-security": "spring-security";
5258
+ }>;
5259
+ javaLibraries: z.ZodArray<z.ZodEnum<{
5260
+ none: "none";
5261
+ "spring-actuator": "spring-actuator";
5262
+ "spring-validation": "spring-validation";
5263
+ flyway: "flyway";
5264
+ liquibase: "liquibase";
5265
+ "springdoc-openapi": "springdoc-openapi";
5266
+ lombok: "lombok";
5267
+ mapstruct: "mapstruct";
5268
+ caffeine: "caffeine";
5269
+ resilience4j: "resilience4j";
5270
+ "spring-webflux": "spring-webflux";
5271
+ "spring-batch": "spring-batch";
5272
+ "spring-kafka": "spring-kafka";
5273
+ "spring-mail": "spring-mail";
5274
+ "spring-devtools": "spring-devtools";
5275
+ "micrometer-prometheus": "micrometer-prometheus";
5276
+ thymeleaf: "thymeleaf";
5277
+ }>>;
5278
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
5279
+ none: "none";
5280
+ junit5: "junit5";
5281
+ mockito: "mockito";
5282
+ testcontainers: "testcontainers";
5283
+ assertj: "assertj";
5284
+ "rest-assured": "rest-assured";
5285
+ wiremock: "wiremock";
5286
+ awaitility: "awaitility";
5287
+ archunit: "archunit";
5288
+ jqwik: "jqwik";
5289
+ }>>;
5290
+ elixirWebFramework: z.ZodEnum<{
5291
+ none: "none";
5292
+ phoenix: "phoenix";
5293
+ "phoenix-live-view": "phoenix-live-view";
5294
+ }>;
5295
+ elixirOrm: z.ZodEnum<{
5296
+ none: "none";
5297
+ ecto: "ecto";
5298
+ "ecto-sql": "ecto-sql";
5299
+ }>;
5300
+ elixirAuth: z.ZodEnum<{
5301
+ none: "none";
5302
+ "phx-gen-auth": "phx-gen-auth";
5303
+ ueberauth: "ueberauth";
5304
+ guardian: "guardian";
5305
+ }>;
5306
+ elixirApi: z.ZodEnum<{
5307
+ none: "none";
5308
+ rest: "rest";
5309
+ absinthe: "absinthe";
5310
+ }>;
5311
+ elixirRealtime: z.ZodEnum<{
5312
+ none: "none";
5313
+ channels: "channels";
5314
+ presence: "presence";
5315
+ pubsub: "pubsub";
5316
+ "live-view-streams": "live-view-streams";
5317
+ }>;
5318
+ elixirJobs: z.ZodEnum<{
5319
+ none: "none";
5320
+ oban: "oban";
5321
+ quantum: "quantum";
5322
+ }>;
5323
+ elixirValidation: z.ZodEnum<{
5324
+ none: "none";
5325
+ "ecto-changesets": "ecto-changesets";
5326
+ "nimble-options": "nimble-options";
5327
+ }>;
5328
+ elixirHttp: z.ZodEnum<{
5329
+ none: "none";
5330
+ req: "req";
5331
+ finch: "finch";
5332
+ }>;
5333
+ elixirJson: z.ZodEnum<{
5334
+ none: "none";
5335
+ jason: "jason";
5336
+ }>;
5337
+ elixirEmail: z.ZodEnum<{
5338
+ none: "none";
5339
+ swoosh: "swoosh";
5340
+ }>;
5341
+ elixirCaching: z.ZodEnum<{
5342
+ none: "none";
5343
+ cachex: "cachex";
5344
+ nebulex: "nebulex";
5345
+ }>;
5346
+ elixirObservability: z.ZodEnum<{
5347
+ none: "none";
5348
+ opentelemetry: "opentelemetry";
5349
+ telemetry: "telemetry";
5350
+ prom_ex: "prom_ex";
5351
+ }>;
5352
+ elixirTesting: z.ZodEnum<{
5353
+ none: "none";
5354
+ ex_unit: "ex_unit";
5355
+ mox: "mox";
5356
+ bypass: "bypass";
5357
+ wallaby: "wallaby";
5358
+ }>;
5359
+ elixirQuality: z.ZodEnum<{
5360
+ none: "none";
5361
+ credo: "credo";
5362
+ dialyxir: "dialyxir";
5363
+ sobelow: "sobelow";
5364
+ }>;
5365
+ elixirDeploy: z.ZodEnum<{
5366
+ none: "none";
5367
+ docker: "docker";
5368
+ fly: "fly";
5369
+ gigalixir: "gigalixir";
5370
+ "mix-release": "mix-release";
5371
+ }>;
5372
+ aiDocs: z.ZodArray<z.ZodEnum<{
5373
+ none: "none";
5374
+ "claude-md": "claude-md";
5375
+ "agents-md": "agents-md";
5376
+ cursorrules: "cursorrules";
5377
+ }>>;
5378
+ }, z.core.$strip>;
5379
+ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
5380
+ $schema: z.ZodOptional<z.ZodString>;
5381
+ version: z.ZodString;
3282
5382
  createdAt: z.ZodString;
3283
5383
  ecosystem: z.ZodEnum<{
3284
5384
  typescript: "typescript";
5385
+ "react-native": "react-native";
3285
5386
  rust: "rust";
3286
5387
  python: "python";
3287
5388
  go: "go";
3288
5389
  java: "java";
5390
+ elixir: "elixir";
3289
5391
  }>;
3290
5392
  database: z.ZodEnum<{
3291
5393
  none: "none";
@@ -3333,6 +5435,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3333
5435
  "react-vite": "react-vite";
3334
5436
  "tanstack-start": "tanstack-start";
3335
5437
  next: "next";
5438
+ vinext: "vinext";
3336
5439
  nuxt: "nuxt";
3337
5440
  "native-bare": "native-bare";
3338
5441
  "native-uniwind": "native-uniwind";
@@ -3373,8 +5476,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3373
5476
  "docker-compose": "docker-compose";
3374
5477
  }>>;
3375
5478
  examples: z.ZodArray<z.ZodEnum<{
3376
- none: "none";
3377
5479
  ai: "ai";
5480
+ none: "none";
3378
5481
  "chat-sdk": "chat-sdk";
3379
5482
  "tanstack-showcase": "tanstack-showcase";
3380
5483
  }>>;
@@ -3467,8 +5570,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3467
5570
  "ai-cli": "ai-cli";
3468
5571
  }>;
3469
5572
  effect: z.ZodEnum<{
3470
- none: "none";
3471
5573
  effect: "effect";
5574
+ none: "none";
3472
5575
  "effect-full": "effect-full";
3473
5576
  }>;
3474
5577
  stateManagement: z.ZodEnum<{
@@ -3519,6 +5622,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3519
5622
  "postcss-only": "postcss-only";
3520
5623
  }>;
3521
5624
  uiLibrary: z.ZodEnum<{
5625
+ mui: "mui";
3522
5626
  none: "none";
3523
5627
  "shadcn-ui": "shadcn-ui";
3524
5628
  daisyui: "daisyui";
@@ -3528,7 +5632,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3528
5632
  "chakra-ui": "chakra-ui";
3529
5633
  nextui: "nextui";
3530
5634
  mantine: "mantine";
3531
- mui: "mui";
3532
5635
  antd: "antd";
3533
5636
  "base-ui": "base-ui";
3534
5637
  "ark-ui": "ark-ui";
@@ -3698,6 +5801,40 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3698
5801
  s3: "s3";
3699
5802
  r2: "r2";
3700
5803
  }>;
5804
+ mobileNavigation: z.ZodEnum<{
5805
+ none: "none";
5806
+ "expo-router": "expo-router";
5807
+ "react-navigation": "react-navigation";
5808
+ }>;
5809
+ mobileUI: z.ZodEnum<{
5810
+ none: "none";
5811
+ uniwind: "uniwind";
5812
+ tamagui: "tamagui";
5813
+ "gluestack-ui": "gluestack-ui";
5814
+ unistyles: "unistyles";
5815
+ }>;
5816
+ mobileStorage: z.ZodEnum<{
5817
+ none: "none";
5818
+ mmkv: "mmkv";
5819
+ }>;
5820
+ mobileTesting: z.ZodEnum<{
5821
+ none: "none";
5822
+ maestro: "maestro";
5823
+ "react-native-testing-library": "react-native-testing-library";
5824
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
5825
+ }>;
5826
+ mobilePush: z.ZodEnum<{
5827
+ none: "none";
5828
+ "expo-notifications": "expo-notifications";
5829
+ }>;
5830
+ mobileOTA: z.ZodEnum<{
5831
+ none: "none";
5832
+ "expo-updates": "expo-updates";
5833
+ }>;
5834
+ mobileDeepLinking: z.ZodEnum<{
5835
+ none: "none";
5836
+ "expo-linking": "expo-linking";
5837
+ }>;
3701
5838
  rustWebFramework: z.ZodEnum<{
3702
5839
  none: "none";
3703
5840
  axum: "axum";
@@ -3827,8 +5964,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3827
5964
  chi: "chi";
3828
5965
  }>;
3829
5966
  goOrm: z.ZodEnum<{
3830
- none: "none";
3831
5967
  gorm: "gorm";
5968
+ none: "none";
3832
5969
  sqlc: "sqlc";
3833
5970
  ent: "ent";
3834
5971
  }>;
@@ -3903,6 +6040,88 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3903
6040
  archunit: "archunit";
3904
6041
  jqwik: "jqwik";
3905
6042
  }>>;
6043
+ elixirWebFramework: z.ZodEnum<{
6044
+ none: "none";
6045
+ phoenix: "phoenix";
6046
+ "phoenix-live-view": "phoenix-live-view";
6047
+ }>;
6048
+ elixirOrm: z.ZodEnum<{
6049
+ none: "none";
6050
+ ecto: "ecto";
6051
+ "ecto-sql": "ecto-sql";
6052
+ }>;
6053
+ elixirAuth: z.ZodEnum<{
6054
+ none: "none";
6055
+ "phx-gen-auth": "phx-gen-auth";
6056
+ ueberauth: "ueberauth";
6057
+ guardian: "guardian";
6058
+ }>;
6059
+ elixirApi: z.ZodEnum<{
6060
+ none: "none";
6061
+ rest: "rest";
6062
+ absinthe: "absinthe";
6063
+ }>;
6064
+ elixirRealtime: z.ZodEnum<{
6065
+ none: "none";
6066
+ channels: "channels";
6067
+ presence: "presence";
6068
+ pubsub: "pubsub";
6069
+ "live-view-streams": "live-view-streams";
6070
+ }>;
6071
+ elixirJobs: z.ZodEnum<{
6072
+ none: "none";
6073
+ oban: "oban";
6074
+ quantum: "quantum";
6075
+ }>;
6076
+ elixirValidation: z.ZodEnum<{
6077
+ none: "none";
6078
+ "ecto-changesets": "ecto-changesets";
6079
+ "nimble-options": "nimble-options";
6080
+ }>;
6081
+ elixirHttp: z.ZodEnum<{
6082
+ none: "none";
6083
+ req: "req";
6084
+ finch: "finch";
6085
+ }>;
6086
+ elixirJson: z.ZodEnum<{
6087
+ none: "none";
6088
+ jason: "jason";
6089
+ }>;
6090
+ elixirEmail: z.ZodEnum<{
6091
+ none: "none";
6092
+ swoosh: "swoosh";
6093
+ }>;
6094
+ elixirCaching: z.ZodEnum<{
6095
+ none: "none";
6096
+ cachex: "cachex";
6097
+ nebulex: "nebulex";
6098
+ }>;
6099
+ elixirObservability: z.ZodEnum<{
6100
+ none: "none";
6101
+ opentelemetry: "opentelemetry";
6102
+ telemetry: "telemetry";
6103
+ prom_ex: "prom_ex";
6104
+ }>;
6105
+ elixirTesting: z.ZodEnum<{
6106
+ none: "none";
6107
+ ex_unit: "ex_unit";
6108
+ mox: "mox";
6109
+ bypass: "bypass";
6110
+ wallaby: "wallaby";
6111
+ }>;
6112
+ elixirQuality: z.ZodEnum<{
6113
+ none: "none";
6114
+ credo: "credo";
6115
+ dialyxir: "dialyxir";
6116
+ sobelow: "sobelow";
6117
+ }>;
6118
+ elixirDeploy: z.ZodEnum<{
6119
+ none: "none";
6120
+ docker: "docker";
6121
+ fly: "fly";
6122
+ gigalixir: "gigalixir";
6123
+ "mix-release": "mix-release";
6124
+ }>;
3906
6125
  aiDocs: z.ZodArray<z.ZodEnum<{
3907
6126
  none: "none";
3908
6127
  "claude-md": "claude-md";
@@ -3918,10 +6137,12 @@ declare const InitResultSchema: z.ZodObject<{
3918
6137
  relativePath: z.ZodString;
3919
6138
  ecosystem: z.ZodEnum<{
3920
6139
  typescript: "typescript";
6140
+ "react-native": "react-native";
3921
6141
  rust: "rust";
3922
6142
  python: "python";
3923
6143
  go: "go";
3924
6144
  java: "java";
6145
+ elixir: "elixir";
3925
6146
  }>;
3926
6147
  database: z.ZodEnum<{
3927
6148
  none: "none";
@@ -3969,6 +6190,7 @@ declare const InitResultSchema: z.ZodObject<{
3969
6190
  "react-vite": "react-vite";
3970
6191
  "tanstack-start": "tanstack-start";
3971
6192
  next: "next";
6193
+ vinext: "vinext";
3972
6194
  nuxt: "nuxt";
3973
6195
  "native-bare": "native-bare";
3974
6196
  "native-uniwind": "native-uniwind";
@@ -4009,8 +6231,8 @@ declare const InitResultSchema: z.ZodObject<{
4009
6231
  "docker-compose": "docker-compose";
4010
6232
  }>>;
4011
6233
  examples: z.ZodArray<z.ZodEnum<{
4012
- none: "none";
4013
6234
  ai: "ai";
6235
+ none: "none";
4014
6236
  "chat-sdk": "chat-sdk";
4015
6237
  "tanstack-showcase": "tanstack-showcase";
4016
6238
  }>>;
@@ -4105,8 +6327,8 @@ declare const InitResultSchema: z.ZodObject<{
4105
6327
  "ai-cli": "ai-cli";
4106
6328
  }>;
4107
6329
  effect: z.ZodEnum<{
4108
- none: "none";
4109
6330
  effect: "effect";
6331
+ none: "none";
4110
6332
  "effect-full": "effect-full";
4111
6333
  }>;
4112
6334
  stateManagement: z.ZodEnum<{
@@ -4157,6 +6379,7 @@ declare const InitResultSchema: z.ZodObject<{
4157
6379
  "postcss-only": "postcss-only";
4158
6380
  }>;
4159
6381
  uiLibrary: z.ZodEnum<{
6382
+ mui: "mui";
4160
6383
  none: "none";
4161
6384
  "shadcn-ui": "shadcn-ui";
4162
6385
  daisyui: "daisyui";
@@ -4166,7 +6389,6 @@ declare const InitResultSchema: z.ZodObject<{
4166
6389
  "chakra-ui": "chakra-ui";
4167
6390
  nextui: "nextui";
4168
6391
  mantine: "mantine";
4169
- mui: "mui";
4170
6392
  antd: "antd";
4171
6393
  "base-ui": "base-ui";
4172
6394
  "ark-ui": "ark-ui";
@@ -4336,6 +6558,40 @@ declare const InitResultSchema: z.ZodObject<{
4336
6558
  s3: "s3";
4337
6559
  r2: "r2";
4338
6560
  }>;
6561
+ mobileNavigation: z.ZodEnum<{
6562
+ none: "none";
6563
+ "expo-router": "expo-router";
6564
+ "react-navigation": "react-navigation";
6565
+ }>;
6566
+ mobileUI: z.ZodEnum<{
6567
+ none: "none";
6568
+ uniwind: "uniwind";
6569
+ tamagui: "tamagui";
6570
+ "gluestack-ui": "gluestack-ui";
6571
+ unistyles: "unistyles";
6572
+ }>;
6573
+ mobileStorage: z.ZodEnum<{
6574
+ none: "none";
6575
+ mmkv: "mmkv";
6576
+ }>;
6577
+ mobileTesting: z.ZodEnum<{
6578
+ none: "none";
6579
+ maestro: "maestro";
6580
+ "react-native-testing-library": "react-native-testing-library";
6581
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
6582
+ }>;
6583
+ mobilePush: z.ZodEnum<{
6584
+ none: "none";
6585
+ "expo-notifications": "expo-notifications";
6586
+ }>;
6587
+ mobileOTA: z.ZodEnum<{
6588
+ none: "none";
6589
+ "expo-updates": "expo-updates";
6590
+ }>;
6591
+ mobileDeepLinking: z.ZodEnum<{
6592
+ none: "none";
6593
+ "expo-linking": "expo-linking";
6594
+ }>;
4339
6595
  rustWebFramework: z.ZodEnum<{
4340
6596
  none: "none";
4341
6597
  axum: "axum";
@@ -4465,8 +6721,8 @@ declare const InitResultSchema: z.ZodObject<{
4465
6721
  chi: "chi";
4466
6722
  }>;
4467
6723
  goOrm: z.ZodEnum<{
4468
- none: "none";
4469
6724
  gorm: "gorm";
6725
+ none: "none";
4470
6726
  sqlc: "sqlc";
4471
6727
  ent: "ent";
4472
6728
  }>;
@@ -4541,6 +6797,88 @@ declare const InitResultSchema: z.ZodObject<{
4541
6797
  archunit: "archunit";
4542
6798
  jqwik: "jqwik";
4543
6799
  }>>;
6800
+ elixirWebFramework: z.ZodEnum<{
6801
+ none: "none";
6802
+ phoenix: "phoenix";
6803
+ "phoenix-live-view": "phoenix-live-view";
6804
+ }>;
6805
+ elixirOrm: z.ZodEnum<{
6806
+ none: "none";
6807
+ ecto: "ecto";
6808
+ "ecto-sql": "ecto-sql";
6809
+ }>;
6810
+ elixirAuth: z.ZodEnum<{
6811
+ none: "none";
6812
+ "phx-gen-auth": "phx-gen-auth";
6813
+ ueberauth: "ueberauth";
6814
+ guardian: "guardian";
6815
+ }>;
6816
+ elixirApi: z.ZodEnum<{
6817
+ none: "none";
6818
+ rest: "rest";
6819
+ absinthe: "absinthe";
6820
+ }>;
6821
+ elixirRealtime: z.ZodEnum<{
6822
+ none: "none";
6823
+ channels: "channels";
6824
+ presence: "presence";
6825
+ pubsub: "pubsub";
6826
+ "live-view-streams": "live-view-streams";
6827
+ }>;
6828
+ elixirJobs: z.ZodEnum<{
6829
+ none: "none";
6830
+ oban: "oban";
6831
+ quantum: "quantum";
6832
+ }>;
6833
+ elixirValidation: z.ZodEnum<{
6834
+ none: "none";
6835
+ "ecto-changesets": "ecto-changesets";
6836
+ "nimble-options": "nimble-options";
6837
+ }>;
6838
+ elixirHttp: z.ZodEnum<{
6839
+ none: "none";
6840
+ req: "req";
6841
+ finch: "finch";
6842
+ }>;
6843
+ elixirJson: z.ZodEnum<{
6844
+ none: "none";
6845
+ jason: "jason";
6846
+ }>;
6847
+ elixirEmail: z.ZodEnum<{
6848
+ none: "none";
6849
+ swoosh: "swoosh";
6850
+ }>;
6851
+ elixirCaching: z.ZodEnum<{
6852
+ none: "none";
6853
+ cachex: "cachex";
6854
+ nebulex: "nebulex";
6855
+ }>;
6856
+ elixirObservability: z.ZodEnum<{
6857
+ none: "none";
6858
+ opentelemetry: "opentelemetry";
6859
+ telemetry: "telemetry";
6860
+ prom_ex: "prom_ex";
6861
+ }>;
6862
+ elixirTesting: z.ZodEnum<{
6863
+ none: "none";
6864
+ ex_unit: "ex_unit";
6865
+ mox: "mox";
6866
+ bypass: "bypass";
6867
+ wallaby: "wallaby";
6868
+ }>;
6869
+ elixirQuality: z.ZodEnum<{
6870
+ none: "none";
6871
+ credo: "credo";
6872
+ dialyxir: "dialyxir";
6873
+ sobelow: "sobelow";
6874
+ }>;
6875
+ elixirDeploy: z.ZodEnum<{
6876
+ none: "none";
6877
+ docker: "docker";
6878
+ fly: "fly";
6879
+ gigalixir: "gigalixir";
6880
+ "mix-release": "mix-release";
6881
+ }>;
4544
6882
  aiDocs: z.ZodArray<z.ZodEnum<{
4545
6883
  none: "none";
4546
6884
  "claude-md": "claude-md";
@@ -4559,9 +6897,9 @@ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mong
4559
6897
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
4560
6898
  declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
4561
6899
  declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
4562
- declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
6900
+ declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
4563
6901
  declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
4564
- declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
6902
+ declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
4565
6903
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
4566
6904
  declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
4567
6905
  declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
@@ -4574,13 +6912,13 @@ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" |
4574
6912
  declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
4575
6913
  declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
4576
6914
  declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
4577
- declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
6915
+ declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
4578
6916
  declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
4579
6917
  declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
4580
6918
  declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
4581
6919
  declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
4582
6920
  declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
4583
- declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
6921
+ declare const UI_LIBRARY_VALUES: ("mui" | "none" | "shadcn-ui" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
4584
6922
  declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
4585
6923
  declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
4586
6924
  declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
@@ -4590,12 +6928,19 @@ declare const LOGGING_VALUES: ("none" | "pino" | "winston")[];
4590
6928
  declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
4591
6929
  declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
4592
6930
  declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
6931
+ declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
6932
+ declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
6933
+ declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
6934
+ declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
6935
+ declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
6936
+ declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
6937
+ declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
4593
6938
  declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms")[];
4594
6939
  declare const CACHING_VALUES: ("none" | "upstash-redis")[];
4595
6940
  declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
4596
6941
  declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
4597
6942
  declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
4598
- declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go" | "java")[];
6943
+ declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir")[];
4599
6944
  declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
4600
6945
  declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
4601
6946
  declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
@@ -4616,7 +6961,7 @@ declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" |
4616
6961
  declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
4617
6962
  declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
4618
6963
  declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
4619
- declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
6964
+ declare const GO_ORM_VALUES: ("gorm" | "none" | "sqlc" | "ent")[];
4620
6965
  declare const GO_API_VALUES: ("none" | "grpc-go")[];
4621
6966
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
4622
6967
  declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
@@ -4627,6 +6972,21 @@ declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa")[];
4627
6972
  declare const JAVA_AUTH_VALUES: ("none" | "spring-security")[];
4628
6973
  declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway" | "liquibase" | "springdoc-openapi" | "lombok" | "mapstruct" | "caffeine" | "resilience4j" | "spring-webflux" | "spring-batch" | "spring-kafka" | "spring-mail" | "spring-devtools" | "micrometer-prometheus" | "thymeleaf")[];
4629
6974
  declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
6975
+ declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
6976
+ declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
6977
+ declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
6978
+ declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe")[];
6979
+ declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
6980
+ declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
6981
+ declare const ELIXIR_VALIDATION_VALUES: ("none" | "ecto-changesets" | "nimble-options")[];
6982
+ declare const ELIXIR_HTTP_VALUES: ("none" | "req" | "finch")[];
6983
+ declare const ELIXIR_JSON_VALUES: ("none" | "jason")[];
6984
+ declare const ELIXIR_EMAIL_VALUES: ("none" | "swoosh")[];
6985
+ declare const ELIXIR_CACHING_VALUES: ("none" | "cachex" | "nebulex")[];
6986
+ declare const ELIXIR_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "telemetry" | "prom_ex")[];
6987
+ declare const ELIXIR_TESTING_VALUES: ("none" | "ex_unit" | "mox" | "bypass" | "wallaby")[];
6988
+ declare const ELIXIR_QUALITY_VALUES: ("none" | "credo" | "dialyxir" | "sobelow")[];
6989
+ declare const ELIXIR_DEPLOY_VALUES: ("none" | "docker" | "fly" | "gigalixir" | "mix-release")[];
4630
6990
  declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
4631
6991
  declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
4632
6992
  declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira" | "luma" | "sera")[];
@@ -4636,5 +6996,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
4636
6996
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
4637
6997
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
4638
6998
  //#endregion
4639
- export { FrontendSchema as $, UILibrarySchema as $n, PythonGraphqlSchema as $t, DATABASE_SETUP_VALUES as A, SERVER_DEPLOY_VALUES as An, LoggingSchema as At, EcosystemSchema as B, ServerDeploySchema as Bn, PYTHON_GRAPHQL_VALUES as Bt, CLIInputSchema as C, RustErrorHandlingSchema as Cn, JavaBuildToolSchema as Ct, CSS_FRAMEWORK_VALUES as D, RustOrmSchema as Dn, JavaWebFrameworkSchema as Dt, CSSFrameworkSchema as E, RustLoggingSchema as En, JavaTestingLibrariesSchema as Et, DirectoryConflictSchema as F, SHADCN_ICON_LIBRARY_VALUES as Fn, PACKAGE_MANAGER_VALUES as Ft, FILE_STORAGE_VALUES as G, ShadcnIconLibrarySchema as Gn, PYTHON_WEB_FRAMEWORK_VALUES as Gt, EmailSchema as H, ShadcnBaseSchema as Hn, PYTHON_QUALITY_VALUES as Ht, ECOSYSTEM_VALUES as I, SHADCN_RADIUS_VALUES as In, PAYMENTS_VALUES as It, FRONTEND_VALUES as J, StateManagementSchema as Jn, ProjectConfigSchema as Jt, FILE_UPLOAD_VALUES as K, ShadcnRadiusSchema as Kn, PackageManagerSchema as Kt, EFFECT_VALUES as L, SHADCN_STYLE_VALUES as Ln, PYTHON_AI_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, SHADCN_BASE_VALUES as Mn, ORMSchema as Mt, DatabaseSchema as N, SHADCN_COLOR_THEME_VALUES as Nn, ORM_VALUES as Nt, CachingSchema as O, RustWebFrameworkSchema as On, JobQueueSchema as Ot, DatabaseSetupSchema as P, SHADCN_FONT_VALUES as Pn, ObservabilitySchema as Pt, FormsSchema as Q, TestingSchema as Qn, PythonAuthSchema as Qt, EMAIL_VALUES as R, STATE_MANAGEMENT_VALUES as Rn, PYTHON_API_VALUES as Rt, CACHING_VALUES as S, RustCliSchema as Sn, JavaAuthSchema as St, CMS_VALUES as T, RustLibrariesSchema as Tn, JavaOrmSchema as Tt, ExamplesSchema as U, ShadcnColorThemeSchema as Un, PYTHON_TASK_QUEUE_VALUES as Ut, EffectSchema as V, ShadcnBaseColorSchema as Vn, PYTHON_ORM_VALUES as Vt, FEATURE_FLAGS_VALUES as W, ShadcnFontSchema as Wn, PYTHON_VALIDATION_VALUES as Wt, FileStorageSchema as X, TESTING_VALUES as Xn, PythonAiSchema as Xt, FeatureFlagsSchema as Y, TEMPLATE_VALUES as Yn, ProjectNameSchema as Yt, FileUploadSchema as Z, TemplateSchema as Zn, PythonApiSchema as Zt, AuthSchema as _, RealtimeSchema as _n, JAVA_LIBRARIES_VALUES as _t, ANALYTICS_VALUES as a, REALTIME_VALUES as an, WEB_DEPLOY_VALUES as ar, GO_WEB_FRAMEWORK_VALUES as at, BetterTStackConfigFileSchema as b, RustAuthSchema as bn, JAVA_WEB_FRAMEWORK_VALUES as bt, API_VALUES as c, RUST_AUTH_VALUES as cn, GoCliSchema as ct, AddInputSchema as d, RUST_ERROR_HANDLING_VALUES as dn, GoWebFrameworkSchema as dt, PythonOrmSchema as en, UI_LIBRARY_VALUES as er, GO_API_VALUES as et, AddonsSchema as f, RUST_FRONTEND_VALUES as fn, I18N_VALUES as ft, AstroIntegrationSchema as g, RUST_WEB_FRAMEWORK_VALUES as gn, JAVA_BUILD_TOOL_VALUES as gt, AnimationSchema as h, RUST_ORM_VALUES as hn, JAVA_AUTH_VALUES as ht, AI_VALUES as i, PythonWebFrameworkSchema as in, VersionChannelSchema as ir, GO_ORM_VALUES as it, DATABASE_VALUES as j, SHADCN_BASE_COLOR_VALUES as jn, OBSERVABILITY_VALUES as jt, CreateInputSchema as k, SEARCH_VALUES as kn, LOGGING_VALUES as kt, ASTRO_INTEGRATION_VALUES as l, RUST_CACHING_VALUES as ln, GoLoggingSchema as lt, AnalyticsSchema as m, RUST_LOGGING_VALUES as mn, InitResultSchema as mt, AISchema as n, PythonTaskQueueSchema as nn, VERSION_CHANNEL_VALUES as nr, GO_CLI_VALUES as nt, ANIMATION_VALUES as o, RUNTIME_VALUES as on, WebDeploySchema as or, GoApiSchema as ot, AiDocsSchema as p, RUST_LIBRARIES_VALUES as pn, I18nSchema as pt, FORMS_VALUES as q, ShadcnStyleSchema as qn, PaymentsSchema as qt, AI_DOCS_VALUES as r, PythonValidationSchema as rn, ValidationSchema as rr, GO_LOGGING_VALUES as rt, APISchema as s, RUST_API_VALUES as sn, GoAuthSchema as st, ADDONS_VALUES as t, PythonQualitySchema as tn, VALIDATION_VALUES as tr, GO_AUTH_VALUES as tt, AUTH_VALUES as u, RUST_CLI_VALUES as un, GoOrmSchema as ut, BACKEND_VALUES as v, RuntimeSchema as vn, JAVA_ORM_VALUES as vt, CMSSchema as w, RustFrontendSchema as wn, JavaLibrariesSchema as wt, BetterTStackConfigSchema as x, RustCachingSchema as xn, JOB_QUEUE_VALUES as xt, BackendSchema as y, RustApiSchema as yn, JAVA_TESTING_LIBRARIES_VALUES as yt, EXAMPLES_VALUES as z, SearchSchema as zn, PYTHON_AUTH_VALUES as zt };
4640
- //# sourceMappingURL=schemas-CC-_Vkoh.d.mts.map
6999
+ export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn, StateManagementSchema as Br, GoCliSchema as Bt, BetterTStackConfigSchema as C, OBSERVABILITY_VALUES as Cn, SHADCN_BASE_COLOR_VALUES as Cr, FILE_STORAGE_VALUES as Ct, CMS_VALUES as D, PACKAGE_MANAGER_VALUES as Dn, SHADCN_ICON_LIBRARY_VALUES as Dr, FeatureFlagsSchema as Dt, CMSSchema as E, ObservabilitySchema as En, SHADCN_FONT_VALUES as Er, FRONTEND_VALUES as Et, DatabaseSchema as F, PYTHON_TASK_QUEUE_VALUES as Fn, ShadcnColorThemeSchema as Fr, GO_LOGGING_VALUES as Ft, ELIXIR_HTTP_VALUES as G, PythonGraphqlSchema as Gn, UILibrarySchema as Gr, I18nSchema as Gt, ELIXIR_CACHING_VALUES as H, PythonAiSchema as Hn, TESTING_VALUES as Hr, GoOrmSchema as Ht, DatabaseSetupSchema as I, PYTHON_VALIDATION_VALUES as In, ShadcnFontSchema as Ir, GO_ORM_VALUES as It, ELIXIR_OBSERVABILITY_VALUES as J, PythonTaskQueueSchema as Jn, VERSION_CHANNEL_VALUES as Jr, JAVA_BUILD_TOOL_VALUES as Jt, ELIXIR_JOBS_VALUES as K, PythonOrmSchema as Kn, UI_LIBRARY_VALUES as Kr, InitResultSchema as Kt, DirectoryConflictSchema as L, PYTHON_WEB_FRAMEWORK_VALUES as Ln, ShadcnIconLibrarySchema as Lr, GO_WEB_FRAMEWORK_VALUES as Lt, DATABASE_SETUP_VALUES as M, PYTHON_GRAPHQL_VALUES as Mn, ServerDeploySchema as Mr, GO_API_VALUES as Mt, DATABASE_VALUES as N, PYTHON_ORM_VALUES as Nn, ShadcnBaseColorSchema as Nr, GO_AUTH_VALUES as Nt, CSSFrameworkSchema as O, PAYMENTS_VALUES as On, SHADCN_RADIUS_VALUES as Or, FileStorageSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, PYTHON_QUALITY_VALUES as Pn, ShadcnBaseSchema as Pr, GO_CLI_VALUES as Pt, ELIXIR_TESTING_VALUES as Q, RUNTIME_VALUES as Qn, WebDeploySchema as Qr, JAVA_WEB_FRAMEWORK_VALUES as Qt, ECOSYSTEM_VALUES as R, PackageManagerSchema as Rn, ShadcnRadiusSchema as Rr, GoApiSchema as Rt, BetterTStackConfigFileSchema as S, MobileUISchema as Sn, SERVER_DEPLOY_VALUES as Sr, FEATURE_FLAGS_VALUES as St, CLIInputSchema as T, ORM_VALUES as Tn, SHADCN_COLOR_THEME_VALUES as Tr, FORMS_VALUES as Tt, ELIXIR_DEPLOY_VALUES as U, PythonApiSchema as Un, TemplateSchema as Ur, GoWebFrameworkSchema as Ut, ELIXIR_AUTH_VALUES as V, ProjectNameSchema as Vn, TEMPLATE_VALUES as Vr, GoLoggingSchema as Vt, ELIXIR_EMAIL_VALUES as W, PythonAuthSchema as Wn, TestingSchema as Wr, I18N_VALUES as Wt, ELIXIR_QUALITY_VALUES as X, PythonWebFrameworkSchema as Xn, VersionChannelSchema as Xr, JAVA_ORM_VALUES as Xt, ELIXIR_ORM_VALUES as Y, PythonValidationSchema as Yn, ValidationSchema as Yr, JAVA_LIBRARIES_VALUES as Yt, ELIXIR_REALTIME_VALUES as Z, REALTIME_VALUES as Zn, WEB_DEPLOY_VALUES as Zr, JAVA_TESTING_LIBRARIES_VALUES as Zt, AuthSchema as _, MobileNavigationSchema as _n, RustLibrariesSchema as _r, ElixirTestingSchema as _t, ANALYTICS_VALUES as a, JavaWebFrameworkSchema as an, RUST_LIBRARIES_VALUES as ar, ElixirApiSchema as at, BetterFullstackConfigFileSchema as b, MobileStorageSchema as bn, RustWebFrameworkSchema as br, EmailSchema as bt, API_VALUES as c, LoggingSchema as cn, RUST_WEB_FRAMEWORK_VALUES as cr, ElixirDeploySchema as ct, AddInputSchema as d, MOBILE_OTA_VALUES as dn, RustApiSchema as dr, ElixirJobsSchema as dt, JavaAuthSchema as en, RUST_AUTH_VALUES as er, ELIXIR_WEB_FRAMEWORK_VALUES as et, AddonsSchema as f, MOBILE_PUSH_VALUES as fn, RustAuthSchema as fr, ElixirJsonSchema as ft, AstroIntegrationSchema as g, MobileDeepLinkingSchema as gn, RustFrontendSchema as gr, ElixirRealtimeSchema as gt, AnimationSchema as h, MOBILE_UI_VALUES as hn, RustErrorHandlingSchema as hr, ElixirQualitySchema as ht, AI_VALUES as i, JavaTestingLibrariesSchema as in, RUST_FRONTEND_VALUES as ir, EffectSchema as it, CreateInputSchema as j, PYTHON_AUTH_VALUES as jn, SearchSchema as jr, FrontendSchema as jt, CSS_FRAMEWORK_VALUES as k, PYTHON_AI_VALUES as kn, SHADCN_STYLE_VALUES as kr, FileUploadSchema as kt, ASTRO_INTEGRATION_VALUES as l, MOBILE_DEEP_LINKING_VALUES as ln, RealtimeSchema as lr, ElixirEmailSchema as lt, AnalyticsSchema as m, MOBILE_TESTING_VALUES as mn, RustCliSchema as mr, ElixirOrmSchema as mt, AISchema as n, JavaLibrariesSchema as nn, RUST_CLI_VALUES as nr, EXAMPLES_VALUES as nt, ANIMATION_VALUES as o, JobQueueSchema as on, RUST_LOGGING_VALUES as or, ElixirAuthSchema as ot, AiDocsSchema as p, MOBILE_STORAGE_VALUES as pn, RustCachingSchema as pr, ElixirObservabilitySchema as pt, ELIXIR_JSON_VALUES as q, PythonQualitySchema as qn, VALIDATION_VALUES as qr, JAVA_AUTH_VALUES as qt, AI_DOCS_VALUES as r, JavaOrmSchema as rn, RUST_ERROR_HANDLING_VALUES as rr, EcosystemSchema as rt, APISchema as s, LOGGING_VALUES as sn, RUST_ORM_VALUES as sr, ElixirCachingSchema as st, ADDONS_VALUES as t, JavaBuildToolSchema as tn, RUST_CACHING_VALUES as tr, EMAIL_VALUES as tt, AUTH_VALUES as u, MOBILE_NAVIGATION_VALUES as un, RuntimeSchema as ur, ElixirHttpSchema as ut, BACKEND_VALUES as v, MobileOTASchema as vn, RustLoggingSchema as vr, ElixirValidationSchema as vt, CACHING_VALUES as w, ORMSchema as wn, SHADCN_BASE_VALUES as wr, FILE_UPLOAD_VALUES as wt, BetterFullstackConfigSchema as x, MobileTestingSchema as xn, SEARCH_VALUES as xr, ExamplesSchema as xt, BackendSchema as y, MobilePushSchema as yn, RustOrmSchema as yr, ElixirWebFrameworkSchema as yt, EFFECT_VALUES as z, PaymentsSchema as zn, ShadcnStyleSchema as zr, GoAuthSchema as zt };
7000
+ //# sourceMappingURL=schemas-Bs_n2xLj.d.mts.map