@better-fullstack/types 2.5.1 → 2.6.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 (44) hide show
  1. package/dist/{defaults-BzWJP6p0.mjs → defaults-Bp46Ajyg.mjs} +2 -1
  2. package/dist/defaults-Bp46Ajyg.mjs.map +1 -0
  3. package/dist/{defaults-RqRyHpap.d.mts → defaults-vm2Pzryr.d.mts} +2 -2
  4. package/dist/defaults-vm2Pzryr.d.mts.map +1 -0
  5. package/dist/defaults.d.mts +3 -3
  6. package/dist/defaults.mjs +1 -1
  7. package/dist/index.d.mts +52 -6
  8. package/dist/index.d.mts.map +1 -1
  9. package/dist/index.mjs +22 -20
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/json-schema.d.mts +458 -278
  12. package/dist/json-schema.d.mts.map +1 -1
  13. package/dist/json-schema.mjs +1 -1
  14. package/dist/{schemas-CtieNRfz.mjs → schemas-CH1UszP5.mjs} +36 -9
  15. package/dist/schemas-CH1UszP5.mjs.map +1 -0
  16. package/dist/{schemas-GnlaSaAD.d.mts → schemas-ah-Pon-K.d.mts} +738 -557
  17. package/dist/schemas-ah-Pon-K.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-CXTiPofQ.mjs → stack-graph-AWbdUrN3.mjs} +615 -131
  21. package/dist/stack-graph-AWbdUrN3.mjs.map +1 -0
  22. package/dist/{stack-graph-D8YLovR0.d.mts → stack-graph-B2L-S2-8.d.mts} +7 -3
  23. package/dist/stack-graph-B2L-S2-8.d.mts.map +1 -0
  24. package/dist/stack-graph.d.mts +4 -4
  25. package/dist/stack-graph.mjs +3 -3
  26. package/dist/{stack-translation-BV7cLYdZ.d.mts → stack-translation-BJ9ulTxF.d.mts} +27 -7
  27. package/dist/stack-translation-BJ9ulTxF.d.mts.map +1 -0
  28. package/dist/{stack-translation-B-zArJLM.mjs → stack-translation-Cn6zGJ5q.mjs} +253 -26
  29. package/dist/stack-translation-Cn6zGJ5q.mjs.map +1 -0
  30. package/dist/stack-translation.d.mts +5 -5
  31. package/dist/stack-translation.mjs +4 -4
  32. package/dist/{types-BdHthWR-.d.mts → types-CxFTot-Q.d.mts} +5 -3
  33. package/dist/types-CxFTot-Q.d.mts.map +1 -0
  34. package/dist/types.d.mts +3 -3
  35. package/package.json +1 -1
  36. package/dist/defaults-BzWJP6p0.mjs.map +0 -1
  37. package/dist/defaults-RqRyHpap.d.mts.map +0 -1
  38. package/dist/schemas-CtieNRfz.mjs.map +0 -1
  39. package/dist/schemas-GnlaSaAD.d.mts.map +0 -1
  40. package/dist/stack-graph-CXTiPofQ.mjs.map +0 -1
  41. package/dist/stack-graph-D8YLovR0.d.mts.map +0 -1
  42. package/dist/stack-translation-B-zArJLM.mjs.map +0 -1
  43. package/dist/stack-translation-BV7cLYdZ.d.mts.map +0 -1
  44. package/dist/types-BdHthWR-.d.mts.map +0 -1
@@ -21,13 +21,13 @@ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
21
21
  sequelize: "sequelize";
22
22
  }>>;
23
23
  declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
24
+ effect: "effect";
24
25
  none: "none";
25
26
  hono: "hono";
26
27
  express: "express";
27
28
  fastify: "fastify";
28
29
  elysia: "elysia";
29
30
  fets: "fets";
30
- effect: "effect";
31
31
  nestjs: "nestjs";
32
32
  adonisjs: "adonisjs";
33
33
  nitro: "nitro";
@@ -79,6 +79,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
79
79
  skills: "skills";
80
80
  turborepo: "turborepo";
81
81
  nx: "nx";
82
+ "vite-plus": "vite-plus";
82
83
  fumadocs: "fumadocs";
83
84
  ultracite: "ultracite";
84
85
  oxlint: "oxlint";
@@ -108,8 +109,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
108
109
  capacitor: "capacitor";
109
110
  }>>;
110
111
  declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
111
- none: "none";
112
112
  ai: "ai";
113
+ none: "none";
113
114
  "chat-sdk": "chat-sdk";
114
115
  "tanstack-showcase": "tanstack-showcase";
115
116
  }>>;
@@ -192,28 +193,34 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
192
193
  vercel: "vercel";
193
194
  }>>;
194
195
  declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
196
+ error: "error";
195
197
  merge: "merge";
196
198
  overwrite: "overwrite";
197
199
  increment: "increment";
198
- error: "error";
199
200
  }>>;
200
201
  declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
201
202
  none: "none";
203
+ uniwind: "uniwind";
202
204
  mern: "mern";
203
205
  pern: "pern";
204
206
  t3: "t3";
205
207
  saas: "saas";
206
- uniwind: "uniwind";
207
208
  }>>;
208
209
  declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
209
210
  projectName: z.ZodOptional<z.ZodString>;
210
211
  template: z.ZodOptional<z.ZodEnum<{
211
212
  none: "none";
213
+ uniwind: "uniwind";
212
214
  mern: "mern";
213
215
  pern: "pern";
214
216
  t3: "t3";
215
217
  saas: "saas";
216
- uniwind: "uniwind";
218
+ }>>;
219
+ shape: z.ZodOptional<z.ZodEnum<{
220
+ backend: "backend";
221
+ frontend: "frontend";
222
+ mobile: "mobile";
223
+ fullstack: "fullstack";
217
224
  }>>;
218
225
  yes: z.ZodOptional<z.ZodBoolean>;
219
226
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -315,6 +322,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
315
322
  skills: "skills";
316
323
  turborepo: "turborepo";
317
324
  nx: "nx";
325
+ "vite-plus": "vite-plus";
318
326
  fumadocs: "fumadocs";
319
327
  ultracite: "ultracite";
320
328
  oxlint: "oxlint";
@@ -344,8 +352,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
344
352
  capacitor: "capacitor";
345
353
  }>>>;
346
354
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
347
- none: "none";
348
355
  ai: "ai";
356
+ none: "none";
349
357
  "chat-sdk": "chat-sdk";
350
358
  "tanstack-showcase": "tanstack-showcase";
351
359
  }>>>;
@@ -379,13 +387,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
379
387
  docker: "docker";
380
388
  }>>;
381
389
  backend: z.ZodOptional<z.ZodEnum<{
390
+ effect: "effect";
382
391
  none: "none";
383
392
  hono: "hono";
384
393
  express: "express";
385
394
  fastify: "fastify";
386
395
  elysia: "elysia";
387
396
  fets: "fets";
388
- effect: "effect";
389
397
  nestjs: "nestjs";
390
398
  adonisjs: "adonisjs";
391
399
  nitro: "nitro";
@@ -432,10 +440,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
432
440
  vercel: "vercel";
433
441
  }>>;
434
442
  directoryConflict: z.ZodOptional<z.ZodEnum<{
443
+ error: "error";
435
444
  merge: "merge";
436
445
  overwrite: "overwrite";
437
446
  increment: "increment";
438
- error: "error";
439
447
  }>>;
440
448
  renderTitle: z.ZodOptional<z.ZodBoolean>;
441
449
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -464,8 +472,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
464
472
  "ai-cli": "ai-cli";
465
473
  }>>;
466
474
  effect: z.ZodOptional<z.ZodEnum<{
467
- none: "none";
468
475
  effect: "effect";
476
+ none: "none";
469
477
  "effect-full": "effect-full";
470
478
  }>>;
471
479
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -518,6 +526,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
518
526
  "styled-components": "styled-components";
519
527
  }>>;
520
528
  uiLibrary: z.ZodOptional<z.ZodEnum<{
529
+ mui: "mui";
521
530
  none: "none";
522
531
  "shadcn-ui": "shadcn-ui";
523
532
  "shadcn-svelte": "shadcn-svelte";
@@ -528,7 +537,6 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
528
537
  "chakra-ui": "chakra-ui";
529
538
  nextui: "nextui";
530
539
  mantine: "mantine";
531
- mui: "mui";
532
540
  antd: "antd";
533
541
  "base-ui": "base-ui";
534
542
  "ark-ui": "ark-ui";
@@ -617,9 +625,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
617
625
  "effect-schema": "effect-schema";
618
626
  }>>;
619
627
  realtime: z.ZodOptional<z.ZodEnum<{
628
+ ws: "ws";
620
629
  none: "none";
621
630
  "socket-io": "socket-io";
622
- ws: "ws";
623
631
  partykit: "partykit";
624
632
  ably: "ably";
625
633
  pusher: "pusher";
@@ -685,6 +693,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
685
693
  plausible: "plausible";
686
694
  umami: "umami";
687
695
  ga4: "ga4";
696
+ "vercel-analytics": "vercel-analytics";
688
697
  }>>;
689
698
  cms: z.ZodOptional<z.ZodEnum<{
690
699
  none: "none";
@@ -706,6 +715,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
706
715
  arcjet: "arcjet";
707
716
  "upstash-ratelimit": "upstash-ratelimit";
708
717
  }>>;
718
+ botProtection: z.ZodOptional<z.ZodEnum<{
719
+ none: "none";
720
+ botid: "botid";
721
+ turnstile: "turnstile";
722
+ }>>;
709
723
  i18n: z.ZodOptional<z.ZodEnum<{
710
724
  none: "none";
711
725
  paraglide: "paraglide";
@@ -743,9 +757,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
743
757
  }>>;
744
758
  mobileUI: z.ZodOptional<z.ZodEnum<{
745
759
  none: "none";
746
- uniwind: "uniwind";
747
760
  tamagui: "tamagui";
748
761
  "gluestack-ui": "gluestack-ui";
762
+ uniwind: "uniwind";
749
763
  unistyles: "unistyles";
750
764
  }>>;
751
765
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -862,11 +876,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
862
876
  }>>;
863
877
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
864
878
  none: "none";
879
+ config: "config";
865
880
  serde: "serde";
866
881
  uuid: "uuid";
867
882
  chrono: "chrono";
868
883
  reqwest: "reqwest";
869
- config: "config";
870
884
  dashmap: "dashmap";
871
885
  "parking-lot": "parking-lot";
872
886
  secrecy: "secrecy";
@@ -1072,10 +1086,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
1072
1086
  httprouter: "httprouter";
1073
1087
  }>>;
1074
1088
  goOrm: z.ZodOptional<z.ZodEnum<{
1089
+ gorm: "gorm";
1075
1090
  none: "none";
1076
1091
  bun: "bun";
1077
1092
  sqlx: "sqlx";
1078
- gorm: "gorm";
1079
1093
  sqlc: "sqlc";
1080
1094
  ent: "ent";
1081
1095
  }>>;
@@ -1511,13 +1525,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1511
1525
  sequelize: "sequelize";
1512
1526
  }>;
1513
1527
  backend: z.ZodEnum<{
1528
+ effect: "effect";
1514
1529
  none: "none";
1515
1530
  hono: "hono";
1516
1531
  express: "express";
1517
1532
  fastify: "fastify";
1518
1533
  elysia: "elysia";
1519
1534
  fets: "fets";
1520
- effect: "effect";
1521
1535
  nestjs: "nestjs";
1522
1536
  adonisjs: "adonisjs";
1523
1537
  nitro: "nitro";
@@ -1569,6 +1583,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1569
1583
  skills: "skills";
1570
1584
  turborepo: "turborepo";
1571
1585
  nx: "nx";
1586
+ "vite-plus": "vite-plus";
1572
1587
  fumadocs: "fumadocs";
1573
1588
  ultracite: "ultracite";
1574
1589
  oxlint: "oxlint";
@@ -1598,8 +1613,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1598
1613
  capacitor: "capacitor";
1599
1614
  }>>;
1600
1615
  examples: z.ZodArray<z.ZodEnum<{
1601
- none: "none";
1602
1616
  ai: "ai";
1617
+ none: "none";
1603
1618
  "chat-sdk": "chat-sdk";
1604
1619
  "tanstack-showcase": "tanstack-showcase";
1605
1620
  }>>;
