@better-fullstack/types 2.6.0 → 2.6.2

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 (51) hide show
  1. package/dist/{defaults-7VECSARb.d.mts → defaults-CZeSVSu8.d.mts} +3 -3
  2. package/dist/defaults-CZeSVSu8.d.mts.map +1 -0
  3. package/dist/{defaults-Bp46Ajyg.mjs → defaults-DTS30ICD.mjs} +2 -2
  4. package/dist/defaults-DTS30ICD.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 +1258 -11
  8. package/dist/index.d.mts.map +1 -1
  9. package/dist/index.mjs +289 -9
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/json-schema.d.mts +324 -324
  12. package/dist/json-schema.d.mts.map +1 -1
  13. package/dist/json-schema.mjs +2 -2
  14. package/dist/json-schema.mjs.map +1 -1
  15. package/dist/{schemas-CY0MaZmU.d.mts → schemas-82xJXQrZ.d.mts} +680 -598
  16. package/dist/schemas-82xJXQrZ.d.mts.map +1 -0
  17. package/dist/{schemas-CH1UszP5.mjs → schemas-cgmdgudQ.mjs} +41 -4
  18. package/dist/schemas-cgmdgudQ.mjs.map +1 -0
  19. package/dist/schemas.d.mts +2 -2
  20. package/dist/schemas.mjs +2 -2
  21. package/dist/{stack-graph-DkJ944IX.d.mts → stack-graph-DG53F1Q2.d.mts} +26 -4
  22. package/dist/stack-graph-DG53F1Q2.d.mts.map +1 -0
  23. package/dist/{stack-graph-AWbdUrN3.mjs → stack-graph-Oj-P0cij.mjs} +91 -14
  24. package/dist/stack-graph-Oj-P0cij.mjs.map +1 -0
  25. package/dist/stack-graph.d.mts +4 -4
  26. package/dist/stack-graph.mjs +3 -3
  27. package/dist/{stack-translation-C9yYLNwM.d.mts → stack-translation-0OwfhcBf.d.mts} +59 -9
  28. package/dist/stack-translation-0OwfhcBf.d.mts.map +1 -0
  29. package/dist/{stack-translation-Cn6zGJ5q.mjs → stack-translation-49iba9M5.mjs} +161 -30
  30. package/dist/stack-translation-49iba9M5.mjs.map +1 -0
  31. package/dist/stack-translation.d.mts +4 -4
  32. package/dist/stack-translation.mjs +3 -3
  33. package/dist/telemetry-C9qQ80l9.mjs +2270 -0
  34. package/dist/telemetry-C9qQ80l9.mjs.map +1 -0
  35. package/dist/telemetry-CUtrUTe9.d.mts +36 -0
  36. package/dist/telemetry-CUtrUTe9.d.mts.map +1 -0
  37. package/dist/telemetry.d.mts +2 -0
  38. package/dist/telemetry.mjs +6 -0
  39. package/dist/{types-fGT5qf7O.d.mts → types-CfEIdtDo.d.mts} +3 -3
  40. package/dist/types-CfEIdtDo.d.mts.map +1 -0
  41. package/dist/types.d.mts +2 -2
  42. package/package.json +5 -1
  43. package/dist/defaults-7VECSARb.d.mts.map +0 -1
  44. package/dist/defaults-Bp46Ajyg.mjs.map +0 -1
  45. package/dist/schemas-CH1UszP5.mjs.map +0 -1
  46. package/dist/schemas-CY0MaZmU.d.mts.map +0 -1
  47. package/dist/stack-graph-AWbdUrN3.mjs.map +0 -1
  48. package/dist/stack-graph-DkJ944IX.d.mts.map +0 -1
  49. package/dist/stack-translation-C9yYLNwM.d.mts.map +0 -1
  50. package/dist/stack-translation-Cn6zGJ5q.mjs.map +0 -1
  51. package/dist/types-fGT5qf7O.d.mts.map +0 -1
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
 
3
- //#region src/json-schema.d.ts
3
+ //#region src/config/json-schema.d.ts
4
4
  declare function getDatabaseJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
5
5
  none: "none";
6
6
  sqlite: "sqlite";
@@ -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";
25
24
  none: "none";
26
25
  hono: "hono";
27
26
  express: "express";
28
27
  fastify: "fastify";
29
28
  elysia: "elysia";
30
29
  fets: "fets";
30
+ effect: "effect";
31
31
  nestjs: "nestjs";
32
32
  adonisjs: "adonisjs";
33
33
  nitro: "nitro";
@@ -109,8 +109,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
109
109
  capacitor: "capacitor";
110
110
  }>>;
111
111
  declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
112
- ai: "ai";
113
112
  none: "none";
113
+ ai: "ai";
114
114
  "chat-sdk": "chat-sdk";
115
115
  "tanstack-showcase": "tanstack-showcase";
116
116
  }>>;
@@ -193,34 +193,34 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
193
193
  vercel: "vercel";
194
194
  }>>;
195
195
  declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
196
- error: "error";
197
196
  merge: "merge";
198
197
  overwrite: "overwrite";
199
198
  increment: "increment";
199
+ error: "error";
200
200
  }>>;
201
201
  declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
202
202
  none: "none";
203
- uniwind: "uniwind";
204
203
  mern: "mern";
205
204
  pern: "pern";
206
205
  t3: "t3";
207
206
  saas: "saas";
207
+ uniwind: "uniwind";
208
208
  }>>;
209
209
  declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
210
210
  projectName: z.ZodOptional<z.ZodString>;
211
211
  template: z.ZodOptional<z.ZodEnum<{
212
212
  none: "none";
213
- uniwind: "uniwind";
214
213
  mern: "mern";
215
214
  pern: "pern";
216
215
  t3: "t3";
217
216
  saas: "saas";
217
+ uniwind: "uniwind";
218
218
  }>>;
219
219
  shape: z.ZodOptional<z.ZodEnum<{
220
+ fullstack: "fullstack";
220
221
  frontend: "frontend";
221
222
  backend: "backend";
222
223
  mobile: "mobile";
223
- fullstack: "fullstack";
224
224
  }>>;
225
225
  yes: z.ZodOptional<z.ZodBoolean>;
226
226
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -352,8 +352,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
352
352
  capacitor: "capacitor";
353
353
  }>>>;
354
354
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
355
- ai: "ai";
356
355
  none: "none";
356
+ ai: "ai";
357
357
  "chat-sdk": "chat-sdk";
358
358
  "tanstack-showcase": "tanstack-showcase";
359
359
  }>>>;
@@ -387,13 +387,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
387
387
  docker: "docker";
388
388
  }>>;
389
389
  backend: z.ZodOptional<z.ZodEnum<{
390
- effect: "effect";
391
390
  none: "none";
392
391
  hono: "hono";
393
392
  express: "express";
394
393
  fastify: "fastify";
395
394
  elysia: "elysia";
396
395
  fets: "fets";
396
+ effect: "effect";
397
397
  nestjs: "nestjs";
398
398
  adonisjs: "adonisjs";
399
399
  nitro: "nitro";
@@ -440,10 +440,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
440
440
  vercel: "vercel";
441
441
  }>>;
442
442
  directoryConflict: z.ZodOptional<z.ZodEnum<{
443
- error: "error";
444
443
  merge: "merge";
445
444
  overwrite: "overwrite";
446
445
  increment: "increment";
446
+ error: "error";
447
447
  }>>;
448
448
  renderTitle: z.ZodOptional<z.ZodBoolean>;
449
449
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -472,8 +472,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
472
472
  "ai-cli": "ai-cli";
473
473
  }>>;
474
474
  effect: z.ZodOptional<z.ZodEnum<{
475
- effect: "effect";
476
475
  none: "none";
476
+ effect: "effect";
477
477
  "effect-full": "effect-full";
478
478
  }>>;
479
479
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -608,8 +608,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
608
608
  "geist-mono": "geist-mono";
609
609
  }>>;
610
610
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
611
- default: "default";
612
611
  none: "none";
612
+ default: "default";
613
613
  small: "small";
614
614
  medium: "medium";
615
615
  large: "large";
@@ -757,9 +757,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
757
757
  }>>;
758
758
  mobileUI: z.ZodOptional<z.ZodEnum<{
759
759
  none: "none";
760
+ uniwind: "uniwind";
760
761
  tamagui: "tamagui";
761
762
  "gluestack-ui": "gluestack-ui";
762
- uniwind: "uniwind";
763
763
  unistyles: "unistyles";
764
764
  }>>;
765
765
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -875,12 +875,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
875
875
  ratatui: "ratatui";
876
876
  }>>;
877
877
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
878
- config: "config";
879
878
  none: "none";
880
879
  serde: "serde";
881
880
  uuid: "uuid";
882
881
  chrono: "chrono";
883
882
  reqwest: "reqwest";
883
+ config: "config";
884
884
  dashmap: "dashmap";
885
885
  "parking-lot": "parking-lot";
886
886
  secrecy: "secrecy";
@@ -1525,13 +1525,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1525
1525
  sequelize: "sequelize";
1526
1526
  }>;
