@better-fullstack/types 2.1.5 → 2.1.7

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 (44) hide show
  1. package/dist/{defaults-azh56xa4.d.mts → defaults-Cpkx-Eu7.d.mts} +2 -2
  2. package/dist/defaults-Cpkx-Eu7.d.mts.map +1 -0
  3. package/dist/{defaults-u9UAambo.mjs → defaults-DNnZX9er.mjs} +2 -1
  4. package/dist/defaults-DNnZX9er.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 +180 -6
  8. package/dist/index.d.mts.map +1 -1
  9. package/dist/index.mjs +1560 -5
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/json-schema.d.mts +296 -12
  12. package/dist/json-schema.d.mts.map +1 -1
  13. package/dist/json-schema.mjs +1 -1
  14. package/dist/{schemas-ZxRzd5TP.mjs → schemas-BXDvWDRp.mjs} +52 -10
  15. package/dist/schemas-BXDvWDRp.mjs.map +1 -0
  16. package/dist/{schemas-C3iF9TRm.d.mts → schemas-DOb4t_el.d.mts} +301 -27
  17. package/dist/schemas-DOb4t_el.d.mts.map +1 -0
  18. package/dist/schemas.d.mts +2 -2
  19. package/dist/schemas.mjs +2 -2
  20. package/dist/{stack-graph-CiXONkqh.d.mts → stack-graph-0MDSuSPQ.d.mts} +2 -2
  21. package/dist/stack-graph-0MDSuSPQ.d.mts.map +1 -0
  22. package/dist/{stack-graph-BwtoYnJg.mjs → stack-graph-BAad0vv4.mjs} +48 -10
  23. package/dist/stack-graph-BAad0vv4.mjs.map +1 -0
  24. package/dist/stack-graph.d.mts +3 -3
  25. package/dist/stack-graph.mjs +2 -2
  26. package/dist/{stack-translation-BNwlAM1B.d.mts → stack-translation-Dau06ig9.d.mts} +19 -11
  27. package/dist/stack-translation-Dau06ig9.d.mts.map +1 -0
  28. package/dist/{stack-translation-DNT-iMAE.mjs → stack-translation-DncO452_.mjs} +280 -33
  29. package/dist/stack-translation-DncO452_.mjs.map +1 -0
  30. package/dist/stack-translation.d.mts +4 -4
  31. package/dist/stack-translation.mjs +3 -3
  32. package/dist/{types-BG-DsHQ9.d.mts → types-CcWal512.d.mts} +5 -3
  33. package/dist/types-CcWal512.d.mts.map +1 -0
  34. package/dist/types.d.mts +3 -3
  35. package/package.json +1 -1
  36. package/dist/defaults-azh56xa4.d.mts.map +0 -1
  37. package/dist/defaults-u9UAambo.mjs.map +0 -1
  38. package/dist/schemas-C3iF9TRm.d.mts.map +0 -1
  39. package/dist/schemas-ZxRzd5TP.mjs.map +0 -1
  40. package/dist/stack-graph-BwtoYnJg.mjs.map +0 -1
  41. package/dist/stack-graph-CiXONkqh.d.mts.map +0 -1
  42. package/dist/stack-translation-BNwlAM1B.d.mts.map +0 -1
  43. package/dist/stack-translation-DNT-iMAE.mjs.map +0 -1
  44. package/dist/types-BG-DsHQ9.d.mts.map +0 -1