@@ -1716,8 +1731,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1716
1731
  "ai-cli": "ai-cli";
1717
1732
  }>;
1718
1733
  effect: z.ZodEnum<{
1719
- none: "none";
1720
1734
  effect: "effect";
1735
+ none: "none";
1721
1736
  "effect-full": "effect-full";
1722
1737
  }>;
1723
1738
  stateManagement: z.ZodEnum<{
@@ -1770,6 +1785,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1770
1785
  "styled-components": "styled-components";
1771
1786
  }>;
1772
1787
  uiLibrary: z.ZodEnum<{
1788
+ mui: "mui";
1773
1789
  none: "none";
1774
1790
  "shadcn-ui": "shadcn-ui";
1775
1791
  "shadcn-svelte": "shadcn-svelte";
@@ -1780,7 +1796,6 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1780
1796
  "chakra-ui": "chakra-ui";
1781
1797
  nextui: "nextui";
1782
1798
  mantine: "mantine";
1783
- mui: "mui";
1784
1799
  antd: "antd";
1785
1800
  "base-ui": "base-ui";
1786
1801
  "ark-ui": "ark-ui";
@@ -1869,9 +1884,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1869
1884
  "effect-schema": "effect-schema";
1870
1885
  }>;
1871
1886
  realtime: z.ZodEnum<{
1887
+ ws: "ws";
1872
1888
  none: "none";
1873
1889
  "socket-io": "socket-io";
1874
- ws: "ws";
1875
1890
  partykit: "partykit";
1876
1891
  ably: "ably";
1877
1892
  pusher: "pusher";
@@ -1937,6 +1952,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1937
1952
  plausible: "plausible";
1938
1953
  umami: "umami";
1939
1954
  ga4: "ga4";
1955
+ "vercel-analytics": "vercel-analytics";
1940
1956
  }>;
1941
1957
  cms: z.ZodEnum<{
1942
1958
  none: "none";
@@ -1958,6 +1974,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1958
1974
  arcjet: "arcjet";
1959
1975
  "upstash-ratelimit": "upstash-ratelimit";
1960
1976
  }>;
1977
+ botProtection: z.ZodDefault<z.ZodEnum<{
1978
+ none: "none";
1979
+ botid: "botid";
1980
+ turnstile: "turnstile";
1981
+ }>>;
1961
1982
  i18n: z.ZodEnum<{
1962
1983
  none: "none";
1963
1984
  paraglide: "paraglide";
@@ -1995,9 +2016,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1995
2016
  }>;
1996
2017
  mobileUI: z.ZodEnum<{
1997
2018
  none: "none";
1998
- uniwind: "uniwind";
1999
2019
  tamagui: "tamagui";
2000
2020
  "gluestack-ui": "gluestack-ui";
2021
+ uniwind: "uniwind";
2001
2022
  unistyles: "unistyles";
2002
2023
  }>;
2003
2024
  mobileStorage: z.ZodEnum<{
@@ -2114,11 +2135,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2114
2135
  }>;
2115
2136
  rustLibraries: z.ZodArray<z.ZodEnum<{
2116
2137
  none: "none";
2138
+ config: "config";
2117
2139
  serde: "serde";
2118
2140
  uuid: "uuid";
2119
2141
  chrono: "chrono";
2120
2142
  reqwest: "reqwest";
2121
- config: "config";
2122
2143
  dashmap: "dashmap";
2123
2144
  "parking-lot": "parking-lot";
2124
2145
  secrecy: "secrecy";
@@ -2324,10 +2345,10 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2324
2345
  httprouter: "httprouter";
2325
2346
  }>;
2326
2347
  goOrm: z.ZodEnum<{
2348
+ gorm: "gorm";
2327
2349
  none: "none";
2328
2350
  bun: "bun";
2329
2351
  sqlx: "sqlx";
2330
- gorm: "gorm";
2331
2352
  sqlc: "sqlc";
2332
2353
  ent: "ent";
2333
2354
  }>;
@@ -2730,27 +2751,14 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2730
2751
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2731
2752
  id: z.ZodString;
2732
2753
  role: z.ZodEnum<{
2733
- effect: "effect";
2734
- ai: "ai";
2754
+ runtime: "runtime";
2755
+ backend: "backend";
2735
2756
  database: "database";
2736
2757
  orm: "orm";
2758
+ dbSetup: "dbSetup";
2737
2759
  auth: "auth";
2738
2760
  payments: "payments";
2739
- frontend: "frontend";
2740
- examples: "examples";
2741
- packageManager: "packageManager";
2742
- dbSetup: "dbSetup";
2743
- backend: "backend";
2744
- runtime: "runtime";
2745
- api: "api";
2746
- stateManagement: "stateManagement";
2747
- forms: "forms";
2748
- testing: "testing";
2749
2761
  email: "email";
2750
- validation: "validation";
2751
- realtime: "realtime";
2752
- jobQueue: "jobQueue";
2753
- animation: "animation";
2754
2762
  fileUpload: "fileUpload";
2755
2763
  logging: "logging";
2756
2764
  observability: "observability";
@@ -2758,36 +2766,61 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2758
2766
  integrations: "integrations";
2759
2767
  ecommerce: "ecommerce";
2760
2768
  analytics: "analytics";
2761
- cms: "cms";
2769
+ stateManagement: "stateManagement";
2770
+ forms: "forms";
2771
+ validation: "validation";
2772
+ testing: "testing";
2773
+ realtime: "realtime";
2774
+ jobQueue: "jobQueue";
2762
2775
  caching: "caching";
2763
2776
  rateLimit: "rateLimit";
2777
+ botProtection: "botProtection";
2778
+ animation: "animation";
2779
+ cms: "cms";
2764
2780
  i18n: "i18n";
2765
2781
  search: "search";
2766
2782
  vectorDb: "vectorDb";
2767
2783
  fileStorage: "fileStorage";
2768
- config: "config";
2784
+ codeQuality: "codeQuality";
2785
+ documentation: "documentation";
2786
+ packageManager: "packageManager";
2787
+ examples: "examples";
2788
+ api: "api";
2789
+ workspaceRunner: "workspaceRunner";
2790
+ gitHooks: "gitHooks";
2791
+ staticAnalysis: "staticAnalysis";
2792
+ aiTooling: "aiTooling";
2793
+ codeGeneration: "codeGeneration";
2794
+ developerEnvironment: "developerEnvironment";
2795
+ containerOrchestration: "containerOrchestration";
2796
+ apiGateway: "apiGateway";
2797
+ continuousIntegration: "continuousIntegration";
2798
+ ai: "ai";
2799
+ effect: "effect";
2800
+ css: "css";
2801
+ ui: "ui";
2802
+ push: "push";
2803
+ frontend: "frontend";
2769
2804
  mobile: "mobile";
2770
2805
  graphql: "graphql";
2771
2806
  deploy: "deploy";
2772
2807
  migrations: "migrations";
2773
2808
  navigation: "navigation";
2774
- ui: "ui";
2775
- css: "css";
2776
2809
  storage: "storage";
2777
- push: "push";
2778
2810
  ota: "ota";
2779
2811
  deepLinking: "deepLinking";
2780
- documentation: "documentation";
2781
- codeQuality: "codeQuality";
2782
2812
  appPlatform: "appPlatform";
2783
2813
  dataFetching: "dataFetching";
2784
2814
  workspaceTooling: "workspaceTooling";
2815
+ toolchain: "toolchain";
2816
+ backendUtilities: "backendUtilities";
2785
2817
  language: "language";
2786
2818
  buildTool: "buildTool";
2787
2819
  cli: "cli";
2788
2820
  errorHandling: "errorHandling";
2789
2821
  httpClient: "httpClient";
2790
2822
  libraries: "libraries";
2823
+ config: "config";
2791
2824
  templating: "templating";
2792
2825
  cloudSdk: "cloudSdk";
2793
2826
  data: "data";
@@ -2854,13 +2887,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2854
2887
  sequelize: "sequelize";
2855
2888
  }>;
2856
2889
  backend: z.ZodEnum<{
2890
+ effect: "effect";
2857
2891
  none: "none";
2858
2892
  hono: "hono";
2859
2893
  express: "express";
2860
2894
  fastify: "fastify";
2861
2895
  elysia: "elysia";
2862
2896
  fets: "fets";
2863
- effect: "effect";
2864
2897
  nestjs: "nestjs";
2865
2898
  adonisjs: "adonisjs";
2866
2899
  nitro: "nitro";
@@ -2912,6 +2945,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2912
2945
  skills: "skills";
2913
2946
  turborepo: "turborepo";
2914
2947
  nx: "nx";
2948
+ "vite-plus": "vite-plus";
2915
2949
  fumadocs: "fumadocs";
2916
2950
  ultracite: "ultracite";
2917
2951
  oxlint: "oxlint";
@@ -2941,8 +2975,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2941
2975
  capacitor: "capacitor";
2942
2976
  }>>;
2943
2977
  examples: z.ZodArray<z.ZodEnum<{
2944
- none: "none";
2945
2978
  ai: "ai";
2979
+ none: "none";
2946
2980
  "chat-sdk": "chat-sdk";
2947
2981
  "tanstack-showcase": "tanstack-showcase";
2948
2982
  }>>;
@@ -3057,8 +3091,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3057
3091
  "ai-cli": "ai-cli";
3058
3092
  }>;
3059
3093
  effect: z.ZodEnum<{
3060
- none: "none";
3061
3094
  effect: "effect";
3095
+ none: "none";
3062
3096
  "effect-full": "effect-full";
3063
3097
  }>;
3064
3098
  stateManagement: z.ZodEnum<{
@@ -3111,6 +3145,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3111
3145
  "styled-components": "styled-components";
3112
3146
  }>;
3113
3147
  uiLibrary: z.ZodEnum<{
3148
+ mui: "mui";
3114
3149
  none: "none";
3115
3150
  "shadcn-ui": "shadcn-ui";
3116
3151
  "shadcn-svelte": "shadcn-svelte";
@@ -3121,7 +3156,6 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3121
3156
  "chakra-ui": "chakra-ui";
3122
3157
  nextui: "nextui";
3123
3158
  mantine: "mantine";
3124
- mui: "mui";
3125
3159
  antd: "antd";
3126
3160
  "base-ui": "base-ui";
3127
3161
  "ark-ui": "ark-ui";
@@ -3210,9 +3244,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3210
3244
  "effect-schema": "effect-schema";
3211
3245
  }>;
3212
3246
  realtime: z.ZodEnum<{
3247
+ ws: "ws";
3213
3248
  none: "none";
3214
3249
  "socket-io": "socket-io";
3215
- ws: "ws";
3216
3250
  partykit: "partykit";
3217
3251
  ably: "ably";
3218
3252
  pusher: "pusher";
@@ -3278,6 +3312,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3278
3312
  plausible: "plausible";
3279
3313
  umami: "umami";
3280
3314
  ga4: "ga4";
3315
+ "vercel-analytics": "vercel-analytics";
3281
3316
  }>;
3282
3317
  cms: z.ZodEnum<{
3283
3318
  none: "none";
@@ -3299,6 +3334,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3299
3334
  arcjet: "arcjet";
3300
3335
  "upstash-ratelimit": "upstash-ratelimit";
3301
3336
  }>;
3337
+ botProtection: z.ZodDefault<z.ZodEnum<{
3338
+ none: "none";
3339
+ botid: "botid";
3340
+ turnstile: "turnstile";
3341
+ }>>;
3302
3342
  i18n: z.ZodEnum<{
3303
3343
  none: "none";
3304
3344
  paraglide: "paraglide";
@@ -3336,9 +3376,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3336
3376
  }>;
3337
3377
  mobileUI: z.ZodEnum<{
3338
3378
  none: "none";
3339
- uniwind: "uniwind";
3340
3379
  tamagui: "tamagui";
3341
3380
  "gluestack-ui": "gluestack-ui";
3381
+ uniwind: "uniwind";
3342
3382
  unistyles: "unistyles";
3343
3383
  }>;
3344
3384
  mobileStorage: z.ZodEnum<{
@@ -3455,11 +3495,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3455
3495
  }>;