1527
1527
  backend: z.ZodEnum<{
1528
- effect: "effect";
1529
1528
  none: "none";
1530
1529
  hono: "hono";
1531
1530
  express: "express";
1532
1531
  fastify: "fastify";
1533
1532
  elysia: "elysia";
1534
1533
  fets: "fets";
1534
+ effect: "effect";
1535
1535
  nestjs: "nestjs";
1536
1536
  adonisjs: "adonisjs";
1537
1537
  nitro: "nitro";
@@ -1613,8 +1613,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1613
1613
  capacitor: "capacitor";
1614
1614
  }>>;
1615
1615
  examples: z.ZodArray<z.ZodEnum<{
1616
- ai: "ai";
1617
1616
  none: "none";
1617
+ ai: "ai";
1618
1618
  "chat-sdk": "chat-sdk";
1619
1619
  "tanstack-showcase": "tanstack-showcase";
1620
1620
  }>>;
@@ -1731,8 +1731,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1731
1731
  "ai-cli": "ai-cli";
1732
1732
  }>;
1733
1733
  effect: z.ZodEnum<{
1734
- effect: "effect";
1735
1734
  none: "none";
1735
+ effect: "effect";
1736
1736
  "effect-full": "effect-full";
1737
1737
  }>;
1738
1738
  stateManagement: z.ZodEnum<{
@@ -1867,8 +1867,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1867
1867
  "geist-mono": "geist-mono";
1868
1868
  }>>;
1869
1869
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
1870
- default: "default";
1871
1870
  none: "none";
1871
+ default: "default";
1872
1872
  small: "small";
1873
1873
  medium: "medium";
1874
1874
  large: "large";
@@ -2016,9 +2016,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2016
2016
  }>;
2017
2017
  mobileUI: z.ZodEnum<{
2018
2018
  none: "none";
2019
+ uniwind: "uniwind";
2019
2020
  tamagui: "tamagui";
2020
2021
  "gluestack-ui": "gluestack-ui";
2021
- uniwind: "uniwind";
2022
2022
  unistyles: "unistyles";
2023
2023
  }>;
2024
2024
  mobileStorage: z.ZodEnum<{
@@ -2134,12 +2134,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2134
2134
  ratatui: "ratatui";
2135
2135
  }>;
2136
2136
  rustLibraries: z.ZodArray<z.ZodEnum<{
2137
- config: "config";
2138
2137
  none: "none";
2139
2138
  serde: "serde";
2140
2139
  uuid: "uuid";
2141
2140
  chrono: "chrono";
2142
2141
  reqwest: "reqwest";
2142
+ config: "config";
2143
2143
  dashmap: "dashmap";
2144
2144
  "parking-lot": "parking-lot";
2145
2145
  secrecy: "secrecy";
@@ -2751,51 +2751,54 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2751
2751
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2752
2752
  id: z.ZodString;
2753
2753
  role: z.ZodEnum<{
2754
- push: "push";
2754
+ effect: "effect";
2755
+ ai: "ai";
2755
2756
  frontend: "frontend";
2756
2757
  backend: "backend";
2757
2758
  mobile: "mobile";
2758
2759
  database: "database";
2759
- api: "api";
2760
- graphql: "graphql";
2761
2760
  orm: "orm";
2762
2761
  auth: "auth";
2763
- runtime: "runtime";
2764
- deploy: "deploy";
2762
+ payments: "payments";
2763
+ examples: "examples";
2764
+ packageManager: "packageManager";
2765
2765
  dbSetup: "dbSetup";
2766
- migrations: "migrations";
2767
- realtime: "realtime";
2768
- navigation: "navigation";
2769
- caching: "caching";
2770
- observability: "observability";
2771
- email: "email";
2772
- search: "search";
2773
- vectorDb: "vectorDb";
2774
- fileStorage: "fileStorage";
2775
- jobQueue: "jobQueue";
2776
- rateLimit: "rateLimit";
2777
- botProtection: "botProtection";
2778
- testing: "testing";
2766
+ runtime: "runtime";
2767
+ api: "api";
2779
2768
  stateManagement: "stateManagement";
2780
2769
  forms: "forms";
2770
+ testing: "testing";
2771
+ email: "email";
2772
+ validation: "validation";
2773
+ realtime: "realtime";
2774
+ jobQueue: "jobQueue";
2781
2775
  animation: "animation";
2782
2776
  fileUpload: "fileUpload";
2783
- validation: "validation";
2784
- effect: "effect";
2785
- ui: "ui";
2786
- css: "css";
2787
- storage: "storage";
2788
- ota: "ota";
2789
- deepLinking: "deepLinking";
2790
- ai: "ai";
2791
- payments: "payments";
2792
2777
  logging: "logging";
2778
+ observability: "observability";
2793
2779
  featureFlags: "featureFlags";
2794
2780
  integrations: "integrations";
2795
2781
  ecommerce: "ecommerce";
2796
2782
  analytics: "analytics";
2797
2783
  cms: "cms";
2784
+ caching: "caching";
2785
+ rateLimit: "rateLimit";
2786
+ botProtection: "botProtection";
2798
2787
  i18n: "i18n";
2788
+ search: "search";
2789
+ vectorDb: "vectorDb";
2790
+ fileStorage: "fileStorage";
2791
+ config: "config";
2792
+ graphql: "graphql";
2793
+ deploy: "deploy";
2794
+ migrations: "migrations";
2795
+ navigation: "navigation";
2796
+ ui: "ui";
2797
+ css: "css";
2798
+ storage: "storage";
2799
+ push: "push";
2800
+ ota: "ota";
2801
+ deepLinking: "deepLinking";
2799
2802
  documentation: "documentation";
2800
2803
  codeQuality: "codeQuality";
2801
2804
  appPlatform: "appPlatform";
@@ -2812,20 +2815,17 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2812
2815
  apiGateway: "apiGateway";
2813
2816
  continuousIntegration: "continuousIntegration";
2814
2817
  backendUtilities: "backendUtilities";
2815
- examples: "examples";
2816
2818
  language: "language";
2817
2819
  buildTool: "buildTool";
2818
2820
  cli: "cli";
2819
2821
  errorHandling: "errorHandling";
2820
2822
  httpClient: "httpClient";
2821
2823
  libraries: "libraries";
2822
- config: "config";
2823
2824
  templating: "templating";
2824
2825
  cloudSdk: "cloudSdk";
2825
2826
  data: "data";
2826
2827
  media: "media";
2827
2828
  server: "server";
2828
- packageManager: "packageManager";
2829
2829
  messageQueue: "messageQueue";
2830
2830
  }>;
2831
2831
  toolId: z.ZodString;
@@ -2849,7 +2849,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2849
2849
  }>;
2850
2850
  providedByPartId: z.ZodOptional<z.ZodString>;
2851
2851
  targetPath: z.ZodOptional<z.ZodString>;
2852
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2852
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
2853
2853
  }, z.core.$strip>>>;
2854
2854
  }, z.core.$strip>>;
2855
2855
  declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -2887,13 +2887,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2887
2887
  sequelize: "sequelize";
2888
2888
  }>;
2889
2889
  backend: z.ZodEnum<{
2890
- effect: "effect";
2891
2890
  none: "none";
2892
2891
  hono: "hono";
2893
2892
  express: "express";
2894
2893
  fastify: "fastify";
2895
2894
  elysia: "elysia";
2896
2895
  fets: "fets";
2896
+ effect: "effect";
2897
2897
  nestjs: "nestjs";
2898
2898
  adonisjs: "adonisjs";
2899
2899
  nitro: "nitro";
@@ -2975,8 +2975,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2975
2975
  capacitor: "capacitor";
2976
2976
  }>>;
2977
2977
  examples: z.ZodArray<z.ZodEnum<{
2978
- ai: "ai";
2979
2978
  none: "none";
2979
+ ai: "ai";
2980
2980
  "chat-sdk": "chat-sdk";
2981
2981
  "tanstack-showcase": "tanstack-showcase";
2982
2982
  }>>;
@@ -3091,8 +3091,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3091
3091
  "ai-cli": "ai-cli";
3092
3092
  }>;
3093
3093
  effect: z.ZodEnum<{
3094
- effect: "effect";
3095
3094
  none: "none";
3095
+ effect: "effect";
3096
3096
  "effect-full": "effect-full";
3097
3097
  }>;
3098
3098
  stateManagement: z.ZodEnum<{
@@ -3227,8 +3227,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3227
3227
  "geist-mono": "geist-mono";
3228
3228
  }>>;
3229
3229
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
3230
- default: "default";
3231
3230
  none: "none";
3231
+ default: "default";
3232
3232
  small: "small";
3233
3233
  medium: "medium";
3234
3234
  large: "large";
@@ -3376,9 +3376,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3376
3376
  }>;
3377
3377
  mobileUI: z.ZodEnum<{
3378
3378
  none: "none";
3379
+ uniwind: "uniwind";
3379
3380
  tamagui: "tamagui";
3380
3381
  "gluestack-ui": "gluestack-ui";
3381
- uniwind: "uniwind";
3382
3382
  unistyles: "unistyles";
3383
3383
  }>;
3384
3384
  mobileStorage: z.ZodEnum<{
@@ -3494,12 +3494,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3494
3494
  ratatui: "ratatui";
3495
3495
  }>;