@@ -69,6 +69,7 @@ declare const StackPartRoleSchema: z.ZodEnum<{
69
69
  dataFetching: "dataFetching";
70
70
  workspaceTooling: "workspaceTooling";
71
71
  examples: "examples";
72
+ language: "language";
72
73
  buildTool: "buildTool";
73
74
  cli: "cli";
74
75
  errorHandling: "errorHandling";
@@ -134,6 +135,7 @@ declare const StackPartSchema: z.ZodObject<{
134
135
  dataFetching: "dataFetching";
135
136
  workspaceTooling: "workspaceTooling";
136
137
  examples: "examples";
138
+ language: "language";
137
139
  buildTool: "buildTool";
138
140
  cli: "cli";
139
141
  errorHandling: "errorHandling";
@@ -185,6 +187,7 @@ declare const ORMSchema: z.ZodEnum<{
185
187
  sequelize: "sequelize";
186
188
  }>;
187
189
  declare const BackendSchema: z.ZodEnum<{
190
+ effect: "effect";
188
191
  none: "none";
189
192
  hono: "hono";
190
193
  express: "express";
@@ -280,6 +283,10 @@ declare const VersionChannelSchema: z.ZodEnum<{
280
283
  latest: "latest";
281
284
  beta: "beta";
282
285
  }>;
286
+ declare const WorkspaceShapeSchema: z.ZodEnum<{
287
+ monorepo: "monorepo";
288
+ "single-app": "single-app";
289
+ }>;
283
290
  declare const DatabaseSetupSchema: z.ZodEnum<{
284
291
  none: "none";
285
292
  turso: "turso";
@@ -317,11 +324,15 @@ declare const AuthSchema: z.ZodEnum<{
317
324
  }>;
318
325
  declare const PaymentsSchema: z.ZodEnum<{
319
326
  none: "none";
327
+ revenuecat: "revenuecat";
320
328
  polar: "polar";
321
329
  stripe: "stripe";
322
330
  "lemon-squeezy": "lemon-squeezy";
323
331
  paddle: "paddle";
324
332
  dodo: "dodo";
333
+ creem: "creem";
334
+ autumn: "autumn";
335
+ commet: "commet";
325
336
  }>;
326
337
  declare const WebDeploySchema: z.ZodEnum<{
327
338
  none: "none";
@@ -441,6 +452,7 @@ declare const CMSSchema: z.ZodEnum<{
441
452
  }>;
442
453
  declare const CachingSchema: z.ZodEnum<{
443
454
  none: "none";
455
+ redis: "redis";
444
456
  "upstash-redis": "upstash-redis";
445
457
  }>;
446
458
  declare const RateLimitSchema: z.ZodEnum<{
@@ -453,6 +465,7 @@ declare const I18nSchema: z.ZodEnum<{
453
465
  paraglide: "paraglide";
454
466
  i18next: "i18next";
455
467
  "next-intl": "next-intl";
468
+ intlayer: "intlayer";
456
469
  }>;
457
470
  declare const SearchSchema: z.ZodEnum<{
458
471
  none: "none";
@@ -461,6 +474,7 @@ declare const SearchSchema: z.ZodEnum<{
461
474
  elasticsearch: "elasticsearch";
462
475
  opensearch: "opensearch";
463
476
  algolia: "algolia";
477
+ bleve: "bleve";
464
478
  }>;
465
479
  declare const VectorDbSchema: z.ZodEnum<{
466
480
  none: "none";
@@ -474,6 +488,7 @@ declare const FileStorageSchema: z.ZodEnum<{
474
488
  s3: "s3";
475
489
  r2: "r2";
476
490
  cloudinary: "cloudinary";
491
+ "supabase-storage": "supabase-storage";
477
492
  }>;
478
493
  declare const AnimationSchema: z.ZodEnum<{
479
494
  none: "none";
@@ -514,6 +529,7 @@ declare const FeatureFlagsSchema: z.ZodEnum<{
514
529
  }>;
515
530
  declare const AnalyticsSchema: z.ZodEnum<{
516
531
  none: "none";
532
+ posthog: "posthog";
517
533
  plausible: "plausible";
518
534
  umami: "umami";
519
535
  }>;
@@ -556,6 +572,8 @@ declare const RustWebFrameworkSchema: z.ZodEnum<{
556
572
  axum: "axum";
557
573
  "actix-web": "actix-web";
558
574
  rocket: "rocket";
575
+ poem: "poem";
576
+ loco: "loco";
559
577
  }>;
560
578
  declare const RustFrontendSchema: z.ZodEnum<{
561
579
  none: "none";
@@ -728,9 +746,11 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
728
746
  echo: "echo";
729
747
  fiber: "fiber";
730
748
  chi: "chi";
749
+ stdlib: "stdlib";
731
750
  }>;
732
751
  declare const GoOrmSchema: z.ZodEnum<{
733
752
  none: "none";
753
+ bun: "bun";
734
754
  gorm: "gorm";
735
755
  sqlc: "sqlc";
736
756
  ent: "ent";
@@ -788,10 +808,15 @@ declare const GoObservabilitySchema: z.ZodEnum<{
788
808
  none: "none";
789
809
  opentelemetry: "opentelemetry";
790
810
  }>;
811
+ declare const JavaLanguageSchema: z.ZodEnum<{
812
+ java: "java";
813
+ kotlin: "kotlin";
814
+ }>;
791
815
  declare const JavaWebFrameworkSchema: z.ZodEnum<{
792
816
  none: "none";
793
817
  "spring-boot": "spring-boot";
794
818
  quarkus: "quarkus";
819
+ micronaut: "micronaut";
795
820
  }>;
796
821
  declare const JavaBuildToolSchema: z.ZodEnum<{
797
822
  none: "none";
@@ -812,10 +837,13 @@ declare const JavaAuthSchema: z.ZodEnum<{
812
837
  declare const JavaApiSchema: z.ZodEnum<{
813
838
  none: "none";
814
839
  "spring-graphql": "spring-graphql";
840
+ "openapi-generator": "openapi-generator";
841
+ grpc: "grpc";
815
842
  }>;
816
843
  declare const JavaLoggingSchema: z.ZodEnum<{
817
844
  none: "none";
818
845
  logback: "logback";
846
+ log4j2: "log4j2";
819
847
  }>;
820
848
  declare const JavaLibrariesSchema: z.ZodEnum<{
821
849
  none: "none";
@@ -932,9 +960,9 @@ declare const ElixirAuthSchema: z.ZodEnum<{
932
960
  }>;
933
961
  declare const ElixirApiSchema: z.ZodEnum<{
934
962
  none: "none";
963
+ grpc: "grpc";
935
964
  rest: "rest";
936
965
  absinthe: "absinthe";
937
- grpc: "grpc";
938
966
  }>;
939
967
  declare const ElixirLibrariesSchema: z.ZodEnum<{
940
968
  none: "none";
@@ -1116,6 +1144,7 @@ declare const TemplateSchema: z.ZodEnum<{
1116
1144
  mern: "mern";
1117
1145
  pern: "pern";
1118
1146
  t3: "t3";
1147
+ saas: "saas";
1119
1148
  }>;
1120
1149
  declare const ProjectNameSchema: z.ZodString;
1121
1150
  declare const CreateInputSchema: z.ZodObject<{
@@ -1126,6 +1155,7 @@ declare const CreateInputSchema: z.ZodObject<{
1126
1155
  mern: "mern";
1127
1156
  pern: "pern";
1128
1157
  t3: "t3";
1158
+ saas: "saas";
1129
1159
  }>>;
1130
1160
  yes: z.ZodOptional<z.ZodBoolean>;
1131
1161
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -1176,11 +1206,15 @@ declare const CreateInputSchema: z.ZodObject<{
1176
1206
  }>>;
1177
1207
  payments: z.ZodOptional<z.ZodEnum<{
1178
1208
  none: "none";
1209
+ revenuecat: "revenuecat";
1179
1210
  polar: "polar";
1180
1211
  stripe: "stripe";
1181
1212
  "lemon-squeezy": "lemon-squeezy";
1182
1213
  paddle: "paddle";
1183
1214
  dodo: "dodo";
1215
+ creem: "creem";
1216
+ autumn: "autumn";
1217
+ commet: "commet";
1184
1218
  }>>;
1185
1219
  frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1186
1220
  none: "none";
@@ -1247,6 +1281,10 @@ declare const CreateInputSchema: z.ZodObject<{
1247
1281
  pnpm: "pnpm";
1248
1282
  yarn: "yarn";
1249
1283
  }>>;
1284
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
1285
+ monorepo: "monorepo";
1286
+ "single-app": "single-app";
1287
+ }>>;
1250
1288
  versionChannel: z.ZodOptional<z.ZodEnum<{
1251
1289
  stable: "stable";
1252
1290
  latest: "latest";
@@ -1266,6 +1304,7 @@ declare const CreateInputSchema: z.ZodObject<{
1266
1304
  docker: "docker";
1267
1305
  }>>;
1268
1306
  backend: z.ZodOptional<z.ZodEnum<{
1307
+ effect: "effect";
1269
1308
  none: "none";
1270
1309
  hono: "hono";
1271
1310
  express: "express";
@@ -1553,6 +1592,7 @@ declare const CreateInputSchema: z.ZodObject<{
1553
1592
  }>>;
1554
1593
  analytics: z.ZodOptional<z.ZodEnum<{
1555
1594
  none: "none";
1595
+ posthog: "posthog";
1556
1596
  plausible: "plausible";
1557
1597
  umami: "umami";
1558
1598
  }>>;
@@ -1567,6 +1607,7 @@ declare const CreateInputSchema: z.ZodObject<{
1567
1607
  }>>;
1568
1608
  caching: z.ZodOptional<z.ZodEnum<{
1569
1609
  none: "none";
1610
+ redis: "redis";
1570
1611
  "upstash-redis": "upstash-redis";
1571
1612
  }>>;
1572
1613
  rateLimit: z.ZodOptional<z.ZodEnum<{
@@ -1579,6 +1620,7 @@ declare const CreateInputSchema: z.ZodObject<{
1579
1620
  paraglide: "paraglide";
1580
1621
  i18next: "i18next";
1581
1622
  "next-intl": "next-intl";
1623
+ intlayer: "intlayer";
1582
1624
  }>>;
1583
1625
  search: z.ZodOptional<z.ZodEnum<{
1584
1626
  none: "none";
@@ -1587,6 +1629,7 @@ declare const CreateInputSchema: z.ZodObject<{
1587
1629
  elasticsearch: "elasticsearch";
1588
1630
  opensearch: "opensearch";
1589
1631
  algolia: "algolia";
1632
+ bleve: "bleve";
1590
1633
  }>>;
1591
1634
  vectorDb: z.ZodOptional<z.ZodEnum<{
1592
1635
  none: "none";
@@ -1600,6 +1643,7 @@ declare const CreateInputSchema: z.ZodObject<{
1600
1643
  s3: "s3";
1601
1644
  r2: "r2";
1602
1645
  cloudinary: "cloudinary";
1646
+ "supabase-storage": "supabase-storage";
1603
1647
  }>>;
1604
1648
  mobileNavigation: z.ZodOptional<z.ZodEnum<{
1605
1649
  none: "none";
@@ -1640,6 +1684,8 @@ declare const CreateInputSchema: z.ZodObject<{
1640
1684
  axum: "axum";
1641
1685
  "actix-web": "actix-web";
1642
1686
  rocket: "rocket";
1687
+ poem: "poem";
1688
+ loco: "loco";
1643
1689
  }>>;
1644
1690
  rustFrontend: z.ZodOptional<z.ZodEnum<{
1645
1691
  none: "none";
@@ -1812,9 +1858,11 @@ declare const CreateInputSchema: z.ZodObject<{
1812
1858
  echo: "echo";
1813
1859
  fiber: "fiber";
1814
1860
  chi: "chi";
1861
+ stdlib: "stdlib";
1815
1862
  }>>;
1816
1863
  goOrm: z.ZodOptional<z.ZodEnum<{
1817
1864
  none: "none";
1865
+ bun: "bun";
1818
1866
  gorm: "gorm";
1819
1867
  sqlc: "sqlc";
1820
1868
  ent: "ent";
@@ -1872,10 +1920,15 @@ declare const CreateInputSchema: z.ZodObject<{
1872
1920
  none: "none";
1873
1921
  opentelemetry: "opentelemetry";
1874
1922
  }>>;
1923
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
1924
+ java: "java";
1925
+ kotlin: "kotlin";
1926
+ }>>;
1875
1927
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
1876
1928
  none: "none";
1877
1929
  "spring-boot": "spring-boot";
1878
1930
  quarkus: "quarkus";
1931
+ micronaut: "micronaut";
1879
1932
  }>>;
1880
1933
  javaBuildTool: z.ZodOptional<z.ZodEnum<{
1881
1934
  none: "none";
@@ -1896,10 +1949,13 @@ declare const CreateInputSchema: z.ZodObject<{
1896
1949
  javaApi: z.ZodOptional<z.ZodEnum<{
1897
1950
  none: "none";
1898
1951
  "spring-graphql": "spring-graphql";
1952
+ "openapi-generator": "openapi-generator";
1953
+ grpc: "grpc";
1899
1954
  }>>;
1900
1955
  javaLogging: z.ZodOptional<z.ZodEnum<{
1901
1956
  none: "none";
1902
1957
  logback: "logback";
1958
+ log4j2: "log4j2";
1903
1959
  }>>;
1904
1960
  javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1905
1961
  none: "none";
@@ -2016,9 +2072,9 @@ declare const CreateInputSchema: z.ZodObject<{
2016
2072
  }>>;
2017
2073
  elixirApi: z.ZodOptional<z.ZodEnum<{
2018
2074
  none: "none";
2075
+ grpc: "grpc";
2019
2076
  rest: "rest";
2020
2077
  absinthe: "absinthe";
2021
- grpc: "grpc";
2022
2078
  }>>;
2023
2079
  elixirRealtime: z.ZodOptional<z.ZodEnum<{
2024
2080
  none: "none";
@@ -2117,6 +2173,7 @@ declare const AddInputSchema: z.ZodObject<{
2117
2173
  fresh: "fresh";
2118
2174
  }>>>;
2119
2175
  backend: z.ZodOptional<z.ZodEnum<{
2176
+ effect: "effect";
2120
2177
  none: "none";
2121
2178
  hono: "hono";
2122
2179
  express: "express";
@@ -2201,6 +2258,7 @@ declare const AddInputSchema: z.ZodObject<{
2201
2258
  }>>;
2202
2259
  caching: z.ZodOptional<z.ZodEnum<{
2203
2260
  none: "none";
2261
+ redis: "redis";
2204
2262
  "upstash-redis": "upstash-redis";
2205
2263
  }>>;
2206
2264
  observability: z.ZodOptional<z.ZodEnum<{
@@ -2230,6 +2288,7 @@ declare const AddInputSchema: z.ZodObject<{
2230
2288
  elasticsearch: "elasticsearch";
2231
2289
  opensearch: "opensearch";
2232
2290
  algolia: "algolia";
2291
+ bleve: "bleve";
2233
2292
  }>>;
2234
2293
  vectorDb: z.ZodOptional<z.ZodEnum<{
2235
2294
  none: "none";
@@ -2243,6 +2302,7 @@ declare const AddInputSchema: z.ZodObject<{
2243
2302
  s3: "s3";
2244
2303
  r2: "r2";
2245
2304
  cloudinary: "cloudinary";
2305
+ "supabase-storage": "supabase-storage";
2246
2306
  }>>;
2247
2307
  jobQueue: z.ZodOptional<z.ZodEnum<{
2248
2308
  none: "none";
@@ -2330,11 +2390,15 @@ declare const AddInputSchema: z.ZodObject<{
2330
2390
  }>>;
2331
2391
  payments: z.ZodOptional<z.ZodEnum<{
2332
2392
  none: "none";
2393
+ revenuecat: "revenuecat";
2333
2394
  polar: "polar";
2334
2395
  stripe: "stripe";
2335
2396
  "lemon-squeezy": "lemon-squeezy";
2336
2397
  paddle: "paddle";
2337
2398
  dodo: "dodo";
2399
+ creem: "creem";
2400
+ autumn: "autumn";
2401
+ commet: "commet";
2338
2402
  }>>;
2339
2403
  logging: z.ZodOptional<z.ZodEnum<{
2340
2404
  none: "none";
@@ -2352,6 +2416,7 @@ declare const AddInputSchema: z.ZodObject<{
2352
2416
  }>>;
2353
2417
  analytics: z.ZodOptional<z.ZodEnum<{
2354
2418
  none: "none";
2419
+ posthog: "posthog";
2355
2420
  plausible: "plausible";
2356
2421
  umami: "umami";
2357
2422
  }>>;
@@ -2369,6 +2434,7 @@ declare const AddInputSchema: z.ZodObject<{
2369
2434
  paraglide: "paraglide";
2370
2435
  i18next: "i18next";
2371
2436
  "next-intl": "next-intl";
2437
+ intlayer: "intlayer";
2372
2438
  }>>;
2373
2439
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2374
2440
  ai: "ai";
@@ -2424,6 +2490,10 @@ declare const AddInputSchema: z.ZodObject<{
2424
2490
  pnpm: "pnpm";
2425
2491
  yarn: "yarn";
2426
2492
  }>>;
2493
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
2494
+ monorepo: "monorepo";
2495
+ "single-app": "single-app";
2496
+ }>>;
2427
2497
  versionChannel: z.ZodOptional<z.ZodEnum<{
2428
2498
  stable: "stable";
2429
2499
  latest: "latest";
@@ -2594,6 +2664,8 @@ declare const AddInputSchema: z.ZodObject<{
2594
2664
  axum: "axum";
2595
2665
  "actix-web": "actix-web";
2596
2666
  rocket: "rocket";
2667
+ poem: "poem";
2668
+ loco: "loco";
2597
2669
  }>>;
2598
2670
  rustFrontend: z.ZodOptional<z.ZodEnum<{
2599
2671
  none: "none";
@@ -2766,9 +2838,11 @@ declare const AddInputSchema: z.ZodObject<{
2766
2838
  echo: "echo";
2767
2839
  fiber: "fiber";
2768
2840
  chi: "chi";
2841
+ stdlib: "stdlib";
2769
2842
  }>>;
2770
2843
  goOrm: z.ZodOptional<z.ZodEnum<{
2771
2844
  none: "none";
2845
+ bun: "bun";
2772
2846
  gorm: "gorm";
2773
2847
  sqlc: "sqlc";
2774
2848
  ent: "ent";
@@ -2826,10 +2900,15 @@ declare const AddInputSchema: z.ZodObject<{
2826
2900
  none: "none";
2827
2901
  opentelemetry: "opentelemetry";
2828
2902
  }>>;
2903
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
2904
+ java: "java";
2905
+ kotlin: "kotlin";
2906
+ }>>;
2829
2907
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
2830
2908
  none: "none";
2831
2909
  "spring-boot": "spring-boot";
2832
2910
  quarkus: "quarkus";
2911
+ micronaut: "micronaut";
2833
2912
  }>>;
2834
2913
  javaBuildTool: z.ZodOptional<z.ZodEnum<{
2835
2914
  none: "none";
@@ -2850,10 +2929,13 @@ declare const AddInputSchema: z.ZodObject<{
2850
2929
  javaApi: z.ZodOptional<z.ZodEnum<{
2851
2930
  none: "none";
2852
2931
  "spring-graphql": "spring-graphql";
2932
+ "openapi-generator": "openapi-generator";
2933
+ grpc: "grpc";
2853
2934
  }>>;
2854
2935
  javaLogging: z.ZodOptional<z.ZodEnum<{
2855
2936
  none: "none";
2856
2937
  logback: "logback";
2938
+ log4j2: "log4j2";
2857
2939
  }>>;
2858
2940
  javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2859
2941
  none: "none";
@@ -2970,9 +3052,9 @@ declare const AddInputSchema: z.ZodObject<{
2970
3052
  }>>;
2971
3053
  elixirApi: z.ZodOptional<z.ZodEnum<{
2972
3054
  none: "none";
3055
+ grpc: "grpc";
2973
3056
  rest: "rest";
2974
3057
  absinthe: "absinthe";
2975
- grpc: "grpc";
2976
3058
  }>>;
2977
3059
  elixirRealtime: z.ZodOptional<z.ZodEnum<{
2978
3060
  none: "none";
@@ -3048,6 +3130,7 @@ declare const AddInputSchema: z.ZodObject<{
3048
3130
  }>>>;
3049
3131
  part: z.ZodOptional<z.ZodArray<z.ZodString>>;
3050
3132
  projectDir: z.ZodOptional<z.ZodString>;
3133
+ acknowledgeArchitectureChange: z.ZodOptional<z.ZodBoolean>;
3051
3134
  }, z.core.$strip>;
3052
3135
  declare const CLIInputSchema: z.ZodObject<{
3053
3136
  projectName: z.ZodOptional<z.ZodString>;
@@ -3057,6 +3140,7 @@ declare const CLIInputSchema: z.ZodObject<{
3057
3140
  mern: "mern";
3058
3141
  pern: "pern";
3059
3142
  t3: "t3";
3143
+ saas: "saas";
3060
3144
  }>>;
3061
3145
  yes: z.ZodOptional<z.ZodBoolean>;
3062
3146
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -3107,11 +3191,15 @@ declare const CLIInputSchema: z.ZodObject<{
3107
3191
  }>>;
3108
3192
  payments: z.ZodOptional<z.ZodEnum<{
3109
3193
  none: "none";
3194
+ revenuecat: "revenuecat";
3110
3195
  polar: "polar";
3111
3196
  stripe: "stripe";
3112
3197
  "lemon-squeezy": "lemon-squeezy";
3113
3198
  paddle: "paddle";
3114
3199
  dodo: "dodo";
3200
+ creem: "creem";
3201
+ autumn: "autumn";
3202
+ commet: "commet";
3115
3203
  }>>;
3116
3204
  frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3117
3205
  none: "none";
@@ -3178,6 +3266,10 @@ declare const CLIInputSchema: z.ZodObject<{
3178
3266
  pnpm: "pnpm";
3179
3267
  yarn: "yarn";
3180
3268
  }>>;
3269
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
3270
+ monorepo: "monorepo";
3271
+ "single-app": "single-app";
3272
+ }>>;
3181
3273
  versionChannel: z.ZodOptional<z.ZodEnum<{
3182
3274
  stable: "stable";
3183
3275
  latest: "latest";
@@ -3197,6 +3289,7 @@ declare const CLIInputSchema: z.ZodObject<{
3197
3289
  docker: "docker";
3198
3290
  }>>;
3199
3291
  backend: z.ZodOptional<z.ZodEnum<{
3292
+ effect: "effect";
3200
3293
  none: "none";
3201
3294
  hono: "hono";
3202
3295
  express: "express";
@@ -3484,6 +3577,7 @@ declare const CLIInputSchema: z.ZodObject<{
3484
3577
  }>>;
3485
3578
  analytics: z.ZodOptional<z.ZodEnum<{
3486
3579
  none: "none";
3580
+ posthog: "posthog";
3487
3581
  plausible: "plausible";
3488
3582
  umami: "umami";
3489
3583
  }>>;
@@ -3498,6 +3592,7 @@ declare const CLIInputSchema: z.ZodObject<{
3498
3592
  }>>;
3499
3593
  caching: z.ZodOptional<z.ZodEnum<{
3500
3594
  none: "none";
3595
+ redis: "redis";
3501
3596
  "upstash-redis": "upstash-redis";
3502
3597
  }>>;
3503
3598
  rateLimit: z.ZodOptional<z.ZodEnum<{
@@ -3510,6 +3605,7 @@ declare const CLIInputSchema: z.ZodObject<{
3510
3605
  paraglide: "paraglide";
3511
3606
  i18next: "i18next";
3512
3607
  "next-intl": "next-intl";
3608
+ intlayer: "intlayer";
3513
3609
  }>>;
3514
3610
  search: z.ZodOptional<z.ZodEnum<{
3515
3611
  none: "none";
@@ -3518,6 +3614,7 @@ declare const CLIInputSchema: z.ZodObject<{
3518
3614
  elasticsearch: "elasticsearch";
3519
3615
  opensearch: "opensearch";
3520
3616
  algolia: "algolia";
3617
+ bleve: "bleve";
3521
3618
  }>>;
3522
3619
  vectorDb: z.ZodOptional<z.ZodEnum<{
3523
3620
  none: "none";
@@ -3531,6 +3628,7 @@ declare const CLIInputSchema: z.ZodObject<{
3531
3628
  s3: "s3";
3532
3629
  r2: "r2";
3533
3630
  cloudinary: "cloudinary";
3631
+ "supabase-storage": "supabase-storage";
3534
3632
  }>>;
3535
3633
  mobileNavigation: z.ZodOptional<z.ZodEnum<{
3536
3634
  none: "none";
@@ -3571,6 +3669,8 @@ declare const CLIInputSchema: z.ZodObject<{
3571
3669
  axum: "axum";
3572
3670
  "actix-web": "actix-web";
3573
3671
  rocket: "rocket";
3672
+ poem: "poem";
3673
+ loco: "loco";
3574
3674
  }>>;
3575
3675
  rustFrontend: z.ZodOptional<z.ZodEnum<{
3576
3676
  none: "none";
@@ -3743,9 +3843,11 @@ declare const CLIInputSchema: z.ZodObject<{
3743
3843
  echo: "echo";
3744
3844
  fiber: "fiber";
3745
3845
  chi: "chi";
3846
+ stdlib: "stdlib";
3746
3847
  }>>;
3747
3848
  goOrm: z.ZodOptional<z.ZodEnum<{
3748
3849
  none: "none";
3850
+ bun: "bun";
3749
3851
  gorm: "gorm";
3750
3852
  sqlc: "sqlc";
3751
3853
  ent: "ent";
@@ -3803,10 +3905,15 @@ declare const CLIInputSchema: z.ZodObject<{
3803
3905
  none: "none";
3804
3906
  opentelemetry: "opentelemetry";
3805
3907
  }>>;
3908
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
3909
+ java: "java";
3910
+ kotlin: "kotlin";
3911
+ }>>;
3806
3912
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
3807
3913
  none: "none";
3808
3914
  "spring-boot": "spring-boot";
3809
3915
  quarkus: "quarkus";
3916
+ micronaut: "micronaut";
3810
3917
  }>>;
3811
3918
  javaBuildTool: z.ZodOptional<z.ZodEnum<{
3812
3919
  none: "none";
@@ -3827,10 +3934,13 @@ declare const CLIInputSchema: z.ZodObject<{
3827
3934
  javaApi: z.ZodOptional<z.ZodEnum<{
3828
3935
  none: "none";
3829
3936
  "spring-graphql": "spring-graphql";
3937
+ "openapi-generator": "openapi-generator";
3938
+ grpc: "grpc";
3830
3939
  }>>;
3831
3940
  javaLogging: z.ZodOptional<z.ZodEnum<{
3832
3941
  none: "none";
3833
3942
  logback: "logback";
3943
+ log4j2: "log4j2";
3834
3944
  }>>;
3835
3945
  javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3836
3946
  none: "none";
@@ -3947,9 +4057,9 @@ declare const CLIInputSchema: z.ZodObject<{
3947
4057
  }>>;
3948
4058
  elixirApi: z.ZodOptional<z.ZodEnum<{
3949
4059
  none: "none";
4060
+ grpc: "grpc";
3950
4061
  rest: "rest";
3951
4062
  absinthe: "absinthe";
3952
- grpc: "grpc";
3953
4063
  }>>;
3954
4064
  elixirRealtime: z.ZodOptional<z.ZodEnum<{
3955
4065
  none: "none";
@@ -4060,6 +4170,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4060
4170
  sequelize: "sequelize";
4061
4171
  }>;
4062
4172
  backend: z.ZodEnum<{
4173
+ effect: "effect";
4063
4174
  none: "none";
4064
4175
  hono: "hono";
4065
4176
  express: "express";
@@ -4152,11 +4263,15 @@ declare const ProjectConfigSchema: z.ZodObject<{
4152
4263
  }>;
4153
4264
  payments: z.ZodEnum<{
4154
4265
  none: "none";
4266
+ revenuecat: "revenuecat";
4155
4267
  polar: "polar";
4156
4268
  stripe: "stripe";
4157
4269
  "lemon-squeezy": "lemon-squeezy";
4158
4270
  paddle: "paddle";
4159
4271
  dodo: "dodo";
4272
+ creem: "creem";
4273
+ autumn: "autumn";
4274
+ commet: "commet";
4160
4275
  }>;
4161
4276
  git: z.ZodBoolean;
4162
4277
  packageManager: z.ZodEnum<{
@@ -4165,6 +4280,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
4165
4280
  pnpm: "pnpm";
4166
4281
  yarn: "yarn";
4167
4282
  }>;
4283
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
4284
+ monorepo: "monorepo";
4285
+ "single-app": "single-app";
4286
+ }>>;
4168
4287
  versionChannel: z.ZodEnum<{
4169
4288
  stable: "stable";
4170
4289
  latest: "latest";
@@ -4442,6 +4561,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4442
4561
  }>;
4443
4562
  analytics: z.ZodEnum<{
4444
4563
  none: "none";
4564
+ posthog: "posthog";
4445
4565
  plausible: "plausible";
4446
4566
  umami: "umami";
4447
4567
  }>;
@@ -4456,6 +4576,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4456
4576
  }>;
4457
4577
  caching: z.ZodEnum<{
4458
4578
  none: "none";
4579
+ redis: "redis";
4459
4580
  "upstash-redis": "upstash-redis";
4460
4581
  }>;
4461
4582
  rateLimit: z.ZodEnum<{
@@ -4468,6 +4589,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4468
4589
  paraglide: "paraglide";
4469
4590
  i18next: "i18next";
4470
4591
  "next-intl": "next-intl";
4592
+ intlayer: "intlayer";
4471
4593
  }>;
4472
4594
  search: z.ZodEnum<{
4473
4595
  none: "none";
@@ -4476,6 +4598,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4476
4598
  elasticsearch: "elasticsearch";
4477
4599
  opensearch: "opensearch";
4478
4600
  algolia: "algolia";
4601
+ bleve: "bleve";
4479
4602
  }>;
4480
4603
  vectorDb: z.ZodEnum<{
4481
4604
  none: "none";
@@ -4489,6 +4612,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
4489
4612
  s3: "s3";
4490
4613
  r2: "r2";
4491
4614
  cloudinary: "cloudinary";
4615
+ "supabase-storage": "supabase-storage";
4492
4616
  }>;
4493
4617
  mobileNavigation: z.ZodEnum<{
4494
4618
  none: "none";
@@ -4529,6 +4653,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
4529
4653
  axum: "axum";
4530
4654
  "actix-web": "actix-web";
4531
4655
  rocket: "rocket";
4656
+ poem: "poem";
4657
+ loco: "loco";
4532
4658
  }>;
4533
4659
  rustFrontend: z.ZodEnum<{
4534
4660
  none: "none";
@@ -4701,9 +4827,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
4701
4827
  echo: "echo";
4702
4828
  fiber: "fiber";
4703
4829
  chi: "chi";
4830
+ stdlib: "stdlib";
4704
4831
  }>;
4705
4832
  goOrm: z.ZodEnum<{
4706
4833
  none: "none";
4834
+ bun: "bun";
4707
4835
  gorm: "gorm";
4708
4836
  sqlc: "sqlc";
4709
4837
  ent: "ent";
@@ -4761,10 +4889,15 @@ declare const ProjectConfigSchema: z.ZodObject<{
4761
4889
  none: "none";
4762
4890
  opentelemetry: "opentelemetry";
4763
4891
  }>;
4892
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
4893
+ java: "java";
4894
+ kotlin: "kotlin";
4895
+ }>>;
4764
4896
  javaWebFramework: z.ZodEnum<{
4765
4897
  none: "none";
4766
4898
  "spring-boot": "spring-boot";
4767
4899
  quarkus: "quarkus";
4900
+ micronaut: "micronaut";
4768
4901
  }>;
4769
4902
  javaBuildTool: z.ZodEnum<{
4770
4903
  none: "none";
@@ -4785,10 +4918,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
4785
4918
  javaApi: z.ZodEnum<{
4786
4919
  none: "none";
4787
4920
  "spring-graphql": "spring-graphql";
4921
+ "openapi-generator": "openapi-generator";
4922
+ grpc: "grpc";
4788
4923
  }>;
4789
4924
  javaLogging: z.ZodEnum<{
4790
4925
  none: "none";
4791
4926
  logback: "logback";
4927
+ log4j2: "log4j2";
4792
4928
  }>;
4793
4929
  javaLibraries: z.ZodArray<z.ZodEnum<{
4794
4930
  none: "none";
@@ -4905,9 +5041,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
4905
5041
  }>;
4906
5042
  elixirApi: z.ZodEnum<{
4907
5043
  none: "none";
5044
+ grpc: "grpc";
4908
5045
  rest: "rest";
4909
5046
  absinthe: "absinthe";
4910
- grpc: "grpc";
4911
5047
  }>;
4912
5048
  elixirRealtime: z.ZodEnum<{
4913
5049
  none: "none";
@@ -5031,6 +5167,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5031
5167
  dataFetching: "dataFetching";
5032
5168
  workspaceTooling: "workspaceTooling";
5033
5169
  examples: "examples";
5170
+ language: "language";
5034
5171
  buildTool: "buildTool";
5035
5172
  cli: "cli";
5036
5173
  errorHandling: "errorHandling";
@@ -5098,6 +5235,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5098
5235
  sequelize: "sequelize";
5099
5236
  }>;
5100
5237
  backend: z.ZodEnum<{
5238
+ effect: "effect";
5101
5239
  none: "none";
5102
5240
  hono: "hono";
5103
5241
  express: "express";
@@ -5190,11 +5328,15 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5190
5328
  }>;
5191
5329
  payments: z.ZodEnum<{
5192
5330
  none: "none";
5331
+ revenuecat: "revenuecat";
5193
5332
  polar: "polar";
5194
5333
  stripe: "stripe";
5195
5334
  "lemon-squeezy": "lemon-squeezy";
5196
5335
  paddle: "paddle";
5197
5336
  dodo: "dodo";
5337
+ creem: "creem";
5338
+ autumn: "autumn";
5339
+ commet: "commet";
5198
5340
  }>;
5199
5341
  packageManager: z.ZodEnum<{
5200
5342
  bun: "bun";
@@ -5202,6 +5344,10 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5202
5344
  pnpm: "pnpm";
5203
5345
  yarn: "yarn";
5204
5346
  }>;
5347
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
5348
+ monorepo: "monorepo";
5349
+ "single-app": "single-app";
5350
+ }>>;
5205
5351
  versionChannel: z.ZodEnum<{
5206
5352
  stable: "stable";
5207
5353
  latest: "latest";
@@ -5478,6 +5624,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5478
5624
  }>;
5479
5625
  analytics: z.ZodEnum<{
5480
5626
  none: "none";
5627
+ posthog: "posthog";
5481
5628
  plausible: "plausible";
5482
5629
  umami: "umami";
5483
5630
  }>;
@@ -5492,6 +5639,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5492
5639
  }>;
5493
5640
  caching: z.ZodEnum<{
5494
5641
  none: "none";
5642
+ redis: "redis";
5495
5643
  "upstash-redis": "upstash-redis";
5496
5644
  }>;
5497
5645
  rateLimit: z.ZodEnum<{
@@ -5504,6 +5652,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5504
5652
  paraglide: "paraglide";
5505
5653
  i18next: "i18next";
5506
5654
  "next-intl": "next-intl";
5655
+ intlayer: "intlayer";
5507
5656
  }>;
5508
5657
  search: z.ZodEnum<{
5509
5658
  none: "none";
@@ -5512,6 +5661,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5512
5661
  elasticsearch: "elasticsearch";
5513
5662
  opensearch: "opensearch";
5514
5663
  algolia: "algolia";
5664
+ bleve: "bleve";
5515
5665
  }>;
5516
5666
  vectorDb: z.ZodEnum<{
5517
5667
  none: "none";
@@ -5525,6 +5675,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5525
5675
  s3: "s3";
5526
5676
  r2: "r2";
5527
5677
  cloudinary: "cloudinary";
5678
+ "supabase-storage": "supabase-storage";
5528
5679
  }>;
5529
5680
  mobileNavigation: z.ZodEnum<{
5530
5681
  none: "none";
@@ -5565,6 +5716,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5565
5716
  axum: "axum";
5566
5717
  "actix-web": "actix-web";
5567
5718
  rocket: "rocket";
5719
+ poem: "poem";
5720
+ loco: "loco";
5568
5721
  }>;
5569
5722
  rustFrontend: z.ZodEnum<{
5570
5723
  none: "none";
@@ -5737,9 +5890,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5737
5890
  echo: "echo";
5738
5891
  fiber: "fiber";
5739
5892
  chi: "chi";
5893
+ stdlib: "stdlib";
5740
5894
  }>;
5741
5895
  goOrm: z.ZodEnum<{
5742
5896
  none: "none";
5897
+ bun: "bun";
5743
5898
  gorm: "gorm";
5744
5899
  sqlc: "sqlc";
5745
5900
  ent: "ent";
@@ -5797,10 +5952,15 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5797
5952
  none: "none";
5798
5953
  opentelemetry: "opentelemetry";
5799
5954
  }>;
5955
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
5956
+ java: "java";
5957
+ kotlin: "kotlin";
5958
+ }>>;
5800
5959
  javaWebFramework: z.ZodEnum<{
5801
5960
  none: "none";
5802
5961
  "spring-boot": "spring-boot";
5803
5962
  quarkus: "quarkus";
5963
+ micronaut: "micronaut";
5804
5964
  }>;
5805
5965
  javaBuildTool: z.ZodEnum<{
5806
5966
  none: "none";
@@ -5821,10 +5981,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5821
5981
  javaApi: z.ZodEnum<{
5822
5982
  none: "none";
5823
5983
  "spring-graphql": "spring-graphql";
5984
+ "openapi-generator": "openapi-generator";
5985
+ grpc: "grpc";
5824
5986
  }>;
5825
5987
  javaLogging: z.ZodEnum<{
5826
5988
  none: "none";
5827
5989
  logback: "logback";
5990
+ log4j2: "log4j2";
5828
5991
  }>;
5829
5992
  javaLibraries: z.ZodArray<z.ZodEnum<{
5830
5993
  none: "none";
@@ -5941,9 +6104,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
5941
6104
  }>;
5942
6105
  elixirApi: z.ZodEnum<{
5943
6106
  none: "none";
6107
+ grpc: "grpc";
5944
6108
  rest: "rest";
5945
6109
  absinthe: "absinthe";
5946
- grpc: "grpc";
5947
6110
  }>;
5948
6111
  elixirRealtime: z.ZodEnum<{
5949
6112
  none: "none";
@@ -6067,6 +6230,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6067
6230
  dataFetching: "dataFetching";
6068
6231
  workspaceTooling: "workspaceTooling";
6069
6232
  examples: "examples";
6233
+ language: "language";
6070
6234
  buildTool: "buildTool";
6071
6235
  cli: "cli";
6072
6236
  errorHandling: "errorHandling";
@@ -6134,6 +6298,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6134
6298
  sequelize: "sequelize";
6135
6299
  }>;
6136
6300
  backend: z.ZodEnum<{
6301
+ effect: "effect";
6137
6302
  none: "none";
6138
6303
  hono: "hono";
6139
6304
  express: "express";
@@ -6226,11 +6391,15 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6226
6391
  }>;
6227
6392
  payments: z.ZodEnum<{
6228
6393
  none: "none";
6394
+ revenuecat: "revenuecat";
6229
6395
  polar: "polar";
6230
6396
  stripe: "stripe";
6231
6397
  "lemon-squeezy": "lemon-squeezy";
6232
6398
  paddle: "paddle";
6233
6399
  dodo: "dodo";
6400
+ creem: "creem";
6401
+ autumn: "autumn";
6402
+ commet: "commet";
6234
6403
  }>;
6235
6404
  packageManager: z.ZodEnum<{
6236
6405
  bun: "bun";
@@ -6238,6 +6407,10 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6238
6407
  pnpm: "pnpm";
6239
6408
  yarn: "yarn";
6240
6409
  }>;
6410
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
6411
+ monorepo: "monorepo";
6412
+ "single-app": "single-app";
6413
+ }>>;
6241
6414
  versionChannel: z.ZodEnum<{
6242
6415
  stable: "stable";
6243
6416
  latest: "latest";
@@ -6514,6 +6687,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6514
6687
  }>;
6515
6688
  analytics: z.ZodEnum<{
6516
6689
  none: "none";
6690
+ posthog: "posthog";
6517
6691
  plausible: "plausible";
6518
6692
  umami: "umami";
6519
6693
  }>;
@@ -6528,6 +6702,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6528
6702
  }>;
6529
6703
  caching: z.ZodEnum<{
6530
6704
  none: "none";
6705
+ redis: "redis";
6531
6706
  "upstash-redis": "upstash-redis";
6532
6707
  }>;
6533
6708
  rateLimit: z.ZodEnum<{
@@ -6540,6 +6715,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6540
6715
  paraglide: "paraglide";
6541
6716
  i18next: "i18next";
6542
6717
  "next-intl": "next-intl";
6718
+ intlayer: "intlayer";
6543
6719
  }>;
6544
6720
  search: z.ZodEnum<{
6545
6721
  none: "none";
@@ -6548,6 +6724,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6548
6724
  elasticsearch: "elasticsearch";
6549
6725
  opensearch: "opensearch";
6550
6726
  algolia: "algolia";
6727
+ bleve: "bleve";
6551
6728
  }>;
6552
6729
  vectorDb: z.ZodEnum<{
6553
6730
  none: "none";
@@ -6561,6 +6738,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6561
6738
  s3: "s3";
6562
6739
  r2: "r2";
6563
6740
  cloudinary: "cloudinary";
6741
+ "supabase-storage": "supabase-storage";
6564
6742
  }>;
6565
6743
  mobileNavigation: z.ZodEnum<{
6566
6744
  none: "none";
@@ -6601,6 +6779,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6601
6779
  axum: "axum";
6602
6780
  "actix-web": "actix-web";
6603
6781
  rocket: "rocket";
6782
+ poem: "poem";
6783
+ loco: "loco";
6604
6784
  }>;
6605
6785
  rustFrontend: z.ZodEnum<{
6606
6786
  none: "none";
@@ -6773,9 +6953,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6773
6953
  echo: "echo";
6774
6954
  fiber: "fiber";
6775
6955
  chi: "chi";
6956
+ stdlib: "stdlib";
6776
6957
  }>;
6777
6958
  goOrm: z.ZodEnum<{
6778
6959
  none: "none";
6960
+ bun: "bun";
6779
6961
  gorm: "gorm";
6780
6962
  sqlc: "sqlc";
6781
6963
  ent: "ent";
@@ -6833,10 +7015,15 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6833
7015
  none: "none";
6834
7016
  opentelemetry: "opentelemetry";
6835
7017
  }>;
7018
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
7019
+ java: "java";
7020
+ kotlin: "kotlin";
7021
+ }>>;
6836
7022
  javaWebFramework: z.ZodEnum<{
6837
7023
  none: "none";
6838
7024
  "spring-boot": "spring-boot";
6839
7025
  quarkus: "quarkus";
7026
+ micronaut: "micronaut";
6840
7027
  }>;
6841
7028
  javaBuildTool: z.ZodEnum<{
6842
7029
  none: "none";
@@ -6857,10 +7044,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6857
7044
  javaApi: z.ZodEnum<{
6858
7045
  none: "none";
6859
7046
  "spring-graphql": "spring-graphql";
7047
+ "openapi-generator": "openapi-generator";
7048
+ grpc: "grpc";
6860
7049
  }>;
6861
7050
  javaLogging: z.ZodEnum<{
6862
7051
  none: "none";
6863
7052
  logback: "logback";
7053
+ log4j2: "log4j2";
6864
7054
  }>;
6865
7055
  javaLibraries: z.ZodArray<z.ZodEnum<{
6866
7056
  none: "none";
@@ -6977,9 +7167,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
6977
7167
  }>;
6978
7168
  elixirApi: z.ZodEnum<{
6979
7169
  none: "none";
7170
+ grpc: "grpc";
6980
7171
  rest: "rest";
6981
7172
  absinthe: "absinthe";
6982
- grpc: "grpc";
6983
7173
  }>;
6984
7174
  elixirRealtime: z.ZodEnum<{
6985
7175
  none: "none";
@@ -7103,6 +7293,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
7103
7293
  dataFetching: "dataFetching";
7104
7294
  workspaceTooling: "workspaceTooling";
7105
7295
  examples: "examples";
7296
+ language: "language";
7106
7297
  buildTool: "buildTool";
7107
7298
  cli: "cli";
7108
7299
  errorHandling: "errorHandling";
@@ -7171,6 +7362,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7171
7362
  sequelize: "sequelize";
7172
7363
  }>;
7173
7364
  backend: z.ZodEnum<{
7365
+ effect: "effect";
7174
7366
  none: "none";
7175
7367
  hono: "hono";
7176
7368
  express: "express";
@@ -7263,11 +7455,15 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7263
7455
  }>;
7264
7456
  payments: z.ZodEnum<{
7265
7457
  none: "none";
7458
+ revenuecat: "revenuecat";
7266
7459
  polar: "polar";
7267
7460
  stripe: "stripe";
7268
7461
  "lemon-squeezy": "lemon-squeezy";
7269
7462
  paddle: "paddle";
7270
7463
  dodo: "dodo";
7464
+ creem: "creem";
7465
+ autumn: "autumn";
7466
+ commet: "commet";
7271
7467
  }>;
7272
7468
  packageManager: z.ZodEnum<{
7273
7469
  bun: "bun";
@@ -7275,6 +7471,10 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7275
7471
  pnpm: "pnpm";
7276
7472
  yarn: "yarn";
7277
7473
  }>;
7474
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
7475
+ monorepo: "monorepo";
7476
+ "single-app": "single-app";
7477
+ }>>;
7278
7478
  versionChannel: z.ZodEnum<{
7279
7479
  stable: "stable";
7280
7480
  latest: "latest";
@@ -7551,6 +7751,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7551
7751
  }>;
7552
7752
  analytics: z.ZodEnum<{
7553
7753
  none: "none";
7754
+ posthog: "posthog";
7554
7755
  plausible: "plausible";
7555
7756
  umami: "umami";
7556
7757
  }>;
@@ -7565,6 +7766,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7565
7766
  }>;
7566
7767
  caching: z.ZodEnum<{
7567
7768
  none: "none";
7769
+ redis: "redis";
7568
7770
  "upstash-redis": "upstash-redis";
7569
7771
  }>;
7570
7772
  rateLimit: z.ZodEnum<{
@@ -7577,6 +7779,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7577
7779
  paraglide: "paraglide";
7578
7780
  i18next: "i18next";
7579
7781
  "next-intl": "next-intl";
7782
+ intlayer: "intlayer";
7580
7783
  }>;
7581
7784
  search: z.ZodEnum<{
7582
7785
  none: "none";
@@ -7585,6 +7788,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7585
7788
  elasticsearch: "elasticsearch";
7586
7789
  opensearch: "opensearch";
7587
7790
  algolia: "algolia";
7791
+ bleve: "bleve";
7588
7792
  }>;
7589
7793
  vectorDb: z.ZodEnum<{
7590
7794
  none: "none";
@@ -7598,6 +7802,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7598
7802
  s3: "s3";
7599
7803
  r2: "r2";
7600
7804
  cloudinary: "cloudinary";
7805
+ "supabase-storage": "supabase-storage";
7601
7806
  }>;
7602
7807
  mobileNavigation: z.ZodEnum<{
7603
7808
  none: "none";
@@ -7638,6 +7843,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7638
7843
  axum: "axum";
7639
7844
  "actix-web": "actix-web";
7640
7845
  rocket: "rocket";
7846
+ poem: "poem";
7847
+ loco: "loco";
7641
7848
  }>;
7642
7849
  rustFrontend: z.ZodEnum<{
7643
7850
  none: "none";
@@ -7810,9 +8017,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7810
8017
  echo: "echo";
7811
8018
  fiber: "fiber";
7812
8019
  chi: "chi";
8020
+ stdlib: "stdlib";
7813
8021
  }>;
7814
8022
  goOrm: z.ZodEnum<{
7815
8023
  none: "none";
8024
+ bun: "bun";
7816
8025
  gorm: "gorm";
7817
8026
  sqlc: "sqlc";
7818
8027
  ent: "ent";
@@ -7870,10 +8079,15 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7870
8079
  none: "none";
7871
8080
  opentelemetry: "opentelemetry";
7872
8081
  }>;
8082
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
8083
+ java: "java";
8084
+ kotlin: "kotlin";
8085
+ }>>;
7873
8086
  javaWebFramework: z.ZodEnum<{
7874
8087
  none: "none";
7875
8088
  "spring-boot": "spring-boot";
7876
8089
  quarkus: "quarkus";
8090
+ micronaut: "micronaut";
7877
8091
  }>;
7878
8092
  javaBuildTool: z.ZodEnum<{
7879
8093
  none: "none";
@@ -7894,10 +8108,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
7894
8108
  javaApi: z.ZodEnum<{
7895
8109
  none: "none";
7896
8110
  "spring-graphql": "spring-graphql";
8111
+ "openapi-generator": "openapi-generator";
8112
+ grpc: "grpc";
7897
8113
  }>;
7898
8114
  javaLogging: z.ZodEnum<{
7899
8115
  none: "none";
7900
8116
  logback: "logback";
8117
+ log4j2: "log4j2";
7901
8118
  }>;
7902
8119
  javaLibraries: z.ZodArray<z.ZodEnum<{
7903
8120
  none: "none";
@@ -8014,9 +8231,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
8014
8231
  }>;
8015
8232
  elixirApi: z.ZodEnum<{
8016
8233
  none: "none";
8234
+ grpc: "grpc";
8017
8235
  rest: "rest";
8018
8236
  absinthe: "absinthe";
8019
- grpc: "grpc";
8020
8237
  }>;
8021
8238
  elixirRealtime: z.ZodEnum<{
8022
8239
  none: "none";
@@ -8140,6 +8357,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
8140
8357
  dataFetching: "dataFetching";
8141
8358
  workspaceTooling: "workspaceTooling";
8142
8359
  examples: "examples";
8360
+ language: "language";
8143
8361
  buildTool: "buildTool";
8144
8362
  cli: "cli";
8145
8363
  errorHandling: "errorHandling";
@@ -8208,6 +8426,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8208
8426
  sequelize: "sequelize";
8209
8427
  }>;
8210
8428
  backend: z.ZodEnum<{
8429
+ effect: "effect";
8211
8430
  none: "none";
8212
8431
  hono: "hono";
8213
8432
  express: "express";
@@ -8300,11 +8519,15 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8300
8519
  }>;
8301
8520
  payments: z.ZodEnum<{
8302
8521
  none: "none";
8522
+ revenuecat: "revenuecat";
8303
8523
  polar: "polar";
8304
8524
  stripe: "stripe";
8305
8525
  "lemon-squeezy": "lemon-squeezy";
8306
8526
  paddle: "paddle";
8307
8527
  dodo: "dodo";
8528
+ creem: "creem";
8529
+ autumn: "autumn";
8530
+ commet: "commet";
8308
8531
  }>;
8309
8532
  packageManager: z.ZodEnum<{
8310
8533
  bun: "bun";
@@ -8312,6 +8535,10 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8312
8535
  pnpm: "pnpm";
8313
8536
  yarn: "yarn";
8314
8537
  }>;
8538
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
8539
+ monorepo: "monorepo";
8540
+ "single-app": "single-app";
8541
+ }>>;
8315
8542
  versionChannel: z.ZodEnum<{
8316
8543
  stable: "stable";
8317
8544
  latest: "latest";
@@ -8588,6 +8815,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8588
8815
  }>;
8589
8816
  analytics: z.ZodEnum<{
8590
8817
  none: "none";
8818
+ posthog: "posthog";
8591
8819
  plausible: "plausible";
8592
8820
  umami: "umami";
8593
8821
  }>;
@@ -8602,6 +8830,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8602
8830
  }>;
8603
8831
  caching: z.ZodEnum<{
8604
8832
  none: "none";
8833
+ redis: "redis";
8605
8834
  "upstash-redis": "upstash-redis";
8606
8835
  }>;
8607
8836
  rateLimit: z.ZodEnum<{
@@ -8614,6 +8843,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8614
8843
  paraglide: "paraglide";
8615
8844
  i18next: "i18next";
8616
8845
  "next-intl": "next-intl";
8846
+ intlayer: "intlayer";
8617
8847
  }>;
8618
8848
  search: z.ZodEnum<{
8619
8849
  none: "none";
@@ -8622,6 +8852,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8622
8852
  elasticsearch: "elasticsearch";
8623
8853
  opensearch: "opensearch";
8624
8854
  algolia: "algolia";
8855
+ bleve: "bleve";
8625
8856
  }>;
8626
8857
  vectorDb: z.ZodEnum<{
8627
8858
  none: "none";
@@ -8635,6 +8866,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8635
8866
  s3: "s3";
8636
8867
  r2: "r2";
8637
8868
  cloudinary: "cloudinary";
8869
+ "supabase-storage": "supabase-storage";
8638
8870
  }>;
8639
8871
  mobileNavigation: z.ZodEnum<{
8640
8872
  none: "none";
@@ -8675,6 +8907,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8675
8907
  axum: "axum";
8676
8908
  "actix-web": "actix-web";
8677
8909
  rocket: "rocket";
8910
+ poem: "poem";
8911
+ loco: "loco";
8678
8912
  }>;
8679
8913
  rustFrontend: z.ZodEnum<{
8680
8914
  none: "none";
@@ -8847,9 +9081,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8847
9081
  echo: "echo";
8848
9082
  fiber: "fiber";
8849
9083
  chi: "chi";
9084
+ stdlib: "stdlib";
8850
9085
  }>;
8851
9086
  goOrm: z.ZodEnum<{
8852
9087
  none: "none";
9088
+ bun: "bun";
8853
9089
  gorm: "gorm";
8854
9090
  sqlc: "sqlc";
8855
9091
  ent: "ent";
@@ -8907,10 +9143,15 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8907
9143
  none: "none";
8908
9144
  opentelemetry: "opentelemetry";
8909
9145
  }>;
9146
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
9147
+ java: "java";
9148
+ kotlin: "kotlin";
9149
+ }>>;
8910
9150
  javaWebFramework: z.ZodEnum<{
8911
9151
  none: "none";
8912
9152
  "spring-boot": "spring-boot";
8913
9153
  quarkus: "quarkus";
9154
+ micronaut: "micronaut";
8914
9155
  }>;
8915
9156
  javaBuildTool: z.ZodEnum<{
8916
9157
  none: "none";
@@ -8931,10 +9172,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
8931
9172
  javaApi: z.ZodEnum<{
8932
9173
  none: "none";
8933
9174
  "spring-graphql": "spring-graphql";
9175
+ "openapi-generator": "openapi-generator";
9176
+ grpc: "grpc";
8934
9177
  }>;
8935
9178
  javaLogging: z.ZodEnum<{
8936
9179
  none: "none";
8937
9180
  logback: "logback";
9181
+ log4j2: "log4j2";
8938
9182
  }>;
8939
9183
  javaLibraries: z.ZodArray<z.ZodEnum<{
8940
9184
  none: "none";
@@ -9051,9 +9295,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
9051
9295
  }>;
9052
9296
  elixirApi: z.ZodEnum<{
9053
9297
  none: "none";
9298
+ grpc: "grpc";
9054
9299
  rest: "rest";
9055
9300
  absinthe: "absinthe";
9056
- grpc: "grpc";
9057
9301
  }>;
9058
9302
  elixirRealtime: z.ZodEnum<{
9059
9303
  none: "none";
@@ -9177,6 +9421,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
9177
9421
  dataFetching: "dataFetching";
9178
9422
  workspaceTooling: "workspaceTooling";
9179
9423
  examples: "examples";
9424
+ language: "language";
9180
9425
  buildTool: "buildTool";
9181
9426
  cli: "cli";
9182
9427
  errorHandling: "errorHandling";
@@ -9245,6 +9490,7 @@ declare const InitResultSchema: z.ZodObject<{
9245
9490
  sequelize: "sequelize";
9246
9491
  }>;
9247
9492
  backend: z.ZodEnum<{
9493
+ effect: "effect";
9248
9494
  none: "none";
9249
9495
  hono: "hono";
9250
9496
  express: "express";
@@ -9337,11 +9583,15 @@ declare const InitResultSchema: z.ZodObject<{
9337
9583
  }>;
9338
9584
  payments: z.ZodEnum<{
9339
9585
  none: "none";
9586
+ revenuecat: "revenuecat";
9340
9587
  polar: "polar";
9341
9588
  stripe: "stripe";
9342
9589
  "lemon-squeezy": "lemon-squeezy";
9343
9590
  paddle: "paddle";
9344
9591
  dodo: "dodo";
9592
+ creem: "creem";
9593
+ autumn: "autumn";
9594
+ commet: "commet";
9345
9595
  }>;
9346
9596
  git: z.ZodBoolean;
9347
9597
  packageManager: z.ZodEnum<{
@@ -9350,6 +9600,10 @@ declare const InitResultSchema: z.ZodObject<{
9350
9600
  pnpm: "pnpm";
9351
9601
  yarn: "yarn";
9352
9602
  }>;
9603
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
9604
+ monorepo: "monorepo";
9605
+ "single-app": "single-app";
9606
+ }>>;
9353
9607
  versionChannel: z.ZodEnum<{
9354
9608
  stable: "stable";
9355
9609
  latest: "latest";
@@ -9627,6 +9881,7 @@ declare const InitResultSchema: z.ZodObject<{
9627
9881
  }>;
9628
9882
  analytics: z.ZodEnum<{
9629
9883
  none: "none";
9884
+ posthog: "posthog";
9630
9885
  plausible: "plausible";
9631
9886
  umami: "umami";
9632
9887
  }>;
@@ -9641,6 +9896,7 @@ declare const InitResultSchema: z.ZodObject<{
9641
9896
  }>;
9642
9897
  caching: z.ZodEnum<{
9643
9898
  none: "none";
9899
+ redis: "redis";
9644
9900
  "upstash-redis": "upstash-redis";
9645
9901
  }>;
9646
9902
  rateLimit: z.ZodEnum<{
@@ -9653,6 +9909,7 @@ declare const InitResultSchema: z.ZodObject<{
9653
9909
  paraglide: "paraglide";
9654
9910
  i18next: "i18next";
9655
9911
  "next-intl": "next-intl";
9912
+ intlayer: "intlayer";
9656
9913
  }>;
9657
9914
  search: z.ZodEnum<{
9658
9915
  none: "none";
@@ -9661,6 +9918,7 @@ declare const InitResultSchema: z.ZodObject<{
9661
9918
  elasticsearch: "elasticsearch";
9662
9919
  opensearch: "opensearch";
9663
9920
  algolia: "algolia";
9921
+ bleve: "bleve";
9664
9922
  }>;
9665
9923
  vectorDb: z.ZodEnum<{
9666
9924
  none: "none";
@@ -9674,6 +9932,7 @@ declare const InitResultSchema: z.ZodObject<{
9674
9932
  s3: "s3";
9675
9933
  r2: "r2";
9676
9934
  cloudinary: "cloudinary";
9935
+ "supabase-storage": "supabase-storage";
9677
9936
  }>;
9678
9937
  mobileNavigation: z.ZodEnum<{
9679
9938
  none: "none";
@@ -9714,6 +9973,8 @@ declare const InitResultSchema: z.ZodObject<{
9714
9973
  axum: "axum";
9715
9974
  "actix-web": "actix-web";
9716
9975
  rocket: "rocket";
9976
+ poem: "poem";
9977
+ loco: "loco";
9717
9978
  }>;
9718
9979
  rustFrontend: z.ZodEnum<{
9719
9980
  none: "none";
@@ -9886,9 +10147,11 @@ declare const InitResultSchema: z.ZodObject<{
9886
10147
  echo: "echo";
9887
10148
  fiber: "fiber";
9888
10149
  chi: "chi";
10150
+ stdlib: "stdlib";
9889
10151
  }>;
9890
10152
  goOrm: z.ZodEnum<{
9891
10153
  none: "none";
10154
+ bun: "bun";
9892
10155
  gorm: "gorm";
9893
10156
  sqlc: "sqlc";
9894
10157
  ent: "ent";
@@ -9946,10 +10209,15 @@ declare const InitResultSchema: z.ZodObject<{
9946
10209
  none: "none";
9947
10210
  opentelemetry: "opentelemetry";
9948
10211
  }>;
10212
+ javaLanguage: z.ZodOptional<z.ZodEnum<{
10213
+ java: "java";
10214
+ kotlin: "kotlin";
10215
+ }>>;
9949
10216
  javaWebFramework: z.ZodEnum<{
9950
10217
  none: "none";
9951
10218
  "spring-boot": "spring-boot";
9952
10219
  quarkus: "quarkus";
10220
+ micronaut: "micronaut";
9953
10221
  }>;
9954
10222
  javaBuildTool: z.ZodEnum<{
9955
10223
  none: "none";
@@ -9970,10 +10238,13 @@ declare const InitResultSchema: z.ZodObject<{
9970
10238
  javaApi: z.ZodEnum<{
9971
10239
  none: "none";
9972
10240
  "spring-graphql": "spring-graphql";
10241
+ "openapi-generator": "openapi-generator";
10242
+ grpc: "grpc";
9973
10243
  }>;
9974
10244
  javaLogging: z.ZodEnum<{
9975
10245
  none: "none";
9976
10246
  logback: "logback";
10247
+ log4j2: "log4j2";
9977
10248
  }>;
9978
10249
  javaLibraries: z.ZodArray<z.ZodEnum<{
9979
10250
  none: "none";
@@ -10090,9 +10361,9 @@ declare const InitResultSchema: z.ZodObject<{
10090
10361
  }>;
10091
10362
  elixirApi: z.ZodEnum<{
10092
10363
  none: "none";
10364
+ grpc: "grpc";
10093
10365
  rest: "rest";
10094
10366
  absinthe: "absinthe";
10095
- grpc: "grpc";
10096
10367
  }>;
10097
10368
  elixirRealtime: z.ZodEnum<{
10098
10369
  none: "none";
@@ -10216,6 +10487,7 @@ declare const InitResultSchema: z.ZodObject<{
10216
10487
  dataFetching: "dataFetching";
10217
10488
  workspaceTooling: "workspaceTooling";
10218
10489
  examples: "examples";
10490
+ language: "language";
10219
10491
  buildTool: "buildTool";
10220
10492
  cli: "cli";
10221
10493
  errorHandling: "errorHandling";
@@ -10261,21 +10533,22 @@ declare const InitResultSchema: z.ZodObject<{
10261
10533
  }, z.core.$strip>;
10262
10534
  declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
10263
10535
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
10264
- declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
10536
+ declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
10265
10537
  declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
10266
10538
  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")[];
10267
10539
  declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
10268
10540
  declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
10269
10541
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
10542
+ declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
10270
10543
  declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
10271
10544
  declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
10272
10545
  declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi")[];
10273
10546
  declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde")[];
10274
- declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
10547
+ declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo" | "creem" | "autumn" | "commet")[];
10275
10548
  declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
10276
10549
  declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
10277
10550
  declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
10278
- declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3")[];
10551
+ declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3" | "saas")[];
10279
10552
  declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
10280
10553
  declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
10281
10554
  declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
@@ -10293,7 +10566,7 @@ declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")
10293
10566
  declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
10294
10567
  declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
10295
10568
  declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
10296
- declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
10569
+ declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami")[];
10297
10570
  declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
10298
10571
  declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
10299
10572
  declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
@@ -10302,14 +10575,14 @@ declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
10302
10575
  declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
10303
10576
  declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
10304
10577
  declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic")[];
10305
- declare const CACHING_VALUES: ("none" | "upstash-redis")[];
10578
+ declare const CACHING_VALUES: ("none" | "redis" | "upstash-redis")[];
10306
10579
  declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
10307
- declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl")[];
10308
- declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia")[];
10580
+ declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl" | "intlayer")[];
10581
+ declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia" | "bleve")[];
10309
10582
  declare const VECTOR_DB_VALUES: ("none" | "pgvector" | "qdrant" | "chroma" | "pinecone")[];
10310
- declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
10583
+ declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary" | "supabase-storage")[];
10311
10584
  declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet")[];
10312
- declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
10585
+ declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket" | "poem" | "loco")[];
10313
10586
  declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
10314
10587
  declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
10315
10588
  declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
@@ -10337,8 +10610,8 @@ declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
10337
10610
  declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
10338
10611
  declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
10339
10612
  declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
10340
- declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
10341
- declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
10613
+ declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi" | "stdlib")[];
10614
+ declare const GO_ORM_VALUES: ("none" | "bun" | "gorm" | "sqlc" | "ent")[];
10342
10615
  declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen")[];
10343
10616
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
10344
10617
  declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
@@ -10349,12 +10622,13 @@ declare const GO_MESSAGE_QUEUE_VALUES: ("none" | "nats" | "watermill")[];
10349
10622
  declare const GO_CACHING_VALUES: ("none" | "redis" | "ristretto")[];
10350
10623
  declare const GO_CONFIG_VALUES: ("none" | "viper" | "koanf")[];
10351
10624
  declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
10352
- declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus")[];
10625
+ declare const JAVA_LANGUAGE_VALUES: ("java" | "kotlin")[];
10626
+ declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus" | "micronaut")[];
10353
10627
  declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
10354
10628
  declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")[];
10355
10629
  declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
10356
- declare const JAVA_API_VALUES: ("none" | "spring-graphql")[];
10357
- declare const JAVA_LOGGING_VALUES: ("none" | "logback")[];
10630
+ declare const JAVA_API_VALUES: ("none" | "spring-graphql" | "openapi-generator" | "grpc")[];
10631
+ declare const JAVA_LOGGING_VALUES: ("none" | "logback" | "log4j2")[];
10358
10632
  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" | "spring-amqp" | "opentelemetry-java")[];
10359
10633
  declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
10360
10634
  declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
@@ -10371,7 +10645,7 @@ declare const DOTNET_DEPLOY_VALUES: ("none" | "docker" | "azure" | "aws")[];
10371
10645
  declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
10372
10646
  declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
10373
10647
  declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
10374
- declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe" | "grpc")[];
10648
+ declare const ELIXIR_API_VALUES: ("none" | "grpc" | "rest" | "absinthe")[];
10375
10649
  declare const ELIXIR_LIBRARIES_VALUES: ("none" | "nx" | "broadway")[];
10376
10650
  declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
10377
10651
  declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
@@ -10393,5 +10667,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
10393
10667
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
10394
10668
  declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "small" | "medium" | "large")[];
10395
10669
  //#endregion
10396
- export { DotnetJobQueueSchema as $, TemplateSchema as $i, MOBILE_STORAGE_VALUES as $n, RUST_CLI_VALUES as $r, FileUploadSchema as $t, CachingSchema as A, SHADCN_BASE_VALUES as Ai, JAVA_AUTH_VALUES as An, PaymentsSchema as Ar, ElixirCachingSchema as At, DOTNET_OBSERVABILITY_VALUES as B, ShadcnBaseSchema as Bi, JavaBuildToolSchema as Bn, PythonOrmSchema as Br, ElixirRealtimeSchema as Bt, BetterTStackConfigSchema as C, RustOrmSchema as Ci, GoRealtimeSchema as Cn, PYTHON_QUALITY_VALUES as Cr, ELIXIR_WEB_FRAMEWORK_VALUES as Ct, CMS_VALUES as D, SEARCH_VALUES as Di, I18nSchema as Dn, PYTHON_VALIDATION_VALUES as Dr, EffectSchema as Dt, CMSSchema as E, RustWebFrameworkSchema as Ei, I18N_VALUES as En, PYTHON_TESTING_VALUES as Er, EcosystemSchema as Et, DOTNET_API_VALUES as F, SHADCN_STYLE_VALUES as Fi, JAVA_TESTING_LIBRARIES_VALUES as Fn, PythonAuthSchema as Fr, ElixirJsonSchema as Ft, DOTNET_WEB_FRAMEWORK_VALUES as G, ShadcnStyleSchema as Gi, JavaWebFrameworkSchema as Gn, PythonValidationSchema as Gr, ExamplesSchema as Gt, DOTNET_REALTIME_VALUES as H, ShadcnFontSchema as Hi, JavaLoggingSchema as Hn, PythonRealtimeSchema as Hr, ElixirValidationSchema as Ht, DOTNET_AUTH_VALUES as I, STATE_MANAGEMENT_VALUES as Ii, JAVA_WEB_FRAMEWORK_VALUES as In, PythonCachingSchema as Ir, ElixirLibrariesSchema as It, DirectoryConflictSchema as J, StackPartSchema as Ji, LoggingSchema as Jn, REALTIME_VALUES as Jr, FILE_UPLOAD_VALUES as Jt, DatabaseSchema as K, StackPartEcosystemSchema as Ki, JobQueueSchema as Kn, PythonWebFrameworkSchema as Kr, FEATURE_FLAGS_VALUES as Kt, DOTNET_CACHING_VALUES as L, SearchSchema as Li, JOB_QUEUE_VALUES as Ln, PythonCliSchema as Lr, ElixirObservabilitySchema as Lt, DATABASE_SETUP_VALUES as M, SHADCN_FONT_VALUES as Mi, JAVA_LIBRARIES_VALUES as Mn, ProjectNameSchema as Mr, ElixirEmailSchema as Mt, DATABASE_VALUES as N, SHADCN_ICON_LIBRARY_VALUES as Ni, JAVA_LOGGING_VALUES as Nn, PythonAiSchema as Nr, ElixirHttpSchema as Nt, CSSFrameworkSchema as O, SERVER_DEPLOY_VALUES as Oi, InitResultSchema as On, PYTHON_WEB_FRAMEWORK_VALUES as Or, ElixirApiSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, SHADCN_RADIUS_VALUES as Pi, JAVA_ORM_VALUES as Pn, PythonApiSchema as Pr, ElixirJobsSchema as Pt, DotnetDeploySchema as Q, TESTING_VALUES as Qi, MOBILE_PUSH_VALUES as Qn, RUST_CACHING_VALUES as Qr, FileStorageSchema as Qt, DOTNET_DEPLOY_VALUES as R, ServerDeploySchema as Ri, JavaApiSchema as Rn, PythonGraphqlSchema as Rr, ElixirOrmSchema as Rt, BetterTStackConfigFileSchema as S, RustObservabilitySchema as Si, GoOrmSchema as Sn, PYTHON_ORM_VALUES as Sr, ELIXIR_VALIDATION_VALUES as St, CLIInputSchema as T, RustTemplatingSchema as Ti, GoWebFrameworkSchema as Tn, PYTHON_TASK_QUEUE_VALUES as Tr, EXAMPLES_VALUES as Tt, DOTNET_TESTING_VALUES as U, ShadcnIconLibrarySchema as Ui, JavaOrmSchema as Un, PythonTaskQueueSchema as Ur, ElixirWebFrameworkSchema as Ut, DOTNET_ORM_VALUES as V, ShadcnColorThemeSchema as Vi, JavaLibrariesSchema as Vn, PythonQualitySchema as Vr, ElixirTestingSchema as Vt, DOTNET_VALIDATION_VALUES as W, ShadcnRadiusSchema as Wi, JavaTestingLibrariesSchema as Wn, PythonTestingSchema as Wr, EmailSchema as Wt, DotnetAuthSchema as X, StateManagementSchema as Xi, MOBILE_NAVIGATION_VALUES as Xn, RUST_API_VALUES as Xr, FRONTEND_VALUES as Xt, DotnetApiSchema as Y, StackPartSourceSchema as Yi, MOBILE_DEEP_LINKING_VALUES as Yn, RUNTIME_VALUES as Yr, FORMS_VALUES as Yt, DotnetCachingSchema as Z, TEMPLATE_VALUES as Zi, MOBILE_OTA_VALUES as Zn, RUST_AUTH_VALUES as Zr, FeatureFlagsSchema as Zt, AuthSchema as _, RustErrorHandlingSchema as _i, GoCliSchema as _n, PYTHON_AUTH_VALUES as _r, ELIXIR_OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, VERSION_CHANNEL_VALUES as aa, RUST_OBSERVABILITY_VALUES as ai, GO_CLI_VALUES as an, MobilePushSchema as ar, DotnetWebFrameworkSchema as at, BetterFullstackConfigFileSchema as b, RustLoggingSchema as bi, GoMessageQueueSchema as bn, PYTHON_GRAPHQL_VALUES as br, ELIXIR_REALTIME_VALUES as bt, API_VALUES as c, VersionChannelSchema as ca, RUST_TEMPLATING_VALUES as ci, GO_MESSAGE_QUEUE_VALUES as cn, MobileUISchema as cr, ELIXIR_API_VALUES as ct, AddInputSchema as d, RealtimeSchema as di, GO_REALTIME_VALUES as dn, ORM_VALUES as dr, ELIXIR_DEPLOY_VALUES as dt, TestingSchema as ea, RUST_ERROR_HANDLING_VALUES as ei, FormsSchema as en, MOBILE_TESTING_VALUES as er, DotnetObservabilitySchema as et, AddonsSchema as f, RuntimeSchema as fi, GO_TESTING_VALUES as fn, ObservabilitySchema as fr, ELIXIR_EMAIL_VALUES as ft, AstroIntegrationSchema as g, RustCliSchema as gi, GoCachingSchema as gn, PYTHON_API_VALUES as gr, ELIXIR_LIBRARIES_VALUES as gt, AnimationSchema as h, RustCachingSchema as hi, GoAuthSchema as hn, PYTHON_AI_VALUES as hr, ELIXIR_JSON_VALUES as ht, AI_VALUES as i, VECTOR_DB_VALUES as ia, RUST_MESSAGE_QUEUE_VALUES as ii, GO_CACHING_VALUES as in, MobileOTASchema as ir, DotnetValidationSchema as it, CreateInputSchema as j, SHADCN_COLOR_THEME_VALUES as ji, JAVA_BUILD_TOOL_VALUES as jn, ProjectConfigSchema as jr, ElixirDeploySchema as jt, CSS_FRAMEWORK_VALUES as k, SHADCN_BASE_COLOR_VALUES as ki, JAVA_API_VALUES as kn, PackageManagerSchema as kr, ElixirAuthSchema as kt, ASTRO_INTEGRATION_VALUES as l, WEB_DEPLOY_VALUES as la, RUST_WEB_FRAMEWORK_VALUES as li, GO_OBSERVABILITY_VALUES as ln, OBSERVABILITY_VALUES as lr, ELIXIR_AUTH_VALUES as lt, AnalyticsSchema as m, RustAuthSchema as mi, GoApiSchema as mn, PAYMENTS_VALUES as mr, ELIXIR_JOBS_VALUES as mt, AISchema as n, UI_LIBRARY_VALUES as na, RUST_LIBRARIES_VALUES as ni, GO_API_VALUES as nn, MobileDeepLinkingSchema as nr, DotnetRealtimeSchema as nt, ANIMATION_VALUES as o, ValidationSchema as oa, RUST_ORM_VALUES as oi, GO_CONFIG_VALUES as on, MobileStorageSchema as or, ECOSYSTEM_VALUES as ot, AiDocsSchema as p, RustApiSchema as pi, GO_WEB_FRAMEWORK_VALUES as pn, PACKAGE_MANAGER_VALUES as pr, ELIXIR_HTTP_VALUES as pt, DatabaseSetupSchema as q, StackPartRoleSchema as qi, LOGGING_VALUES as qn, RATE_LIMIT_VALUES as qr, FILE_STORAGE_VALUES as qt, AI_DOCS_VALUES as r, VALIDATION_VALUES as ra, RUST_LOGGING_VALUES as ri, GO_AUTH_VALUES as rn, MobileNavigationSchema as rr, DotnetTestingSchema as rt, APISchema as s, VectorDbSchema as sa, RUST_REALTIME_VALUES as si, GO_LOGGING_VALUES as sn, MobileTestingSchema as sr, EFFECT_VALUES as st, ADDONS_VALUES as t, UILibrarySchema as ta, RUST_FRONTEND_VALUES as ti, FrontendSchema as tn, MOBILE_UI_VALUES as tr, DotnetOrmSchema as tt, AUTH_VALUES as u, WebDeploySchema as ua, RateLimitSchema as ui, GO_ORM_VALUES as un, ORMSchema as ur, ELIXIR_CACHING_VALUES as ut, BACKEND_VALUES as v, RustFrontendSchema as vi, GoConfigSchema as vn, PYTHON_CACHING_VALUES as vr, ELIXIR_ORM_VALUES as vt, CACHING_VALUES as w, RustRealtimeSchema as wi, GoTestingSchema as wn, PYTHON_REALTIME_VALUES as wr, EMAIL_VALUES as wt, BetterFullstackConfigSchema as x, RustMessageQueueSchema as xi, GoObservabilitySchema as xn, PYTHON_OBSERVABILITY_VALUES as xr, ELIXIR_TESTING_VALUES as xt, BackendSchema as y, RustLibrariesSchema as yi, GoLoggingSchema as yn, PYTHON_CLI_VALUES as yr, ELIXIR_QUALITY_VALUES as yt, DOTNET_JOB_QUEUE_VALUES as z, ShadcnBaseColorSchema as zi, JavaAuthSchema as zn, PythonObservabilitySchema as zr, ElixirQualitySchema as zt };
10397
- //# sourceMappingURL=schemas-C3iF9TRm.d.mts.map
10670
+ export { DotnetJobQueueSchema as $, TEMPLATE_VALUES as $i, MOBILE_OTA_VALUES as $n, RUST_AUTH_VALUES as $r, FileUploadSchema as $t, CachingSchema as A, SERVER_DEPLOY_VALUES as Ai, JAVA_AUTH_VALUES as An, PYTHON_WEB_FRAMEWORK_VALUES as Ar, ElixirCachingSchema as At, DOTNET_OBSERVABILITY_VALUES as B, ServerDeploySchema as Bi, JavaAuthSchema as Bn, PythonGraphqlSchema as Br, ElixirRealtimeSchema as Bt, BetterTStackConfigSchema as C, RustMessageQueueSchema as Ci, GoRealtimeSchema as Cn, PYTHON_OBSERVABILITY_VALUES as Cr, ELIXIR_WEB_FRAMEWORK_VALUES as Ct, CMS_VALUES as D, RustTemplatingSchema as Di, I18nSchema as Dn, PYTHON_TASK_QUEUE_VALUES as Dr, EffectSchema as Dt, CMSSchema as E, RustRealtimeSchema as Ei, I18N_VALUES as En, PYTHON_REALTIME_VALUES as Er, EcosystemSchema as Et, DOTNET_API_VALUES as F, SHADCN_ICON_LIBRARY_VALUES as Fi, JAVA_ORM_VALUES as Fn, PythonAiSchema as Fr, ElixirJsonSchema as Ft, DOTNET_WEB_FRAMEWORK_VALUES as G, ShadcnIconLibrarySchema as Gi, JavaOrmSchema as Gn, PythonTaskQueueSchema as Gr, ExamplesSchema as Gt, DOTNET_REALTIME_VALUES as H, ShadcnBaseSchema as Hi, JavaLanguageSchema as Hn, PythonOrmSchema as Hr, ElixirValidationSchema as Ht, DOTNET_AUTH_VALUES as I, SHADCN_RADIUS_VALUES as Ii, JAVA_TESTING_LIBRARIES_VALUES as In, PythonApiSchema as Ir, ElixirLibrariesSchema as It, DirectoryConflictSchema as J, StackPartEcosystemSchema as Ji, JobQueueSchema as Jn, PythonWebFrameworkSchema as Jr, FILE_UPLOAD_VALUES as Jt, DatabaseSchema as K, ShadcnRadiusSchema as Ki, JavaTestingLibrariesSchema as Kn, PythonTestingSchema as Kr, FEATURE_FLAGS_VALUES as Kt, DOTNET_CACHING_VALUES as L, SHADCN_STYLE_VALUES as Li, JAVA_WEB_FRAMEWORK_VALUES as Ln, PythonAuthSchema as Lr, ElixirObservabilitySchema as Lt, DATABASE_SETUP_VALUES as M, SHADCN_BASE_VALUES as Mi, JAVA_LANGUAGE_VALUES as Mn, PaymentsSchema as Mr, ElixirEmailSchema as Mt, DATABASE_VALUES as N, SHADCN_COLOR_THEME_VALUES as Ni, JAVA_LIBRARIES_VALUES as Nn, ProjectConfigSchema as Nr, ElixirHttpSchema as Nt, CSSFrameworkSchema as O, RustWebFrameworkSchema as Oi, InitResultSchema as On, PYTHON_TESTING_VALUES as Or, ElixirApiSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, SHADCN_FONT_VALUES as Pi, JAVA_LOGGING_VALUES as Pn, ProjectNameSchema as Pr, ElixirJobsSchema as Pt, DotnetDeploySchema as Q, StateManagementSchema as Qi, MOBILE_NAVIGATION_VALUES as Qn, RUST_API_VALUES as Qr, FileStorageSchema as Qt, DOTNET_DEPLOY_VALUES as R, STATE_MANAGEMENT_VALUES as Ri, JOB_QUEUE_VALUES as Rn, PythonCachingSchema as Rr, ElixirOrmSchema as Rt, BetterTStackConfigFileSchema as S, RustLoggingSchema as Si, GoOrmSchema as Sn, PYTHON_GRAPHQL_VALUES as Sr, ELIXIR_VALIDATION_VALUES as St, CLIInputSchema as T, RustOrmSchema as Ti, GoWebFrameworkSchema as Tn, PYTHON_QUALITY_VALUES as Tr, EXAMPLES_VALUES as Tt, DOTNET_TESTING_VALUES as U, ShadcnColorThemeSchema as Ui, JavaLibrariesSchema as Un, PythonQualitySchema as Ur, ElixirWebFrameworkSchema as Ut, DOTNET_ORM_VALUES as V, ShadcnBaseColorSchema as Vi, JavaBuildToolSchema as Vn, PythonObservabilitySchema as Vr, ElixirTestingSchema as Vt, DOTNET_VALIDATION_VALUES as W, ShadcnFontSchema as Wi, JavaLoggingSchema as Wn, PythonRealtimeSchema as Wr, EmailSchema as Wt, DotnetAuthSchema as X, StackPartSchema as Xi, LoggingSchema as Xn, REALTIME_VALUES as Xr, FRONTEND_VALUES as Xt, DotnetApiSchema as Y, StackPartRoleSchema as Yi, LOGGING_VALUES as Yn, RATE_LIMIT_VALUES as Yr, FORMS_VALUES as Yt, DotnetCachingSchema as Z, StackPartSourceSchema as Zi, MOBILE_DEEP_LINKING_VALUES as Zn, RUNTIME_VALUES as Zr, FeatureFlagsSchema as Zt, AuthSchema as _, RustCachingSchema as _i, GoCliSchema as _n, PYTHON_AI_VALUES as _r, ELIXIR_OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, VALIDATION_VALUES as aa, RUST_LOGGING_VALUES as ai, GO_CLI_VALUES as an, MobileNavigationSchema as ar, DotnetWebFrameworkSchema as at, BetterFullstackConfigFileSchema as b, RustFrontendSchema as bi, GoMessageQueueSchema as bn, PYTHON_CACHING_VALUES as br, ELIXIR_REALTIME_VALUES as bt, API_VALUES as c, ValidationSchema as ca, RUST_ORM_VALUES as ci, GO_MESSAGE_QUEUE_VALUES as cn, MobileStorageSchema as cr, ELIXIR_API_VALUES as ct, AddInputSchema as d, WEB_DEPLOY_VALUES as da, RUST_WEB_FRAMEWORK_VALUES as di, GO_REALTIME_VALUES as dn, OBSERVABILITY_VALUES as dr, ELIXIR_DEPLOY_VALUES as dt, TESTING_VALUES as ea, RUST_CACHING_VALUES as ei, FormsSchema as en, MOBILE_PUSH_VALUES as er, DotnetObservabilitySchema as et, AddonsSchema as f, WORKSPACE_SHAPE_VALUES as fa, RateLimitSchema as fi, GO_TESTING_VALUES as fn, ORMSchema as fr, ELIXIR_EMAIL_VALUES as ft, AstroIntegrationSchema as g, RustAuthSchema as gi, GoCachingSchema as gn, PAYMENTS_VALUES as gr, ELIXIR_LIBRARIES_VALUES as gt, AnimationSchema as h, RustApiSchema as hi, GoAuthSchema as hn, PACKAGE_MANAGER_VALUES as hr, ELIXIR_JSON_VALUES as ht, AI_VALUES as i, UI_LIBRARY_VALUES as ia, RUST_LIBRARIES_VALUES as ii, GO_CACHING_VALUES as in, MobileDeepLinkingSchema as ir, DotnetValidationSchema as it, CreateInputSchema as j, SHADCN_BASE_COLOR_VALUES as ji, JAVA_BUILD_TOOL_VALUES as jn, PackageManagerSchema as jr, ElixirDeploySchema as jt, CSS_FRAMEWORK_VALUES as k, SEARCH_VALUES as ki, JAVA_API_VALUES as kn, PYTHON_VALIDATION_VALUES as kr, ElixirAuthSchema as kt, ASTRO_INTEGRATION_VALUES as l, VectorDbSchema as la, RUST_REALTIME_VALUES as li, GO_OBSERVABILITY_VALUES as ln, MobileTestingSchema as lr, ELIXIR_AUTH_VALUES as lt, AnalyticsSchema as m, WorkspaceShapeSchema as ma, RuntimeSchema as mi, GoApiSchema as mn, ObservabilitySchema as mr, ELIXIR_JOBS_VALUES as mt, AISchema as n, TestingSchema as na, RUST_ERROR_HANDLING_VALUES as ni, GO_API_VALUES as nn, MOBILE_TESTING_VALUES as nr, DotnetRealtimeSchema as nt, ANIMATION_VALUES as o, VECTOR_DB_VALUES as oa, RUST_MESSAGE_QUEUE_VALUES as oi, GO_CONFIG_VALUES as on, MobileOTASchema as or, ECOSYSTEM_VALUES as ot, AiDocsSchema as p, WebDeploySchema as pa, RealtimeSchema as pi, GO_WEB_FRAMEWORK_VALUES as pn, ORM_VALUES as pr, ELIXIR_HTTP_VALUES as pt, DatabaseSetupSchema as q, ShadcnStyleSchema as qi, JavaWebFrameworkSchema as qn, PythonValidationSchema as qr, FILE_STORAGE_VALUES as qt, AI_DOCS_VALUES as r, UILibrarySchema as ra, RUST_FRONTEND_VALUES as ri, GO_AUTH_VALUES as rn, MOBILE_UI_VALUES as rr, DotnetTestingSchema as rt, APISchema as s, VERSION_CHANNEL_VALUES as sa, RUST_OBSERVABILITY_VALUES as si, GO_LOGGING_VALUES as sn, MobilePushSchema as sr, EFFECT_VALUES as st, ADDONS_VALUES as t, TemplateSchema as ta, RUST_CLI_VALUES as ti, FrontendSchema as tn, MOBILE_STORAGE_VALUES as tr, DotnetOrmSchema as tt, AUTH_VALUES as u, VersionChannelSchema as ua, RUST_TEMPLATING_VALUES as ui, GO_ORM_VALUES as un, MobileUISchema as ur, ELIXIR_CACHING_VALUES as ut, BACKEND_VALUES as v, RustCliSchema as vi, GoConfigSchema as vn, PYTHON_API_VALUES as vr, ELIXIR_ORM_VALUES as vt, CACHING_VALUES as w, RustObservabilitySchema as wi, GoTestingSchema as wn, PYTHON_ORM_VALUES as wr, EMAIL_VALUES as wt, BetterFullstackConfigSchema as x, RustLibrariesSchema as xi, GoObservabilitySchema as xn, PYTHON_CLI_VALUES as xr, ELIXIR_TESTING_VALUES as xt, BackendSchema as y, RustErrorHandlingSchema as yi, GoLoggingSchema as yn, PYTHON_AUTH_VALUES as yr, ELIXIR_QUALITY_VALUES as yt, DOTNET_JOB_QUEUE_VALUES as z, SearchSchema as zi, JavaApiSchema as zn, PythonCliSchema as zr, ElixirQualitySchema as zt };
10671
+ //# sourceMappingURL=schemas-DOb4t_el.d.mts.map