3456
3496
  rustLibraries: z.ZodArray<z.ZodEnum<{
3457
3497
  none: "none";
3498
+ config: "config";
3458
3499
  serde: "serde";
3459
3500
  uuid: "uuid";
3460
3501
  chrono: "chrono";
3461
3502
  reqwest: "reqwest";
3462
- config: "config";
3463
3503
  dashmap: "dashmap";
3464
3504
  "parking-lot": "parking-lot";
3465
3505
  secrecy: "secrecy";
@@ -3665,10 +3705,10 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3665
3705
  httprouter: "httprouter";
3666
3706
  }>;
3667
3707
  goOrm: z.ZodEnum<{
3708
+ gorm: "gorm";
3668
3709
  none: "none";
3669
3710
  bun: "bun";
3670
3711
  sqlx: "sqlx";
3671
- gorm: "gorm";
3672
3712
  sqlc: "sqlc";
3673
3713
  ent: "ent";
3674
3714
  }>;
@@ -4071,27 +4111,14 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4071
4111
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
4072
4112
  id: z.ZodString;
4073
4113
  role: z.ZodEnum<{
4074
- effect: "effect";
4075
- ai: "ai";
4114
+ runtime: "runtime";
4115
+ backend: "backend";
4076
4116
  database: "database";
4077
4117
  orm: "orm";
4118
+ dbSetup: "dbSetup";
4078
4119
  auth: "auth";
4079
4120
  payments: "payments";
4080
- frontend: "frontend";
4081
- examples: "examples";
4082
- packageManager: "packageManager";
4083
- dbSetup: "dbSetup";
4084
- backend: "backend";
4085
- runtime: "runtime";
4086
- api: "api";
4087
- stateManagement: "stateManagement";
4088
- forms: "forms";
4089
- testing: "testing";
4090
4121
  email: "email";
4091
- validation: "validation";
4092
- realtime: "realtime";
4093
- jobQueue: "jobQueue";
4094
- animation: "animation";
4095
4122
  fileUpload: "fileUpload";
4096
4123
  logging: "logging";
4097
4124
  observability: "observability";
@@ -4099,36 +4126,61 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4099
4126
  integrations: "integrations";
4100
4127
  ecommerce: "ecommerce";
4101
4128
  analytics: "analytics";
4102
- cms: "cms";
4129
+ stateManagement: "stateManagement";
4130
+ forms: "forms";
4131
+ validation: "validation";
4132
+ testing: "testing";
4133
+ realtime: "realtime";
4134
+ jobQueue: "jobQueue";
4103
4135
  caching: "caching";
4104
4136
  rateLimit: "rateLimit";
4137
+ botProtection: "botProtection";
4138
+ animation: "animation";
4139
+ cms: "cms";
4105
4140
  i18n: "i18n";
4106
4141
  search: "search";
4107
4142
  vectorDb: "vectorDb";
4108
4143
  fileStorage: "fileStorage";
4109
- config: "config";
4144
+ codeQuality: "codeQuality";
4145
+ documentation: "documentation";
4146
+ packageManager: "packageManager";
4147
+ examples: "examples";
4148
+ api: "api";
4149
+ workspaceRunner: "workspaceRunner";
4150
+ gitHooks: "gitHooks";
4151
+ staticAnalysis: "staticAnalysis";
4152
+ aiTooling: "aiTooling";
4153
+ codeGeneration: "codeGeneration";
4154
+ developerEnvironment: "developerEnvironment";
4155
+ containerOrchestration: "containerOrchestration";
4156
+ apiGateway: "apiGateway";
4157
+ continuousIntegration: "continuousIntegration";
4158
+ ai: "ai";
4159
+ effect: "effect";
4160
+ css: "css";
4161
+ ui: "ui";
4162
+ push: "push";
4163
+ frontend: "frontend";
4110
4164
  mobile: "mobile";
4111
4165
  graphql: "graphql";
4112
4166
  deploy: "deploy";
4113
4167
  migrations: "migrations";
4114
4168
  navigation: "navigation";
4115
- ui: "ui";
4116
- css: "css";
4117
4169
  storage: "storage";
4118
- push: "push";
4119
4170
  ota: "ota";
4120
4171
  deepLinking: "deepLinking";
4121
- documentation: "documentation";
4122
- codeQuality: "codeQuality";
4123
4172
  appPlatform: "appPlatform";
4124
4173
  dataFetching: "dataFetching";
4125
4174
  workspaceTooling: "workspaceTooling";
4175
+ toolchain: "toolchain";
4176
+ backendUtilities: "backendUtilities";
4126
4177
  language: "language";
4127
4178
  buildTool: "buildTool";
4128
4179
  cli: "cli";
4129
4180
  errorHandling: "errorHandling";
4130
4181
  httpClient: "httpClient";
4131
4182
  libraries: "libraries";
4183
+ config: "config";
4132
4184
  templating: "templating";
4133
4185
  cloudSdk: "cloudSdk";
4134
4186
  data: "data";
@@ -4195,13 +4247,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4195
4247
  sequelize: "sequelize";
4196
4248
  }>;
4197
4249
  backend: z.ZodEnum<{
4250
+ effect: "effect";
4198
4251
  none: "none";
4199
4252
  hono: "hono";
4200
4253
  express: "express";
4201
4254
  fastify: "fastify";
4202
4255
  elysia: "elysia";
4203
4256
  fets: "fets";
4204
- effect: "effect";
4205
4257
  nestjs: "nestjs";
4206
4258
  adonisjs: "adonisjs";
4207
4259
  nitro: "nitro";
@@ -4253,6 +4305,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4253
4305
  skills: "skills";
4254
4306
  turborepo: "turborepo";
4255
4307
  nx: "nx";
4308
+ "vite-plus": "vite-plus";
4256
4309
  fumadocs: "fumadocs";
4257
4310
  ultracite: "ultracite";
4258
4311
  oxlint: "oxlint";
@@ -4282,8 +4335,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4282
4335
  capacitor: "capacitor";
4283
4336
  }>>;
4284
4337
  examples: z.ZodArray<z.ZodEnum<{
4285
- none: "none";
4286
4338
  ai: "ai";
4339
+ none: "none";
4287
4340
  "chat-sdk": "chat-sdk";
4288
4341
  "tanstack-showcase": "tanstack-showcase";
4289
4342
  }>>;
@@ -4398,8 +4451,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4398
4451
  "ai-cli": "ai-cli";
4399
4452
  }>;
4400
4453
  effect: z.ZodEnum<{
4401
- none: "none";
4402
4454
  effect: "effect";
4455
+ none: "none";
4403
4456
  "effect-full": "effect-full";
4404
4457
  }>;
4405
4458
  stateManagement: z.ZodEnum<{
@@ -4452,6 +4505,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4452
4505
  "styled-components": "styled-components";
4453
4506
  }>;
4454
4507
  uiLibrary: z.ZodEnum<{
4508
+ mui: "mui";
4455
4509
  none: "none";
4456
4510
  "shadcn-ui": "shadcn-ui";
4457
4511
  "shadcn-svelte": "shadcn-svelte";
@@ -4462,7 +4516,6 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4462
4516
  "chakra-ui": "chakra-ui";
4463
4517
  nextui: "nextui";
4464
4518
  mantine: "mantine";
4465
- mui: "mui";
4466
4519
  antd: "antd";
4467
4520
  "base-ui": "base-ui";
4468
4521
  "ark-ui": "ark-ui";
@@ -4551,9 +4604,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4551
4604
  "effect-schema": "effect-schema";
4552
4605
  }>;
4553
4606
  realtime: z.ZodEnum<{
4607
+ ws: "ws";
4554
4608
  none: "none";
4555
4609
  "socket-io": "socket-io";
4556
- ws: "ws";
4557
4610
  partykit: "partykit";
4558
4611
  ably: "ably";
4559
4612
  pusher: "pusher";
@@ -4619,6 +4672,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4619
4672
  plausible: "plausible";
4620
4673
  umami: "umami";
4621
4674
  ga4: "ga4";
4675
+ "vercel-analytics": "vercel-analytics";
4622
4676
  }>;
4623
4677
  cms: z.ZodEnum<{
4624
4678
  none: "none";
@@ -4640,6 +4694,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4640
4694
  arcjet: "arcjet";
4641
4695
  "upstash-ratelimit": "upstash-ratelimit";
4642
4696
  }>;
4697
+ botProtection: z.ZodDefault<z.ZodEnum<{
4698
+ none: "none";
4699
+ botid: "botid";
4700
+ turnstile: "turnstile";
4701
+ }>>;
4643
4702
  i18n: z.ZodEnum<{
4644
4703
  none: "none";
4645
4704
  paraglide: "paraglide";
@@ -4677,9 +4736,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4677
4736
  }>;
4678
4737
  mobileUI: z.ZodEnum<{
4679
4738
  none: "none";
4680
- uniwind: "uniwind";
4681
4739
  tamagui: "tamagui";
4682
4740
  "gluestack-ui": "gluestack-ui";
4741
+ uniwind: "uniwind";
4683
4742
  unistyles: "unistyles";
4684
4743
  }>;
4685
4744
  mobileStorage: z.ZodEnum<{
@@ -4796,11 +4855,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4796
4855
  }>;
4797
4856
  rustLibraries: z.ZodArray<z.ZodEnum<{
4798
4857
  none: "none";
4858
+ config: "config";
4799
4859
  serde: "serde";
4800
4860
  uuid: "uuid";
4801
4861
  chrono: "chrono";
4802
4862
  reqwest: "reqwest";
4803
- config: "config";
4804
4863
  dashmap: "dashmap";
4805
4864
  "parking-lot": "parking-lot";
4806
4865
  secrecy: "secrecy";
@@ -5006,10 +5065,10 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5006
5065
  httprouter: "httprouter";
5007
5066
  }>;
5008
5067
  goOrm: z.ZodEnum<{
5068
+ gorm: "gorm";
5009
5069
  none: "none";
5010
5070
  bun: "bun";
5011
5071
  sqlx: "sqlx";
5012
- gorm: "gorm";
5013
5072
  sqlc: "sqlc";
5014
5073
  ent: "ent";
5015
5074
  }>;
@@ -5412,27 +5471,14 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5412
5471
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
5413
5472
  id: z.ZodString;