3496
3496
  rustLibraries: z.ZodArray<z.ZodEnum<{
3497
- config: "config";
3498
3497
  none: "none";
3499
3498
  serde: "serde";
3500
3499
  uuid: "uuid";
3501
3500
  chrono: "chrono";
3502
3501
  reqwest: "reqwest";
3502
+ config: "config";
3503
3503
  dashmap: "dashmap";
3504
3504
  "parking-lot": "parking-lot";
3505
3505
  secrecy: "secrecy";
@@ -4111,51 +4111,54 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4111
4111
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
4112
4112
  id: z.ZodString;
4113
4113
  role: z.ZodEnum<{
4114
- push: "push";
4114
+ effect: "effect";
4115
+ ai: "ai";
4115
4116
  frontend: "frontend";
4116
4117
  backend: "backend";
4117
4118
  mobile: "mobile";
4118
4119
  database: "database";
4119
- api: "api";
4120
- graphql: "graphql";
4121
4120
  orm: "orm";
4122
4121
  auth: "auth";
4123
- runtime: "runtime";
4124
- deploy: "deploy";
4122
+ payments: "payments";
4123
+ examples: "examples";
4124
+ packageManager: "packageManager";
4125
4125
  dbSetup: "dbSetup";
4126
- migrations: "migrations";
4127
- realtime: "realtime";
4128
- navigation: "navigation";
4129
- caching: "caching";
4130
- observability: "observability";
4131
- email: "email";
4132
- search: "search";
4133
- vectorDb: "vectorDb";
4134
- fileStorage: "fileStorage";
4135
- jobQueue: "jobQueue";
4136
- rateLimit: "rateLimit";
4137
- botProtection: "botProtection";
4138
- testing: "testing";
4126
+ runtime: "runtime";
4127
+ api: "api";
4139
4128
  stateManagement: "stateManagement";
4140
4129
  forms: "forms";
4130
+ testing: "testing";
4131
+ email: "email";
4132
+ validation: "validation";
4133
+ realtime: "realtime";
4134
+ jobQueue: "jobQueue";
4141
4135
  animation: "animation";
4142
4136
  fileUpload: "fileUpload";
4143
- validation: "validation";
4144
- effect: "effect";
4145
- ui: "ui";
4146
- css: "css";
4147
- storage: "storage";
4148
- ota: "ota";
4149
- deepLinking: "deepLinking";
4150
- ai: "ai";
4151
- payments: "payments";
4152
4137
  logging: "logging";
4138
+ observability: "observability";
4153
4139
  featureFlags: "featureFlags";
4154
4140
  integrations: "integrations";
4155
4141
  ecommerce: "ecommerce";
4156
4142
  analytics: "analytics";
4157
4143
  cms: "cms";
4144
+ caching: "caching";
4145
+ rateLimit: "rateLimit";
4146
+ botProtection: "botProtection";
4158
4147
  i18n: "i18n";
4148
+ search: "search";
4149
+ vectorDb: "vectorDb";
4150
+ fileStorage: "fileStorage";
4151
+ config: "config";
4152
+ graphql: "graphql";
4153
+ deploy: "deploy";
4154
+ migrations: "migrations";
4155
+ navigation: "navigation";
4156
+ ui: "ui";
4157
+ css: "css";
4158
+ storage: "storage";
4159
+ push: "push";
4160
+ ota: "ota";
4161
+ deepLinking: "deepLinking";
4159
4162
  documentation: "documentation";
4160
4163
  codeQuality: "codeQuality";
4161
4164
  appPlatform: "appPlatform";
@@ -4172,20 +4175,17 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4172
4175
  apiGateway: "apiGateway";
4173
4176
  continuousIntegration: "continuousIntegration";
4174
4177
  backendUtilities: "backendUtilities";
4175
- examples: "examples";
4176
4178
  language: "language";
4177
4179
  buildTool: "buildTool";
4178
4180
  cli: "cli";
4179
4181
  errorHandling: "errorHandling";
4180
4182
  httpClient: "httpClient";
4181
4183
  libraries: "libraries";
4182
- config: "config";
4183
4184
  templating: "templating";
4184
4185
  cloudSdk: "cloudSdk";
4185
4186
  data: "data";
4186
4187
  media: "media";
4187
4188
  server: "server";
4188
- packageManager: "packageManager";
4189
4189
  messageQueue: "messageQueue";
4190
4190
  }>;
4191
4191
  toolId: z.ZodString;
@@ -4209,7 +4209,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4209
4209
  }>;
4210
4210
  providedByPartId: z.ZodOptional<z.ZodString>;
4211
4211
  targetPath: z.ZodOptional<z.ZodString>;
4212
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4212
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
4213
4213
  }, z.core.$strip>>>;
4214
4214
  }, z.core.$strip>>;
4215
4215
  declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -4247,13 +4247,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4247
4247
  sequelize: "sequelize";
4248
4248
  }>;
4249
4249
  backend: z.ZodEnum<{
4250
- effect: "effect";
4251
4250
  none: "none";
4252
4251
  hono: "hono";
4253
4252
  express: "express";
4254
4253
  fastify: "fastify";
4255
4254
  elysia: "elysia";
4256
4255
  fets: "fets";
4256
+ effect: "effect";
4257
4257
  nestjs: "nestjs";
4258
4258
  adonisjs: "adonisjs";
4259
4259
  nitro: "nitro";
@@ -4335,8 +4335,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4335
4335
  capacitor: "capacitor";
4336
4336
  }>>;
4337
4337
  examples: z.ZodArray<z.ZodEnum<{
4338
- ai: "ai";
4339
4338
  none: "none";
4339
+ ai: "ai";
4340
4340
  "chat-sdk": "chat-sdk";
4341
4341
  "tanstack-showcase": "tanstack-showcase";
4342
4342
  }>>;
@@ -4451,8 +4451,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4451
4451
  "ai-cli": "ai-cli";
4452
4452
  }>;
4453
4453
  effect: z.ZodEnum<{
4454
- effect: "effect";
4455
4454
  none: "none";
4455
+ effect: "effect";
4456
4456
  "effect-full": "effect-full";
4457
4457
  }>;
4458
4458
  stateManagement: z.ZodEnum<{
@@ -4587,8 +4587,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4587
4587
  "geist-mono": "geist-mono";
4588
4588
  }>>;
4589
4589
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
4590
- default: "default";
4591
4590
  none: "none";
4591
+ default: "default";
4592
4592
  small: "small";
4593
4593
  medium: "medium";
4594
4594
  large: "large";
@@ -4736,9 +4736,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4736
4736
  }>;
4737
4737
  mobileUI: z.ZodEnum<{
4738
4738
  none: "none";
4739
+ uniwind: "uniwind";
4739
4740
  tamagui: "tamagui";
4740
4741
  "gluestack-ui": "gluestack-ui";
4741
- uniwind: "uniwind";
4742
4742
  unistyles: "unistyles";
4743
4743
  }>;
4744
4744
  mobileStorage: z.ZodEnum<{
@@ -4854,12 +4854,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4854
4854
  ratatui: "ratatui";
4855
4855
  }>;
4856
4856
  rustLibraries: z.ZodArray<z.ZodEnum<{
4857
- config: "config";
4858
4857
  none: "none";
4859
4858
  serde: "serde";
4860
4859
  uuid: "uuid";
4861
4860
  chrono: "chrono";
4862
4861
  reqwest: "reqwest";
4862
+ config: "config";
4863
4863
  dashmap: "dashmap";
4864
4864
  "parking-lot": "parking-lot";
4865
4865
  secrecy: "secrecy";
@@ -5471,51 +5471,54 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5471
5471
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
5472
5472
  id: z.ZodString;
5473
5473
  role: z.ZodEnum<{
5474
- push: "push";
5474
+ effect: "effect";
5475
+ ai: "ai";
5475
5476
  frontend: "frontend";
5476
5477
  backend: "backend";
5477
5478
  mobile: "mobile";
5478
5479
  database: "database";
5479
- api: "api";
5480
- graphql: "graphql";
5481
5480
  orm: "orm";
5482
5481
  auth: "auth";
5483
- runtime: "runtime";
5484
- deploy: "deploy";
5482
+ payments: "payments";
5483
+ examples: "examples";
5484
+ packageManager: "packageManager";
5485
5485
  dbSetup: "dbSetup";
5486
- migrations: "migrations";
5487
- realtime: "realtime";
5488
- navigation: "navigation";
5489
- caching: "caching";
5490
- observability: "observability";
5491
- email: "email";
5492
- search: "search";
5493
- vectorDb: "vectorDb";
5494
- fileStorage: "fileStorage";
5495
- jobQueue: "jobQueue";
5496
- rateLimit: "rateLimit";
5497
- botProtection: "botProtection";
5498
- testing: "testing";
5486
+ runtime: "runtime";
5487
+ api: "api";
5499
5488
  stateManagement: "stateManagement";
5500
5489
  forms: "forms";
5490
+ testing: "testing";
5491
+ email: "email";
5492
+ validation: "validation";
5493
+ realtime: "realtime";
5494
+ jobQueue: "jobQueue";
5501
5495
  animation: "animation";
5502
5496
  fileUpload: "fileUpload";
5503
- validation: "validation";
5504
- effect: "effect";
5505
- ui: "ui";
5506
- css: "css";
5507
- storage: "storage";
5508
- ota: "ota";
5509
- deepLinking: "deepLinking";
5510
- ai: "ai";
5511
- payments: "payments";
5512
5497
  logging: "logging";
5498
+ observability: "observability";
5513
5499
  featureFlags: "featureFlags";
5514
5500
  integrations: "integrations";
5515
5501
  ecommerce: "ecommerce";
5516
5502
  analytics: "analytics";
5517
5503
  cms: "cms";
5504
+ caching: "caching";
5505
+ rateLimit: "rateLimit";
5506
+ botProtection: "botProtection";
5518
5507
  i18n: "i18n";
5508
+ search: "search";
5509
+ vectorDb: "vectorDb";
5510
+ fileStorage: "fileStorage";
5511
+ config: "config";
5512
+ graphql: "graphql";
5513
+ deploy: "deploy";
5514
+ migrations: "migrations";
5515
+ navigation: "navigation";
5516
+ ui: "ui";
5517
+ css: "css";
5518
+ storage: "storage";
5519
+ push: "push";
5520
+ ota: "ota";
5521
+ deepLinking: "deepLinking";
5519
5522
  documentation: "documentation";
5520
5523
  codeQuality: "codeQuality";
5521
5524
  appPlatform: "appPlatform";
@@ -5532,20 +5535,17 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5532
5535
  apiGateway: "apiGateway";
5533
5536
  continuousIntegration: "continuousIntegration";
5534
5537
  backendUtilities: "backendUtilities";
5535
- examples: "examples";
5536
5538
  language: "language";
5537
5539
  buildTool: "buildTool";
5538
5540
  cli: "cli";
5539
5541
  errorHandling: "errorHandling";
5540
5542
  httpClient: "httpClient";
5541
5543
  libraries: "libraries";
5542
- config: "config";
5543
5544
  templating: "templating";
5544
5545
  cloudSdk: "cloudSdk";
5545
5546
  data: "data";
5546
5547
  media: "media";
5547
5548
  server: "server";
5548
- packageManager: "packageManager";
5549
5549
  messageQueue: "messageQueue";
5550
5550
  }>;
5551
5551
  toolId: z.ZodString;
@@ -5569,7 +5569,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5569
5569
  }>;
