@better-fullstack/types 1.7.1 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/{defaults-Ra4H-o6R.d.mts → defaults-05kDqAVs.d.mts} +2 -2
  2. package/dist/defaults-05kDqAVs.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 +2992 -318
  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-CC-_Vkoh.d.mts → schemas-CUFM_Cdl.d.mts} +2428 -22
  14. package/dist/schemas-CUFM_Cdl.d.mts.map +1 -0
  15. package/dist/{schemas-B2DBDBdl.mjs → schemas-Hj_Gbdf0.mjs} +201 -5
  16. package/dist/schemas-Hj_Gbdf0.mjs.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-BpsvxDrw.mjs} +899 -25
  20. package/dist/stack-translation-BpsvxDrw.mjs.map +1 -0
  21. package/dist/{stack-translation-B8OgQLwv.d.mts → stack-translation-D7H3h8Vs.d.mts} +51 -7
  22. package/dist/stack-translation-D7H3h8Vs.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-C0KHWyJI.d.mts +119 -0
  26. package/dist/types-C0KHWyJI.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";
@@ -93,6 +96,7 @@ declare const AddonsSchema: z.ZodEnum<{
93
96
  wxt: "wxt";
94
97
  msw: "msw";
95
98
  storybook: "storybook";
99
+ swr: "swr";
96
100
  "tanstack-query": "tanstack-query";
97
101
  "tanstack-table": "tanstack-table";
98
102
  "tanstack-virtual": "tanstack-virtual";
@@ -264,6 +268,7 @@ declare const CMSSchema: z.ZodEnum<{
264
268
  sanity: "sanity";
265
269
  strapi: "strapi";
266
270
  tinacms: "tinacms";
271
+ directus: "directus";
267
272
  }>;
268
273
  declare const CachingSchema: z.ZodEnum<{
269
274
  none: "none";
@@ -285,6 +290,7 @@ declare const FileStorageSchema: z.ZodEnum<{
285
290
  none: "none";
286
291
  s3: "s3";
287
292
  r2: "r2";
293
+ cloudinary: "cloudinary";
288
294
  }>;
289
295
  declare const AnimationSchema: z.ZodEnum<{
290
296
  none: "none";
@@ -304,6 +310,7 @@ declare const LoggingSchema: z.ZodEnum<{
304
310
  none: "none";
305
311
  pino: "pino";
306
312
  winston: "winston";
313
+ evlog: "evlog";
307
314
  }>;
308
315
  declare const ObservabilitySchema: z.ZodEnum<{
309
316
  none: "none";
@@ -324,6 +331,40 @@ declare const AnalyticsSchema: z.ZodEnum<{
324
331
  plausible: "plausible";
325
332
  umami: "umami";
326
333
  }>;
334
+ declare const MobileNavigationSchema: z.ZodEnum<{
335
+ none: "none";
336
+ "expo-router": "expo-router";
337
+ "react-navigation": "react-navigation";
338
+ }>;
339
+ declare const MobileUISchema: z.ZodEnum<{
340
+ none: "none";
341
+ tamagui: "tamagui";
342
+ "gluestack-ui": "gluestack-ui";
343
+ uniwind: "uniwind";
344
+ unistyles: "unistyles";
345
+ }>;
346
+ declare const MobileStorageSchema: z.ZodEnum<{
347
+ none: "none";
348
+ mmkv: "mmkv";
349
+ }>;
350
+ declare const MobileTestingSchema: z.ZodEnum<{
351
+ none: "none";
352
+ maestro: "maestro";
353
+ "react-native-testing-library": "react-native-testing-library";
354
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
355
+ }>;
356
+ declare const MobilePushSchema: z.ZodEnum<{
357
+ none: "none";
358
+ "expo-notifications": "expo-notifications";
359
+ }>;
360
+ declare const MobileOTASchema: z.ZodEnum<{
361
+ none: "none";
362
+ "expo-updates": "expo-updates";
363
+ }>;
364
+ declare const MobileDeepLinkingSchema: z.ZodEnum<{
365
+ none: "none";
366
+ "expo-linking": "expo-linking";
367
+ }>;
327
368
  declare const RustWebFrameworkSchema: z.ZodEnum<{
328
369
  none: "none";
329
370
  axum: "axum";
@@ -529,6 +570,88 @@ declare const JavaTestingLibrariesSchema: z.ZodEnum<{
529
570
  archunit: "archunit";
530
571
  jqwik: "jqwik";
531
572
  }>;
573
+ declare const ElixirWebFrameworkSchema: z.ZodEnum<{
574
+ none: "none";
575
+ phoenix: "phoenix";
576
+ "phoenix-live-view": "phoenix-live-view";
577
+ }>;
578
+ declare const ElixirOrmSchema: z.ZodEnum<{
579
+ none: "none";
580
+ ecto: "ecto";
581
+ "ecto-sql": "ecto-sql";
582
+ }>;
583
+ declare const ElixirAuthSchema: z.ZodEnum<{
584
+ none: "none";
585
+ "phx-gen-auth": "phx-gen-auth";
586
+ ueberauth: "ueberauth";
587
+ guardian: "guardian";
588
+ }>;
589
+ declare const ElixirApiSchema: z.ZodEnum<{
590
+ none: "none";
591
+ rest: "rest";
592
+ absinthe: "absinthe";
593
+ }>;
594
+ declare const ElixirRealtimeSchema: z.ZodEnum<{
595
+ none: "none";
596
+ channels: "channels";
597
+ presence: "presence";
598
+ pubsub: "pubsub";
599
+ "live-view-streams": "live-view-streams";
600
+ }>;
601
+ declare const ElixirJobsSchema: z.ZodEnum<{
602
+ none: "none";
603
+ oban: "oban";
604
+ quantum: "quantum";
605
+ }>;
606
+ declare const ElixirValidationSchema: z.ZodEnum<{
607
+ none: "none";
608
+ "ecto-changesets": "ecto-changesets";
609
+ "nimble-options": "nimble-options";
610
+ }>;
611
+ declare const ElixirHttpSchema: z.ZodEnum<{
612
+ none: "none";
613
+ req: "req";
614
+ finch: "finch";
615
+ }>;
616
+ declare const ElixirJsonSchema: z.ZodEnum<{
617
+ none: "none";
618
+ jason: "jason";
619
+ }>;
620
+ declare const ElixirEmailSchema: z.ZodEnum<{
621
+ none: "none";
622
+ swoosh: "swoosh";
623
+ }>;
624
+ declare const ElixirCachingSchema: z.ZodEnum<{
625
+ none: "none";
626
+ cachex: "cachex";
627
+ nebulex: "nebulex";
628
+ }>;
629
+ declare const ElixirObservabilitySchema: z.ZodEnum<{
630
+ none: "none";
631
+ opentelemetry: "opentelemetry";
632
+ telemetry: "telemetry";
633
+ prom_ex: "prom_ex";
634
+ }>;
635
+ declare const ElixirTestingSchema: z.ZodEnum<{
636
+ none: "none";
637
+ ex_unit: "ex_unit";
638
+ mox: "mox";
639
+ bypass: "bypass";
640
+ wallaby: "wallaby";
641
+ }>;
642
+ declare const ElixirQualitySchema: z.ZodEnum<{
643
+ none: "none";
644
+ credo: "credo";
645
+ dialyxir: "dialyxir";
646
+ sobelow: "sobelow";
647
+ }>;
648
+ declare const ElixirDeploySchema: z.ZodEnum<{
649
+ none: "none";
650
+ docker: "docker";
651
+ fly: "fly";
652
+ gigalixir: "gigalixir";
653
+ "mix-release": "mix-release";
654
+ }>;
532
655
  declare const AiDocsSchema: z.ZodEnum<{
533
656
  none: "none";
534
657
  "claude-md": "claude-md";
@@ -545,6 +668,7 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
545
668
  declare const UILibrarySchema: z.ZodEnum<{
546
669
  none: "none";
547
670
  "shadcn-ui": "shadcn-ui";
671
+ "shadcn-svelte": "shadcn-svelte";
548
672
  daisyui: "daisyui";
549
673
  "radix-ui": "radix-ui";
550
674
  "headless-ui": "headless-ui";
@@ -638,20 +762,20 @@ declare const DirectoryConflictSchema: z.ZodEnum<{
638
762
  }>;
639
763
  declare const TemplateSchema: z.ZodEnum<{
640
764
  none: "none";
765
+ uniwind: "uniwind";
641
766
  mern: "mern";
642
767
  pern: "pern";
643
768
  t3: "t3";
644
- uniwind: "uniwind";
645
769
  }>;
646
770
  declare const ProjectNameSchema: z.ZodString;
647
771
  declare const CreateInputSchema: z.ZodObject<{
648
772
  projectName: z.ZodOptional<z.ZodString>;
649
773
  template: z.ZodOptional<z.ZodEnum<{
650
774
  none: "none";
775
+ uniwind: "uniwind";
651
776
  mern: "mern";
652
777
  pern: "pern";
653
778
  t3: "t3";
654
- uniwind: "uniwind";
655
779
  }>>;
656
780
  yes: z.ZodOptional<z.ZodBoolean>;
657
781
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -659,10 +783,12 @@ declare const CreateInputSchema: z.ZodObject<{
659
783
  dryRun: z.ZodOptional<z.ZodBoolean>;
660
784
  ecosystem: z.ZodOptional<z.ZodEnum<{
661
785
  typescript: "typescript";
786
+ "react-native": "react-native";
662
787
  rust: "rust";
663
788
  python: "python";
664
789
  go: "go";
665
790
  java: "java";
791
+ elixir: "elixir";
666
792
  }>>;
667
793
  database: z.ZodOptional<z.ZodEnum<{
668
794
  none: "none";
@@ -708,6 +834,7 @@ declare const CreateInputSchema: z.ZodObject<{
708
834
  "react-vite": "react-vite";
709
835
  "tanstack-start": "tanstack-start";
710
836
  next: "next";
837
+ vinext: "vinext";
711
838
  nuxt: "nuxt";
712
839
  "native-bare": "native-bare";
713
840
  "native-uniwind": "native-uniwind";
@@ -740,6 +867,7 @@ declare const CreateInputSchema: z.ZodObject<{
740
867
  wxt: "wxt";
741
868
  msw: "msw";
742
869
  storybook: "storybook";
870
+ swr: "swr";
743
871
  "tanstack-query": "tanstack-query";
744
872
  "tanstack-table": "tanstack-table";
745
873
  "tanstack-virtual": "tanstack-virtual";
@@ -909,6 +1037,7 @@ declare const CreateInputSchema: z.ZodObject<{
909
1037
  uiLibrary: z.ZodOptional<z.ZodEnum<{
910
1038
  none: "none";
911
1039
  "shadcn-ui": "shadcn-ui";
1040
+ "shadcn-svelte": "shadcn-svelte";
912
1041
  daisyui: "daisyui";
913
1042
  "radix-ui": "radix-ui";
914
1043
  "headless-ui": "headless-ui";
@@ -1038,6 +1167,7 @@ declare const CreateInputSchema: z.ZodObject<{
1038
1167
  none: "none";
1039
1168
  pino: "pino";
1040
1169
  winston: "winston";
1170
+ evlog: "evlog";
1041
1171
  }>>;
1042
1172
  observability: z.ZodOptional<z.ZodEnum<{
1043
1173
  none: "none";
@@ -1064,6 +1194,7 @@ declare const CreateInputSchema: z.ZodObject<{
1064
1194
  sanity: "sanity";
1065
1195
  strapi: "strapi";
1066
1196
  tinacms: "tinacms";
1197
+ directus: "directus";
1067
1198
  }>>;
1068
1199
  caching: z.ZodOptional<z.ZodEnum<{
1069
1200
  none: "none";
@@ -1085,6 +1216,41 @@ declare const CreateInputSchema: z.ZodObject<{
1085
1216
  none: "none";
1086
1217
  s3: "s3";
1087
1218
  r2: "r2";
1219
+ cloudinary: "cloudinary";
1220
+ }>>;
1221
+ mobileNavigation: z.ZodOptional<z.ZodEnum<{
1222
+ none: "none";
1223
+ "expo-router": "expo-router";
1224
+ "react-navigation": "react-navigation";
1225
+ }>>;
1226
+ mobileUI: z.ZodOptional<z.ZodEnum<{
1227
+ none: "none";
1228
+ tamagui: "tamagui";
1229
+ "gluestack-ui": "gluestack-ui";
1230
+ uniwind: "uniwind";
1231
+ unistyles: "unistyles";
1232
+ }>>;
1233
+ mobileStorage: z.ZodOptional<z.ZodEnum<{
1234
+ none: "none";
1235
+ mmkv: "mmkv";
1236
+ }>>;
1237
+ mobileTesting: z.ZodOptional<z.ZodEnum<{
1238
+ none: "none";
1239
+ maestro: "maestro";
1240
+ "react-native-testing-library": "react-native-testing-library";
1241
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
1242
+ }>>;
1243
+ mobilePush: z.ZodOptional<z.ZodEnum<{
1244
+ none: "none";
1245
+ "expo-notifications": "expo-notifications";
1246
+ }>>;
1247
+ mobileOTA: z.ZodOptional<z.ZodEnum<{
1248
+ none: "none";
1249
+ "expo-updates": "expo-updates";
1250
+ }>>;
1251
+ mobileDeepLinking: z.ZodOptional<z.ZodEnum<{
1252
+ none: "none";
1253
+ "expo-linking": "expo-linking";
1088
1254
  }>>;
1089
1255
  rustWebFramework: z.ZodOptional<z.ZodEnum<{
1090
1256
  none: "none";
@@ -1291,6 +1457,88 @@ declare const CreateInputSchema: z.ZodObject<{
1291
1457
  archunit: "archunit";
1292
1458
  jqwik: "jqwik";
1293
1459
  }>>>;
1460
+ elixirWebFramework: z.ZodOptional<z.ZodEnum<{
1461
+ none: "none";
1462
+ phoenix: "phoenix";
1463
+ "phoenix-live-view": "phoenix-live-view";
1464
+ }>>;
1465
+ elixirOrm: z.ZodOptional<z.ZodEnum<{
1466
+ none: "none";
1467
+ ecto: "ecto";
1468
+ "ecto-sql": "ecto-sql";
1469
+ }>>;
1470
+ elixirAuth: z.ZodOptional<z.ZodEnum<{
1471
+ none: "none";
1472
+ "phx-gen-auth": "phx-gen-auth";
1473
+ ueberauth: "ueberauth";
1474
+ guardian: "guardian";
1475
+ }>>;
1476
+ elixirApi: z.ZodOptional<z.ZodEnum<{
1477
+ none: "none";
1478
+ rest: "rest";
1479
+ absinthe: "absinthe";
1480
+ }>>;
1481
+ elixirRealtime: z.ZodOptional<z.ZodEnum<{
1482
+ none: "none";
1483
+ channels: "channels";
1484
+ presence: "presence";
1485
+ pubsub: "pubsub";
1486
+ "live-view-streams": "live-view-streams";
1487
+ }>>;
1488
+ elixirJobs: z.ZodOptional<z.ZodEnum<{
1489
+ none: "none";
1490
+ oban: "oban";
1491
+ quantum: "quantum";
1492
+ }>>;
1493
+ elixirValidation: z.ZodOptional<z.ZodEnum<{
1494
+ none: "none";
1495
+ "ecto-changesets": "ecto-changesets";
1496
+ "nimble-options": "nimble-options";
1497
+ }>>;
1498
+ elixirHttp: z.ZodOptional<z.ZodEnum<{
1499
+ none: "none";
1500
+ req: "req";
1501
+ finch: "finch";
1502
+ }>>;
1503
+ elixirJson: z.ZodOptional<z.ZodEnum<{
1504
+ none: "none";
1505
+ jason: "jason";
1506
+ }>>;
1507
+ elixirEmail: z.ZodOptional<z.ZodEnum<{
1508
+ none: "none";
1509
+ swoosh: "swoosh";
1510
+ }>>;
1511
+ elixirCaching: z.ZodOptional<z.ZodEnum<{
1512
+ none: "none";
1513
+ cachex: "cachex";
1514
+ nebulex: "nebulex";
1515
+ }>>;
1516
+ elixirObservability: z.ZodOptional<z.ZodEnum<{
1517
+ none: "none";
1518
+ opentelemetry: "opentelemetry";
1519
+ telemetry: "telemetry";
1520
+ prom_ex: "prom_ex";
1521
+ }>>;
1522
+ elixirTesting: z.ZodOptional<z.ZodEnum<{
1523
+ none: "none";
1524
+ ex_unit: "ex_unit";
1525
+ mox: "mox";
1526
+ bypass: "bypass";
1527
+ wallaby: "wallaby";
1528
+ }>>;
1529
+ elixirQuality: z.ZodOptional<z.ZodEnum<{
1530
+ none: "none";
1531
+ credo: "credo";
1532
+ dialyxir: "dialyxir";
1533
+ sobelow: "sobelow";
1534
+ }>>;
1535
+ elixirDeploy: z.ZodOptional<z.ZodEnum<{
1536
+ none: "none";
1537
+ docker: "docker";
1538
+ fly: "fly";
1539
+ gigalixir: "gigalixir";
1540
+ "mix-release": "mix-release";
1541
+ }>>;
1294
1542
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1295
1543
  none: "none";
1296
1544
  "claude-md": "claude-md";
@@ -1318,6 +1566,7 @@ declare const AddInputSchema: z.ZodObject<{
1318
1566
  wxt: "wxt";
1319
1567
  msw: "msw";
1320
1568
  storybook: "storybook";
1569
+ swr: "swr";
1321
1570
  "tanstack-query": "tanstack-query";
1322
1571
  "tanstack-table": "tanstack-table";
1323
1572
  "tanstack-virtual": "tanstack-virtual";
@@ -1356,10 +1605,10 @@ declare const CLIInputSchema: z.ZodObject<{
1356
1605
  projectName: z.ZodOptional<z.ZodString>;
1357
1606
  template: z.ZodOptional<z.ZodEnum<{
1358
1607
  none: "none";
1608
+ uniwind: "uniwind";
1359
1609
  mern: "mern";
1360
1610
  pern: "pern";
1361
1611
  t3: "t3";
1362
- uniwind: "uniwind";
1363
1612
  }>>;
1364
1613
  yes: z.ZodOptional<z.ZodBoolean>;
1365
1614
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -1367,10 +1616,12 @@ declare const CLIInputSchema: z.ZodObject<{
1367
1616
  dryRun: z.ZodOptional<z.ZodBoolean>;
1368
1617
  ecosystem: z.ZodOptional<z.ZodEnum<{
1369
1618
  typescript: "typescript";
1619
+ "react-native": "react-native";
1370
1620
  rust: "rust";
1371
1621
  python: "python";
1372
1622
  go: "go";
1373
1623
  java: "java";
1624
+ elixir: "elixir";
1374
1625
  }>>;
1375
1626
  database: z.ZodOptional<z.ZodEnum<{
1376
1627
  none: "none";
@@ -1416,6 +1667,7 @@ declare const CLIInputSchema: z.ZodObject<{
1416
1667
  "react-vite": "react-vite";
1417
1668
  "tanstack-start": "tanstack-start";
1418
1669
  next: "next";
1670
+ vinext: "vinext";
1419
1671
  nuxt: "nuxt";
1420
1672
  "native-bare": "native-bare";
1421
1673
  "native-uniwind": "native-uniwind";
@@ -1448,6 +1700,7 @@ declare const CLIInputSchema: z.ZodObject<{
1448
1700
  wxt: "wxt";
1449
1701
  msw: "msw";
1450
1702
  storybook: "storybook";
1703
+ swr: "swr";
1451
1704
  "tanstack-query": "tanstack-query";
1452
1705
  "tanstack-table": "tanstack-table";
1453
1706
  "tanstack-virtual": "tanstack-virtual";
@@ -1617,6 +1870,7 @@ declare const CLIInputSchema: z.ZodObject<{
1617
1870
  uiLibrary: z.ZodOptional<z.ZodEnum<{
1618
1871
  none: "none";
1619
1872
  "shadcn-ui": "shadcn-ui";
1873
+ "shadcn-svelte": "shadcn-svelte";
1620
1874
  daisyui: "daisyui";
1621
1875
  "radix-ui": "radix-ui";
1622
1876
  "headless-ui": "headless-ui";
@@ -1746,6 +2000,7 @@ declare const CLIInputSchema: z.ZodObject<{
1746
2000
  none: "none";
1747
2001
  pino: "pino";
1748
2002
  winston: "winston";
2003
+ evlog: "evlog";
1749
2004
  }>>;
1750
2005
  observability: z.ZodOptional<z.ZodEnum<{
1751
2006
  none: "none";
@@ -1772,6 +2027,7 @@ declare const CLIInputSchema: z.ZodObject<{
1772
2027
  sanity: "sanity";
1773
2028
  strapi: "strapi";
1774
2029
  tinacms: "tinacms";
2030
+ directus: "directus";
1775
2031
  }>>;
1776
2032
  caching: z.ZodOptional<z.ZodEnum<{
1777
2033
  none: "none";
@@ -1793,6 +2049,41 @@ declare const CLIInputSchema: z.ZodObject<{
1793
2049
  none: "none";
1794
2050
  s3: "s3";
1795
2051
  r2: "r2";
2052
+ cloudinary: "cloudinary";
2053
+ }>>;
2054
+ mobileNavigation: z.ZodOptional<z.ZodEnum<{
2055
+ none: "none";
2056
+ "expo-router": "expo-router";
2057
+ "react-navigation": "react-navigation";
2058
+ }>>;
2059
+ mobileUI: z.ZodOptional<z.ZodEnum<{
2060
+ none: "none";
2061
+ tamagui: "tamagui";
2062
+ "gluestack-ui": "gluestack-ui";
2063
+ uniwind: "uniwind";
2064
+ unistyles: "unistyles";
2065
+ }>>;
2066
+ mobileStorage: z.ZodOptional<z.ZodEnum<{
2067
+ none: "none";
2068
+ mmkv: "mmkv";
2069
+ }>>;
2070
+ mobileTesting: z.ZodOptional<z.ZodEnum<{
2071
+ none: "none";
2072
+ maestro: "maestro";
2073
+ "react-native-testing-library": "react-native-testing-library";
2074
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
2075
+ }>>;
2076
+ mobilePush: z.ZodOptional<z.ZodEnum<{
2077
+ none: "none";
2078
+ "expo-notifications": "expo-notifications";
2079
+ }>>;
2080
+ mobileOTA: z.ZodOptional<z.ZodEnum<{
2081
+ none: "none";
2082
+ "expo-updates": "expo-updates";
2083
+ }>>;
2084
+ mobileDeepLinking: z.ZodOptional<z.ZodEnum<{
2085
+ none: "none";
2086
+ "expo-linking": "expo-linking";
1796
2087
  }>>;
1797
2088
  rustWebFramework: z.ZodOptional<z.ZodEnum<{
1798
2089
  none: "none";
@@ -1999,6 +2290,88 @@ declare const CLIInputSchema: z.ZodObject<{
1999
2290
  archunit: "archunit";
2000
2291
  jqwik: "jqwik";
2001
2292
  }>>>;
2293
+ elixirWebFramework: z.ZodOptional<z.ZodEnum<{
2294
+ none: "none";
2295
+ phoenix: "phoenix";
2296
+ "phoenix-live-view": "phoenix-live-view";
2297
+ }>>;
2298
+ elixirOrm: z.ZodOptional<z.ZodEnum<{
2299
+ none: "none";
2300
+ ecto: "ecto";
2301
+ "ecto-sql": "ecto-sql";
2302
+ }>>;
2303
+ elixirAuth: z.ZodOptional<z.ZodEnum<{
2304
+ none: "none";
2305
+ "phx-gen-auth": "phx-gen-auth";
2306
+ ueberauth: "ueberauth";
2307
+ guardian: "guardian";
2308
+ }>>;
2309
+ elixirApi: z.ZodOptional<z.ZodEnum<{
2310
+ none: "none";
2311
+ rest: "rest";
2312
+ absinthe: "absinthe";
2313
+ }>>;
2314
+ elixirRealtime: z.ZodOptional<z.ZodEnum<{
2315
+ none: "none";
2316
+ channels: "channels";
2317
+ presence: "presence";
2318
+ pubsub: "pubsub";
2319
+ "live-view-streams": "live-view-streams";
2320
+ }>>;
2321
+ elixirJobs: z.ZodOptional<z.ZodEnum<{
2322
+ none: "none";
2323
+ oban: "oban";
2324
+ quantum: "quantum";
2325
+ }>>;
2326
+ elixirValidation: z.ZodOptional<z.ZodEnum<{
2327
+ none: "none";
2328
+ "ecto-changesets": "ecto-changesets";
2329
+ "nimble-options": "nimble-options";
2330
+ }>>;
2331
+ elixirHttp: z.ZodOptional<z.ZodEnum<{
2332
+ none: "none";
2333
+ req: "req";
2334
+ finch: "finch";
2335
+ }>>;
2336
+ elixirJson: z.ZodOptional<z.ZodEnum<{
2337
+ none: "none";
2338
+ jason: "jason";
2339
+ }>>;
2340
+ elixirEmail: z.ZodOptional<z.ZodEnum<{
2341
+ none: "none";
2342
+ swoosh: "swoosh";
2343
+ }>>;
2344
+ elixirCaching: z.ZodOptional<z.ZodEnum<{
2345
+ none: "none";
2346
+ cachex: "cachex";
2347
+ nebulex: "nebulex";
2348
+ }>>;
2349
+ elixirObservability: z.ZodOptional<z.ZodEnum<{
2350
+ none: "none";
2351
+ opentelemetry: "opentelemetry";
2352
+ telemetry: "telemetry";
2353
+ prom_ex: "prom_ex";
2354
+ }>>;
2355
+ elixirTesting: z.ZodOptional<z.ZodEnum<{
2356
+ none: "none";
2357
+ ex_unit: "ex_unit";
2358
+ mox: "mox";
2359
+ bypass: "bypass";
2360
+ wallaby: "wallaby";
2361
+ }>>;
2362
+ elixirQuality: z.ZodOptional<z.ZodEnum<{
2363
+ none: "none";
2364
+ credo: "credo";
2365
+ dialyxir: "dialyxir";
2366
+ sobelow: "sobelow";
2367
+ }>>;
2368
+ elixirDeploy: z.ZodOptional<z.ZodEnum<{
2369
+ none: "none";
2370
+ docker: "docker";
2371
+ fly: "fly";
2372
+ gigalixir: "gigalixir";
2373
+ "mix-release": "mix-release";
2374
+ }>>;
2002
2375
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2003
2376
  none: "none";
2004
2377
  "claude-md": "claude-md";
@@ -2013,10 +2386,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
2013
2386
  relativePath: z.ZodString;
2014
2387
  ecosystem: z.ZodEnum<{
2015
2388
  typescript: "typescript";
2389
+ "react-native": "react-native";
2016
2390
  rust: "rust";
2017
2391
  python: "python";
2018
2392
  go: "go";
2019
2393
  java: "java";
2394
+ elixir: "elixir";
2020
2395
  }>;
2021
2396
  database: z.ZodEnum<{
2022
2397
  none: "none";
@@ -2064,6 +2439,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2064
2439
  "react-vite": "react-vite";
2065
2440
  "tanstack-start": "tanstack-start";
2066
2441
  next: "next";
2442
+ vinext: "vinext";
2067
2443
  nuxt: "nuxt";
2068
2444
  "native-bare": "native-bare";
2069
2445
  "native-uniwind": "native-uniwind";
@@ -2096,6 +2472,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2096
2472
  wxt: "wxt";
2097
2473
  msw: "msw";
2098
2474
  storybook: "storybook";
2475
+ swr: "swr";
2099
2476
  "tanstack-query": "tanstack-query";
2100
2477
  "tanstack-table": "tanstack-table";
2101
2478
  "tanstack-virtual": "tanstack-virtual";
@@ -2254,6 +2631,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2254
2631
  uiLibrary: z.ZodEnum<{
2255
2632
  none: "none";
2256
2633
  "shadcn-ui": "shadcn-ui";
2634
+ "shadcn-svelte": "shadcn-svelte";
2257
2635
  daisyui: "daisyui";
2258
2636
  "radix-ui": "radix-ui";
2259
2637
  "headless-ui": "headless-ui";
@@ -2383,6 +2761,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2383
2761
  none: "none";
2384
2762
  pino: "pino";
2385
2763
  winston: "winston";
2764
+ evlog: "evlog";
2386
2765
  }>;
2387
2766
  observability: z.ZodEnum<{
2388
2767
  none: "none";
@@ -2409,6 +2788,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2409
2788
  sanity: "sanity";
2410
2789
  strapi: "strapi";
2411
2790
  tinacms: "tinacms";
2791
+ directus: "directus";
2412
2792
  }>;
2413
2793
  caching: z.ZodEnum<{
2414
2794
  none: "none";
@@ -2430,6 +2810,41 @@ declare const ProjectConfigSchema: z.ZodObject<{
2430
2810
  none: "none";
2431
2811
  s3: "s3";
2432
2812
  r2: "r2";
2813
+ cloudinary: "cloudinary";
2814
+ }>;
2815
+ mobileNavigation: z.ZodEnum<{
2816
+ none: "none";
2817
+ "expo-router": "expo-router";
2818
+ "react-navigation": "react-navigation";
2819
+ }>;
2820
+ mobileUI: z.ZodEnum<{
2821
+ none: "none";
2822
+ tamagui: "tamagui";
2823
+ "gluestack-ui": "gluestack-ui";
2824
+ uniwind: "uniwind";
2825
+ unistyles: "unistyles";
2826
+ }>;
2827
+ mobileStorage: z.ZodEnum<{
2828
+ none: "none";
2829
+ mmkv: "mmkv";
2830
+ }>;
2831
+ mobileTesting: z.ZodEnum<{
2832
+ none: "none";
2833
+ maestro: "maestro";
2834
+ "react-native-testing-library": "react-native-testing-library";
2835
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
2836
+ }>;
2837
+ mobilePush: z.ZodEnum<{
2838
+ none: "none";
2839
+ "expo-notifications": "expo-notifications";
2840
+ }>;
2841
+ mobileOTA: z.ZodEnum<{
2842
+ none: "none";
2843
+ "expo-updates": "expo-updates";
2844
+ }>;
2845
+ mobileDeepLinking: z.ZodEnum<{
2846
+ none: "none";
2847
+ "expo-linking": "expo-linking";
2433
2848
  }>;
2434
2849
  rustWebFramework: z.ZodEnum<{
2435
2850
  none: "none";
@@ -2636,6 +3051,88 @@ declare const ProjectConfigSchema: z.ZodObject<{
2636
3051
  archunit: "archunit";
2637
3052
  jqwik: "jqwik";
2638
3053
  }>>;
3054
+ elixirWebFramework: z.ZodEnum<{
3055
+ none: "none";
3056
+ phoenix: "phoenix";
3057
+ "phoenix-live-view": "phoenix-live-view";
3058
+ }>;
3059
+ elixirOrm: z.ZodEnum<{
3060
+ none: "none";
3061
+ ecto: "ecto";
3062
+ "ecto-sql": "ecto-sql";
3063
+ }>;
3064
+ elixirAuth: z.ZodEnum<{
3065
+ none: "none";
3066
+ "phx-gen-auth": "phx-gen-auth";
3067
+ ueberauth: "ueberauth";
3068
+ guardian: "guardian";
3069
+ }>;
3070
+ elixirApi: z.ZodEnum<{
3071
+ none: "none";
3072
+ rest: "rest";
3073
+ absinthe: "absinthe";
3074
+ }>;
3075
+ elixirRealtime: z.ZodEnum<{
3076
+ none: "none";
3077
+ channels: "channels";
3078
+ presence: "presence";
3079
+ pubsub: "pubsub";
3080
+ "live-view-streams": "live-view-streams";
3081
+ }>;
3082
+ elixirJobs: z.ZodEnum<{
3083
+ none: "none";
3084
+ oban: "oban";
3085
+ quantum: "quantum";
3086
+ }>;
3087
+ elixirValidation: z.ZodEnum<{
3088
+ none: "none";
3089
+ "ecto-changesets": "ecto-changesets";
3090
+ "nimble-options": "nimble-options";
3091
+ }>;
3092
+ elixirHttp: z.ZodEnum<{
3093
+ none: "none";
3094
+ req: "req";
3095
+ finch: "finch";
3096
+ }>;
3097
+ elixirJson: z.ZodEnum<{
3098
+ none: "none";
3099
+ jason: "jason";
3100
+ }>;
3101
+ elixirEmail: z.ZodEnum<{
3102
+ none: "none";
3103
+ swoosh: "swoosh";
3104
+ }>;
3105
+ elixirCaching: z.ZodEnum<{
3106
+ none: "none";
3107
+ cachex: "cachex";
3108
+ nebulex: "nebulex";
3109
+ }>;
3110
+ elixirObservability: z.ZodEnum<{
3111
+ none: "none";
3112
+ opentelemetry: "opentelemetry";
3113
+ telemetry: "telemetry";
3114
+ prom_ex: "prom_ex";
3115
+ }>;
3116
+ elixirTesting: z.ZodEnum<{
3117
+ none: "none";
3118
+ ex_unit: "ex_unit";
3119
+ mox: "mox";
3120
+ bypass: "bypass";
3121
+ wallaby: "wallaby";
3122
+ }>;
3123
+ elixirQuality: z.ZodEnum<{
3124
+ none: "none";
3125
+ credo: "credo";
3126
+ dialyxir: "dialyxir";
3127
+ sobelow: "sobelow";
3128
+ }>;
3129
+ elixirDeploy: z.ZodEnum<{
3130
+ none: "none";
3131
+ docker: "docker";
3132
+ fly: "fly";
3133
+ gigalixir: "gigalixir";
3134
+ "mix-release": "mix-release";
3135
+ }>;
2639
3136
  aiDocs: z.ZodArray<z.ZodEnum<{
2640
3137
  none: "none";
2641
3138
  "claude-md": "claude-md";
@@ -2648,10 +3145,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2648
3145
  createdAt: z.ZodString;
2649
3146
  ecosystem: z.ZodEnum<{
2650
3147
  typescript: "typescript";
3148
+ "react-native": "react-native";
2651
3149
  rust: "rust";
2652
3150
  python: "python";
2653
3151
  go: "go";
2654
3152
  java: "java";
3153
+ elixir: "elixir";
2655
3154
  }>;
2656
3155
  database: z.ZodEnum<{
2657
3156
  none: "none";
@@ -2699,6 +3198,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2699
3198
  "react-vite": "react-vite";
2700
3199
  "tanstack-start": "tanstack-start";
2701
3200
  next: "next";
3201
+ vinext: "vinext";
2702
3202
  nuxt: "nuxt";
2703
3203
  "native-bare": "native-bare";
2704
3204
  "native-uniwind": "native-uniwind";
@@ -2731,6 +3231,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2731
3231
  wxt: "wxt";
2732
3232
  msw: "msw";
2733
3233
  storybook: "storybook";
3234
+ swr: "swr";
2734
3235
  "tanstack-query": "tanstack-query";
2735
3236
  "tanstack-table": "tanstack-table";
2736
3237
  "tanstack-virtual": "tanstack-virtual";
@@ -2887,6 +3388,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2887
3388
  uiLibrary: z.ZodEnum<{
2888
3389
  none: "none";
2889
3390
  "shadcn-ui": "shadcn-ui";
3391
+ "shadcn-svelte": "shadcn-svelte";
2890
3392
  daisyui: "daisyui";
2891
3393
  "radix-ui": "radix-ui";
2892
3394
  "headless-ui": "headless-ui";
@@ -3016,6 +3518,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3016
3518
  none: "none";
3017
3519
  pino: "pino";
3018
3520
  winston: "winston";
3521
+ evlog: "evlog";
3019
3522
  }>;
3020
3523
  observability: z.ZodEnum<{
3021
3524
  none: "none";
@@ -3042,6 +3545,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3042
3545
  sanity: "sanity";
3043
3546
  strapi: "strapi";
3044
3547
  tinacms: "tinacms";
3548
+ directus: "directus";
3045
3549
  }>;
3046
3550
  caching: z.ZodEnum<{
3047
3551
  none: "none";
@@ -3063,6 +3567,41 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3063
3567
  none: "none";
3064
3568
  s3: "s3";
3065
3569
  r2: "r2";
3570
+ cloudinary: "cloudinary";
3571
+ }>;
3572
+ mobileNavigation: z.ZodEnum<{
3573
+ none: "none";
3574
+ "expo-router": "expo-router";
3575
+ "react-navigation": "react-navigation";
3576
+ }>;
3577
+ mobileUI: z.ZodEnum<{
3578
+ none: "none";
3579
+ tamagui: "tamagui";
3580
+ "gluestack-ui": "gluestack-ui";
3581
+ uniwind: "uniwind";
3582
+ unistyles: "unistyles";
3583
+ }>;
3584
+ mobileStorage: z.ZodEnum<{
3585
+ none: "none";
3586
+ mmkv: "mmkv";
3587
+ }>;
3588
+ mobileTesting: z.ZodEnum<{
3589
+ none: "none";
3590
+ maestro: "maestro";
3591
+ "react-native-testing-library": "react-native-testing-library";
3592
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
3593
+ }>;
3594
+ mobilePush: z.ZodEnum<{
3595
+ none: "none";
3596
+ "expo-notifications": "expo-notifications";
3597
+ }>;
3598
+ mobileOTA: z.ZodEnum<{
3599
+ none: "none";
3600
+ "expo-updates": "expo-updates";
3601
+ }>;
3602
+ mobileDeepLinking: z.ZodEnum<{
3603
+ none: "none";
3604
+ "expo-linking": "expo-linking";
3066
3605
  }>;
3067
3606
  rustWebFramework: z.ZodEnum<{
3068
3607
  none: "none";
@@ -3269,6 +3808,88 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3269
3808
  archunit: "archunit";
3270
3809
  jqwik: "jqwik";
3271
3810
  }>>;
3811
+ elixirWebFramework: z.ZodEnum<{
3812
+ none: "none";
3813
+ phoenix: "phoenix";
3814
+ "phoenix-live-view": "phoenix-live-view";
3815
+ }>;
3816
+ elixirOrm: z.ZodEnum<{
3817
+ none: "none";
3818
+ ecto: "ecto";
3819
+ "ecto-sql": "ecto-sql";
3820
+ }>;
3821
+ elixirAuth: z.ZodEnum<{
3822
+ none: "none";
3823
+ "phx-gen-auth": "phx-gen-auth";
3824
+ ueberauth: "ueberauth";
3825
+ guardian: "guardian";
3826
+ }>;
3827
+ elixirApi: z.ZodEnum<{
3828
+ none: "none";
3829
+ rest: "rest";
3830
+ absinthe: "absinthe";
3831
+ }>;
3832
+ elixirRealtime: z.ZodEnum<{
3833
+ none: "none";
3834
+ channels: "channels";
3835
+ presence: "presence";
3836
+ pubsub: "pubsub";
3837
+ "live-view-streams": "live-view-streams";
3838
+ }>;
3839
+ elixirJobs: z.ZodEnum<{
3840
+ none: "none";
3841
+ oban: "oban";
3842
+ quantum: "quantum";
3843
+ }>;
3844
+ elixirValidation: z.ZodEnum<{
3845
+ none: "none";
3846
+ "ecto-changesets": "ecto-changesets";
3847
+ "nimble-options": "nimble-options";
3848
+ }>;
3849
+ elixirHttp: z.ZodEnum<{
3850
+ none: "none";
3851
+ req: "req";
3852
+ finch: "finch";
3853
+ }>;
3854
+ elixirJson: z.ZodEnum<{
3855
+ none: "none";
3856
+ jason: "jason";
3857
+ }>;
3858
+ elixirEmail: z.ZodEnum<{
3859
+ none: "none";
3860
+ swoosh: "swoosh";
3861
+ }>;
3862
+ elixirCaching: z.ZodEnum<{
3863
+ none: "none";
3864
+ cachex: "cachex";
3865
+ nebulex: "nebulex";
3866
+ }>;
3867
+ elixirObservability: z.ZodEnum<{
3868
+ none: "none";
3869
+ opentelemetry: "opentelemetry";
3870
+ telemetry: "telemetry";
3871
+ prom_ex: "prom_ex";
3872
+ }>;
3873
+ elixirTesting: z.ZodEnum<{
3874
+ none: "none";
3875
+ ex_unit: "ex_unit";
3876
+ mox: "mox";
3877
+ bypass: "bypass";
3878
+ wallaby: "wallaby";
3879
+ }>;
3880
+ elixirQuality: z.ZodEnum<{
3881
+ none: "none";
3882
+ credo: "credo";
3883
+ dialyxir: "dialyxir";
3884
+ sobelow: "sobelow";
3885
+ }>;
3886
+ elixirDeploy: z.ZodEnum<{
3887
+ none: "none";
3888
+ docker: "docker";
3889
+ fly: "fly";
3890
+ gigalixir: "gigalixir";
3891
+ "mix-release": "mix-release";
3892
+ }>;
3272
3893
  aiDocs: z.ZodArray<z.ZodEnum<{
3273
3894
  none: "none";
3274
3895
  "claude-md": "claude-md";
@@ -3276,16 +3897,17 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
3276
3897
  cursorrules: "cursorrules";
3277
3898
  }>>;
3278
3899
  }, z.core.$strip>;
3279
- declare const BetterTStackConfigFileSchema: z.ZodObject<{
3280
- $schema: z.ZodOptional<z.ZodString>;
3900
+ declare const BetterFullstackConfigSchema: z.ZodObject<{
3281
3901
  version: z.ZodString;
3282
3902
  createdAt: z.ZodString;
3283
3903
  ecosystem: z.ZodEnum<{
3284
3904
  typescript: "typescript";
3905
+ "react-native": "react-native";
3285
3906
  rust: "rust";
3286
3907
  python: "python";
3287
3908
  go: "go";
3288
3909
  java: "java";
3910
+ elixir: "elixir";
3289
3911
  }>;
3290
3912
  database: z.ZodEnum<{
3291
3913
  none: "none";
@@ -3333,6 +3955,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3333
3955
  "react-vite": "react-vite";
3334
3956
  "tanstack-start": "tanstack-start";
3335
3957
  next: "next";
3958
+ vinext: "vinext";
3336
3959
  nuxt: "nuxt";
3337
3960
  "native-bare": "native-bare";
3338
3961
  "native-uniwind": "native-uniwind";
@@ -3365,6 +3988,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3365
3988
  wxt: "wxt";
3366
3989
  msw: "msw";
3367
3990
  storybook: "storybook";
3991
+ swr: "swr";
3368
3992
  "tanstack-query": "tanstack-query";
3369
3993
  "tanstack-table": "tanstack-table";
3370
3994
  "tanstack-virtual": "tanstack-virtual";
@@ -3521,6 +4145,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3521
4145
  uiLibrary: z.ZodEnum<{
3522
4146
  none: "none";
3523
4147
  "shadcn-ui": "shadcn-ui";
4148
+ "shadcn-svelte": "shadcn-svelte";
3524
4149
  daisyui: "daisyui";
3525
4150
  "radix-ui": "radix-ui";
3526
4151
  "headless-ui": "headless-ui";
@@ -3650,6 +4275,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3650
4275
  none: "none";
3651
4276
  pino: "pino";
3652
4277
  winston: "winston";
4278
+ evlog: "evlog";
3653
4279
  }>;
3654
4280
  observability: z.ZodEnum<{
3655
4281
  none: "none";
@@ -3676,6 +4302,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3676
4302
  sanity: "sanity";
3677
4303
  strapi: "strapi";
3678
4304
  tinacms: "tinacms";
4305
+ directus: "directus";
3679
4306
  }>;
3680
4307
  caching: z.ZodEnum<{
3681
4308
  none: "none";
@@ -3697,17 +4324,1568 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3697
4324
  none: "none";
3698
4325
  s3: "s3";
3699
4326
  r2: "r2";
4327
+ cloudinary: "cloudinary";
3700
4328
  }>;
3701
- rustWebFramework: z.ZodEnum<{
4329
+ mobileNavigation: z.ZodEnum<{
3702
4330
  none: "none";
3703
- axum: "axum";
3704
- "actix-web": "actix-web";
3705
- rocket: "rocket";
4331
+ "expo-router": "expo-router";
4332
+ "react-navigation": "react-navigation";
3706
4333
  }>;
3707
- rustFrontend: z.ZodEnum<{
4334
+ mobileUI: z.ZodEnum<{
3708
4335
  none: "none";
3709
- leptos: "leptos";
3710
- dioxus: "dioxus";
4336
+ tamagui: "tamagui";
4337
+ "gluestack-ui": "gluestack-ui";
4338
+ uniwind: "uniwind";
4339
+ unistyles: "unistyles";
4340
+ }>;
4341
+ mobileStorage: z.ZodEnum<{
4342
+ none: "none";
4343
+ mmkv: "mmkv";
4344
+ }>;
4345
+ mobileTesting: z.ZodEnum<{
4346
+ none: "none";
4347
+ maestro: "maestro";
4348
+ "react-native-testing-library": "react-native-testing-library";
4349
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
4350
+ }>;
4351
+ mobilePush: z.ZodEnum<{
4352
+ none: "none";
4353
+ "expo-notifications": "expo-notifications";
4354
+ }>;
4355
+ mobileOTA: z.ZodEnum<{
4356
+ none: "none";
4357
+ "expo-updates": "expo-updates";
4358
+ }>;
4359
+ mobileDeepLinking: z.ZodEnum<{
4360
+ none: "none";
4361
+ "expo-linking": "expo-linking";
4362
+ }>;
4363
+ rustWebFramework: z.ZodEnum<{
4364
+ none: "none";
4365
+ axum: "axum";
4366
+ "actix-web": "actix-web";
4367
+ rocket: "rocket";
4368
+ }>;
4369
+ rustFrontend: z.ZodEnum<{
4370
+ none: "none";
4371
+ leptos: "leptos";
4372
+ dioxus: "dioxus";
4373
+ }>;
4374
+ rustOrm: z.ZodEnum<{
4375
+ none: "none";
4376
+ "sea-orm": "sea-orm";
4377
+ sqlx: "sqlx";
4378
+ diesel: "diesel";
4379
+ }>;
4380
+ rustApi: z.ZodEnum<{
4381
+ none: "none";
4382
+ tonic: "tonic";
4383
+ "async-graphql": "async-graphql";
4384
+ }>;
4385
+ rustCli: z.ZodEnum<{
4386
+ none: "none";
4387
+ clap: "clap";
4388
+ ratatui: "ratatui";
4389
+ }>;
4390
+ rustLibraries: z.ZodArray<z.ZodEnum<{
4391
+ none: "none";
4392
+ serde: "serde";
4393
+ uuid: "uuid";
4394
+ chrono: "chrono";
4395
+ reqwest: "reqwest";
4396
+ config: "config";
4397
+ dashmap: "dashmap";
4398
+ "parking-lot": "parking-lot";
4399
+ secrecy: "secrecy";
4400
+ "tokio-util": "tokio-util";
4401
+ utoipa: "utoipa";
4402
+ validator: "validator";
4403
+ jsonwebtoken: "jsonwebtoken";
4404
+ argon2: "argon2";
4405
+ "tokio-test": "tokio-test";
4406
+ mockall: "mockall";
4407
+ proptest: "proptest";
4408
+ insta: "insta";
4409
+ }>>;
4410
+ rustLogging: z.ZodEnum<{
4411
+ none: "none";
4412
+ tracing: "tracing";
4413
+ "env-logger": "env-logger";
4414
+ }>;
4415
+ rustErrorHandling: z.ZodEnum<{
4416
+ none: "none";
4417
+ "anyhow-thiserror": "anyhow-thiserror";
4418
+ eyre: "eyre";
4419
+ }>;
4420
+ rustCaching: z.ZodEnum<{
4421
+ none: "none";
4422
+ redis: "redis";
4423
+ moka: "moka";
4424
+ }>;
4425
+ rustAuth: z.ZodEnum<{
4426
+ none: "none";
4427
+ oauth2: "oauth2";
4428
+ }>;
4429
+ pythonWebFramework: z.ZodEnum<{
4430
+ none: "none";
4431
+ fastapi: "fastapi";
4432
+ django: "django";
4433
+ flask: "flask";
4434
+ litestar: "litestar";
4435
+ }>;
4436
+ pythonOrm: z.ZodEnum<{
4437
+ none: "none";
4438
+ sqlalchemy: "sqlalchemy";
4439
+ sqlmodel: "sqlmodel";
4440
+ "tortoise-orm": "tortoise-orm";
4441
+ }>;
4442
+ pythonValidation: z.ZodEnum<{
4443
+ none: "none";
4444
+ pydantic: "pydantic";
4445
+ }>;
4446
+ pythonAi: z.ZodArray<z.ZodEnum<{
4447
+ none: "none";
4448
+ langgraph: "langgraph";
4449
+ langchain: "langchain";
4450
+ llamaindex: "llamaindex";
4451
+ "openai-sdk": "openai-sdk";
4452
+ "anthropic-sdk": "anthropic-sdk";
4453
+ crewai: "crewai";
4454
+ haystack: "haystack";
4455
+ }>>;
4456
+ pythonAuth: z.ZodEnum<{
4457
+ none: "none";
4458
+ authlib: "authlib";
4459
+ jwt: "jwt";
4460
+ }>;
4461
+ pythonApi: z.ZodOptional<z.ZodEnum<{
4462
+ none: "none";
4463
+ "django-rest-framework": "django-rest-framework";
4464
+ "django-ninja": "django-ninja";
4465
+ }>>;
4466
+ pythonTaskQueue: z.ZodEnum<{
4467
+ none: "none";
4468
+ celery: "celery";
4469
+ rq: "rq";
4470
+ dramatiq: "dramatiq";
4471
+ huey: "huey";
4472
+ }>;
4473
+ pythonGraphql: z.ZodEnum<{
4474
+ none: "none";
4475
+ strawberry: "strawberry";
4476
+ ariadne: "ariadne";
4477
+ }>;
4478
+ pythonQuality: z.ZodEnum<{
4479
+ none: "none";
4480
+ ruff: "ruff";
4481
+ mypy: "mypy";
4482
+ pyright: "pyright";
4483
+ }>;
4484
+ goWebFramework: z.ZodEnum<{
4485
+ none: "none";
4486
+ gin: "gin";
4487
+ echo: "echo";
4488
+ fiber: "fiber";
4489
+ chi: "chi";
4490
+ }>;
4491
+ goOrm: z.ZodEnum<{
4492
+ none: "none";
4493
+ gorm: "gorm";
4494
+ sqlc: "sqlc";
4495
+ ent: "ent";
4496
+ }>;
4497
+ goApi: z.ZodEnum<{
4498
+ none: "none";
4499
+ "grpc-go": "grpc-go";
4500
+ }>;
4501
+ goCli: z.ZodEnum<{
4502
+ none: "none";
4503
+ cobra: "cobra";
4504
+ bubbletea: "bubbletea";
4505
+ "urfave-cli": "urfave-cli";
4506
+ }>;
4507
+ goLogging: z.ZodEnum<{
4508
+ none: "none";
4509
+ zap: "zap";
4510
+ zerolog: "zerolog";
4511
+ slog: "slog";
4512
+ logrus: "logrus";
4513
+ }>;
4514
+ goAuth: z.ZodEnum<{
4515
+ none: "none";
4516
+ jwt: "jwt";
4517
+ casbin: "casbin";
4518
+ }>;
4519
+ javaWebFramework: z.ZodEnum<{
4520
+ none: "none";
4521
+ "spring-boot": "spring-boot";
4522
+ quarkus: "quarkus";
4523
+ }>;
4524
+ javaBuildTool: z.ZodEnum<{
4525
+ none: "none";
4526
+ maven: "maven";
4527
+ gradle: "gradle";
4528
+ }>;
4529
+ javaOrm: z.ZodEnum<{
4530
+ none: "none";
4531
+ "spring-data-jpa": "spring-data-jpa";
4532
+ }>;
4533
+ javaAuth: z.ZodEnum<{
4534
+ none: "none";
4535
+ "spring-security": "spring-security";
4536
+ }>;
4537
+ javaLibraries: z.ZodArray<z.ZodEnum<{
4538
+ none: "none";
4539
+ "spring-actuator": "spring-actuator";
4540
+ "spring-validation": "spring-validation";
4541
+ flyway: "flyway";
4542
+ liquibase: "liquibase";
4543
+ "springdoc-openapi": "springdoc-openapi";
4544
+ lombok: "lombok";
4545
+ mapstruct: "mapstruct";
4546
+ caffeine: "caffeine";
4547
+ resilience4j: "resilience4j";
4548
+ "spring-webflux": "spring-webflux";
4549
+ "spring-batch": "spring-batch";
4550
+ "spring-kafka": "spring-kafka";
4551
+ "spring-mail": "spring-mail";
4552
+ "spring-devtools": "spring-devtools";
4553
+ "micrometer-prometheus": "micrometer-prometheus";
4554
+ thymeleaf: "thymeleaf";
4555
+ }>>;
4556
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
4557
+ none: "none";
4558
+ junit5: "junit5";
4559
+ mockito: "mockito";
4560
+ testcontainers: "testcontainers";
4561
+ assertj: "assertj";
4562
+ "rest-assured": "rest-assured";
4563
+ wiremock: "wiremock";
4564
+ awaitility: "awaitility";
4565
+ archunit: "archunit";
4566
+ jqwik: "jqwik";
4567
+ }>>;
4568
+ elixirWebFramework: z.ZodEnum<{
4569
+ none: "none";
4570
+ phoenix: "phoenix";
4571
+ "phoenix-live-view": "phoenix-live-view";
4572
+ }>;
4573
+ elixirOrm: z.ZodEnum<{
4574
+ none: "none";
4575
+ ecto: "ecto";
4576
+ "ecto-sql": "ecto-sql";
4577
+ }>;
4578
+ elixirAuth: z.ZodEnum<{
4579
+ none: "none";
4580
+ "phx-gen-auth": "phx-gen-auth";
4581
+ ueberauth: "ueberauth";
4582
+ guardian: "guardian";
4583
+ }>;
4584
+ elixirApi: z.ZodEnum<{
4585
+ none: "none";
4586
+ rest: "rest";
4587
+ absinthe: "absinthe";
4588
+ }>;
4589
+ elixirRealtime: z.ZodEnum<{
4590
+ none: "none";
4591
+ channels: "channels";
4592
+ presence: "presence";
4593
+ pubsub: "pubsub";
4594
+ "live-view-streams": "live-view-streams";
4595
+ }>;
4596
+ elixirJobs: z.ZodEnum<{
4597
+ none: "none";
4598
+ oban: "oban";
4599
+ quantum: "quantum";
4600
+ }>;
4601
+ elixirValidation: z.ZodEnum<{
4602
+ none: "none";
4603
+ "ecto-changesets": "ecto-changesets";
4604
+ "nimble-options": "nimble-options";
4605
+ }>;
4606
+ elixirHttp: z.ZodEnum<{
4607
+ none: "none";
4608
+ req: "req";
4609
+ finch: "finch";
4610
+ }>;
4611
+ elixirJson: z.ZodEnum<{
4612
+ none: "none";
4613
+ jason: "jason";
4614
+ }>;
4615
+ elixirEmail: z.ZodEnum<{
4616
+ none: "none";
4617
+ swoosh: "swoosh";
4618
+ }>;
4619
+ elixirCaching: z.ZodEnum<{
4620
+ none: "none";
4621
+ cachex: "cachex";
4622
+ nebulex: "nebulex";
4623
+ }>;
4624
+ elixirObservability: z.ZodEnum<{
4625
+ none: "none";
4626
+ opentelemetry: "opentelemetry";
4627
+ telemetry: "telemetry";
4628
+ prom_ex: "prom_ex";
4629
+ }>;
4630
+ elixirTesting: z.ZodEnum<{
4631
+ none: "none";
4632
+ ex_unit: "ex_unit";
4633
+ mox: "mox";
4634
+ bypass: "bypass";
4635
+ wallaby: "wallaby";
4636
+ }>;
4637
+ elixirQuality: z.ZodEnum<{
4638
+ none: "none";
4639
+ credo: "credo";
4640
+ dialyxir: "dialyxir";
4641
+ sobelow: "sobelow";
4642
+ }>;
4643
+ elixirDeploy: z.ZodEnum<{
4644
+ none: "none";
4645
+ docker: "docker";
4646
+ fly: "fly";
4647
+ gigalixir: "gigalixir";
4648
+ "mix-release": "mix-release";
4649
+ }>;
4650
+ aiDocs: z.ZodArray<z.ZodEnum<{
4651
+ none: "none";
4652
+ "claude-md": "claude-md";
4653
+ "agents-md": "agents-md";
4654
+ cursorrules: "cursorrules";
4655
+ }>>;
4656
+ }, z.core.$strip>;
4657
+ declare const BetterTStackConfigFileSchema: z.ZodObject<{
4658
+ $schema: z.ZodOptional<z.ZodString>;
4659
+ version: z.ZodString;
4660
+ createdAt: z.ZodString;
4661
+ ecosystem: z.ZodEnum<{
4662
+ typescript: "typescript";
4663
+ "react-native": "react-native";
4664
+ rust: "rust";
4665
+ python: "python";
4666
+ go: "go";
4667
+ java: "java";
4668
+ elixir: "elixir";
4669
+ }>;
4670
+ database: z.ZodEnum<{
4671
+ none: "none";
4672
+ sqlite: "sqlite";
4673
+ postgres: "postgres";
4674
+ mysql: "mysql";
4675
+ mongodb: "mongodb";
4676
+ edgedb: "edgedb";
4677
+ redis: "redis";
4678
+ }>;
4679
+ orm: z.ZodEnum<{
4680
+ none: "none";
4681
+ drizzle: "drizzle";
4682
+ prisma: "prisma";
4683
+ mongoose: "mongoose";
4684
+ typeorm: "typeorm";
4685
+ kysely: "kysely";
4686
+ mikroorm: "mikroorm";
4687
+ sequelize: "sequelize";
4688
+ }>;
4689
+ backend: z.ZodEnum<{
4690
+ none: "none";
4691
+ hono: "hono";
4692
+ express: "express";
4693
+ fastify: "fastify";
4694
+ elysia: "elysia";
4695
+ fets: "fets";
4696
+ nestjs: "nestjs";
4697
+ adonisjs: "adonisjs";
4698
+ nitro: "nitro";
4699
+ encore: "encore";
4700
+ convex: "convex";
4701
+ self: "self";
4702
+ }>;
4703
+ runtime: z.ZodEnum<{
4704
+ none: "none";
4705
+ bun: "bun";
4706
+ node: "node";
4707
+ workers: "workers";
4708
+ }>;
4709
+ frontend: z.ZodArray<z.ZodEnum<{
4710
+ none: "none";
4711
+ "tanstack-router": "tanstack-router";
4712
+ "react-router": "react-router";
4713
+ "react-vite": "react-vite";
4714
+ "tanstack-start": "tanstack-start";
4715
+ next: "next";
4716
+ vinext: "vinext";
4717
+ nuxt: "nuxt";
4718
+ "native-bare": "native-bare";
4719
+ "native-uniwind": "native-uniwind";
4720
+ "native-unistyles": "native-unistyles";
4721
+ svelte: "svelte";
4722
+ solid: "solid";
4723
+ "solid-start": "solid-start";
4724
+ astro: "astro";
4725
+ qwik: "qwik";
4726
+ angular: "angular";
4727
+ redwood: "redwood";
4728
+ fresh: "fresh";
4729
+ }>>;
4730
+ addons: z.ZodArray<z.ZodEnum<{
4731
+ none: "none";
4732
+ pwa: "pwa";
4733
+ tauri: "tauri";
4734
+ starlight: "starlight";
4735
+ biome: "biome";
4736
+ lefthook: "lefthook";
4737
+ husky: "husky";
4738
+ ruler: "ruler";
4739
+ mcp: "mcp";
4740
+ skills: "skills";
4741
+ turborepo: "turborepo";
4742
+ fumadocs: "fumadocs";
4743
+ ultracite: "ultracite";
4744
+ oxlint: "oxlint";
4745
+ opentui: "opentui";
4746
+ wxt: "wxt";
4747
+ msw: "msw";
4748
+ storybook: "storybook";
4749
+ swr: "swr";
4750
+ "tanstack-query": "tanstack-query";
4751
+ "tanstack-table": "tanstack-table";
4752
+ "tanstack-virtual": "tanstack-virtual";
4753
+ "tanstack-db": "tanstack-db";
4754
+ "tanstack-pacer": "tanstack-pacer";
4755
+ "docker-compose": "docker-compose";
4756
+ }>>;
4757
+ examples: z.ZodArray<z.ZodEnum<{
4758
+ none: "none";
4759
+ ai: "ai";
4760
+ "chat-sdk": "chat-sdk";
4761
+ "tanstack-showcase": "tanstack-showcase";
4762
+ }>>;
4763
+ auth: z.ZodEnum<{
4764
+ none: "none";
4765
+ "better-auth": "better-auth";
4766
+ "go-better-auth": "go-better-auth";
4767
+ clerk: "clerk";
4768
+ nextauth: "nextauth";
4769
+ "stack-auth": "stack-auth";
4770
+ "supabase-auth": "supabase-auth";
4771
+ auth0: "auth0";
4772
+ }>;
4773
+ payments: z.ZodEnum<{
4774
+ none: "none";
4775
+ polar: "polar";
4776
+ stripe: "stripe";
4777
+ "lemon-squeezy": "lemon-squeezy";
4778
+ paddle: "paddle";
4779
+ dodo: "dodo";
4780
+ }>;
4781
+ packageManager: z.ZodEnum<{
4782
+ bun: "bun";
4783
+ npm: "npm";
4784
+ pnpm: "pnpm";
4785
+ yarn: "yarn";
4786
+ }>;
4787
+ versionChannel: z.ZodEnum<{
4788
+ stable: "stable";
4789
+ latest: "latest";
4790
+ beta: "beta";
4791
+ }>;
4792
+ dbSetup: z.ZodEnum<{
4793
+ none: "none";
4794
+ turso: "turso";
4795
+ neon: "neon";
4796
+ "prisma-postgres": "prisma-postgres";
4797
+ planetscale: "planetscale";
4798
+ "mongodb-atlas": "mongodb-atlas";
4799
+ supabase: "supabase";
4800
+ upstash: "upstash";
4801
+ d1: "d1";
4802
+ docker: "docker";
4803
+ }>;
4804
+ api: z.ZodEnum<{
4805
+ none: "none";
4806
+ trpc: "trpc";
4807
+ orpc: "orpc";
4808
+ "ts-rest": "ts-rest";
4809
+ garph: "garph";
4810
+ "graphql-yoga": "graphql-yoga";
4811
+ }>;
4812
+ webDeploy: z.ZodEnum<{
4813
+ none: "none";
4814
+ docker: "docker";
4815
+ cloudflare: "cloudflare";
4816
+ fly: "fly";
4817
+ railway: "railway";
4818
+ sst: "sst";
4819
+ vercel: "vercel";
4820
+ }>;
4821
+ serverDeploy: z.ZodEnum<{
4822
+ none: "none";
4823
+ docker: "docker";
4824
+ cloudflare: "cloudflare";
4825
+ fly: "fly";
4826
+ railway: "railway";
4827
+ sst: "sst";
4828
+ vercel: "vercel";
4829
+ }>;
4830
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
4831
+ none: "none";
4832
+ svelte: "svelte";
4833
+ solid: "solid";
4834
+ react: "react";
4835
+ vue: "vue";
4836
+ }>>;
4837
+ ai: z.ZodEnum<{
4838
+ none: "none";
4839
+ "vercel-ai": "vercel-ai";
4840
+ mastra: "mastra";
4841
+ voltagent: "voltagent";
4842
+ langgraph: "langgraph";
4843
+ "openai-agents": "openai-agents";
4844
+ "google-adk": "google-adk";
4845
+ modelfusion: "modelfusion";
4846
+ langchain: "langchain";
4847
+ llamaindex: "llamaindex";
4848
+ "tanstack-ai": "tanstack-ai";
4849
+ "ai-cli": "ai-cli";
4850
+ }>;
4851
+ effect: z.ZodEnum<{
4852
+ none: "none";
4853
+ effect: "effect";
4854
+ "effect-full": "effect-full";
4855
+ }>;
4856
+ stateManagement: z.ZodEnum<{
4857
+ none: "none";
4858
+ zustand: "zustand";
4859
+ jotai: "jotai";
4860
+ nanostores: "nanostores";
4861
+ "redux-toolkit": "redux-toolkit";
4862
+ mobx: "mobx";
4863
+ xstate: "xstate";
4864
+ valtio: "valtio";
4865
+ "tanstack-store": "tanstack-store";
4866
+ "legend-state": "legend-state";
4867
+ }>;
4868
+ forms: z.ZodEnum<{
4869
+ none: "none";
4870
+ "tanstack-form": "tanstack-form";
4871
+ "react-hook-form": "react-hook-form";
4872
+ formik: "formik";
4873
+ "final-form": "final-form";
4874
+ conform: "conform";
4875
+ "modular-forms": "modular-forms";
4876
+ }>;
4877
+ testing: z.ZodEnum<{
4878
+ none: "none";
4879
+ vitest: "vitest";
4880
+ playwright: "playwright";
4881
+ "vitest-playwright": "vitest-playwright";
4882
+ jest: "jest";
4883
+ cypress: "cypress";
4884
+ }>;
4885
+ email: z.ZodEnum<{
4886
+ none: "none";
4887
+ "react-email": "react-email";
4888
+ resend: "resend";
4889
+ nodemailer: "nodemailer";
4890
+ postmark: "postmark";
4891
+ sendgrid: "sendgrid";
4892
+ "aws-ses": "aws-ses";
4893
+ mailgun: "mailgun";
4894
+ plunk: "plunk";
4895
+ }>;
4896
+ cssFramework: z.ZodEnum<{
4897
+ none: "none";
4898
+ tailwind: "tailwind";
4899
+ scss: "scss";
4900
+ less: "less";
4901
+ "postcss-only": "postcss-only";
4902
+ }>;
4903
+ uiLibrary: z.ZodEnum<{
4904
+ none: "none";
4905
+ "shadcn-ui": "shadcn-ui";
4906
+ "shadcn-svelte": "shadcn-svelte";
4907
+ daisyui: "daisyui";
4908
+ "radix-ui": "radix-ui";
4909
+ "headless-ui": "headless-ui";
4910
+ "park-ui": "park-ui";
4911
+ "chakra-ui": "chakra-ui";
4912
+ nextui: "nextui";
4913
+ mantine: "mantine";
4914
+ mui: "mui";
4915
+ antd: "antd";
4916
+ "base-ui": "base-ui";
4917
+ "ark-ui": "ark-ui";
4918
+ "react-aria": "react-aria";
4919
+ }>;
4920
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
4921
+ radix: "radix";
4922
+ base: "base";
4923
+ }>>;
4924
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
4925
+ vega: "vega";
4926
+ nova: "nova";
4927
+ maia: "maia";
4928
+ lyra: "lyra";
4929
+ mira: "mira";
4930
+ luma: "luma";
4931
+ sera: "sera";
4932
+ }>>;
4933
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
4934
+ lucide: "lucide";
4935
+ tabler: "tabler";
4936
+ hugeicons: "hugeicons";
4937
+ phosphor: "phosphor";
4938
+ remixicon: "remixicon";
4939
+ heroicons: "heroicons";
4940
+ "react-icons": "react-icons";
4941
+ }>>;
4942
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
4943
+ neutral: "neutral";
4944
+ stone: "stone";
4945
+ zinc: "zinc";
4946
+ gray: "gray";
4947
+ amber: "amber";
4948
+ blue: "blue";
4949
+ cyan: "cyan";
4950
+ emerald: "emerald";
4951
+ fuchsia: "fuchsia";
4952
+ green: "green";
4953
+ indigo: "indigo";
4954
+ lime: "lime";
4955
+ orange: "orange";
4956
+ pink: "pink";
4957
+ purple: "purple";
4958
+ red: "red";
4959
+ rose: "rose";
4960
+ sky: "sky";
4961
+ teal: "teal";
4962
+ violet: "violet";
4963
+ yellow: "yellow";
4964
+ }>>;
4965
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
4966
+ neutral: "neutral";
4967
+ stone: "stone";
4968
+ zinc: "zinc";
4969
+ gray: "gray";
4970
+ }>>;
4971
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
4972
+ inter: "inter";
4973
+ geist: "geist";
4974
+ "noto-sans": "noto-sans";
4975
+ "nunito-sans": "nunito-sans";
4976
+ figtree: "figtree";
4977
+ roboto: "roboto";
4978
+ raleway: "raleway";
4979
+ "dm-sans": "dm-sans";
4980
+ "public-sans": "public-sans";
4981
+ outfit: "outfit";
4982
+ "jetbrains-mono": "jetbrains-mono";
4983
+ "geist-mono": "geist-mono";
4984
+ }>>;
4985
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
4986
+ none: "none";
4987
+ default: "default";
4988
+ small: "small";
4989
+ medium: "medium";
4990
+ large: "large";
4991
+ }>>;
4992
+ validation: z.ZodEnum<{
4993
+ none: "none";
4994
+ zod: "zod";
4995
+ valibot: "valibot";
4996
+ arktype: "arktype";
4997
+ typebox: "typebox";
4998
+ typia: "typia";
4999
+ runtypes: "runtypes";
5000
+ "effect-schema": "effect-schema";
5001
+ }>;
5002
+ realtime: z.ZodEnum<{
5003
+ none: "none";
5004
+ "socket-io": "socket-io";
5005
+ partykit: "partykit";
5006
+ ably: "ably";
5007
+ pusher: "pusher";
5008
+ liveblocks: "liveblocks";
5009
+ yjs: "yjs";
5010
+ }>;
5011
+ jobQueue: z.ZodEnum<{
5012
+ none: "none";
5013
+ bullmq: "bullmq";
5014
+ "trigger-dev": "trigger-dev";
5015
+ inngest: "inngest";
5016
+ temporal: "temporal";
5017
+ }>;
5018
+ animation: z.ZodEnum<{
5019
+ none: "none";
5020
+ "framer-motion": "framer-motion";
5021
+ gsap: "gsap";
5022
+ "react-spring": "react-spring";
5023
+ "auto-animate": "auto-animate";
5024
+ lottie: "lottie";
5025
+ }>;
5026
+ fileUpload: z.ZodEnum<{
5027
+ none: "none";
5028
+ uploadthing: "uploadthing";
5029
+ filepond: "filepond";
5030
+ uppy: "uppy";
5031
+ }>;
5032
+ logging: z.ZodEnum<{
5033
+ none: "none";
5034
+ pino: "pino";
5035
+ winston: "winston";
5036
+ evlog: "evlog";
5037
+ }>;
5038
+ observability: z.ZodEnum<{
5039
+ none: "none";
5040
+ opentelemetry: "opentelemetry";
5041
+ sentry: "sentry";
5042
+ grafana: "grafana";
5043
+ }>;
5044
+ featureFlags: z.ZodEnum<{
5045
+ none: "none";
5046
+ growthbook: "growthbook";
5047
+ posthog: "posthog";
5048
+ launchdarkly: "launchdarkly";
5049
+ flagsmith: "flagsmith";
5050
+ unleash: "unleash";
5051
+ }>;
5052
+ analytics: z.ZodEnum<{
5053
+ none: "none";
5054
+ plausible: "plausible";
5055
+ umami: "umami";
5056
+ }>;
5057
+ cms: z.ZodEnum<{
5058
+ none: "none";
5059
+ payload: "payload";
5060
+ sanity: "sanity";
5061
+ strapi: "strapi";
5062
+ tinacms: "tinacms";
5063
+ directus: "directus";
5064
+ }>;
5065
+ caching: z.ZodEnum<{
5066
+ none: "none";
5067
+ "upstash-redis": "upstash-redis";
5068
+ }>;
5069
+ i18n: z.ZodEnum<{
5070
+ none: "none";
5071
+ i18next: "i18next";
5072
+ "next-intl": "next-intl";
5073
+ }>;
5074
+ search: z.ZodEnum<{
5075
+ none: "none";
5076
+ meilisearch: "meilisearch";
5077
+ typesense: "typesense";
5078
+ elasticsearch: "elasticsearch";
5079
+ algolia: "algolia";
5080
+ }>;
5081
+ fileStorage: z.ZodEnum<{
5082
+ none: "none";
5083
+ s3: "s3";
5084
+ r2: "r2";
5085
+ cloudinary: "cloudinary";
5086
+ }>;
5087
+ mobileNavigation: z.ZodEnum<{
5088
+ none: "none";
5089
+ "expo-router": "expo-router";
5090
+ "react-navigation": "react-navigation";
5091
+ }>;
5092
+ mobileUI: z.ZodEnum<{
5093
+ none: "none";
5094
+ tamagui: "tamagui";
5095
+ "gluestack-ui": "gluestack-ui";
5096
+ uniwind: "uniwind";
5097
+ unistyles: "unistyles";
5098
+ }>;
5099
+ mobileStorage: z.ZodEnum<{
5100
+ none: "none";
5101
+ mmkv: "mmkv";
5102
+ }>;
5103
+ mobileTesting: z.ZodEnum<{
5104
+ none: "none";
5105
+ maestro: "maestro";
5106
+ "react-native-testing-library": "react-native-testing-library";
5107
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
5108
+ }>;
5109
+ mobilePush: z.ZodEnum<{
5110
+ none: "none";
5111
+ "expo-notifications": "expo-notifications";
5112
+ }>;
5113
+ mobileOTA: z.ZodEnum<{
5114
+ none: "none";
5115
+ "expo-updates": "expo-updates";
5116
+ }>;
5117
+ mobileDeepLinking: z.ZodEnum<{
5118
+ none: "none";
5119
+ "expo-linking": "expo-linking";
5120
+ }>;
5121
+ rustWebFramework: z.ZodEnum<{
5122
+ none: "none";
5123
+ axum: "axum";
5124
+ "actix-web": "actix-web";
5125
+ rocket: "rocket";
5126
+ }>;
5127
+ rustFrontend: z.ZodEnum<{
5128
+ none: "none";
5129
+ leptos: "leptos";
5130
+ dioxus: "dioxus";
5131
+ }>;
5132
+ rustOrm: z.ZodEnum<{
5133
+ none: "none";
5134
+ "sea-orm": "sea-orm";
5135
+ sqlx: "sqlx";
5136
+ diesel: "diesel";
5137
+ }>;
5138
+ rustApi: z.ZodEnum<{
5139
+ none: "none";
5140
+ tonic: "tonic";
5141
+ "async-graphql": "async-graphql";
5142
+ }>;
5143
+ rustCli: z.ZodEnum<{
5144
+ none: "none";
5145
+ clap: "clap";
5146
+ ratatui: "ratatui";
5147
+ }>;
5148
+ rustLibraries: z.ZodArray<z.ZodEnum<{
5149
+ none: "none";
5150
+ serde: "serde";
5151
+ uuid: "uuid";
5152
+ chrono: "chrono";
5153
+ reqwest: "reqwest";
5154
+ config: "config";
5155
+ dashmap: "dashmap";
5156
+ "parking-lot": "parking-lot";
5157
+ secrecy: "secrecy";
5158
+ "tokio-util": "tokio-util";
5159
+ utoipa: "utoipa";
5160
+ validator: "validator";
5161
+ jsonwebtoken: "jsonwebtoken";
5162
+ argon2: "argon2";
5163
+ "tokio-test": "tokio-test";
5164
+ mockall: "mockall";
5165
+ proptest: "proptest";
5166
+ insta: "insta";
5167
+ }>>;
5168
+ rustLogging: z.ZodEnum<{
5169
+ none: "none";
5170
+ tracing: "tracing";
5171
+ "env-logger": "env-logger";
5172
+ }>;
5173
+ rustErrorHandling: z.ZodEnum<{
5174
+ none: "none";
5175
+ "anyhow-thiserror": "anyhow-thiserror";
5176
+ eyre: "eyre";
5177
+ }>;
5178
+ rustCaching: z.ZodEnum<{
5179
+ none: "none";
5180
+ redis: "redis";
5181
+ moka: "moka";
5182
+ }>;
5183
+ rustAuth: z.ZodEnum<{
5184
+ none: "none";
5185
+ oauth2: "oauth2";
5186
+ }>;
5187
+ pythonWebFramework: z.ZodEnum<{
5188
+ none: "none";
5189
+ fastapi: "fastapi";
5190
+ django: "django";
5191
+ flask: "flask";
5192
+ litestar: "litestar";
5193
+ }>;
5194
+ pythonOrm: z.ZodEnum<{
5195
+ none: "none";
5196
+ sqlalchemy: "sqlalchemy";
5197
+ sqlmodel: "sqlmodel";
5198
+ "tortoise-orm": "tortoise-orm";
5199
+ }>;
5200
+ pythonValidation: z.ZodEnum<{
5201
+ none: "none";
5202
+ pydantic: "pydantic";
5203
+ }>;
5204
+ pythonAi: z.ZodArray<z.ZodEnum<{
5205
+ none: "none";
5206
+ langgraph: "langgraph";
5207
+ langchain: "langchain";
5208
+ llamaindex: "llamaindex";
5209
+ "openai-sdk": "openai-sdk";
5210
+ "anthropic-sdk": "anthropic-sdk";
5211
+ crewai: "crewai";
5212
+ haystack: "haystack";
5213
+ }>>;
5214
+ pythonAuth: z.ZodEnum<{
5215
+ none: "none";
5216
+ authlib: "authlib";
5217
+ jwt: "jwt";
5218
+ }>;
5219
+ pythonApi: z.ZodOptional<z.ZodEnum<{
5220
+ none: "none";
5221
+ "django-rest-framework": "django-rest-framework";
5222
+ "django-ninja": "django-ninja";
5223
+ }>>;
5224
+ pythonTaskQueue: z.ZodEnum<{
5225
+ none: "none";
5226
+ celery: "celery";
5227
+ rq: "rq";
5228
+ dramatiq: "dramatiq";
5229
+ huey: "huey";
5230
+ }>;
5231
+ pythonGraphql: z.ZodEnum<{
5232
+ none: "none";
5233
+ strawberry: "strawberry";
5234
+ ariadne: "ariadne";
5235
+ }>;
5236
+ pythonQuality: z.ZodEnum<{
5237
+ none: "none";
5238
+ ruff: "ruff";
5239
+ mypy: "mypy";
5240
+ pyright: "pyright";
5241
+ }>;
5242
+ goWebFramework: z.ZodEnum<{
5243
+ none: "none";
5244
+ gin: "gin";
5245
+ echo: "echo";
5246
+ fiber: "fiber";
5247
+ chi: "chi";
5248
+ }>;
5249
+ goOrm: z.ZodEnum<{
5250
+ none: "none";
5251
+ gorm: "gorm";
5252
+ sqlc: "sqlc";
5253
+ ent: "ent";
5254
+ }>;
5255
+ goApi: z.ZodEnum<{
5256
+ none: "none";
5257
+ "grpc-go": "grpc-go";
5258
+ }>;
5259
+ goCli: z.ZodEnum<{
5260
+ none: "none";
5261
+ cobra: "cobra";
5262
+ bubbletea: "bubbletea";
5263
+ "urfave-cli": "urfave-cli";
5264
+ }>;
5265
+ goLogging: z.ZodEnum<{
5266
+ none: "none";
5267
+ zap: "zap";
5268
+ zerolog: "zerolog";
5269
+ slog: "slog";
5270
+ logrus: "logrus";
5271
+ }>;
5272
+ goAuth: z.ZodEnum<{
5273
+ none: "none";
5274
+ jwt: "jwt";
5275
+ casbin: "casbin";
5276
+ }>;
5277
+ javaWebFramework: z.ZodEnum<{
5278
+ none: "none";
5279
+ "spring-boot": "spring-boot";
5280
+ quarkus: "quarkus";
5281
+ }>;
5282
+ javaBuildTool: z.ZodEnum<{
5283
+ none: "none";
5284
+ maven: "maven";
5285
+ gradle: "gradle";
5286
+ }>;
5287
+ javaOrm: z.ZodEnum<{
5288
+ none: "none";
5289
+ "spring-data-jpa": "spring-data-jpa";
5290
+ }>;
5291
+ javaAuth: z.ZodEnum<{
5292
+ none: "none";
5293
+ "spring-security": "spring-security";
5294
+ }>;
5295
+ javaLibraries: z.ZodArray<z.ZodEnum<{
5296
+ none: "none";
5297
+ "spring-actuator": "spring-actuator";
5298
+ "spring-validation": "spring-validation";
5299
+ flyway: "flyway";
5300
+ liquibase: "liquibase";
5301
+ "springdoc-openapi": "springdoc-openapi";
5302
+ lombok: "lombok";
5303
+ mapstruct: "mapstruct";
5304
+ caffeine: "caffeine";
5305
+ resilience4j: "resilience4j";
5306
+ "spring-webflux": "spring-webflux";
5307
+ "spring-batch": "spring-batch";
5308
+ "spring-kafka": "spring-kafka";
5309
+ "spring-mail": "spring-mail";
5310
+ "spring-devtools": "spring-devtools";
5311
+ "micrometer-prometheus": "micrometer-prometheus";
5312
+ thymeleaf: "thymeleaf";
5313
+ }>>;
5314
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
5315
+ none: "none";
5316
+ junit5: "junit5";
5317
+ mockito: "mockito";
5318
+ testcontainers: "testcontainers";
5319
+ assertj: "assertj";
5320
+ "rest-assured": "rest-assured";
5321
+ wiremock: "wiremock";
5322
+ awaitility: "awaitility";
5323
+ archunit: "archunit";
5324
+ jqwik: "jqwik";
5325
+ }>>;
5326
+ elixirWebFramework: z.ZodEnum<{
5327
+ none: "none";
5328
+ phoenix: "phoenix";
5329
+ "phoenix-live-view": "phoenix-live-view";
5330
+ }>;
5331
+ elixirOrm: z.ZodEnum<{
5332
+ none: "none";
5333
+ ecto: "ecto";
5334
+ "ecto-sql": "ecto-sql";
5335
+ }>;
5336
+ elixirAuth: z.ZodEnum<{
5337
+ none: "none";
5338
+ "phx-gen-auth": "phx-gen-auth";
5339
+ ueberauth: "ueberauth";
5340
+ guardian: "guardian";
5341
+ }>;
5342
+ elixirApi: z.ZodEnum<{
5343
+ none: "none";
5344
+ rest: "rest";
5345
+ absinthe: "absinthe";
5346
+ }>;
5347
+ elixirRealtime: z.ZodEnum<{
5348
+ none: "none";
5349
+ channels: "channels";
5350
+ presence: "presence";
5351
+ pubsub: "pubsub";
5352
+ "live-view-streams": "live-view-streams";
5353
+ }>;
5354
+ elixirJobs: z.ZodEnum<{
5355
+ none: "none";
5356
+ oban: "oban";
5357
+ quantum: "quantum";
5358
+ }>;
5359
+ elixirValidation: z.ZodEnum<{
5360
+ none: "none";
5361
+ "ecto-changesets": "ecto-changesets";
5362
+ "nimble-options": "nimble-options";
5363
+ }>;
5364
+ elixirHttp: z.ZodEnum<{
5365
+ none: "none";
5366
+ req: "req";
5367
+ finch: "finch";
5368
+ }>;
5369
+ elixirJson: z.ZodEnum<{
5370
+ none: "none";
5371
+ jason: "jason";
5372
+ }>;
5373
+ elixirEmail: z.ZodEnum<{
5374
+ none: "none";
5375
+ swoosh: "swoosh";
5376
+ }>;
5377
+ elixirCaching: z.ZodEnum<{
5378
+ none: "none";
5379
+ cachex: "cachex";
5380
+ nebulex: "nebulex";
5381
+ }>;
5382
+ elixirObservability: z.ZodEnum<{
5383
+ none: "none";
5384
+ opentelemetry: "opentelemetry";
5385
+ telemetry: "telemetry";
5386
+ prom_ex: "prom_ex";
5387
+ }>;
5388
+ elixirTesting: z.ZodEnum<{
5389
+ none: "none";
5390
+ ex_unit: "ex_unit";
5391
+ mox: "mox";
5392
+ bypass: "bypass";
5393
+ wallaby: "wallaby";
5394
+ }>;
5395
+ elixirQuality: z.ZodEnum<{
5396
+ none: "none";
5397
+ credo: "credo";
5398
+ dialyxir: "dialyxir";
5399
+ sobelow: "sobelow";
5400
+ }>;
5401
+ elixirDeploy: z.ZodEnum<{
5402
+ none: "none";
5403
+ docker: "docker";
5404
+ fly: "fly";
5405
+ gigalixir: "gigalixir";
5406
+ "mix-release": "mix-release";
5407
+ }>;
5408
+ aiDocs: z.ZodArray<z.ZodEnum<{
5409
+ none: "none";
5410
+ "claude-md": "claude-md";
5411
+ "agents-md": "agents-md";
5412
+ cursorrules: "cursorrules";
5413
+ }>>;
5414
+ }, z.core.$strip>;
5415
+ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
5416
+ $schema: z.ZodOptional<z.ZodString>;
5417
+ version: z.ZodString;
5418
+ createdAt: z.ZodString;
5419
+ ecosystem: z.ZodEnum<{
5420
+ typescript: "typescript";
5421
+ "react-native": "react-native";
5422
+ rust: "rust";
5423
+ python: "python";
5424
+ go: "go";
5425
+ java: "java";
5426
+ elixir: "elixir";
5427
+ }>;
5428
+ database: z.ZodEnum<{
5429
+ none: "none";
5430
+ sqlite: "sqlite";
5431
+ postgres: "postgres";
5432
+ mysql: "mysql";
5433
+ mongodb: "mongodb";
5434
+ edgedb: "edgedb";
5435
+ redis: "redis";
5436
+ }>;
5437
+ orm: z.ZodEnum<{
5438
+ none: "none";
5439
+ drizzle: "drizzle";
5440
+ prisma: "prisma";
5441
+ mongoose: "mongoose";
5442
+ typeorm: "typeorm";
5443
+ kysely: "kysely";
5444
+ mikroorm: "mikroorm";
5445
+ sequelize: "sequelize";
5446
+ }>;
5447
+ backend: z.ZodEnum<{
5448
+ none: "none";
5449
+ hono: "hono";
5450
+ express: "express";
5451
+ fastify: "fastify";
5452
+ elysia: "elysia";
5453
+ fets: "fets";
5454
+ nestjs: "nestjs";
5455
+ adonisjs: "adonisjs";
5456
+ nitro: "nitro";
5457
+ encore: "encore";
5458
+ convex: "convex";
5459
+ self: "self";
5460
+ }>;
5461
+ runtime: z.ZodEnum<{
5462
+ none: "none";
5463
+ bun: "bun";
5464
+ node: "node";
5465
+ workers: "workers";
5466
+ }>;
5467
+ frontend: z.ZodArray<z.ZodEnum<{
5468
+ none: "none";
5469
+ "tanstack-router": "tanstack-router";
5470
+ "react-router": "react-router";
5471
+ "react-vite": "react-vite";
5472
+ "tanstack-start": "tanstack-start";
5473
+ next: "next";
5474
+ vinext: "vinext";
5475
+ nuxt: "nuxt";
5476
+ "native-bare": "native-bare";
5477
+ "native-uniwind": "native-uniwind";
5478
+ "native-unistyles": "native-unistyles";
5479
+ svelte: "svelte";
5480
+ solid: "solid";
5481
+ "solid-start": "solid-start";
5482
+ astro: "astro";
5483
+ qwik: "qwik";
5484
+ angular: "angular";
5485
+ redwood: "redwood";
5486
+ fresh: "fresh";
5487
+ }>>;
5488
+ addons: z.ZodArray<z.ZodEnum<{
5489
+ none: "none";
5490
+ pwa: "pwa";
5491
+ tauri: "tauri";
5492
+ starlight: "starlight";
5493
+ biome: "biome";
5494
+ lefthook: "lefthook";
5495
+ husky: "husky";
5496
+ ruler: "ruler";
5497
+ mcp: "mcp";
5498
+ skills: "skills";
5499
+ turborepo: "turborepo";
5500
+ fumadocs: "fumadocs";
5501
+ ultracite: "ultracite";
5502
+ oxlint: "oxlint";
5503
+ opentui: "opentui";
5504
+ wxt: "wxt";
5505
+ msw: "msw";
5506
+ storybook: "storybook";
5507
+ swr: "swr";
5508
+ "tanstack-query": "tanstack-query";
5509
+ "tanstack-table": "tanstack-table";
5510
+ "tanstack-virtual": "tanstack-virtual";
5511
+ "tanstack-db": "tanstack-db";
5512
+ "tanstack-pacer": "tanstack-pacer";
5513
+ "docker-compose": "docker-compose";
5514
+ }>>;
5515
+ examples: z.ZodArray<z.ZodEnum<{
5516
+ none: "none";
5517
+ ai: "ai";
5518
+ "chat-sdk": "chat-sdk";
5519
+ "tanstack-showcase": "tanstack-showcase";
5520
+ }>>;
5521
+ auth: z.ZodEnum<{
5522
+ none: "none";
5523
+ "better-auth": "better-auth";
5524
+ "go-better-auth": "go-better-auth";
5525
+ clerk: "clerk";
5526
+ nextauth: "nextauth";
5527
+ "stack-auth": "stack-auth";
5528
+ "supabase-auth": "supabase-auth";
5529
+ auth0: "auth0";
5530
+ }>;
5531
+ payments: z.ZodEnum<{
5532
+ none: "none";
5533
+ polar: "polar";
5534
+ stripe: "stripe";
5535
+ "lemon-squeezy": "lemon-squeezy";
5536
+ paddle: "paddle";
5537
+ dodo: "dodo";
5538
+ }>;
5539
+ packageManager: z.ZodEnum<{
5540
+ bun: "bun";
5541
+ npm: "npm";
5542
+ pnpm: "pnpm";
5543
+ yarn: "yarn";
5544
+ }>;
5545
+ versionChannel: z.ZodEnum<{
5546
+ stable: "stable";
5547
+ latest: "latest";
5548
+ beta: "beta";
5549
+ }>;
5550
+ dbSetup: z.ZodEnum<{
5551
+ none: "none";
5552
+ turso: "turso";
5553
+ neon: "neon";
5554
+ "prisma-postgres": "prisma-postgres";
5555
+ planetscale: "planetscale";
5556
+ "mongodb-atlas": "mongodb-atlas";
5557
+ supabase: "supabase";
5558
+ upstash: "upstash";
5559
+ d1: "d1";
5560
+ docker: "docker";
5561
+ }>;
5562
+ api: z.ZodEnum<{
5563
+ none: "none";
5564
+ trpc: "trpc";
5565
+ orpc: "orpc";
5566
+ "ts-rest": "ts-rest";
5567
+ garph: "garph";
5568
+ "graphql-yoga": "graphql-yoga";
5569
+ }>;
5570
+ webDeploy: z.ZodEnum<{
5571
+ none: "none";
5572
+ docker: "docker";
5573
+ cloudflare: "cloudflare";
5574
+ fly: "fly";
5575
+ railway: "railway";
5576
+ sst: "sst";
5577
+ vercel: "vercel";
5578
+ }>;
5579
+ serverDeploy: z.ZodEnum<{
5580
+ none: "none";
5581
+ docker: "docker";
5582
+ cloudflare: "cloudflare";
5583
+ fly: "fly";
5584
+ railway: "railway";
5585
+ sst: "sst";
5586
+ vercel: "vercel";
5587
+ }>;
5588
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
5589
+ none: "none";
5590
+ svelte: "svelte";
5591
+ solid: "solid";
5592
+ react: "react";
5593
+ vue: "vue";
5594
+ }>>;
5595
+ ai: z.ZodEnum<{
5596
+ none: "none";
5597
+ "vercel-ai": "vercel-ai";
5598
+ mastra: "mastra";
5599
+ voltagent: "voltagent";
5600
+ langgraph: "langgraph";
5601
+ "openai-agents": "openai-agents";
5602
+ "google-adk": "google-adk";
5603
+ modelfusion: "modelfusion";
5604
+ langchain: "langchain";
5605
+ llamaindex: "llamaindex";
5606
+ "tanstack-ai": "tanstack-ai";
5607
+ "ai-cli": "ai-cli";
5608
+ }>;
5609
+ effect: z.ZodEnum<{
5610
+ none: "none";
5611
+ effect: "effect";
5612
+ "effect-full": "effect-full";
5613
+ }>;
5614
+ stateManagement: z.ZodEnum<{
5615
+ none: "none";
5616
+ zustand: "zustand";
5617
+ jotai: "jotai";
5618
+ nanostores: "nanostores";
5619
+ "redux-toolkit": "redux-toolkit";
5620
+ mobx: "mobx";
5621
+ xstate: "xstate";
5622
+ valtio: "valtio";
5623
+ "tanstack-store": "tanstack-store";
5624
+ "legend-state": "legend-state";
5625
+ }>;
5626
+ forms: z.ZodEnum<{
5627
+ none: "none";
5628
+ "tanstack-form": "tanstack-form";
5629
+ "react-hook-form": "react-hook-form";
5630
+ formik: "formik";
5631
+ "final-form": "final-form";
5632
+ conform: "conform";
5633
+ "modular-forms": "modular-forms";
5634
+ }>;
5635
+ testing: z.ZodEnum<{
5636
+ none: "none";
5637
+ vitest: "vitest";
5638
+ playwright: "playwright";
5639
+ "vitest-playwright": "vitest-playwright";
5640
+ jest: "jest";
5641
+ cypress: "cypress";
5642
+ }>;
5643
+ email: z.ZodEnum<{
5644
+ none: "none";
5645
+ "react-email": "react-email";
5646
+ resend: "resend";
5647
+ nodemailer: "nodemailer";
5648
+ postmark: "postmark";
5649
+ sendgrid: "sendgrid";
5650
+ "aws-ses": "aws-ses";
5651
+ mailgun: "mailgun";
5652
+ plunk: "plunk";
5653
+ }>;
5654
+ cssFramework: z.ZodEnum<{
5655
+ none: "none";
5656
+ tailwind: "tailwind";
5657
+ scss: "scss";
5658
+ less: "less";
5659
+ "postcss-only": "postcss-only";
5660
+ }>;
5661
+ uiLibrary: z.ZodEnum<{
5662
+ none: "none";
5663
+ "shadcn-ui": "shadcn-ui";
5664
+ "shadcn-svelte": "shadcn-svelte";
5665
+ daisyui: "daisyui";
5666
+ "radix-ui": "radix-ui";
5667
+ "headless-ui": "headless-ui";
5668
+ "park-ui": "park-ui";
5669
+ "chakra-ui": "chakra-ui";
5670
+ nextui: "nextui";
5671
+ mantine: "mantine";
5672
+ mui: "mui";
5673
+ antd: "antd";
5674
+ "base-ui": "base-ui";
5675
+ "ark-ui": "ark-ui";
5676
+ "react-aria": "react-aria";
5677
+ }>;
5678
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
5679
+ radix: "radix";
5680
+ base: "base";
5681
+ }>>;
5682
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
5683
+ vega: "vega";
5684
+ nova: "nova";
5685
+ maia: "maia";
5686
+ lyra: "lyra";
5687
+ mira: "mira";
5688
+ luma: "luma";
5689
+ sera: "sera";
5690
+ }>>;
5691
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
5692
+ lucide: "lucide";
5693
+ tabler: "tabler";
5694
+ hugeicons: "hugeicons";
5695
+ phosphor: "phosphor";
5696
+ remixicon: "remixicon";
5697
+ heroicons: "heroicons";
5698
+ "react-icons": "react-icons";
5699
+ }>>;
5700
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
5701
+ neutral: "neutral";
5702
+ stone: "stone";
5703
+ zinc: "zinc";
5704
+ gray: "gray";
5705
+ amber: "amber";
5706
+ blue: "blue";
5707
+ cyan: "cyan";
5708
+ emerald: "emerald";
5709
+ fuchsia: "fuchsia";
5710
+ green: "green";
5711
+ indigo: "indigo";
5712
+ lime: "lime";
5713
+ orange: "orange";
5714
+ pink: "pink";
5715
+ purple: "purple";
5716
+ red: "red";
5717
+ rose: "rose";
5718
+ sky: "sky";
5719
+ teal: "teal";
5720
+ violet: "violet";
5721
+ yellow: "yellow";
5722
+ }>>;
5723
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
5724
+ neutral: "neutral";
5725
+ stone: "stone";
5726
+ zinc: "zinc";
5727
+ gray: "gray";
5728
+ }>>;
5729
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
5730
+ inter: "inter";
5731
+ geist: "geist";
5732
+ "noto-sans": "noto-sans";
5733
+ "nunito-sans": "nunito-sans";
5734
+ figtree: "figtree";
5735
+ roboto: "roboto";
5736
+ raleway: "raleway";
5737
+ "dm-sans": "dm-sans";
5738
+ "public-sans": "public-sans";
5739
+ outfit: "outfit";
5740
+ "jetbrains-mono": "jetbrains-mono";
5741
+ "geist-mono": "geist-mono";
5742
+ }>>;
5743
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
5744
+ none: "none";
5745
+ default: "default";
5746
+ small: "small";
5747
+ medium: "medium";
5748
+ large: "large";
5749
+ }>>;
5750
+ validation: z.ZodEnum<{
5751
+ none: "none";
5752
+ zod: "zod";
5753
+ valibot: "valibot";
5754
+ arktype: "arktype";
5755
+ typebox: "typebox";
5756
+ typia: "typia";
5757
+ runtypes: "runtypes";
5758
+ "effect-schema": "effect-schema";
5759
+ }>;
5760
+ realtime: z.ZodEnum<{
5761
+ none: "none";
5762
+ "socket-io": "socket-io";
5763
+ partykit: "partykit";
5764
+ ably: "ably";
5765
+ pusher: "pusher";
5766
+ liveblocks: "liveblocks";
5767
+ yjs: "yjs";
5768
+ }>;
5769
+ jobQueue: z.ZodEnum<{
5770
+ none: "none";
5771
+ bullmq: "bullmq";
5772
+ "trigger-dev": "trigger-dev";
5773
+ inngest: "inngest";
5774
+ temporal: "temporal";
5775
+ }>;
5776
+ animation: z.ZodEnum<{
5777
+ none: "none";
5778
+ "framer-motion": "framer-motion";
5779
+ gsap: "gsap";
5780
+ "react-spring": "react-spring";
5781
+ "auto-animate": "auto-animate";
5782
+ lottie: "lottie";
5783
+ }>;
5784
+ fileUpload: z.ZodEnum<{
5785
+ none: "none";
5786
+ uploadthing: "uploadthing";
5787
+ filepond: "filepond";
5788
+ uppy: "uppy";
5789
+ }>;
5790
+ logging: z.ZodEnum<{
5791
+ none: "none";
5792
+ pino: "pino";
5793
+ winston: "winston";
5794
+ evlog: "evlog";
5795
+ }>;
5796
+ observability: z.ZodEnum<{
5797
+ none: "none";
5798
+ opentelemetry: "opentelemetry";
5799
+ sentry: "sentry";
5800
+ grafana: "grafana";
5801
+ }>;
5802
+ featureFlags: z.ZodEnum<{
5803
+ none: "none";
5804
+ growthbook: "growthbook";
5805
+ posthog: "posthog";
5806
+ launchdarkly: "launchdarkly";
5807
+ flagsmith: "flagsmith";
5808
+ unleash: "unleash";
5809
+ }>;
5810
+ analytics: z.ZodEnum<{
5811
+ none: "none";
5812
+ plausible: "plausible";
5813
+ umami: "umami";
5814
+ }>;
5815
+ cms: z.ZodEnum<{
5816
+ none: "none";
5817
+ payload: "payload";
5818
+ sanity: "sanity";
5819
+ strapi: "strapi";
5820
+ tinacms: "tinacms";
5821
+ directus: "directus";
5822
+ }>;
5823
+ caching: z.ZodEnum<{
5824
+ none: "none";
5825
+ "upstash-redis": "upstash-redis";
5826
+ }>;
5827
+ i18n: z.ZodEnum<{
5828
+ none: "none";
5829
+ i18next: "i18next";
5830
+ "next-intl": "next-intl";
5831
+ }>;
5832
+ search: z.ZodEnum<{
5833
+ none: "none";
5834
+ meilisearch: "meilisearch";
5835
+ typesense: "typesense";
5836
+ elasticsearch: "elasticsearch";
5837
+ algolia: "algolia";
5838
+ }>;
5839
+ fileStorage: z.ZodEnum<{
5840
+ none: "none";
5841
+ s3: "s3";
5842
+ r2: "r2";
5843
+ cloudinary: "cloudinary";
5844
+ }>;
5845
+ mobileNavigation: z.ZodEnum<{
5846
+ none: "none";
5847
+ "expo-router": "expo-router";
5848
+ "react-navigation": "react-navigation";
5849
+ }>;
5850
+ mobileUI: z.ZodEnum<{
5851
+ none: "none";
5852
+ tamagui: "tamagui";
5853
+ "gluestack-ui": "gluestack-ui";
5854
+ uniwind: "uniwind";
5855
+ unistyles: "unistyles";
5856
+ }>;
5857
+ mobileStorage: z.ZodEnum<{
5858
+ none: "none";
5859
+ mmkv: "mmkv";
5860
+ }>;
5861
+ mobileTesting: z.ZodEnum<{
5862
+ none: "none";
5863
+ maestro: "maestro";
5864
+ "react-native-testing-library": "react-native-testing-library";
5865
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
5866
+ }>;
5867
+ mobilePush: z.ZodEnum<{
5868
+ none: "none";
5869
+ "expo-notifications": "expo-notifications";
5870
+ }>;
5871
+ mobileOTA: z.ZodEnum<{
5872
+ none: "none";
5873
+ "expo-updates": "expo-updates";
5874
+ }>;
5875
+ mobileDeepLinking: z.ZodEnum<{
5876
+ none: "none";
5877
+ "expo-linking": "expo-linking";
5878
+ }>;
5879
+ rustWebFramework: z.ZodEnum<{
5880
+ none: "none";
5881
+ axum: "axum";
5882
+ "actix-web": "actix-web";
5883
+ rocket: "rocket";
5884
+ }>;
5885
+ rustFrontend: z.ZodEnum<{
5886
+ none: "none";
5887
+ leptos: "leptos";
5888
+ dioxus: "dioxus";
3711
5889
  }>;
3712
5890
  rustOrm: z.ZodEnum<{
3713
5891
  none: "none";
@@ -3903,6 +6081,88 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3903
6081
  archunit: "archunit";
3904
6082
  jqwik: "jqwik";
3905
6083
  }>>;
6084
+ elixirWebFramework: z.ZodEnum<{
6085
+ none: "none";
6086
+ phoenix: "phoenix";
6087
+ "phoenix-live-view": "phoenix-live-view";
6088
+ }>;
6089
+ elixirOrm: z.ZodEnum<{
6090
+ none: "none";
6091
+ ecto: "ecto";
6092
+ "ecto-sql": "ecto-sql";
6093
+ }>;
6094
+ elixirAuth: z.ZodEnum<{
6095
+ none: "none";
6096
+ "phx-gen-auth": "phx-gen-auth";
6097
+ ueberauth: "ueberauth";
6098
+ guardian: "guardian";
6099
+ }>;
6100
+ elixirApi: z.ZodEnum<{
6101
+ none: "none";
6102
+ rest: "rest";
6103
+ absinthe: "absinthe";
6104
+ }>;
6105
+ elixirRealtime: z.ZodEnum<{
6106
+ none: "none";
6107
+ channels: "channels";
6108
+ presence: "presence";
6109
+ pubsub: "pubsub";
6110
+ "live-view-streams": "live-view-streams";
6111
+ }>;
6112
+ elixirJobs: z.ZodEnum<{
6113
+ none: "none";
6114
+ oban: "oban";
6115
+ quantum: "quantum";
6116
+ }>;
6117
+ elixirValidation: z.ZodEnum<{
6118
+ none: "none";
6119
+ "ecto-changesets": "ecto-changesets";
6120
+ "nimble-options": "nimble-options";
6121
+ }>;
6122
+ elixirHttp: z.ZodEnum<{
6123
+ none: "none";
6124
+ req: "req";
6125
+ finch: "finch";
6126
+ }>;
6127
+ elixirJson: z.ZodEnum<{
6128
+ none: "none";
6129
+ jason: "jason";
6130
+ }>;
6131
+ elixirEmail: z.ZodEnum<{
6132
+ none: "none";
6133
+ swoosh: "swoosh";
6134
+ }>;
6135
+ elixirCaching: z.ZodEnum<{
6136
+ none: "none";
6137
+ cachex: "cachex";
6138
+ nebulex: "nebulex";
6139
+ }>;
6140
+ elixirObservability: z.ZodEnum<{
6141
+ none: "none";
6142
+ opentelemetry: "opentelemetry";
6143
+ telemetry: "telemetry";
6144
+ prom_ex: "prom_ex";
6145
+ }>;
6146
+ elixirTesting: z.ZodEnum<{
6147
+ none: "none";
6148
+ ex_unit: "ex_unit";
6149
+ mox: "mox";
6150
+ bypass: "bypass";
6151
+ wallaby: "wallaby";
6152
+ }>;
6153
+ elixirQuality: z.ZodEnum<{
6154
+ none: "none";
6155
+ credo: "credo";
6156
+ dialyxir: "dialyxir";
6157
+ sobelow: "sobelow";
6158
+ }>;
6159
+ elixirDeploy: z.ZodEnum<{
6160
+ none: "none";
6161
+ docker: "docker";
6162
+ fly: "fly";
6163
+ gigalixir: "gigalixir";
6164
+ "mix-release": "mix-release";
6165
+ }>;
3906
6166
  aiDocs: z.ZodArray<z.ZodEnum<{
3907
6167
  none: "none";
3908
6168
  "claude-md": "claude-md";
@@ -3918,10 +6178,12 @@ declare const InitResultSchema: z.ZodObject<{
3918
6178
  relativePath: z.ZodString;
3919
6179
  ecosystem: z.ZodEnum<{
3920
6180
  typescript: "typescript";
6181
+ "react-native": "react-native";
3921
6182
  rust: "rust";
3922
6183
  python: "python";
3923
6184
  go: "go";
3924
6185
  java: "java";
6186
+ elixir: "elixir";
3925
6187
  }>;
3926
6188
  database: z.ZodEnum<{
3927
6189
  none: "none";
@@ -3969,6 +6231,7 @@ declare const InitResultSchema: z.ZodObject<{
3969
6231
  "react-vite": "react-vite";
3970
6232
  "tanstack-start": "tanstack-start";
3971
6233
  next: "next";
6234
+ vinext: "vinext";
3972
6235
  nuxt: "nuxt";
3973
6236
  "native-bare": "native-bare";
3974
6237
  "native-uniwind": "native-uniwind";
@@ -4001,6 +6264,7 @@ declare const InitResultSchema: z.ZodObject<{
4001
6264
  wxt: "wxt";
4002
6265
  msw: "msw";
4003
6266
  storybook: "storybook";
6267
+ swr: "swr";
4004
6268
  "tanstack-query": "tanstack-query";
4005
6269
  "tanstack-table": "tanstack-table";
4006
6270
  "tanstack-virtual": "tanstack-virtual";
@@ -4159,6 +6423,7 @@ declare const InitResultSchema: z.ZodObject<{
4159
6423
  uiLibrary: z.ZodEnum<{
4160
6424
  none: "none";
4161
6425
  "shadcn-ui": "shadcn-ui";
6426
+ "shadcn-svelte": "shadcn-svelte";
4162
6427
  daisyui: "daisyui";
4163
6428
  "radix-ui": "radix-ui";
4164
6429
  "headless-ui": "headless-ui";
@@ -4288,6 +6553,7 @@ declare const InitResultSchema: z.ZodObject<{
4288
6553
  none: "none";
4289
6554
  pino: "pino";
4290
6555
  winston: "winston";
6556
+ evlog: "evlog";
4291
6557
  }>;
4292
6558
  observability: z.ZodEnum<{
4293
6559
  none: "none";
@@ -4314,6 +6580,7 @@ declare const InitResultSchema: z.ZodObject<{
4314
6580
  sanity: "sanity";
4315
6581
  strapi: "strapi";
4316
6582
  tinacms: "tinacms";
6583
+ directus: "directus";
4317
6584
  }>;
4318
6585
  caching: z.ZodEnum<{
4319
6586
  none: "none";
@@ -4335,6 +6602,41 @@ declare const InitResultSchema: z.ZodObject<{
4335
6602
  none: "none";
4336
6603
  s3: "s3";
4337
6604
  r2: "r2";
6605
+ cloudinary: "cloudinary";
6606
+ }>;
6607
+ mobileNavigation: z.ZodEnum<{
6608
+ none: "none";
6609
+ "expo-router": "expo-router";
6610
+ "react-navigation": "react-navigation";
6611
+ }>;
6612
+ mobileUI: z.ZodEnum<{
6613
+ none: "none";
6614
+ tamagui: "tamagui";
6615
+ "gluestack-ui": "gluestack-ui";
6616
+ uniwind: "uniwind";
6617
+ unistyles: "unistyles";
6618
+ }>;
6619
+ mobileStorage: z.ZodEnum<{
6620
+ none: "none";
6621
+ mmkv: "mmkv";
6622
+ }>;
6623
+ mobileTesting: z.ZodEnum<{
6624
+ none: "none";
6625
+ maestro: "maestro";
6626
+ "react-native-testing-library": "react-native-testing-library";
6627
+ "maestro-react-native-testing-library": "maestro-react-native-testing-library";
6628
+ }>;
6629
+ mobilePush: z.ZodEnum<{
6630
+ none: "none";
6631
+ "expo-notifications": "expo-notifications";
6632
+ }>;
6633
+ mobileOTA: z.ZodEnum<{
6634
+ none: "none";
6635
+ "expo-updates": "expo-updates";
6636
+ }>;
6637
+ mobileDeepLinking: z.ZodEnum<{
6638
+ none: "none";
6639
+ "expo-linking": "expo-linking";
4338
6640
  }>;
4339
6641
  rustWebFramework: z.ZodEnum<{
4340
6642
  none: "none";
@@ -4541,6 +6843,88 @@ declare const InitResultSchema: z.ZodObject<{
4541
6843
  archunit: "archunit";
4542
6844
  jqwik: "jqwik";
4543
6845
  }>>;
6846
+ elixirWebFramework: z.ZodEnum<{
6847
+ none: "none";
6848
+ phoenix: "phoenix";
6849
+ "phoenix-live-view": "phoenix-live-view";
6850
+ }>;
6851
+ elixirOrm: z.ZodEnum<{
6852
+ none: "none";
6853
+ ecto: "ecto";
6854
+ "ecto-sql": "ecto-sql";
6855
+ }>;
6856
+ elixirAuth: z.ZodEnum<{
6857
+ none: "none";
6858
+ "phx-gen-auth": "phx-gen-auth";
6859
+ ueberauth: "ueberauth";
6860
+ guardian: "guardian";
6861
+ }>;
6862
+ elixirApi: z.ZodEnum<{
6863
+ none: "none";
6864
+ rest: "rest";
6865
+ absinthe: "absinthe";
6866
+ }>;
6867
+ elixirRealtime: z.ZodEnum<{
6868
+ none: "none";
6869
+ channels: "channels";
6870
+ presence: "presence";
6871
+ pubsub: "pubsub";
6872
+ "live-view-streams": "live-view-streams";
6873
+ }>;
6874
+ elixirJobs: z.ZodEnum<{
6875
+ none: "none";
6876
+ oban: "oban";
6877
+ quantum: "quantum";
6878
+ }>;
6879
+ elixirValidation: z.ZodEnum<{
6880
+ none: "none";
6881
+ "ecto-changesets": "ecto-changesets";
6882
+ "nimble-options": "nimble-options";
6883
+ }>;
6884
+ elixirHttp: z.ZodEnum<{
6885
+ none: "none";
6886
+ req: "req";
6887
+ finch: "finch";
6888
+ }>;
6889
+ elixirJson: z.ZodEnum<{
6890
+ none: "none";
6891
+ jason: "jason";
6892
+ }>;
6893
+ elixirEmail: z.ZodEnum<{
6894
+ none: "none";
6895
+ swoosh: "swoosh";
6896
+ }>;
6897
+ elixirCaching: z.ZodEnum<{
6898
+ none: "none";
6899
+ cachex: "cachex";
6900
+ nebulex: "nebulex";
6901
+ }>;
6902
+ elixirObservability: z.ZodEnum<{
6903
+ none: "none";
6904
+ opentelemetry: "opentelemetry";
6905
+ telemetry: "telemetry";
6906
+ prom_ex: "prom_ex";
6907
+ }>;
6908
+ elixirTesting: z.ZodEnum<{
6909
+ none: "none";
6910
+ ex_unit: "ex_unit";
6911
+ mox: "mox";
6912
+ bypass: "bypass";
6913
+ wallaby: "wallaby";
6914
+ }>;
6915
+ elixirQuality: z.ZodEnum<{
6916
+ none: "none";
6917
+ credo: "credo";
6918
+ dialyxir: "dialyxir";
6919
+ sobelow: "sobelow";
6920
+ }>;
6921
+ elixirDeploy: z.ZodEnum<{
6922
+ none: "none";
6923
+ docker: "docker";
6924
+ fly: "fly";
6925
+ gigalixir: "gigalixir";
6926
+ "mix-release": "mix-release";
6927
+ }>;
4544
6928
  aiDocs: z.ZodArray<z.ZodEnum<{
4545
6929
  none: "none";
4546
6930
  "claude-md": "claude-md";
@@ -4559,8 +6943,8 @@ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mong
4559
6943
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
4560
6944
  declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
4561
6945
  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")[];
4563
- 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")[];
6946
+ 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")[];
6947
+ declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
4564
6948
  declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
4565
6949
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
4566
6950
  declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
@@ -4571,7 +6955,7 @@ declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" |
4571
6955
  declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
4572
6956
  declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
4573
6957
  declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
4574
- declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
6958
+ declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3")[];
4575
6959
  declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
4576
6960
  declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
4577
6961
  declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
@@ -4580,22 +6964,29 @@ declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "for
4580
6964
  declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
4581
6965
  declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
4582
6966
  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")[];
6967
+ declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
4584
6968
  declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
4585
6969
  declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
4586
6970
  declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
4587
6971
  declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
4588
6972
  declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
4589
- declare const LOGGING_VALUES: ("none" | "pino" | "winston")[];
6973
+ declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
4590
6974
  declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
4591
6975
  declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
4592
6976
  declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
4593
- declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms")[];
6977
+ declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
6978
+ declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
6979
+ declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
6980
+ declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
6981
+ declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
6982
+ declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
6983
+ declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
6984
+ declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus")[];
4594
6985
  declare const CACHING_VALUES: ("none" | "upstash-redis")[];
4595
6986
  declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
4596
6987
  declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
4597
- declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
4598
- declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go" | "java")[];
6988
+ declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
6989
+ declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir")[];
4599
6990
  declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
4600
6991
  declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
4601
6992
  declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
@@ -4627,6 +7018,21 @@ declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa")[];
4627
7018
  declare const JAVA_AUTH_VALUES: ("none" | "spring-security")[];
4628
7019
  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
7020
  declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
7021
+ declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
7022
+ declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
7023
+ declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
7024
+ declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe")[];
7025
+ declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
7026
+ declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
7027
+ declare const ELIXIR_VALIDATION_VALUES: ("none" | "ecto-changesets" | "nimble-options")[];
7028
+ declare const ELIXIR_HTTP_VALUES: ("none" | "req" | "finch")[];
7029
+ declare const ELIXIR_JSON_VALUES: ("none" | "jason")[];
7030
+ declare const ELIXIR_EMAIL_VALUES: ("none" | "swoosh")[];
7031
+ declare const ELIXIR_CACHING_VALUES: ("none" | "cachex" | "nebulex")[];
7032
+ declare const ELIXIR_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "telemetry" | "prom_ex")[];
7033
+ declare const ELIXIR_TESTING_VALUES: ("none" | "ex_unit" | "mox" | "bypass" | "wallaby")[];
7034
+ declare const ELIXIR_QUALITY_VALUES: ("none" | "credo" | "dialyxir" | "sobelow")[];
7035
+ declare const ELIXIR_DEPLOY_VALUES: ("none" | "docker" | "fly" | "gigalixir" | "mix-release")[];
4630
7036
  declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
4631
7037
  declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
4632
7038
  declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira" | "luma" | "sera")[];
@@ -4636,5 +7042,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
4636
7042
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
4637
7043
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
4638
7044
  //#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
7045
+ 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 };
7046
+ //# sourceMappingURL=schemas-CUFM_Cdl.d.mts.map