5414
5473
  role: z.ZodEnum<{
5415
- effect: "effect";
5416
- ai: "ai";
5474
+ runtime: "runtime";
5475
+ backend: "backend";
5417
5476
  database: "database";
5418
5477
  orm: "orm";
5478
+ dbSetup: "dbSetup";
5419
5479
  auth: "auth";
5420
5480
  payments: "payments";
5421
- frontend: "frontend";
5422
- examples: "examples";
5423
- packageManager: "packageManager";
5424
- dbSetup: "dbSetup";
5425
- backend: "backend";
5426
- runtime: "runtime";
5427
- api: "api";
5428
- stateManagement: "stateManagement";
5429
- forms: "forms";
5430
- testing: "testing";
5431
5481
  email: "email";
5432
- validation: "validation";
5433
- realtime: "realtime";
5434
- jobQueue: "jobQueue";
5435
- animation: "animation";
5436
5482
  fileUpload: "fileUpload";
5437
5483
  logging: "logging";
5438
5484
  observability: "observability";
@@ -5440,36 +5486,61 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5440
5486
  integrations: "integrations";
5441
5487
  ecommerce: "ecommerce";
5442
5488
  analytics: "analytics";
5443
- cms: "cms";
5489
+ stateManagement: "stateManagement";
5490
+ forms: "forms";
5491
+ validation: "validation";
5492
+ testing: "testing";
5493
+ realtime: "realtime";
5494
+ jobQueue: "jobQueue";
5444
5495
  caching: "caching";
5445
5496
  rateLimit: "rateLimit";
5497
+ botProtection: "botProtection";
5498
+ animation: "animation";
5499
+ cms: "cms";
5446
5500
  i18n: "i18n";
5447
5501
  search: "search";
5448
5502
  vectorDb: "vectorDb";
5449
5503
  fileStorage: "fileStorage";
5450
- config: "config";
5504
+ codeQuality: "codeQuality";
5505
+ documentation: "documentation";
5506
+ packageManager: "packageManager";
5507
+ examples: "examples";
5508
+ api: "api";
5509
+ workspaceRunner: "workspaceRunner";
5510
+ gitHooks: "gitHooks";
5511
+ staticAnalysis: "staticAnalysis";
5512
+ aiTooling: "aiTooling";
5513
+ codeGeneration: "codeGeneration";
5514
+ developerEnvironment: "developerEnvironment";
5515
+ containerOrchestration: "containerOrchestration";
5516
+ apiGateway: "apiGateway";
5517
+ continuousIntegration: "continuousIntegration";
5518
+ ai: "ai";
5519
+ effect: "effect";
5520
+ css: "css";
5521
+ ui: "ui";
5522
+ push: "push";
5523
+ frontend: "frontend";
5451
5524
  mobile: "mobile";
5452
5525
  graphql: "graphql";
5453
5526
  deploy: "deploy";
5454
5527
  migrations: "migrations";
5455
5528
  navigation: "navigation";
5456
- ui: "ui";
5457
- css: "css";
5458
5529
  storage: "storage";
5459
- push: "push";
5460
5530
  ota: "ota";
5461
5531
  deepLinking: "deepLinking";
5462
- documentation: "documentation";
5463
- codeQuality: "codeQuality";
5464
5532
  appPlatform: "appPlatform";
5465
5533
  dataFetching: "dataFetching";
5466
5534
  workspaceTooling: "workspaceTooling";
5535
+ toolchain: "toolchain";
5536
+ backendUtilities: "backendUtilities";
5467
5537
  language: "language";
5468
5538
  buildTool: "buildTool";
5469
5539
  cli: "cli";
5470
5540
  errorHandling: "errorHandling";
5471
5541
  httpClient: "httpClient";
5472
5542
  libraries: "libraries";
5543
+ config: "config";
5473
5544
  templating: "templating";
5474
5545
  cloudSdk: "cloudSdk";
5475
5546
  data: "data";
@@ -5537,13 +5608,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5537
5608
  sequelize: "sequelize";
5538
5609
  }>;
5539
5610
  backend: z.ZodEnum<{
5611
+ effect: "effect";
5540
5612
  none: "none";
5541
5613
  hono: "hono";
5542
5614
  express: "express";
5543
5615
  fastify: "fastify";
5544
5616
  elysia: "elysia";
5545
5617
  fets: "fets";
5546
- effect: "effect";
5547
5618
  nestjs: "nestjs";
5548
5619
  adonisjs: "adonisjs";
5549
5620
  nitro: "nitro";
@@ -5595,6 +5666,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5595
5666
  skills: "skills";
5596
5667
  turborepo: "turborepo";
5597
5668
  nx: "nx";
5669
+ "vite-plus": "vite-plus";
5598
5670
  fumadocs: "fumadocs";
5599
5671
  ultracite: "ultracite";
5600
5672
  oxlint: "oxlint";
@@ -5624,8 +5696,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5624
5696
  capacitor: "capacitor";
5625
5697
  }>>;
5626
5698
  examples: z.ZodArray<z.ZodEnum<{
5627
- none: "none";
5628
5699
  ai: "ai";
5700
+ none: "none";
5629
5701
  "chat-sdk": "chat-sdk";
5630
5702
  "tanstack-showcase": "tanstack-showcase";
5631
5703
  }>>;
@@ -5742,8 +5814,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5742
5814
  "ai-cli": "ai-cli";
5743
5815
  }>;
5744
5816
  effect: z.ZodEnum<{
5745
- none: "none";
5746
5817
  effect: "effect";
5818
+ none: "none";
5747
5819
  "effect-full": "effect-full";
5748
5820
  }>;
5749
5821
  stateManagement: z.ZodEnum<{
@@ -5796,6 +5868,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5796
5868
  "styled-components": "styled-components";
5797
5869
  }>;
5798
5870
  uiLibrary: z.ZodEnum<{
5871
+ mui: "mui";
5799
5872
  none: "none";
5800
5873
  "shadcn-ui": "shadcn-ui";
5801
5874
  "shadcn-svelte": "shadcn-svelte";
@@ -5806,7 +5879,6 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5806
5879
  "chakra-ui": "chakra-ui";
5807
5880
  nextui: "nextui";
5808
5881
  mantine: "mantine";
5809
- mui: "mui";
5810
5882
  antd: "antd";
5811
5883
  "base-ui": "base-ui";
5812
5884
  "ark-ui": "ark-ui";
@@ -5895,9 +5967,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5895
5967
  "effect-schema": "effect-schema";
5896
5968
  }>;
5897
5969
  realtime: z.ZodEnum<{
5970
+ ws: "ws";
5898
5971
  none: "none";
5899
5972
  "socket-io": "socket-io";
5900
- ws: "ws";
5901
5973
  partykit: "partykit";
5902
5974
  ably: "ably";
5903
5975
  pusher: "pusher";
@@ -5963,6 +6035,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5963
6035
  plausible: "plausible";
5964
6036
  umami: "umami";
5965
6037
  ga4: "ga4";
6038
+ "vercel-analytics": "vercel-analytics";
5966
6039
  }>;
5967
6040
  cms: z.ZodEnum<{
5968
6041
  none: "none";
@@ -5984,6 +6057,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5984
6057
  arcjet: "arcjet";
5985
6058
  "upstash-ratelimit": "upstash-ratelimit";
5986
6059
  }>;
6060
+ botProtection: z.ZodDefault<z.ZodEnum<{
6061
+ none: "none";
6062
+ botid: "botid";
6063
+ turnstile: "turnstile";
6064
+ }>>;
5987
6065
  i18n: z.ZodEnum<{
5988
6066
  none: "none";
5989
6067
  paraglide: "paraglide";
@@ -6021,9 +6099,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6021
6099
  }>;
6022
6100
  mobileUI: z.ZodEnum<{
6023
6101
  none: "none";
6024
- uniwind: "uniwind";
6025
6102
  tamagui: "tamagui";
6026
6103
  "gluestack-ui": "gluestack-ui";
6104
+ uniwind: "uniwind";
6027
6105
  unistyles: "unistyles";
6028
6106
  }>;
6029
6107
  mobileStorage: z.ZodEnum<{
@@ -6140,11 +6218,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6140
6218
  }>;
6141
6219
  rustLibraries: z.ZodArray<z.ZodEnum<{
6142
6220
  none: "none";
6221
+ config: "config";
6143
6222
  serde: "serde";
6144
6223
  uuid: "uuid";
6145
6224
  chrono: "chrono";
6146
6225
  reqwest: "reqwest";
6147
- config: "config";
6148
6226
  dashmap: "dashmap";
6149
6227
  "parking-lot": "parking-lot";
6150
6228
  secrecy: "secrecy";
@@ -6350,10 +6428,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6350
6428
  httprouter: "httprouter";
6351
6429
  }>;
6352
6430
  goOrm: z.ZodEnum<{
6431
+ gorm: "gorm";
6353
6432
  none: "none";
6354
6433
  bun: "bun";
6355
6434
  sqlx: "sqlx";
6356
- gorm: "gorm";
6357
6435
  sqlc: "sqlc";
6358
6436
  ent: "ent";
6359
6437
  }>;
@@ -6756,27 +6834,14 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6756
6834
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
6757
6835
  id: z.ZodString;
6758
6836
  role: z.ZodEnum<{
6759
- effect: "effect";
6760
- ai: "ai";
6837
+ runtime: "runtime";
6838
+ backend: "backend";
6761
6839
  database: "database";
6762
6840
  orm: "orm";
6841
+ dbSetup: "dbSetup";
6763
6842
  auth: "auth";
6764
6843
  payments: "payments";
6765
- frontend: "frontend";
6766
- examples: "examples";
6767
- packageManager: "packageManager";
6768
- dbSetup: "dbSetup";
6769
- backend: "backend";
6770
- runtime: "runtime";
6771
- api: "api";
6772
- stateManagement: "stateManagement";
6773
- forms: "forms";
6774
- testing: "testing";
6775
6844
  email: "email";
6776
- validation: "validation";
6777
- realtime: "realtime";
6778
- jobQueue: "jobQueue";
6779
- animation: "animation";
6780
6845
  fileUpload: "fileUpload";
6781
6846
  logging: "logging";
6782
6847
  observability: "observability";
@@ -6784,36 +6849,61 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6784
6849
  integrations: "integrations";
6785
6850
  ecommerce: "ecommerce";
6786
6851
  analytics: "analytics";
6787
- cms: "cms";
6852
+ stateManagement: "stateManagement";
6853
+ forms: "forms";
6854
+ validation: "validation";
6855
+ testing: "testing";
6856
+ realtime: "realtime";
6857
+ jobQueue: "jobQueue";
6788
6858
  caching: "caching";
6789
6859
  rateLimit: "rateLimit";
6860
+ botProtection: "botProtection";
6861
+ animation: "animation";
6862
+ cms: "cms";
6790
6863
  i18n: "i18n";
6791
6864
  search: "search";
6792
6865
  vectorDb: "vectorDb";
6793
6866
  fileStorage: "fileStorage";
6794
- config: "config";
6867
+ codeQuality: "codeQuality";
6868
+ documentation: "documentation";
6869
+ packageManager: "packageManager";
6870
+ examples: "examples";
6871
+ api: "api";
6872
+ workspaceRunner: "workspaceRunner";
6873
+ gitHooks: "gitHooks";
6874
+ staticAnalysis: "staticAnalysis";
6875
+ aiTooling: "aiTooling";
6876
+ codeGeneration: "codeGeneration";
6877
+ developerEnvironment: "developerEnvironment";
6878
+ containerOrchestration: "containerOrchestration";
6879
+ apiGateway: "apiGateway";
6880
+ continuousIntegration: "continuousIntegration";
6881
+ ai: "ai";
6882
+ effect: "effect";
6883
+ css: "css";
6884
+ ui: "ui";
6885
+ push: "push";
6886
+ frontend: "frontend";
6795
6887
  mobile: "mobile";
6796
6888
  graphql: "graphql";
6797
6889
  deploy: "deploy";
6798
6890
  migrations: "migrations";
6799
6891
  navigation: "navigation";
6800
- ui: "ui";
6801
- css: "css";
6802
6892
  storage: "storage";
6803
- push: "push";
6804
6893
  ota: "ota";
6805
6894
  deepLinking: "deepLinking";
6806
- documentation: "documentation";
6807
- codeQuality: "codeQuality";
6808
6895
  appPlatform: "appPlatform";
6809
6896
  dataFetching: "dataFetching";
6810
6897
  workspaceTooling: "workspaceTooling";
6898
+ toolchain: "toolchain";
6899
+ backendUtilities: "backendUtilities";
6811
6900
  language: "language";
6812
6901
  buildTool: "buildTool";
6813
6902
  cli: "cli";
6814
6903
  errorHandling: "errorHandling";
6815
6904
  httpClient: "httpClient";
6816
6905
  libraries: "libraries";
6906
+ config: "config";
6817
6907
  templating: "templating";
6818
6908
  cloudSdk: "cloudSdk";
6819
6909
  data: "data";
@@ -6891,10 +6981,10 @@ declare function getGoWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPayl
6891
6981
  httprouter: "httprouter";
6892
6982
  }>>;
6893
6983
  declare function getGoOrmJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
6984
+ gorm: "gorm";
6894
6985
  none: "none";
6895
6986
  bun: "bun";
6896
6987
  sqlx: "sqlx";
6897
- gorm: "gorm";
6898
6988
  sqlc: "sqlc";
6899
6989
  ent: "ent";
6900
6990
  }>>;
@@ -7222,13 +7312,13 @@ declare function getAllJsonSchemas(): {
7222
7312
  sequelize: "sequelize";
7223
7313
  }>>;
7224
7314
  backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7315
+ effect: "effect";
7225
7316
  none: "none";
7226
7317
  hono: "hono";
7227
7318
  express: "express";
7228
7319
  fastify: "fastify";
7229
7320
  elysia: "elysia";
7230
7321
  fets: "fets";
7231
- effect: "effect";
7232
7322
  nestjs: "nestjs";
7233
7323
  adonisjs: "adonisjs";
7234
7324
  nitro: "nitro";