5570
5570
  providedByPartId: z.ZodOptional<z.ZodString>;
5571
5571
  targetPath: z.ZodOptional<z.ZodString>;
5572
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5572
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
5573
5573
  }, z.core.$strip>>>;
5574
5574
  }, z.core.$strip>>;
5575
5575
  declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -5608,13 +5608,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5608
5608
  sequelize: "sequelize";
5609
5609
  }>;
5610
5610
  backend: z.ZodEnum<{
5611
- effect: "effect";
5612
5611
  none: "none";
5613
5612
  hono: "hono";
5614
5613
  express: "express";
5615
5614
  fastify: "fastify";
5616
5615
  elysia: "elysia";
5617
5616
  fets: "fets";
5617
+ effect: "effect";
5618
5618
  nestjs: "nestjs";
5619
5619
  adonisjs: "adonisjs";
5620
5620
  nitro: "nitro";
@@ -5696,8 +5696,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5696
5696
  capacitor: "capacitor";
5697
5697
  }>>;
5698
5698
  examples: z.ZodArray<z.ZodEnum<{
5699
- ai: "ai";
5700
5699
  none: "none";
5700
+ ai: "ai";
5701
5701
  "chat-sdk": "chat-sdk";
5702
5702
  "tanstack-showcase": "tanstack-showcase";
5703
5703
  }>>;
@@ -5814,8 +5814,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5814
5814
  "ai-cli": "ai-cli";
5815
5815
  }>;
5816
5816
  effect: z.ZodEnum<{
5817
- effect: "effect";
5818
5817
  none: "none";
5818
+ effect: "effect";
5819
5819
  "effect-full": "effect-full";
5820
5820
  }>;
5821
5821
  stateManagement: z.ZodEnum<{
@@ -5950,8 +5950,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5950
5950
  "geist-mono": "geist-mono";
5951
5951
  }>>;
5952
5952
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
5953
- default: "default";
5954
5953
  none: "none";
5954
+ default: "default";
5955
5955
  small: "small";
5956
5956
  medium: "medium";
5957
5957
  large: "large";
@@ -6099,9 +6099,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6099
6099
  }>;
6100
6100
  mobileUI: z.ZodEnum<{
6101
6101
  none: "none";
6102
+ uniwind: "uniwind";
6102
6103
  tamagui: "tamagui";
6103
6104
  "gluestack-ui": "gluestack-ui";
6104
- uniwind: "uniwind";
6105
6105
  unistyles: "unistyles";
6106
6106
  }>;
6107
6107
  mobileStorage: z.ZodEnum<{
@@ -6217,12 +6217,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6217
6217
  ratatui: "ratatui";
6218
6218
  }>;
6219
6219
  rustLibraries: z.ZodArray<z.ZodEnum<{
6220
- config: "config";
6221
6220
  none: "none";
6222
6221
  serde: "serde";
6223
6222
  uuid: "uuid";
6224
6223
  chrono: "chrono";
6225
6224
  reqwest: "reqwest";
6225
+ config: "config";
6226
6226
  dashmap: "dashmap";
6227
6227
  "parking-lot": "parking-lot";
6228
6228
  secrecy: "secrecy";
@@ -6834,51 +6834,54 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6834
6834
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
6835
6835
  id: z.ZodString;
6836
6836
  role: z.ZodEnum<{
6837
- push: "push";
6838
- frontend: "frontend";
6837
+ effect: "effect";
6838
+ ai: "ai";
6839
+ frontend: "frontend";
6839
6840
  backend: "backend";
6840
6841
  mobile: "mobile";
6841
6842
  database: "database";
6842
- api: "api";
6843
- graphql: "graphql";
6844
6843
  orm: "orm";
6845
6844
  auth: "auth";
6846
- runtime: "runtime";
6847
- deploy: "deploy";
6845
+ payments: "payments";
6846
+ examples: "examples";
6847
+ packageManager: "packageManager";
6848
6848
  dbSetup: "dbSetup";
6849
- migrations: "migrations";
6850
- realtime: "realtime";
6851
- navigation: "navigation";
6852
- caching: "caching";
6853
- observability: "observability";
6854
- email: "email";
6855
- search: "search";
6856
- vectorDb: "vectorDb";
6857
- fileStorage: "fileStorage";
6858
- jobQueue: "jobQueue";
6859
- rateLimit: "rateLimit";
6860
- botProtection: "botProtection";
6861
- testing: "testing";
6849
+ runtime: "runtime";
6850
+ api: "api";
6862
6851
  stateManagement: "stateManagement";
6863
6852
  forms: "forms";
6853
+ testing: "testing";
6854
+ email: "email";
6855
+ validation: "validation";
6856
+ realtime: "realtime";
6857
+ jobQueue: "jobQueue";
6864
6858
  animation: "animation";
6865
6859
  fileUpload: "fileUpload";
6866
- validation: "validation";
6867
- effect: "effect";
6868
- ui: "ui";
6869
- css: "css";
6870
- storage: "storage";
6871
- ota: "ota";
6872
- deepLinking: "deepLinking";
6873
- ai: "ai";
6874
- payments: "payments";
6875
6860
  logging: "logging";
6861
+ observability: "observability";
6876
6862
  featureFlags: "featureFlags";
6877
6863
  integrations: "integrations";
6878
6864
  ecommerce: "ecommerce";
6879
6865
  analytics: "analytics";
6880
6866
  cms: "cms";
6867
+ caching: "caching";
6868
+ rateLimit: "rateLimit";
6869
+ botProtection: "botProtection";
6881
6870
  i18n: "i18n";
6871
+ search: "search";
6872
+ vectorDb: "vectorDb";
6873
+ fileStorage: "fileStorage";
6874
+ config: "config";
6875
+ graphql: "graphql";
6876
+ deploy: "deploy";
6877
+ migrations: "migrations";
6878
+ navigation: "navigation";
6879
+ ui: "ui";
6880
+ css: "css";
6881
+ storage: "storage";
6882
+ push: "push";
6883
+ ota: "ota";
6884
+ deepLinking: "deepLinking";
6882
6885
  documentation: "documentation";
6883
6886
  codeQuality: "codeQuality";
6884
6887
  appPlatform: "appPlatform";
@@ -6895,20 +6898,17 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6895
6898
  apiGateway: "apiGateway";
6896
6899
  continuousIntegration: "continuousIntegration";
6897
6900
  backendUtilities: "backendUtilities";
6898
- examples: "examples";
6899
6901
  language: "language";
6900
6902
  buildTool: "buildTool";
6901
6903
  cli: "cli";
6902
6904
  errorHandling: "errorHandling";
6903
6905
  httpClient: "httpClient";
6904
6906
  libraries: "libraries";
6905
- config: "config";
6906
6907
  templating: "templating";
6907
6908
  cloudSdk: "cloudSdk";
6908
6909
  data: "data";
6909
6910
  media: "media";
6910
6911
  server: "server";
6911
- packageManager: "packageManager";
6912
6912
  messageQueue: "messageQueue";
6913
6913
  }>;
6914
6914
  toolId: z.ZodString;
@@ -6932,7 +6932,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6932
6932
  }>;
6933
6933
  providedByPartId: z.ZodOptional<z.ZodString>;
6934
6934
  targetPath: z.ZodOptional<z.ZodString>;
6935
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6935
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
6936
6936
  }, z.core.$strip>>>;
6937
6937
  }, z.core.$strip>;
6938
6938
  reproducibleCommand: z.ZodString;
@@ -7312,13 +7312,13 @@ declare function getAllJsonSchemas(): {
7312
7312
  sequelize: "sequelize";
7313
7313
  }>>;
7314
7314
  backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7315
- effect: "effect";
7316
7315
  none: "none";
7317
7316
  hono: "hono";
7318
7317
  express: "express";
7319
7318
  fastify: "fastify";
7320
7319
  elysia: "elysia";
7321
7320
  fets: "fets";
7321
+ effect: "effect";
7322
7322
  nestjs: "nestjs";
7323
7323
  adonisjs: "adonisjs";
7324
7324
  nitro: "nitro";
@@ -7400,8 +7400,8 @@ declare function getAllJsonSchemas(): {
7400
7400
  capacitor: "capacitor";
7401
7401
  }>>;
7402
7402
  examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7403
- ai: "ai";
7404
7403
  none: "none";
7404
+ ai: "ai";
7405
7405
  "chat-sdk": "chat-sdk";
7406
7406
  "tanstack-showcase": "tanstack-showcase";
7407
7407
  }>>;
@@ -7484,18 +7484,18 @@ declare function getAllJsonSchemas(): {
7484
7484
  vercel: "vercel";
7485
7485
  }>>;
7486
7486
  directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7487
- error: "error";
7488
7487
  merge: "merge";
7489
7488
  overwrite: "overwrite";
7490
7489
  increment: "increment";
7490
+ error: "error";
7491
7491
  }>>;
7492
7492
  template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7493
7493
  none: "none";
7494
- uniwind: "uniwind";
7495
7494
  mern: "mern";
7496
7495
  pern: "pern";
7497
7496
  t3: "t3";
7498
7497
  saas: "saas";
7498
+ uniwind: "uniwind";
7499
7499
  }>>;
7500
7500
  goWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7501
7501
  none: "none";
@@ -7846,17 +7846,17 @@ declare function getAllJsonSchemas(): {
7846
7846
  projectName: z.ZodOptional<z.ZodString>;
7847
7847
  template: z.ZodOptional<z.ZodEnum<{
7848
7848
  none: "none";
7849
- uniwind: "uniwind";
7850
7849
  mern: "mern";
7851
7850
  pern: "pern";
7852
7851
  t3: "t3";
7853
7852
  saas: "saas";
7853
+ uniwind: "uniwind";
7854
7854
  }>>;
7855
7855
  shape: z.ZodOptional<z.ZodEnum<{
7856
+ fullstack: "fullstack";
7856
7857
  frontend: "frontend";
7857
7858
  backend: "backend";
7858
7859
  mobile: "mobile";
7859
- fullstack: "fullstack";
7860
7860
  }>>;
7861
7861
  yes: z.ZodOptional<z.ZodBoolean>;
7862
7862
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -7988,8 +7988,8 @@ declare function getAllJsonSchemas(): {
7988
7988
  capacitor: "capacitor";
7989
7989
  }>>>;
7990
7990
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
7991
- ai: "ai";
7992
7991
  none: "none";
7992
+ ai: "ai";
7993
7993
  "chat-sdk": "chat-sdk";
7994
7994
  "tanstack-showcase": "tanstack-showcase";
7995
7995
  }>>>;
@@ -8023,13 +8023,13 @@ declare function getAllJsonSchemas(): {
8023
8023
  docker: "docker";
8024
8024
  }>>;