@@ -7280,6 +7370,7 @@ declare function getAllJsonSchemas(): {
7280
7370
  skills: "skills";
7281
7371
  turborepo: "turborepo";
7282
7372
  nx: "nx";
7373
+ "vite-plus": "vite-plus";
7283
7374
  fumadocs: "fumadocs";
7284
7375
  ultracite: "ultracite";
7285
7376
  oxlint: "oxlint";
@@ -7309,8 +7400,8 @@ declare function getAllJsonSchemas(): {
7309
7400
  capacitor: "capacitor";
7310
7401
  }>>;
7311
7402
  examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7312
- none: "none";
7313
7403
  ai: "ai";
7404
+ none: "none";
7314
7405
  "chat-sdk": "chat-sdk";
7315
7406
  "tanstack-showcase": "tanstack-showcase";
7316
7407
  }>>;
@@ -7393,18 +7484,18 @@ declare function getAllJsonSchemas(): {
7393
7484
  vercel: "vercel";
7394
7485
  }>>;
7395
7486
  directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7487
+ error: "error";
7396
7488
  merge: "merge";
7397
7489
  overwrite: "overwrite";
7398
7490
  increment: "increment";
7399
- error: "error";
7400
7491
  }>>;
7401
7492
  template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7402
7493
  none: "none";
7494
+ uniwind: "uniwind";
7403
7495
  mern: "mern";
7404
7496
  pern: "pern";
7405
7497
  t3: "t3";
7406
7498
  saas: "saas";
7407
- uniwind: "uniwind";
7408
7499
  }>>;
7409
7500
  goWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7410
7501
  none: "none";
@@ -7418,10 +7509,10 @@ declare function getAllJsonSchemas(): {
7418
7509
  httprouter: "httprouter";
7419
7510
  }>>;
7420
7511
  goOrm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7512
+ gorm: "gorm";
7421
7513
  none: "none";
7422
7514
  bun: "bun";
7423
7515
  sqlx: "sqlx";
7424
- gorm: "gorm";
7425
7516
  sqlc: "sqlc";
7426
7517
  ent: "ent";
7427
7518
  }>>;