8025
8025
  backend: z.ZodOptional<z.ZodEnum<{
8026
- effect: "effect";
8027
8026
  none: "none";
8028
8027
  hono: "hono";
8029
8028
  express: "express";
8030
8029
  fastify: "fastify";
8031
8030
  elysia: "elysia";
8032
8031
  fets: "fets";
8032
+ effect: "effect";
8033
8033
  nestjs: "nestjs";
8034
8034
  adonisjs: "adonisjs";
8035
8035
  nitro: "nitro";
@@ -8076,10 +8076,10 @@ declare function getAllJsonSchemas(): {
8076
8076
  vercel: "vercel";
8077
8077
  }>>;
8078
8078
  directoryConflict: z.ZodOptional<z.ZodEnum<{
8079
- error: "error";
8080
8079
  merge: "merge";
8081
8080
  overwrite: "overwrite";
8082
8081
  increment: "increment";
8082
+ error: "error";
8083
8083
  }>>;
8084
8084
  renderTitle: z.ZodOptional<z.ZodBoolean>;
8085
8085
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -8108,8 +8108,8 @@ declare function getAllJsonSchemas(): {
8108
8108
  "ai-cli": "ai-cli";
8109
8109
  }>>;
8110
8110
  effect: z.ZodOptional<z.ZodEnum<{
8111
- effect: "effect";
8112
8111
  none: "none";
8112
+ effect: "effect";
8113
8113
  "effect-full": "effect-full";
8114
8114
  }>>;
8115
8115
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -8244,8 +8244,8 @@ declare function getAllJsonSchemas(): {
8244
8244
  "geist-mono": "geist-mono";
8245
8245
  }>>;
8246
8246
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
8247
- default: "default";
8248
8247
  none: "none";
8248
+ default: "default";
8249
8249
  small: "small";
8250
8250
  medium: "medium";
8251
8251
  large: "large";
@@ -8393,9 +8393,9 @@ declare function getAllJsonSchemas(): {
8393
8393
  }>>;
8394
8394
  mobileUI: z.ZodOptional<z.ZodEnum<{
8395
8395
  none: "none";
8396
+ uniwind: "uniwind";
8396
8397
  tamagui: "tamagui";
8397
8398
  "gluestack-ui": "gluestack-ui";
8398
- uniwind: "uniwind";
8399
8399
  unistyles: "unistyles";
8400
8400
  }>>;
8401
8401
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -8511,12 +8511,12 @@ declare function getAllJsonSchemas(): {
8511
8511
  ratatui: "ratatui";
8512
8512
  }>>;
8513
8513
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8514
- config: "config";
8515
8514
  none: "none";
8516
8515
  serde: "serde";
8517
8516
  uuid: "uuid";
8518
8517
  chrono: "chrono";
8519
8518
  reqwest: "reqwest";
8519
+ config: "config";
8520
8520
  dashmap: "dashmap";
8521
8521
  "parking-lot": "parking-lot";
8522
8522
  secrecy: "secrecy";
@@ -9161,13 +9161,13 @@ declare function getAllJsonSchemas(): {
9161
9161
  sequelize: "sequelize";
9162
9162
  }>;
9163
9163
  backend: z.ZodEnum<{
9164
- effect: "effect";
9165
9164
  none: "none";
9166
9165
  hono: "hono";
9167
9166
  express: "express";
9168
9167
  fastify: "fastify";
9169
9168
  elysia: "elysia";
9170
9169
  fets: "fets";
9170
+ effect: "effect";
9171
9171
  nestjs: "nestjs";
9172
9172
  adonisjs: "adonisjs";
9173
9173
  nitro: "nitro";
@@ -9249,8 +9249,8 @@ declare function getAllJsonSchemas(): {
9249
9249
  capacitor: "capacitor";
9250
9250
  }>>;
9251
9251
  examples: z.ZodArray<z.ZodEnum<{
9252
- ai: "ai";
9253
9252
  none: "none";
9253
+ ai: "ai";
9254
9254
  "chat-sdk": "chat-sdk";
9255
9255
  "tanstack-showcase": "tanstack-showcase";
9256
9256
  }>>;
@@ -9367,8 +9367,8 @@ declare function getAllJsonSchemas(): {
9367
9367
  "ai-cli": "ai-cli";
9368
9368
  }>;
9369
9369
  effect: z.ZodEnum<{
9370
- effect: "effect";
9371
9370
  none: "none";
9371
+ effect: "effect";
9372
9372
  "effect-full": "effect-full";
9373
9373
  }>;
9374
9374
  stateManagement: z.ZodEnum<{
@@ -9503,8 +9503,8 @@ declare function getAllJsonSchemas(): {
9503
9503
  "geist-mono": "geist-mono";
9504
9504
  }>>;
9505
9505
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
9506
- default: "default";
9507
9506
  none: "none";
9507
+ default: "default";
9508
9508
  small: "small";
9509
9509
  medium: "medium";
9510
9510
  large: "large";
@@ -9652,9 +9652,9 @@ declare function getAllJsonSchemas(): {
9652
9652
  }>;
9653
9653
  mobileUI: z.ZodEnum<{
9654
9654
  none: "none";
9655
+ uniwind: "uniwind";
9655
9656
  tamagui: "tamagui";
9656
9657
  "gluestack-ui": "gluestack-ui";
9657
- uniwind: "uniwind";
9658
9658
  unistyles: "unistyles";
9659
9659
  }>;
9660
9660
  mobileStorage: z.ZodEnum<{
@@ -9770,12 +9770,12 @@ declare function getAllJsonSchemas(): {
9770
9770
  ratatui: "ratatui";
9771
9771
  }>;
9772
9772
  rustLibraries: z.ZodArray<z.ZodEnum<{
9773
- config: "config";
9774
9773
  none: "none";
9775
9774
  serde: "serde";
9776
9775
  uuid: "uuid";
9777
9776
  chrono: "chrono";
9778
9777
  reqwest: "reqwest";
9778
+ config: "config";
9779
9779
  dashmap: "dashmap";
9780
9780
  "parking-lot": "parking-lot";
9781
9781
  secrecy: "secrecy";
@@ -10387,51 +10387,54 @@ declare function getAllJsonSchemas(): {
10387
10387
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
10388
10388
  id: z.ZodString;
10389
10389
  role: z.ZodEnum<{
10390
- push: "push";
10390
+ effect: "effect";
10391
+ ai: "ai";
10391
10392
  frontend: "frontend";
10392
10393
  backend: "backend";
10393
10394
  mobile: "mobile";
10394
10395
  database: "database";
10395
- api: "api";
10396
- graphql: "graphql";
10397
10396
  orm: "orm";
10398
10397
  auth: "auth";
10399
- runtime: "runtime";
10400
- deploy: "deploy";
10398
+ payments: "payments";
10399
+ examples: "examples";
10400
+ packageManager: "packageManager";
10401
10401
  dbSetup: "dbSetup";
10402
- migrations: "migrations";
10403
- realtime: "realtime";
10404
- navigation: "navigation";
10405
- caching: "caching";
10406
- observability: "observability";
10407
- email: "email";
10408
- search: "search";
10409
- vectorDb: "vectorDb";
10410
- fileStorage: "fileStorage";
10411
- jobQueue: "jobQueue";
10412
- rateLimit: "rateLimit";
10413
- botProtection: "botProtection";
10414
- testing: "testing";
10402
+ runtime: "runtime";
10403
+ api: "api";
10415
10404
  stateManagement: "stateManagement";
10416
10405
  forms: "forms";
10406
+ testing: "testing";
10407
+ email: "email";
10408
+ validation: "validation";
10409
+ realtime: "realtime";
10410
+ jobQueue: "jobQueue";
10417
10411
  animation: "animation";
10418
10412
  fileUpload: "fileUpload";
10419
- validation: "validation";
10420
- effect: "effect";
10421
- ui: "ui";
10422
- css: "css";
10423
- storage: "storage";
10424
- ota: "ota";
10425
- deepLinking: "deepLinking";
10426
- ai: "ai";
10427
- payments: "payments";
10428
10413
  logging: "logging";
10414
+ observability: "observability";
10429
10415
  featureFlags: "featureFlags";
10430
10416
  integrations: "integrations";
10431
10417
  ecommerce: "ecommerce";
10432
10418
  analytics: "analytics";
10433
10419
  cms: "cms";
10420
+ caching: "caching";
10421
+ rateLimit: "rateLimit";
10422
+ botProtection: "botProtection";
10434
10423
  i18n: "i18n";
10424
+ search: "search";
10425
+ vectorDb: "vectorDb";
10426
+ fileStorage: "fileStorage";
10427
+ config: "config";
10428
+ graphql: "graphql";
10429
+ deploy: "deploy";
10430
+ migrations: "migrations";
10431
+ navigation: "navigation";
10432
+ ui: "ui";
10433
+ css: "css";
10434
+ storage: "storage";
10435
+ push: "push";
10436
+ ota: "ota";
10437
+ deepLinking: "deepLinking";
10435
10438
  documentation: "documentation";
10436
10439
  codeQuality: "codeQuality";
10437
10440
  appPlatform: "appPlatform";
@@ -10448,20 +10451,17 @@ declare function getAllJsonSchemas(): {
10448
10451
  apiGateway: "apiGateway";
10449
10452
  continuousIntegration: "continuousIntegration";
10450
10453
  backendUtilities: "backendUtilities";
10451
- examples: "examples";
10452
10454
  language: "language";
10453
10455
  buildTool: "buildTool";
10454
10456
  cli: "cli";
10455
10457
  errorHandling: "errorHandling";
10456
10458
  httpClient: "httpClient";
10457
10459
  libraries: "libraries";
10458
- config: "config";
10459
10460
  templating: "templating";
10460
10461
  cloudSdk: "cloudSdk";
10461
10462
  data: "data";
10462
10463
  media: "media";
10463
10464
  server: "server";
10464
- packageManager: "packageManager";
10465
10465
  messageQueue: "messageQueue";
10466
10466
  }>;
10467
10467
  toolId: z.ZodString;
@@ -10485,7 +10485,7 @@ declare function getAllJsonSchemas(): {
10485
10485
  }>;
10486
10486
  providedByPartId: z.ZodOptional<z.ZodString>;
10487
10487
  targetPath: z.ZodOptional<z.ZodString>;
10488
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
10488
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
10489
10489
  }, z.core.$strip>>>;
10490
10490
  }, z.core.$strip>>;
10491
10491
  betterFullstackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -10523,13 +10523,13 @@ declare function getAllJsonSchemas(): {
10523
10523
  sequelize: "sequelize";
10524
10524
  }>;
10525
10525
  backend: z.ZodEnum<{
10526
- effect: "effect";
10527
10526
  none: "none";
10528
10527
  hono: "hono";
10529
10528
  express: "express";
10530
10529
  fastify: "fastify";
10531
10530
  elysia: "elysia";
10532
10531
  fets: "fets";
10532
+ effect: "effect";
10533
10533
  nestjs: "nestjs";
10534
10534
  adonisjs: "adonisjs";
10535
10535
  nitro: "nitro";
@@ -10611,8 +10611,8 @@ declare function getAllJsonSchemas(): {
10611
10611
  capacitor: "capacitor";
10612
10612
  }>>;
10613
10613
  examples: z.ZodArray<z.ZodEnum<{
10614
- ai: "ai";
10615
10614
  none: "none";
10615
+ ai: "ai";
10616
10616
  "chat-sdk": "chat-sdk";
10617
10617
  "tanstack-showcase": "tanstack-showcase";
10618
10618
  }>>;
@@ -10727,8 +10727,8 @@ declare function getAllJsonSchemas(): {
10727
10727
  "ai-cli": "ai-cli";
10728
10728
  }>;
10729
10729
  effect: z.ZodEnum<{
10730
- effect: "effect";
10731
10730
  none: "none";
10731
+ effect: "effect";
10732
10732
  "effect-full": "effect-full";
10733
10733
  }>;
10734
10734
  stateManagement: z.ZodEnum<{
@@ -10863,8 +10863,8 @@ declare function getAllJsonSchemas(): {
10863
10863
  "geist-mono": "geist-mono";
10864
10864
  }>>;
10865
10865
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
10866
- default: "default";
10867
10866
  none: "none";
10867
+ default: "default";
10868
10868
  small: "small";
10869
10869
  medium: "medium";
10870
10870
  large: "large";
@@ -11012,9 +11012,9 @@ declare function getAllJsonSchemas(): {
11012
11012
  }>;
11013
11013
  mobileUI: z.ZodEnum<{
11014
11014
  none: "none";
11015
+ uniwind: "uniwind";
11015
11016
  tamagui: "tamagui";
11016
11017
  "gluestack-ui": "gluestack-ui";
11017
- uniwind: "uniwind";
11018
11018
  unistyles: "unistyles";
11019
11019
  }>;
11020
11020
  mobileStorage: z.ZodEnum<{
@@ -11130,12 +11130,12 @@ declare function getAllJsonSchemas(): {
11130
11130
  ratatui: "ratatui";
11131
11131
  }>;
11132
11132
  rustLibraries: z.ZodArray<z.ZodEnum<{
11133
- config: "config";
11134
11133
  none: "none";
11135
11134
  serde: "serde";
11136
11135
  uuid: "uuid";
11137
11136
  chrono: "chrono";
11138
11137
  reqwest: "reqwest";
11138
+ config: "config";
11139
11139
  dashmap: "dashmap";
11140
11140
  "parking-lot": "parking-lot";
11141
11141
  secrecy: "secrecy";
@@ -11747,51 +11747,54 @@ declare function getAllJsonSchemas(): {
11747
11747
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
11748
11748
  id: z.ZodString;
11749
11749
  role: z.ZodEnum<{
11750
- push: "push";
11750
+ effect: "effect";
11751
+ ai: "ai";
11751
11752
  frontend: "frontend";
11752
11753
  backend: "backend";
11753
11754
  mobile: "mobile";
11754
11755
  database: "database";
11755
- api: "api";
11756
- graphql: "graphql";
11757
11756
  orm: "orm";
11758
11757
  auth: "auth";
11759
- runtime: "runtime";
11760
- deploy: "deploy";
11758
+ payments: "payments";
11759
+ examples: "examples";
11760
+ packageManager: "packageManager";
11761
11761
  dbSetup: "dbSetup";
11762
- migrations: "migrations";
11763
- realtime: "realtime";
11764
- navigation: "navigation";
11765
- caching: "caching";
11766
- observability: "observability";
11767
- email: "email";
11768
- search: "search";
11769
- vectorDb: "vectorDb";
11770
- fileStorage: "fileStorage";
11771
- jobQueue: "jobQueue";
11772
- rateLimit: "rateLimit";
11773
- botProtection: "botProtection";
11774
- testing: "testing";
11762
+ runtime: "runtime";
11763
+ api: "api";
11775
11764
  stateManagement: "stateManagement";
11776
11765
  forms: "forms";
11766
+ testing: "testing";
11767
+ email: "email";
11768
+ validation: "validation";
11769
+ realtime: "realtime";
11770
+ jobQueue: "jobQueue";
11777
11771
  animation: "animation";
11778
11772
  fileUpload: "fileUpload";
11779
- validation: "validation";
11780
- effect: "effect";
11781
- ui: "ui";
11782
- css: "css";
11783
- storage: "storage";
11784
- ota: "ota";
11785
- deepLinking: "deepLinking";
11786
- ai: "ai";
11787
- payments: "payments";
11788
11773
  logging: "logging";
11774
+ observability: "observability";
11789
11775
  featureFlags: "featureFlags";
11790
11776
  integrations: "integrations";
11791
11777
  ecommerce: "ecommerce";
11792
11778
  analytics: "analytics";
11793
11779
  cms: "cms";
11780
+ caching: "caching";
11781
+ rateLimit: "rateLimit";
11782
+ botProtection: "botProtection";
11794
11783
  i18n: "i18n";
11784
+ search: "search";
11785
+ vectorDb: "vectorDb";
11786
+ fileStorage: "fileStorage";
11787
+ config: "config";
11788
+ graphql: "graphql";
11789
+ deploy: "deploy";
11790
+ migrations: "migrations";
11791
+ navigation: "navigation";
11792
+ ui: "ui";
11793
+ css: "css";
11794
+ storage: "storage";
11795
+ push: "push";
11796
+ ota: "ota";
11797
+ deepLinking: "deepLinking";
11795
11798
  documentation: "documentation";
11796
11799
  codeQuality: "codeQuality";
11797
11800
  appPlatform: "appPlatform";
@@ -11808,20 +11811,17 @@ declare function getAllJsonSchemas(): {
11808
11811
  apiGateway: "apiGateway";
11809
11812
  continuousIntegration: "continuousIntegration";
11810
11813
  backendUtilities: "backendUtilities";
11811
- examples: "examples";
11812
11814
  language: "language";
11813
11815
  buildTool: "buildTool";
11814
11816
  cli: "cli";
11815
11817
  errorHandling: "errorHandling";
11816
11818
  httpClient: "httpClient";
11817
11819
  libraries: "libraries";
11818
- config: "config";
11819
11820
  templating: "templating";
11820
11821
  cloudSdk: "cloudSdk";
11821
11822
  data: "data";
11822
11823
  media: "media";
11823
11824
  server: "server";
11824
- packageManager: "packageManager";
11825
11825
  messageQueue: "messageQueue";
11826
11826
  }>;
11827
11827
  toolId: z.ZodString;
@@ -11845,7 +11845,7 @@ declare function getAllJsonSchemas(): {
11845
11845
  }>;
11846
11846
  providedByPartId: z.ZodOptional<z.ZodString>;
11847
11847
  targetPath: z.ZodOptional<z.ZodString>;
11848
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11848
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
11849
11849
  }, z.core.$strip>>>;
11850
11850
  }, z.core.$strip>>;
11851
11851
  betterTStackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -11883,13 +11883,13 @@ declare function getAllJsonSchemas(): {
11883
11883
  sequelize: "sequelize";
11884
11884
  }>;
11885
11885
  backend: z.ZodEnum<{
11886
- effect: "effect";
11887
11886
  none: "none";
11888
11887
  hono: "hono";
11889
11888
  express: "express";
11890
11889
  fastify: "fastify";
11891
11890
  elysia: "elysia";
11892
11891
  fets: "fets";
11892
+ effect: "effect";
11893
11893
  nestjs: "nestjs";
11894
11894
  adonisjs: "adonisjs";
11895
11895
  nitro: "nitro";
@@ -11971,8 +11971,8 @@ declare function getAllJsonSchemas(): {
11971
11971
  capacitor: "capacitor";
11972
11972
  }>>;
11973
11973
  examples: z.ZodArray<z.ZodEnum<{
11974
- ai: "ai";
11975
11974
  none: "none";
11975
+ ai: "ai";
11976
11976
  "chat-sdk": "chat-sdk";
11977
11977
  "tanstack-showcase": "tanstack-showcase";
11978
11978
  }>>;
@@ -12087,8 +12087,8 @@ declare function getAllJsonSchemas(): {
12087
12087
  "ai-cli": "ai-cli";
12088
12088
  }>;
12089
12089
  effect: z.ZodEnum<{
12090
- effect: "effect";
12091
12090
  none: "none";
12091
+ effect: "effect";
12092
12092
  "effect-full": "effect-full";
12093
12093
  }>;
12094
12094
  stateManagement: z.ZodEnum<{
@@ -12223,8 +12223,8 @@ declare function getAllJsonSchemas(): {
12223
12223
  "geist-mono": "geist-mono";
12224
12224
  }>>;
12225
12225
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
12226
- default: "default";
12227
12226
  none: "none";
12227
+ default: "default";
12228
12228
  small: "small";
12229
12229
  medium: "medium";
12230
12230
  large: "large";
@@ -12372,9 +12372,9 @@ declare function getAllJsonSchemas(): {
12372
12372
  }>;
12373
12373
  mobileUI: z.ZodEnum<{
12374
12374
  none: "none";
12375
+ uniwind: "uniwind";
12375
12376
  tamagui: "tamagui";
12376
12377
  "gluestack-ui": "gluestack-ui";
12377
- uniwind: "uniwind";
12378
12378
  unistyles: "unistyles";
12379
12379
  }>;
12380
12380
  mobileStorage: z.ZodEnum<{
@@ -12490,12 +12490,12 @@ declare function getAllJsonSchemas(): {
12490
12490
  ratatui: "ratatui";
12491
12491
  }>;
12492
12492
  rustLibraries: z.ZodArray<z.ZodEnum<{
12493
- config: "config";
12494
12493
  none: "none";
12495
12494
  serde: "serde";
12496
12495
  uuid: "uuid";
12497
12496
  chrono: "chrono";
12498
12497
  reqwest: "reqwest";
12498
+ config: "config";
12499
12499
  dashmap: "dashmap";
12500
12500
  "parking-lot": "parking-lot";
12501
12501
  secrecy: "secrecy";
@@ -13107,51 +13107,54 @@ declare function getAllJsonSchemas(): {
13107
13107
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
13108
13108
  id: z.ZodString;
13109
13109
  role: z.ZodEnum<{
13110
- push: "push";
13110
+ effect: "effect";
13111
+ ai: "ai";
13111
13112
  frontend: "frontend";
13112
13113
  backend: "backend";
13113
13114
  mobile: "mobile";
13114
13115
  database: "database";
13115
- api: "api";
13116
- graphql: "graphql";
13117
13116
  orm: "orm";
13118
13117
  auth: "auth";
13119
- runtime: "runtime";
13120
- deploy: "deploy";
13118
+ payments: "payments";
13119
+ examples: "examples";
13120
+ packageManager: "packageManager";
13121
13121
  dbSetup: "dbSetup";
13122
- migrations: "migrations";
13123
- realtime: "realtime";
13124
- navigation: "navigation";
13125
- caching: "caching";
13126
- observability: "observability";
13127
- email: "email";
13128
- search: "search";
13129
- vectorDb: "vectorDb";
13130
- fileStorage: "fileStorage";
13131
- jobQueue: "jobQueue";
13132
- rateLimit: "rateLimit";
13133
- botProtection: "botProtection";
13134
- testing: "testing";
13122
+ runtime: "runtime";
13123
+ api: "api";
13135
13124
  stateManagement: "stateManagement";
13136
13125
  forms: "forms";
13126
+ testing: "testing";
13127
+ email: "email";
13128
+ validation: "validation";
13129
+ realtime: "realtime";
13130
+ jobQueue: "jobQueue";
13137
13131
  animation: "animation";
13138
13132
  fileUpload: "fileUpload";
13139
- validation: "validation";
13140
- effect: "effect";
13141
- ui: "ui";
13142
- css: "css";
13143
- storage: "storage";
13144
- ota: "ota";
13145
- deepLinking: "deepLinking";
13146
- ai: "ai";
13147
- payments: "payments";
13148
13133
  logging: "logging";
13134
+ observability: "observability";
13149
13135
  featureFlags: "featureFlags";
13150
13136
  integrations: "integrations";
13151
13137
  ecommerce: "ecommerce";
13152
13138
  analytics: "analytics";
13153
13139
  cms: "cms";
13140
+ caching: "caching";
13141
+ rateLimit: "rateLimit";
13142
+ botProtection: "botProtection";
13154
13143
  i18n: "i18n";
13144
+ search: "search";
13145
+ vectorDb: "vectorDb";
13146
+ fileStorage: "fileStorage";
13147
+ config: "config";
13148
+ graphql: "graphql";
13149
+ deploy: "deploy";
13150
+ migrations: "migrations";
13151
+ navigation: "navigation";
13152
+ ui: "ui";
13153
+ css: "css";
13154
+ storage: "storage";
13155
+ push: "push";
13156
+ ota: "ota";
13157
+ deepLinking: "deepLinking";
13155
13158
  documentation: "documentation";
13156
13159
  codeQuality: "codeQuality";
13157
13160
  appPlatform: "appPlatform";
@@ -13168,20 +13171,17 @@ declare function getAllJsonSchemas(): {
13168
13171
  apiGateway: "apiGateway";
13169
13172
  continuousIntegration: "continuousIntegration";
13170
13173
  backendUtilities: "backendUtilities";
13171
- examples: "examples";
13172
13174
  language: "language";
13173
13175
  buildTool: "buildTool";
13174
13176
  cli: "cli";
13175
13177
  errorHandling: "errorHandling";
13176
13178
  httpClient: "httpClient";
13177
13179
  libraries: "libraries";
13178
- config: "config";
13179
13180
  templating: "templating";
13180
13181
  cloudSdk: "cloudSdk";
13181
13182
  data: "data";
13182
13183
  media: "media";
13183
13184
  server: "server";
13184
- packageManager: "packageManager";
13185
13185
  messageQueue: "messageQueue";
13186
13186
  }>;
13187
13187
  toolId: z.ZodString;
@@ -13205,7 +13205,7 @@ declare function getAllJsonSchemas(): {
13205
13205
  }>;
13206
13206
  providedByPartId: z.ZodOptional<z.ZodString>;
13207
13207
  targetPath: z.ZodOptional<z.ZodString>;
13208
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
13208
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
13209
13209
  }, z.core.$strip>>>;
13210
13210
  }, z.core.$strip>>;
13211
13211
  initResult: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
@@ -13244,13 +13244,13 @@ declare function getAllJsonSchemas(): {
13244
13244
  sequelize: "sequelize";
13245
13245
  }>;
13246
13246
  backend: z.ZodEnum<{
13247
- effect: "effect";
13248
13247
  none: "none";
13249
13248
  hono: "hono";
13250
13249
  express: "express";
13251
13250
  fastify: "fastify";
13252
13251
  elysia: "elysia";
13253
13252
  fets: "fets";
13253
+ effect: "effect";
13254
13254
  nestjs: "nestjs";
13255
13255
  adonisjs: "adonisjs";
13256
13256
  nitro: "nitro";
@@ -13332,8 +13332,8 @@ declare function getAllJsonSchemas(): {
13332
13332
  capacitor: "capacitor";
13333
13333
  }>>;
13334
13334
  examples: z.ZodArray<z.ZodEnum<{
13335
- ai: "ai";
13336
13335
  none: "none";
13336
+ ai: "ai";
13337
13337
  "chat-sdk": "chat-sdk";
13338
13338
  "tanstack-showcase": "tanstack-showcase";
13339
13339
  }>>;
@@ -13450,8 +13450,8 @@ declare function getAllJsonSchemas(): {
13450
13450
  "ai-cli": "ai-cli";
13451
13451
  }>;
13452
13452
  effect: z.ZodEnum<{
13453
- effect: "effect";
13454
13453
  none: "none";
13454
+ effect: "effect";
13455
13455
  "effect-full": "effect-full";
13456
13456
  }>;
13457
13457
  stateManagement: z.ZodEnum<{
@@ -13586,8 +13586,8 @@ declare function getAllJsonSchemas(): {
13586
13586
  "geist-mono": "geist-mono";
13587
13587
  }>>;
13588
13588
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
13589
- default: "default";
13590
13589
  none: "none";
13590
+ default: "default";
13591
13591
  small: "small";
13592
13592
  medium: "medium";
13593
13593
  large: "large";
@@ -13735,9 +13735,9 @@ declare function getAllJsonSchemas(): {
13735
13735
  }>;
13736
13736
  mobileUI: z.ZodEnum<{
13737
13737
  none: "none";
13738
+ uniwind: "uniwind";
13738
13739
  tamagui: "tamagui";
13739
13740
  "gluestack-ui": "gluestack-ui";
13740
- uniwind: "uniwind";
13741
13741
  unistyles: "unistyles";
13742
13742
  }>;
13743
13743
  mobileStorage: z.ZodEnum<{
@@ -13853,12 +13853,12 @@ declare function getAllJsonSchemas(): {
13853
13853
  ratatui: "ratatui";
13854
13854
  }>;
13855
13855
  rustLibraries: z.ZodArray<z.ZodEnum<{
13856
- config: "config";
13857
13856
  none: "none";
13858
13857
  serde: "serde";
13859
13858
  uuid: "uuid";
13860
13859
  chrono: "chrono";
13861
13860
  reqwest: "reqwest";
13861
+ config: "config";
13862
13862
  dashmap: "dashmap";
13863
13863
  "parking-lot": "parking-lot";
13864
13864
  secrecy: "secrecy";
@@ -14470,51 +14470,54 @@ declare function getAllJsonSchemas(): {
14470
14470
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
14471
14471
  id: z.ZodString;
14472
14472
  role: z.ZodEnum<{
14473
- push: "push";
14473
+ effect: "effect";
14474
+ ai: "ai";
14474
14475
  frontend: "frontend";
14475
14476
  backend: "backend";
14476
14477
  mobile: "mobile";
14477
14478
  database: "database";
14478
- api: "api";
14479
- graphql: "graphql";
14480
14479
  orm: "orm";
14481
14480
  auth: "auth";
14482
- runtime: "runtime";
14483
- deploy: "deploy";
14481
+ payments: "payments";
14482
+ examples: "examples";
14483
+ packageManager: "packageManager";
14484
14484
  dbSetup: "dbSetup";
14485
- migrations: "migrations";
14486
- realtime: "realtime";
14487
- navigation: "navigation";
14488
- caching: "caching";
14489
- observability: "observability";
14490
- email: "email";
14491
- search: "search";
14492
- vectorDb: "vectorDb";
14493
- fileStorage: "fileStorage";
14494
- jobQueue: "jobQueue";
14495
- rateLimit: "rateLimit";
14496
- botProtection: "botProtection";
14497
- testing: "testing";
14485
+ runtime: "runtime";
14486
+ api: "api";
14498
14487
  stateManagement: "stateManagement";
14499
14488
  forms: "forms";
14489
+ testing: "testing";
14490
+ email: "email";
14491
+ validation: "validation";
14492
+ realtime: "realtime";
14493
+ jobQueue: "jobQueue";
14500
14494
  animation: "animation";
14501
14495
  fileUpload: "fileUpload";
14502
- validation: "validation";
14503
- effect: "effect";
14504
- ui: "ui";
14505
- css: "css";
14506
- storage: "storage";
14507
- ota: "ota";
14508
- deepLinking: "deepLinking";
14509
- ai: "ai";
14510
- payments: "payments";
14511
14496
  logging: "logging";
14497
+ observability: "observability";
14512
14498
  featureFlags: "featureFlags";
14513
14499
  integrations: "integrations";
14514
14500
  ecommerce: "ecommerce";
14515
14501
  analytics: "analytics";
14516
14502
  cms: "cms";
14503
+ caching: "caching";
14504
+ rateLimit: "rateLimit";
14505
+ botProtection: "botProtection";
14517
14506
  i18n: "i18n";
14507
+ search: "search";
14508
+ vectorDb: "vectorDb";
14509
+ fileStorage: "fileStorage";
14510
+ config: "config";
14511
+ graphql: "graphql";
14512
+ deploy: "deploy";
14513
+ migrations: "migrations";
14514
+ navigation: "navigation";
14515
+ ui: "ui";
14516
+ css: "css";
14517
+ storage: "storage";
14518
+ push: "push";
14519
+ ota: "ota";
14520
+ deepLinking: "deepLinking";
14518
14521
  documentation: "documentation";
14519
14522
  codeQuality: "codeQuality";
14520
14523
  appPlatform: "appPlatform";
@@ -14531,20 +14534,17 @@ declare function getAllJsonSchemas(): {
14531
14534
  apiGateway: "apiGateway";
14532
14535
  continuousIntegration: "continuousIntegration";
14533
14536
  backendUtilities: "backendUtilities";
14534
- examples: "examples";
14535
14537
  language: "language";
14536
14538
  buildTool: "buildTool";
14537
14539
  cli: "cli";
14538
14540
  errorHandling: "errorHandling";
14539
14541
  httpClient: "httpClient";
14540
14542
  libraries: "libraries";
14541
- config: "config";
14542
14543
  templating: "templating";
14543
14544
  cloudSdk: "cloudSdk";
14544
14545
  data: "data";
14545
14546
  media: "media";
14546
14547
  server: "server";
14547
- packageManager: "packageManager";
14548
14548
  messageQueue: "messageQueue";
14549
14549
  }>;
14550
14550
  toolId: z.ZodString;
@@ -14568,7 +14568,7 @@ declare function getAllJsonSchemas(): {
14568
14568
  }>;
14569
14569
  providedByPartId: z.ZodOptional<z.ZodString>;
14570
14570
  targetPath: z.ZodOptional<z.ZodString>;
14571
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14571
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
14572
14572
  }, z.core.$strip>>>;
14573
14573
  }, z.core.$strip>;
14574
14574
  reproducibleCommand: z.ZodString;