@@ -7755,11 +7846,17 @@ declare function getAllJsonSchemas(): {
7755
7846
  projectName: z.ZodOptional<z.ZodString>;
7756
7847
  template: z.ZodOptional<z.ZodEnum<{
7757
7848
  none: "none";
7849
+ uniwind: "uniwind";
7758
7850
  mern: "mern";
7759
7851
  pern: "pern";
7760
7852
  t3: "t3";
7761
7853
  saas: "saas";
7762
- uniwind: "uniwind";
7854
+ }>>;
7855
+ shape: z.ZodOptional<z.ZodEnum<{
7856
+ backend: "backend";
7857
+ frontend: "frontend";
7858
+ mobile: "mobile";
7859
+ fullstack: "fullstack";
7763
7860
  }>>;
7764
7861
  yes: z.ZodOptional<z.ZodBoolean>;
7765
7862
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -7861,6 +7958,7 @@ declare function getAllJsonSchemas(): {
7861
7958
  skills: "skills";
7862
7959
  turborepo: "turborepo";
7863
7960
  nx: "nx";
7961
+ "vite-plus": "vite-plus";
7864
7962
  fumadocs: "fumadocs";
7865
7963
  ultracite: "ultracite";
7866
7964
  oxlint: "oxlint";
@@ -7890,8 +7988,8 @@ declare function getAllJsonSchemas(): {
7890
7988
  capacitor: "capacitor";
7891
7989
  }>>>;
7892
7990
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
7893
- none: "none";
7894
7991
  ai: "ai";
7992
+ none: "none";
7895
7993
  "chat-sdk": "chat-sdk";
7896
7994
  "tanstack-showcase": "tanstack-showcase";
7897
7995
  }>>>;
@@ -7925,13 +8023,13 @@ declare function getAllJsonSchemas(): {
7925
8023
  docker: "docker";
7926
8024
  }>>;
7927
8025
  backend: z.ZodOptional<z.ZodEnum<{
8026
+ effect: "effect";
7928
8027
  none: "none";
7929
8028
  hono: "hono";
7930
8029
  express: "express";
7931
8030
  fastify: "fastify";
7932
8031
  elysia: "elysia";
7933
8032
  fets: "fets";
7934
- effect: "effect";
7935
8033
  nestjs: "nestjs";
7936
8034
  adonisjs: "adonisjs";
7937
8035
  nitro: "nitro";
@@ -7978,10 +8076,10 @@ declare function getAllJsonSchemas(): {
7978
8076
  vercel: "vercel";
7979
8077
  }>>;
7980
8078
  directoryConflict: z.ZodOptional<z.ZodEnum<{
8079
+ error: "error";
7981
8080
  merge: "merge";
7982
8081
  overwrite: "overwrite";
7983
8082
  increment: "increment";
7984
- error: "error";
7985
8083
  }>>;
7986
8084
  renderTitle: z.ZodOptional<z.ZodBoolean>;
7987
8085
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -8010,8 +8108,8 @@ declare function getAllJsonSchemas(): {
8010
8108
  "ai-cli": "ai-cli";
8011
8109
  }>>;
8012
8110
  effect: z.ZodOptional<z.ZodEnum<{
8013
- none: "none";
8014
8111
  effect: "effect";
8112
+ none: "none";
8015
8113
  "effect-full": "effect-full";
8016
8114
  }>>;
8017
8115
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -8064,6 +8162,7 @@ declare function getAllJsonSchemas(): {
8064
8162
  "styled-components": "styled-components";
8065
8163
  }>>;
8066
8164
  uiLibrary: z.ZodOptional<z.ZodEnum<{
8165
+ mui: "mui";
8067
8166
  none: "none";
8068
8167
  "shadcn-ui": "shadcn-ui";
8069
8168
  "shadcn-svelte": "shadcn-svelte";
@@ -8074,7 +8173,6 @@ declare function getAllJsonSchemas(): {
8074
8173
  "chakra-ui": "chakra-ui";
8075
8174
  nextui: "nextui";
8076
8175
  mantine: "mantine";
8077
- mui: "mui";
8078
8176
  antd: "antd";
8079
8177
  "base-ui": "base-ui";
8080
8178
  "ark-ui": "ark-ui";
@@ -8163,9 +8261,9 @@ declare function getAllJsonSchemas(): {
8163
8261
  "effect-schema": "effect-schema";
8164
8262
  }>>;
8165
8263
  realtime: z.ZodOptional<z.ZodEnum<{
8264
+ ws: "ws";
8166
8265
  none: "none";
8167
8266
  "socket-io": "socket-io";
8168
- ws: "ws";
8169
8267
  partykit: "partykit";
8170
8268
  ably: "ably";
8171
8269
  pusher: "pusher";
@@ -8231,6 +8329,7 @@ declare function getAllJsonSchemas(): {
8231
8329
  plausible: "plausible";
8232
8330
  umami: "umami";
8233
8331
  ga4: "ga4";
8332
+ "vercel-analytics": "vercel-analytics";
8234
8333
  }>>;
8235
8334
  cms: z.ZodOptional<z.ZodEnum<{
8236
8335
  none: "none";
@@ -8252,6 +8351,11 @@ declare function getAllJsonSchemas(): {
8252
8351
  arcjet: "arcjet";
8253
8352
  "upstash-ratelimit": "upstash-ratelimit";
8254
8353
  }>>;
8354
+ botProtection: z.ZodOptional<z.ZodEnum<{
8355
+ none: "none";
8356
+ botid: "botid";
8357
+ turnstile: "turnstile";
8358
+ }>>;
8255
8359
  i18n: z.ZodOptional<z.ZodEnum<{
8256
8360
  none: "none";
8257
8361
  paraglide: "paraglide";
@@ -8289,9 +8393,9 @@ declare function getAllJsonSchemas(): {
8289
8393
  }>>;
8290
8394
  mobileUI: z.ZodOptional<z.ZodEnum<{
8291
8395
  none: "none";
8292
- uniwind: "uniwind";
8293
8396
  tamagui: "tamagui";
8294
8397
  "gluestack-ui": "gluestack-ui";
8398
+ uniwind: "uniwind";
8295
8399
  unistyles: "unistyles";
8296
8400
  }>>;
8297
8401
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -8408,11 +8512,11 @@ declare function getAllJsonSchemas(): {
8408
8512
  }>>;
8409
8513
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8410
8514
  none: "none";
8515
+ config: "config";
8411
8516
  serde: "serde";
8412
8517
  uuid: "uuid";
8413
8518
  chrono: "chrono";
8414
8519
  reqwest: "reqwest";
8415
- config: "config";
8416
8520
  dashmap: "dashmap";
8417
8521
  "parking-lot": "parking-lot";
8418
8522
  secrecy: "secrecy";
@@ -8618,10 +8722,10 @@ declare function getAllJsonSchemas(): {
8618
8722
  httprouter: "httprouter";
8619
8723
  }>>;
8620
8724
  goOrm: z.ZodOptional<z.ZodEnum<{
8725
+ gorm: "gorm";
8621
8726
  none: "none";
8622
8727
  bun: "bun";
8623
8728
  sqlx: "sqlx";
8624
- gorm: "gorm";
8625
8729
  sqlc: "sqlc";
8626
8730
  ent: "ent";
8627
8731
  }>>;
@@ -9057,13 +9161,13 @@ declare function getAllJsonSchemas(): {
9057
9161
  sequelize: "sequelize";
9058
9162
  }>;
9059
9163
  backend: z.ZodEnum<{
9164
+ effect: "effect";
9060
9165
  none: "none";
9061
9166
  hono: "hono";
9062
9167
  express: "express";
9063
9168
  fastify: "fastify";
9064
9169
  elysia: "elysia";
9065
9170
  fets: "fets";
9066
- effect: "effect";
9067
9171
  nestjs: "nestjs";
9068
9172
  adonisjs: "adonisjs";
9069
9173
  nitro: "nitro";
@@ -9115,6 +9219,7 @@ declare function getAllJsonSchemas(): {
9115
9219
  skills: "skills";
9116
9220
  turborepo: "turborepo";
9117
9221
  nx: "nx";
9222
+ "vite-plus": "vite-plus";
9118
9223
  fumadocs: "fumadocs";
9119
9224
  ultracite: "ultracite";
9120
9225
  oxlint: "oxlint";
@@ -9144,8 +9249,8 @@ declare function getAllJsonSchemas(): {
9144
9249
  capacitor: "capacitor";
9145
9250
  }>>;
9146
9251
  examples: z.ZodArray<z.ZodEnum<{
9147
- none: "none";
9148
9252
  ai: "ai";
9253
+ none: "none";
9149
9254
  "chat-sdk": "chat-sdk";
9150
9255
  "tanstack-showcase": "tanstack-showcase";
9151
9256
  }>>;
@@ -9262,8 +9367,8 @@ declare function getAllJsonSchemas(): {
9262
9367
  "ai-cli": "ai-cli";
9263
9368
  }>;
9264
9369
  effect: z.ZodEnum<{
9265
- none: "none";
9266
9370
  effect: "effect";
9371
+ none: "none";
9267
9372
  "effect-full": "effect-full";
9268
9373
  }>;
9269
9374
  stateManagement: z.ZodEnum<{
@@ -9316,6 +9421,7 @@ declare function getAllJsonSchemas(): {
9316
9421
  "styled-components": "styled-components";
9317
9422
  }>;
9318
9423
  uiLibrary: z.ZodEnum<{
9424
+ mui: "mui";
9319
9425
  none: "none";
9320
9426
  "shadcn-ui": "shadcn-ui";
9321
9427
  "shadcn-svelte": "shadcn-svelte";
@@ -9326,7 +9432,6 @@ declare function getAllJsonSchemas(): {
9326
9432
  "chakra-ui": "chakra-ui";
9327
9433
  nextui: "nextui";
9328
9434
  mantine: "mantine";
9329
- mui: "mui";
9330
9435
  antd: "antd";
9331
9436
  "base-ui": "base-ui";
9332
9437
  "ark-ui": "ark-ui";
@@ -9415,9 +9520,9 @@ declare function getAllJsonSchemas(): {
9415
9520
  "effect-schema": "effect-schema";
9416
9521
  }>;
9417
9522
  realtime: z.ZodEnum<{
9523
+ ws: "ws";
9418
9524
  none: "none";
9419
9525
  "socket-io": "socket-io";
9420
- ws: "ws";
9421
9526
  partykit: "partykit";
9422
9527
  ably: "ably";
9423
9528
  pusher: "pusher";
@@ -9483,6 +9588,7 @@ declare function getAllJsonSchemas(): {
9483
9588
  plausible: "plausible";
9484
9589
  umami: "umami";
9485
9590
  ga4: "ga4";
9591
+ "vercel-analytics": "vercel-analytics";
9486
9592
  }>;
9487
9593
  cms: z.ZodEnum<{
9488
9594
  none: "none";
@@ -9504,6 +9610,11 @@ declare function getAllJsonSchemas(): {
9504
9610
  arcjet: "arcjet";
9505
9611
  "upstash-ratelimit": "upstash-ratelimit";
9506
9612
  }>;
9613
+ botProtection: z.ZodDefault<z.ZodEnum<{
9614
+ none: "none";
9615
+ botid: "botid";
9616
+ turnstile: "turnstile";
9617
+ }>>;
9507
9618
  i18n: z.ZodEnum<{
9508
9619
  none: "none";
9509
9620
  paraglide: "paraglide";
@@ -9541,9 +9652,9 @@ declare function getAllJsonSchemas(): {
9541
9652
  }>;
9542
9653
  mobileUI: z.ZodEnum<{
9543
9654
  none: "none";
9544
- uniwind: "uniwind";
9545
9655
  tamagui: "tamagui";
9546
9656
  "gluestack-ui": "gluestack-ui";
9657
+ uniwind: "uniwind";
9547
9658
  unistyles: "unistyles";
9548
9659
  }>;
9549
9660
  mobileStorage: z.ZodEnum<{
@@ -9660,11 +9771,11 @@ declare function getAllJsonSchemas(): {
9660
9771
  }>;
9661
9772
  rustLibraries: z.ZodArray<z.ZodEnum<{
9662
9773
  none: "none";
9774
+ config: "config";
9663
9775
  serde: "serde";
9664
9776
  uuid: "uuid";
9665
9777
  chrono: "chrono";
9666
9778
  reqwest: "reqwest";
9667
- config: "config";
9668
9779
  dashmap: "dashmap";
9669
9780
  "parking-lot": "parking-lot";
9670
9781
  secrecy: "secrecy";
@@ -9870,10 +9981,10 @@ declare function getAllJsonSchemas(): {
9870
9981
  httprouter: "httprouter";
9871
9982
  }>;
9872
9983
  goOrm: z.ZodEnum<{
9984
+ gorm: "gorm";
9873
9985
  none: "none";
9874
9986
  bun: "bun";
9875
9987
  sqlx: "sqlx";
9876
- gorm: "gorm";
9877
9988
  sqlc: "sqlc";
9878
9989
  ent: "ent";
9879
9990
  }>;
@@ -10276,27 +10387,14 @@ declare function getAllJsonSchemas(): {
10276
10387
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
10277
10388
  id: z.ZodString;
10278
10389
  role: z.ZodEnum<{
10279
- effect: "effect";
10280
- ai: "ai";
10390
+ runtime: "runtime";
10391
+ backend: "backend";
10281
10392
  database: "database";
10282
10393
  orm: "orm";
10394
+ dbSetup: "dbSetup";
10283
10395
  auth: "auth";
10284
10396
  payments: "payments";
10285
- frontend: "frontend";
10286
- examples: "examples";
10287
- packageManager: "packageManager";
10288
- dbSetup: "dbSetup";
10289
- backend: "backend";
10290
- runtime: "runtime";
10291
- api: "api";
10292
- stateManagement: "stateManagement";
10293
- forms: "forms";
10294
- testing: "testing";
10295
10397
  email: "email";
10296
- validation: "validation";
10297
- realtime: "realtime";
10298
- jobQueue: "jobQueue";
10299
- animation: "animation";
10300
10398
  fileUpload: "fileUpload";
10301
10399
  logging: "logging";
10302
10400
  observability: "observability";
@@ -10304,36 +10402,61 @@ declare function getAllJsonSchemas(): {
10304
10402
  integrations: "integrations";
10305
10403
  ecommerce: "ecommerce";
10306
10404
  analytics: "analytics";
10307
- cms: "cms";
10405
+ stateManagement: "stateManagement";
10406
+ forms: "forms";
10407
+ validation: "validation";
10408
+ testing: "testing";
10409
+ realtime: "realtime";
10410
+ jobQueue: "jobQueue";
10308
10411
  caching: "caching";
10309
10412
  rateLimit: "rateLimit";
10413
+ botProtection: "botProtection";
10414
+ animation: "animation";
10415
+ cms: "cms";
10310
10416
  i18n: "i18n";
10311
10417
  search: "search";
10312
10418
  vectorDb: "vectorDb";
10313
10419
  fileStorage: "fileStorage";
10314
- config: "config";
10420
+ codeQuality: "codeQuality";
10421
+ documentation: "documentation";
10422
+ packageManager: "packageManager";
10423
+ examples: "examples";
10424
+ api: "api";
10425
+ workspaceRunner: "workspaceRunner";
10426
+ gitHooks: "gitHooks";
10427
+ staticAnalysis: "staticAnalysis";
10428
+ aiTooling: "aiTooling";
10429
+ codeGeneration: "codeGeneration";
10430
+ developerEnvironment: "developerEnvironment";
10431
+ containerOrchestration: "containerOrchestration";
10432
+ apiGateway: "apiGateway";
10433
+ continuousIntegration: "continuousIntegration";
10434
+ ai: "ai";
10435
+ effect: "effect";
10436
+ css: "css";
10437
+ ui: "ui";
10438
+ push: "push";
10439
+ frontend: "frontend";
10315
10440
  mobile: "mobile";
10316
10441
  graphql: "graphql";
10317
10442
  deploy: "deploy";
10318
10443
  migrations: "migrations";
10319
10444
  navigation: "navigation";
10320
- ui: "ui";
10321
- css: "css";
10322
10445
  storage: "storage";
10323
- push: "push";
10324
10446
  ota: "ota";
10325
10447
  deepLinking: "deepLinking";
10326
- documentation: "documentation";
10327
- codeQuality: "codeQuality";
10328
10448
  appPlatform: "appPlatform";
10329
10449
  dataFetching: "dataFetching";
10330
10450
  workspaceTooling: "workspaceTooling";
10451
+ toolchain: "toolchain";
10452
+ backendUtilities: "backendUtilities";
10331
10453
  language: "language";
10332
10454
  buildTool: "buildTool";
10333
10455
  cli: "cli";
10334
10456
  errorHandling: "errorHandling";
10335
10457
  httpClient: "httpClient";
10336
10458
  libraries: "libraries";
10459
+ config: "config";
10337
10460
  templating: "templating";
10338
10461
  cloudSdk: "cloudSdk";
10339
10462
  data: "data";
@@ -10400,13 +10523,13 @@ declare function getAllJsonSchemas(): {
10400
10523
  sequelize: "sequelize";
10401
10524
  }>;
10402
10525
  backend: z.ZodEnum<{
10526
+ effect: "effect";
10403
10527
  none: "none";
10404
10528
  hono: "hono";
10405
10529
  express: "express";
10406
10530
  fastify: "fastify";
10407
10531
  elysia: "elysia";
10408
10532
  fets: "fets";
10409
- effect: "effect";
10410
10533
  nestjs: "nestjs";
10411
10534
  adonisjs: "adonisjs";
10412
10535
  nitro: "nitro";
@@ -10458,6 +10581,7 @@ declare function getAllJsonSchemas(): {
10458
10581
  skills: "skills";
10459
10582
  turborepo: "turborepo";
10460
10583
  nx: "nx";
10584
+ "vite-plus": "vite-plus";
10461
10585
  fumadocs: "fumadocs";
10462
10586
  ultracite: "ultracite";
10463
10587
  oxlint: "oxlint";
@@ -10487,8 +10611,8 @@ declare function getAllJsonSchemas(): {
10487
10611
  capacitor: "capacitor";
10488
10612
  }>>;
10489
10613
  examples: z.ZodArray<z.ZodEnum<{
10490
- none: "none";
10491
10614
  ai: "ai";
10615
+ none: "none";
10492
10616
  "chat-sdk": "chat-sdk";
10493
10617
  "tanstack-showcase": "tanstack-showcase";
10494
10618
  }>>;
@@ -10603,8 +10727,8 @@ declare function getAllJsonSchemas(): {
10603
10727
  "ai-cli": "ai-cli";
10604
10728
  }>;
10605
10729
  effect: z.ZodEnum<{
10606
- none: "none";
10607
10730
  effect: "effect";
10731
+ none: "none";
10608
10732
  "effect-full": "effect-full";
10609
10733
  }>;
10610
10734
  stateManagement: z.ZodEnum<{
@@ -10657,6 +10781,7 @@ declare function getAllJsonSchemas(): {
10657
10781
  "styled-components": "styled-components";
10658
10782
  }>;
10659
10783
  uiLibrary: z.ZodEnum<{
10784
+ mui: "mui";
10660
10785
  none: "none";
10661
10786
  "shadcn-ui": "shadcn-ui";
10662
10787
  "shadcn-svelte": "shadcn-svelte";
@@ -10667,7 +10792,6 @@ declare function getAllJsonSchemas(): {
10667
10792
  "chakra-ui": "chakra-ui";
10668
10793
  nextui: "nextui";
10669
10794
  mantine: "mantine";
10670
- mui: "mui";
10671
10795
  antd: "antd";
10672
10796
  "base-ui": "base-ui";
10673
10797
  "ark-ui": "ark-ui";
@@ -10756,9 +10880,9 @@ declare function getAllJsonSchemas(): {
10756
10880
  "effect-schema": "effect-schema";
10757
10881
  }>;
10758
10882
  realtime: z.ZodEnum<{
10883
+ ws: "ws";
10759
10884
  none: "none";
10760
10885
  "socket-io": "socket-io";
10761
- ws: "ws";
10762
10886
  partykit: "partykit";
10763
10887
  ably: "ably";
10764
10888
  pusher: "pusher";
@@ -10824,6 +10948,7 @@ declare function getAllJsonSchemas(): {
10824
10948
  plausible: "plausible";
10825
10949
  umami: "umami";
10826
10950
  ga4: "ga4";
10951
+ "vercel-analytics": "vercel-analytics";
10827
10952
  }>;
10828
10953
  cms: z.ZodEnum<{
10829
10954
  none: "none";
@@ -10845,6 +10970,11 @@ declare function getAllJsonSchemas(): {
10845
10970
  arcjet: "arcjet";
10846
10971
  "upstash-ratelimit": "upstash-ratelimit";
10847
10972
  }>;
10973
+ botProtection: z.ZodDefault<z.ZodEnum<{
10974
+ none: "none";
10975
+ botid: "botid";
10976
+ turnstile: "turnstile";
10977
+ }>>;
10848
10978
  i18n: z.ZodEnum<{
10849
10979
  none: "none";
10850
10980
  paraglide: "paraglide";
@@ -10882,9 +11012,9 @@ declare function getAllJsonSchemas(): {
10882
11012
  }>;
10883
11013
  mobileUI: z.ZodEnum<{
10884
11014
  none: "none";
10885
- uniwind: "uniwind";
10886
11015
  tamagui: "tamagui";
10887
11016
  "gluestack-ui": "gluestack-ui";
11017
+ uniwind: "uniwind";
10888
11018
  unistyles: "unistyles";
10889
11019
  }>;
10890
11020
  mobileStorage: z.ZodEnum<{
@@ -11001,11 +11131,11 @@ declare function getAllJsonSchemas(): {
11001
11131
  }>;
11002
11132
  rustLibraries: z.ZodArray<z.ZodEnum<{
11003
11133
  none: "none";
11134
+ config: "config";
11004
11135
  serde: "serde";
11005
11136
  uuid: "uuid";
11006
11137
  chrono: "chrono";
11007
11138
  reqwest: "reqwest";
11008
- config: "config";
11009
11139
  dashmap: "dashmap";
11010
11140
  "parking-lot": "parking-lot";
11011
11141
  secrecy: "secrecy";
@@ -11211,10 +11341,10 @@ declare function getAllJsonSchemas(): {
11211
11341
  httprouter: "httprouter";
11212
11342
  }>;
11213
11343
  goOrm: z.ZodEnum<{
11344
+ gorm: "gorm";
11214
11345
  none: "none";
11215
11346
  bun: "bun";
11216
11347
  sqlx: "sqlx";
11217
- gorm: "gorm";
11218
11348
  sqlc: "sqlc";
11219
11349
  ent: "ent";
11220
11350
  }>;
@@ -11617,27 +11747,14 @@ declare function getAllJsonSchemas(): {
11617
11747
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
11618
11748
  id: z.ZodString;
11619
11749
  role: z.ZodEnum<{
11620
- effect: "effect";
11621
- ai: "ai";
11750
+ runtime: "runtime";
11751
+ backend: "backend";
11622
11752
  database: "database";
11623
11753
  orm: "orm";
11754
+ dbSetup: "dbSetup";
11624
11755
  auth: "auth";
11625
11756
  payments: "payments";
11626
- frontend: "frontend";
11627
- examples: "examples";
11628
- packageManager: "packageManager";
11629
- dbSetup: "dbSetup";
11630
- backend: "backend";
11631
- runtime: "runtime";
11632
- api: "api";
11633
- stateManagement: "stateManagement";
11634
- forms: "forms";
11635
- testing: "testing";
11636
11757
  email: "email";
11637
- validation: "validation";
11638
- realtime: "realtime";
11639
- jobQueue: "jobQueue";
11640
- animation: "animation";
11641
11758
  fileUpload: "fileUpload";
11642
11759
  logging: "logging";
11643
11760
  observability: "observability";
@@ -11645,36 +11762,61 @@ declare function getAllJsonSchemas(): {
11645
11762
  integrations: "integrations";
11646
11763
  ecommerce: "ecommerce";
11647
11764
  analytics: "analytics";
11648
- cms: "cms";
11765
+ stateManagement: "stateManagement";
11766
+ forms: "forms";
11767
+ validation: "validation";
11768
+ testing: "testing";
11769
+ realtime: "realtime";
11770
+ jobQueue: "jobQueue";
11649
11771
  caching: "caching";
11650
11772
  rateLimit: "rateLimit";
11773
+ botProtection: "botProtection";
11774
+ animation: "animation";
11775
+ cms: "cms";
11651
11776
  i18n: "i18n";
11652
11777
  search: "search";
11653
11778
  vectorDb: "vectorDb";
11654
11779
  fileStorage: "fileStorage";
11655
- config: "config";
11780
+ codeQuality: "codeQuality";
11781
+ documentation: "documentation";
11782
+ packageManager: "packageManager";
11783
+ examples: "examples";
11784
+ api: "api";
11785
+ workspaceRunner: "workspaceRunner";
11786
+ gitHooks: "gitHooks";
11787
+ staticAnalysis: "staticAnalysis";
11788
+ aiTooling: "aiTooling";
11789
+ codeGeneration: "codeGeneration";
11790
+ developerEnvironment: "developerEnvironment";
11791
+ containerOrchestration: "containerOrchestration";
11792
+ apiGateway: "apiGateway";
11793
+ continuousIntegration: "continuousIntegration";
11794
+ ai: "ai";
11795
+ effect: "effect";
11796
+ css: "css";
11797
+ ui: "ui";
11798
+ push: "push";
11799
+ frontend: "frontend";
11656
11800
  mobile: "mobile";
11657
11801
  graphql: "graphql";
11658
11802
  deploy: "deploy";
11659
11803
  migrations: "migrations";
11660
11804
  navigation: "navigation";
11661
- ui: "ui";
11662
- css: "css";
11663
11805
  storage: "storage";
11664
- push: "push";
11665
11806
  ota: "ota";
11666
11807
  deepLinking: "deepLinking";
11667
- documentation: "documentation";
11668
- codeQuality: "codeQuality";
11669
11808
  appPlatform: "appPlatform";
11670
11809
  dataFetching: "dataFetching";
11671
11810
  workspaceTooling: "workspaceTooling";
11811
+ toolchain: "toolchain";
11812
+ backendUtilities: "backendUtilities";
11672
11813
  language: "language";
11673
11814
  buildTool: "buildTool";
11674
11815
  cli: "cli";
11675
11816
  errorHandling: "errorHandling";
11676
11817
  httpClient: "httpClient";
11677
11818
  libraries: "libraries";
11819
+ config: "config";
11678
11820
  templating: "templating";
11679
11821
  cloudSdk: "cloudSdk";
11680
11822
  data: "data";
@@ -11741,13 +11883,13 @@ declare function getAllJsonSchemas(): {
11741
11883
  sequelize: "sequelize";
11742
11884
  }>;
11743
11885
  backend: z.ZodEnum<{
11886
+ effect: "effect";
11744
11887
  none: "none";
11745
11888
  hono: "hono";
11746
11889
  express: "express";
11747
11890
  fastify: "fastify";
11748
11891
  elysia: "elysia";
11749
11892
  fets: "fets";
11750
- effect: "effect";
11751
11893
  nestjs: "nestjs";
11752
11894
  adonisjs: "adonisjs";
11753
11895
  nitro: "nitro";
@@ -11799,6 +11941,7 @@ declare function getAllJsonSchemas(): {
11799
11941
  skills: "skills";
11800
11942
  turborepo: "turborepo";
11801
11943
  nx: "nx";
11944
+ "vite-plus": "vite-plus";
11802
11945
  fumadocs: "fumadocs";
11803
11946
  ultracite: "ultracite";
11804
11947
  oxlint: "oxlint";
@@ -11828,8 +11971,8 @@ declare function getAllJsonSchemas(): {
11828
11971
  capacitor: "capacitor";
11829
11972
  }>>;
11830
11973
  examples: z.ZodArray<z.ZodEnum<{
11831
- none: "none";
11832
11974
  ai: "ai";
11975
+ none: "none";
11833
11976
  "chat-sdk": "chat-sdk";
11834
11977
  "tanstack-showcase": "tanstack-showcase";
11835
11978
  }>>;
@@ -11944,8 +12087,8 @@ declare function getAllJsonSchemas(): {
11944
12087
  "ai-cli": "ai-cli";
11945
12088
  }>;
11946
12089
  effect: z.ZodEnum<{
11947
- none: "none";
11948
12090
  effect: "effect";
12091
+ none: "none";
11949
12092
  "effect-full": "effect-full";
11950
12093
  }>;
11951
12094
  stateManagement: z.ZodEnum<{
@@ -11998,6 +12141,7 @@ declare function getAllJsonSchemas(): {
11998
12141
  "styled-components": "styled-components";
11999
12142
  }>;
12000
12143
  uiLibrary: z.ZodEnum<{
12144
+ mui: "mui";
12001
12145
  none: "none";
12002
12146
  "shadcn-ui": "shadcn-ui";
12003
12147
  "shadcn-svelte": "shadcn-svelte";
@@ -12008,7 +12152,6 @@ declare function getAllJsonSchemas(): {
12008
12152
  "chakra-ui": "chakra-ui";
12009
12153
  nextui: "nextui";
12010
12154
  mantine: "mantine";
12011
- mui: "mui";
12012
12155
  antd: "antd";
12013
12156
  "base-ui": "base-ui";
12014
12157
  "ark-ui": "ark-ui";
@@ -12097,9 +12240,9 @@ declare function getAllJsonSchemas(): {
12097
12240
  "effect-schema": "effect-schema";
12098
12241
  }>;
12099
12242
  realtime: z.ZodEnum<{
12243
+ ws: "ws";
12100
12244
  none: "none";
12101
12245
  "socket-io": "socket-io";
12102
- ws: "ws";
12103
12246
  partykit: "partykit";
12104
12247
  ably: "ably";
12105
12248
  pusher: "pusher";
@@ -12165,6 +12308,7 @@ declare function getAllJsonSchemas(): {
12165
12308
  plausible: "plausible";
12166
12309
  umami: "umami";
12167
12310
  ga4: "ga4";
12311
+ "vercel-analytics": "vercel-analytics";
12168
12312
  }>;
12169
12313
  cms: z.ZodEnum<{
12170
12314
  none: "none";
@@ -12186,6 +12330,11 @@ declare function getAllJsonSchemas(): {
12186
12330
  arcjet: "arcjet";
12187
12331
  "upstash-ratelimit": "upstash-ratelimit";
12188
12332
  }>;
12333
+ botProtection: z.ZodDefault<z.ZodEnum<{
12334
+ none: "none";
12335
+ botid: "botid";
12336
+ turnstile: "turnstile";
12337
+ }>>;
12189
12338
  i18n: z.ZodEnum<{
12190
12339
  none: "none";
12191
12340
  paraglide: "paraglide";
@@ -12223,9 +12372,9 @@ declare function getAllJsonSchemas(): {
12223
12372
  }>;
12224
12373
  mobileUI: z.ZodEnum<{
12225
12374
  none: "none";
12226
- uniwind: "uniwind";
12227
12375
  tamagui: "tamagui";
12228
12376
  "gluestack-ui": "gluestack-ui";
12377
+ uniwind: "uniwind";
12229
12378
  unistyles: "unistyles";
12230
12379
  }>;
12231
12380
  mobileStorage: z.ZodEnum<{
@@ -12342,11 +12491,11 @@ declare function getAllJsonSchemas(): {
12342
12491
  }>;
12343
12492
  rustLibraries: z.ZodArray<z.ZodEnum<{
12344
12493
  none: "none";
12494
+ config: "config";
12345
12495
  serde: "serde";
12346
12496
  uuid: "uuid";
12347
12497
  chrono: "chrono";
12348
12498
  reqwest: "reqwest";
12349
- config: "config";
12350
12499
  dashmap: "dashmap";
12351
12500
  "parking-lot": "parking-lot";
12352
12501
  secrecy: "secrecy";
@@ -12552,10 +12701,10 @@ declare function getAllJsonSchemas(): {
12552
12701
  httprouter: "httprouter";
12553
12702
  }>;
12554
12703
  goOrm: z.ZodEnum<{
12704
+ gorm: "gorm";
12555
12705
  none: "none";
12556
12706
  bun: "bun";
12557
12707
  sqlx: "sqlx";
12558
- gorm: "gorm";
12559
12708
  sqlc: "sqlc";
12560
12709
  ent: "ent";
12561
12710
  }>;
@@ -12958,27 +13107,14 @@ declare function getAllJsonSchemas(): {
12958
13107
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
12959
13108
  id: z.ZodString;
12960
13109
  role: z.ZodEnum<{
12961
- effect: "effect";
12962
- ai: "ai";
13110
+ runtime: "runtime";
13111
+ backend: "backend";
12963
13112
  database: "database";
12964
13113
  orm: "orm";
13114
+ dbSetup: "dbSetup";
12965
13115
  auth: "auth";
12966
13116
  payments: "payments";
12967
- frontend: "frontend";
12968
- examples: "examples";
12969
- packageManager: "packageManager";
12970
- dbSetup: "dbSetup";
12971
- backend: "backend";
12972
- runtime: "runtime";
12973
- api: "api";
12974
- stateManagement: "stateManagement";
12975
- forms: "forms";
12976
- testing: "testing";
12977
13117
  email: "email";
12978
- validation: "validation";
12979
- realtime: "realtime";
12980
- jobQueue: "jobQueue";
12981
- animation: "animation";
12982
13118
  fileUpload: "fileUpload";
12983
13119
  logging: "logging";
12984
13120
  observability: "observability";
@@ -12986,36 +13122,61 @@ declare function getAllJsonSchemas(): {
12986
13122
  integrations: "integrations";
12987
13123
  ecommerce: "ecommerce";
12988
13124
  analytics: "analytics";
12989
- cms: "cms";
13125
+ stateManagement: "stateManagement";
13126
+ forms: "forms";
13127
+ validation: "validation";
13128
+ testing: "testing";
13129
+ realtime: "realtime";
13130
+ jobQueue: "jobQueue";
12990
13131
  caching: "caching";
12991
13132
  rateLimit: "rateLimit";
13133
+ botProtection: "botProtection";
13134
+ animation: "animation";
13135
+ cms: "cms";
12992
13136
  i18n: "i18n";
12993
13137
  search: "search";
12994
13138
  vectorDb: "vectorDb";
12995
13139
  fileStorage: "fileStorage";
12996
- config: "config";
13140
+ codeQuality: "codeQuality";
13141
+ documentation: "documentation";
13142
+ packageManager: "packageManager";
13143
+ examples: "examples";
13144
+ api: "api";
13145
+ workspaceRunner: "workspaceRunner";
13146
+ gitHooks: "gitHooks";
13147
+ staticAnalysis: "staticAnalysis";
13148
+ aiTooling: "aiTooling";
13149
+ codeGeneration: "codeGeneration";
13150
+ developerEnvironment: "developerEnvironment";
13151
+ containerOrchestration: "containerOrchestration";
13152
+ apiGateway: "apiGateway";
13153
+ continuousIntegration: "continuousIntegration";
13154
+ ai: "ai";
13155
+ effect: "effect";
13156
+ css: "css";
13157
+ ui: "ui";
13158
+ push: "push";
13159
+ frontend: "frontend";
12997
13160
  mobile: "mobile";
12998
13161
  graphql: "graphql";
12999
13162
  deploy: "deploy";
13000
13163
  migrations: "migrations";
13001
13164
  navigation: "navigation";
13002
- ui: "ui";
13003
- css: "css";
13004
13165
  storage: "storage";
13005
- push: "push";
13006
13166
  ota: "ota";
13007
13167
  deepLinking: "deepLinking";
13008
- documentation: "documentation";
13009
- codeQuality: "codeQuality";
13010
13168
  appPlatform: "appPlatform";
13011
13169
  dataFetching: "dataFetching";
13012
13170
  workspaceTooling: "workspaceTooling";
13171
+ toolchain: "toolchain";
13172
+ backendUtilities: "backendUtilities";
13013
13173
  language: "language";
13014
13174
  buildTool: "buildTool";
13015
13175
  cli: "cli";
13016
13176
  errorHandling: "errorHandling";
13017
13177
  httpClient: "httpClient";
13018
13178
  libraries: "libraries";
13179
+ config: "config";
13019
13180
  templating: "templating";
13020
13181
  cloudSdk: "cloudSdk";
13021
13182
  data: "data";
@@ -13083,13 +13244,13 @@ declare function getAllJsonSchemas(): {
13083
13244
  sequelize: "sequelize";
13084
13245
  }>;
13085
13246
  backend: z.ZodEnum<{
13247
+ effect: "effect";
13086
13248
  none: "none";
13087
13249
  hono: "hono";
13088
13250
  express: "express";
13089
13251
  fastify: "fastify";
13090
13252
  elysia: "elysia";
13091
13253
  fets: "fets";
13092
- effect: "effect";
13093
13254
  nestjs: "nestjs";
13094
13255
  adonisjs: "adonisjs";
13095
13256
  nitro: "nitro";
@@ -13141,6 +13302,7 @@ declare function getAllJsonSchemas(): {
13141
13302
  skills: "skills";
13142
13303
  turborepo: "turborepo";
13143
13304
  nx: "nx";
13305
+ "vite-plus": "vite-plus";
13144
13306
  fumadocs: "fumadocs";
13145
13307
  ultracite: "ultracite";
13146
13308
  oxlint: "oxlint";
@@ -13170,8 +13332,8 @@ declare function getAllJsonSchemas(): {
13170
13332
  capacitor: "capacitor";
13171
13333
  }>>;
13172
13334
  examples: z.ZodArray<z.ZodEnum<{
13173
- none: "none";
13174
13335
  ai: "ai";
13336
+ none: "none";
13175
13337
  "chat-sdk": "chat-sdk";
13176
13338
  "tanstack-showcase": "tanstack-showcase";
13177
13339
  }>>;
@@ -13288,8 +13450,8 @@ declare function getAllJsonSchemas(): {
13288
13450
  "ai-cli": "ai-cli";
13289
13451
  }>;
13290
13452
  effect: z.ZodEnum<{
13291
- none: "none";
13292
13453
  effect: "effect";
13454
+ none: "none";
13293
13455
  "effect-full": "effect-full";
13294
13456
  }>;
13295
13457
  stateManagement: z.ZodEnum<{
@@ -13342,6 +13504,7 @@ declare function getAllJsonSchemas(): {
13342
13504
  "styled-components": "styled-components";
13343
13505
  }>;
13344
13506
  uiLibrary: z.ZodEnum<{
13507
+ mui: "mui";
13345
13508
  none: "none";
13346
13509
  "shadcn-ui": "shadcn-ui";
13347
13510
  "shadcn-svelte": "shadcn-svelte";
@@ -13352,7 +13515,6 @@ declare function getAllJsonSchemas(): {
13352
13515
  "chakra-ui": "chakra-ui";
13353
13516
  nextui: "nextui";
13354
13517
  mantine: "mantine";
13355
- mui: "mui";
13356
13518
  antd: "antd";
13357
13519
  "base-ui": "base-ui";
13358
13520
  "ark-ui": "ark-ui";
@@ -13441,9 +13603,9 @@ declare function getAllJsonSchemas(): {
13441
13603
  "effect-schema": "effect-schema";
13442
13604
  }>;
13443
13605
  realtime: z.ZodEnum<{
13606
+ ws: "ws";
13444
13607
  none: "none";
13445
13608
  "socket-io": "socket-io";
13446
- ws: "ws";
13447
13609
  partykit: "partykit";
13448
13610
  ably: "ably";
13449
13611
  pusher: "pusher";
@@ -13509,6 +13671,7 @@ declare function getAllJsonSchemas(): {
13509
13671
  plausible: "plausible";
13510
13672
  umami: "umami";
13511
13673
  ga4: "ga4";
13674
+ "vercel-analytics": "vercel-analytics";
13512
13675
  }>;
13513
13676
  cms: z.ZodEnum<{
13514
13677
  none: "none";
@@ -13530,6 +13693,11 @@ declare function getAllJsonSchemas(): {
13530
13693
  arcjet: "arcjet";
13531
13694
  "upstash-ratelimit": "upstash-ratelimit";
13532
13695
  }>;
13696
+ botProtection: z.ZodDefault<z.ZodEnum<{
13697
+ none: "none";
13698
+ botid: "botid";
13699
+ turnstile: "turnstile";
13700
+ }>>;
13533
13701
  i18n: z.ZodEnum<{
13534
13702
  none: "none";
13535
13703
  paraglide: "paraglide";
@@ -13567,9 +13735,9 @@ declare function getAllJsonSchemas(): {
13567
13735
  }>;
13568
13736
  mobileUI: z.ZodEnum<{
13569
13737
  none: "none";
13570
- uniwind: "uniwind";
13571
13738
  tamagui: "tamagui";
13572
13739
  "gluestack-ui": "gluestack-ui";
13740
+ uniwind: "uniwind";
13573
13741
  unistyles: "unistyles";
13574
13742
  }>;
13575
13743
  mobileStorage: z.ZodEnum<{
@@ -13686,11 +13854,11 @@ declare function getAllJsonSchemas(): {
13686
13854
  }>;
13687
13855
  rustLibraries: z.ZodArray<z.ZodEnum<{
13688
13856
  none: "none";
13857
+ config: "config";
13689
13858
  serde: "serde";
13690
13859
  uuid: "uuid";
13691
13860
  chrono: "chrono";
13692
13861
  reqwest: "reqwest";
13693
- config: "config";
13694
13862
  dashmap: "dashmap";
13695
13863
  "parking-lot": "parking-lot";
13696
13864
  secrecy: "secrecy";
@@ -13896,10 +14064,10 @@ declare function getAllJsonSchemas(): {
13896
14064
  httprouter: "httprouter";
13897
14065
  }>;
13898
14066
  goOrm: z.ZodEnum<{
14067
+ gorm: "gorm";
13899
14068
  none: "none";
13900
14069
  bun: "bun";
13901
14070
  sqlx: "sqlx";
13902
- gorm: "gorm";
13903
14071
  sqlc: "sqlc";
13904
14072
  ent: "ent";
13905
14073
  }>;
@@ -14302,27 +14470,14 @@ declare function getAllJsonSchemas(): {
14302
14470
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
14303
14471
  id: z.ZodString;
14304
14472
  role: z.ZodEnum<{
14305
- effect: "effect";
14306
- ai: "ai";
14473
+ runtime: "runtime";
14474
+ backend: "backend";
14307
14475
  database: "database";
14308
14476
  orm: "orm";
14477
+ dbSetup: "dbSetup";
14309
14478
  auth: "auth";
14310
14479
  payments: "payments";
14311
- frontend: "frontend";
14312
- examples: "examples";
14313
- packageManager: "packageManager";
14314
- dbSetup: "dbSetup";
14315
- backend: "backend";
14316
- runtime: "runtime";
14317
- api: "api";
14318
- stateManagement: "stateManagement";
14319
- forms: "forms";
14320
- testing: "testing";
14321
14480
  email: "email";
14322
- validation: "validation";
14323
- realtime: "realtime";
14324
- jobQueue: "jobQueue";
14325
- animation: "animation";
14326
14481
  fileUpload: "fileUpload";
14327
14482
  logging: "logging";
14328
14483
  observability: "observability";
@@ -14330,36 +14485,61 @@ declare function getAllJsonSchemas(): {
14330
14485
  integrations: "integrations";
14331
14486
  ecommerce: "ecommerce";
14332
14487
  analytics: "analytics";
14333
- cms: "cms";
14488
+ stateManagement: "stateManagement";
14489
+ forms: "forms";
14490
+ validation: "validation";
14491
+ testing: "testing";
14492
+ realtime: "realtime";
14493
+ jobQueue: "jobQueue";
14334
14494
  caching: "caching";
14335
14495
  rateLimit: "rateLimit";
14496
+ botProtection: "botProtection";
14497
+ animation: "animation";
14498
+ cms: "cms";
14336
14499
  i18n: "i18n";
14337
14500
  search: "search";
14338
14501
  vectorDb: "vectorDb";
14339
14502
  fileStorage: "fileStorage";
14340
- config: "config";
14503
+ codeQuality: "codeQuality";
14504
+ documentation: "documentation";
14505
+ packageManager: "packageManager";
14506
+ examples: "examples";
14507
+ api: "api";
14508
+ workspaceRunner: "workspaceRunner";
14509
+ gitHooks: "gitHooks";
14510
+ staticAnalysis: "staticAnalysis";
14511
+ aiTooling: "aiTooling";
14512
+ codeGeneration: "codeGeneration";
14513
+ developerEnvironment: "developerEnvironment";
14514
+ containerOrchestration: "containerOrchestration";
14515
+ apiGateway: "apiGateway";
14516
+ continuousIntegration: "continuousIntegration";
14517
+ ai: "ai";
14518
+ effect: "effect";
14519
+ css: "css";
14520
+ ui: "ui";
14521
+ push: "push";
14522
+ frontend: "frontend";
14341
14523
  mobile: "mobile";
14342
14524
  graphql: "graphql";
14343
14525
  deploy: "deploy";
14344
14526
  migrations: "migrations";
14345
14527
  navigation: "navigation";
14346
- ui: "ui";
14347
- css: "css";
14348
14528
  storage: "storage";
14349
- push: "push";
14350
14529
  ota: "ota";
14351
14530
  deepLinking: "deepLinking";
14352
- documentation: "documentation";
14353
- codeQuality: "codeQuality";
14354
14531
  appPlatform: "appPlatform";
14355
14532
  dataFetching: "dataFetching";
14356
14533
  workspaceTooling: "workspaceTooling";
14534
+ toolchain: "toolchain";
14535
+ backendUtilities: "backendUtilities";
14357
14536
  language: "language";
14358
14537
  buildTool: "buildTool";
14359
14538
  cli: "cli";
14360
14539
  errorHandling: "errorHandling";
14361
14540
  httpClient: "httpClient";
14362
14541
  libraries: "libraries";
14542
+ config: "config";
14363
14543
  templating: "templating";
14364
14544
  cloudSdk: "cloudSdk";
14365
14545
  data: "data";