@better-fullstack/types 2.6.4 → 2.6.5

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 (34) hide show
  1. package/dist/{defaults-B8xnKlp6.d.mts → defaults-2siC1CqU.d.mts} +2 -2
  2. package/dist/defaults-2siC1CqU.d.mts.map +1 -0
  3. package/dist/defaults.d.mts +3 -3
  4. package/dist/index.d.mts +31 -30
  5. package/dist/index.d.mts.map +1 -1
  6. package/dist/index.mjs +4 -4
  7. package/dist/json-schema.d.mts +315 -315
  8. package/dist/{schemas-CgldOz7b.d.mts → schemas-CBplkYwu.d.mts} +634 -634
  9. package/dist/schemas-CBplkYwu.d.mts.map +1 -0
  10. package/dist/schemas.d.mts +1 -1
  11. package/dist/{stack-graph-B1N4281Q.mjs → stack-graph-6mobDYUo.mjs} +49 -9
  12. package/dist/stack-graph-6mobDYUo.mjs.map +1 -0
  13. package/dist/{stack-graph-C5tnlzLw.d.mts → stack-graph-CmMyv1fu.d.mts} +2 -2
  14. package/dist/{stack-graph-C5tnlzLw.d.mts.map → stack-graph-CmMyv1fu.d.mts.map} +1 -1
  15. package/dist/stack-graph.d.mts +3 -3
  16. package/dist/stack-graph.mjs +1 -1
  17. package/dist/{stack-translation-DYhRy_yT.mjs → stack-translation-CavXg_BJ.mjs} +102 -11
  18. package/dist/stack-translation-CavXg_BJ.mjs.map +1 -0
  19. package/dist/{stack-translation-vg1Nwe1o.d.mts → stack-translation-DwF-iWnN.d.mts} +8 -4
  20. package/dist/{stack-translation-vg1Nwe1o.d.mts.map → stack-translation-DwF-iWnN.d.mts.map} +1 -1
  21. package/dist/stack-translation.d.mts +5 -5
  22. package/dist/stack-translation.mjs +3 -3
  23. package/dist/{telemetry-C3RfYkCK.mjs → telemetry--r3iKqHM.mjs} +3 -3
  24. package/dist/{telemetry-C3RfYkCK.mjs.map → telemetry--r3iKqHM.mjs.map} +1 -1
  25. package/dist/telemetry.mjs +3 -3
  26. package/dist/{types-BvyHjJEI.d.mts → types-DgPd7BLf.d.mts} +2 -2
  27. package/dist/types-DgPd7BLf.d.mts.map +1 -0
  28. package/dist/types.d.mts +2 -2
  29. package/package.json +1 -1
  30. package/dist/defaults-B8xnKlp6.d.mts.map +0 -1
  31. package/dist/schemas-CgldOz7b.d.mts.map +0 -1
  32. package/dist/stack-graph-B1N4281Q.mjs.map +0 -1
  33. package/dist/stack-translation-DYhRy_yT.mjs.map +0 -1
  34. package/dist/types-BvyHjJEI.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";
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";
@@ -761,9 +761,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
761
761
  }>>;
762
762
  mobileUI: z.ZodOptional<z.ZodEnum<{
763
763
  none: "none";
764
+ uniwind: "uniwind";
764
765
  tamagui: "tamagui";
765
766
  "gluestack-ui": "gluestack-ui";
766
- uniwind: "uniwind";
767
767
  unistyles: "unistyles";
768
768
  }>>;
769
769
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -879,12 +879,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
879
879
  ratatui: "ratatui";
880
880
  }>>;
881
881
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
882
- config: "config";
883
882
  none: "none";
884
883
  serde: "serde";
885
884
  uuid: "uuid";
886
885
  chrono: "chrono";
887
886
  reqwest: "reqwest";
887
+ config: "config";
888
888
  dashmap: "dashmap";
889
889
  "parking-lot": "parking-lot";
890
890
  secrecy: "secrecy";
@@ -1529,13 +1529,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1529
1529
  sequelize: "sequelize";
1530
1530
  }>;
1531
1531
  backend: z.ZodEnum<{
1532
- effect: "effect";
1533
1532
  none: "none";
1534
1533
  hono: "hono";
1535
1534
  express: "express";
1536
1535
  fastify: "fastify";
1537
1536
  elysia: "elysia";
1538
1537
  fets: "fets";
1538
+ effect: "effect";
1539
1539
  nestjs: "nestjs";
1540
1540
  adonisjs: "adonisjs";
1541
1541
  nitro: "nitro";
@@ -1617,8 +1617,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1617
1617
  capacitor: "capacitor";
1618
1618
  }>>;
1619
1619
  examples: z.ZodArray<z.ZodEnum<{
1620
- ai: "ai";
1621
1620
  none: "none";
1621
+ ai: "ai";
1622
1622
  "chat-sdk": "chat-sdk";
1623
1623
  "tanstack-showcase": "tanstack-showcase";
1624
1624
  }>>;
@@ -1735,8 +1735,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1735
1735
  "ai-cli": "ai-cli";
1736
1736
  }>;
1737
1737
  effect: z.ZodEnum<{
1738
- effect: "effect";
1739
1738
  none: "none";
1739
+ effect: "effect";
1740
1740
  "effect-full": "effect-full";
1741
1741
  }>;
1742
1742
  stateManagement: z.ZodEnum<{
@@ -1871,8 +1871,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1871
1871
  "geist-mono": "geist-mono";
1872
1872
  }>>;
1873
1873
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
1874
- default: "default";
1875
1874
  none: "none";
1875
+ default: "default";
1876
1876
  small: "small";
1877
1877
  medium: "medium";
1878
1878
  large: "large";
@@ -2024,9 +2024,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2024
2024
  }>;
2025
2025
  mobileUI: z.ZodEnum<{
2026
2026
  none: "none";
2027
+ uniwind: "uniwind";
2027
2028
  tamagui: "tamagui";
2028
2029
  "gluestack-ui": "gluestack-ui";
2029
- uniwind: "uniwind";
2030
2030
  unistyles: "unistyles";
2031
2031
  }>;
2032
2032
  mobileStorage: z.ZodEnum<{
@@ -2142,12 +2142,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2142
2142
  ratatui: "ratatui";
2143
2143
  }>;
2144
2144
  rustLibraries: z.ZodArray<z.ZodEnum<{
2145
- config: "config";
2146
2145
  none: "none";
2147
2146
  serde: "serde";
2148
2147
  uuid: "uuid";
2149
2148
  chrono: "chrono";
2150
2149
  reqwest: "reqwest";
2150
+ config: "config";
2151
2151
  dashmap: "dashmap";
2152
2152
  "parking-lot": "parking-lot";
2153
2153
  secrecy: "secrecy";
@@ -2759,52 +2759,55 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2759
2759
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2760
2760
  id: z.ZodString;
2761
2761
  role: z.ZodEnum<{
2762
- push: "push";
2762
+ effect: "effect";
2763
+ ai: "ai";
2763
2764
  frontend: "frontend";
2764
2765
  backend: "backend";
2765
2766
  mobile: "mobile";
2766
2767
  database: "database";
2767
- api: "api";
2768
- graphql: "graphql";
2769
2768
  orm: "orm";
2770
2769
  auth: "auth";
2771
- runtime: "runtime";
2772
- deploy: "deploy";
2770
+ payments: "payments";
2771
+ examples: "examples";
2772
+ packageManager: "packageManager";
2773
2773
  dbSetup: "dbSetup";
2774
- migrations: "migrations";
2775
- realtime: "realtime";
2776
- navigation: "navigation";
2777
- caching: "caching";
2778
- observability: "observability";
2779
- email: "email";
2780
- search: "search";
2781
- vectorDb: "vectorDb";
2782
- fileStorage: "fileStorage";
2783
- jobQueue: "jobQueue";
2784
- rateLimit: "rateLimit";
2785
- botProtection: "botProtection";
2786
- testing: "testing";
2774
+ runtime: "runtime";
2775
+ api: "api";
2787
2776
  stateManagement: "stateManagement";
2788
2777
  forms: "forms";
2778
+ testing: "testing";
2779
+ email: "email";
2780
+ validation: "validation";
2781
+ realtime: "realtime";
2782
+ jobQueue: "jobQueue";
2789
2783
  animation: "animation";
2790
2784
  fileUpload: "fileUpload";
2791
- validation: "validation";
2792
- effect: "effect";
2793
- ui: "ui";
2794
- css: "css";
2795
- storage: "storage";
2796
- ota: "ota";
2797
- deepLinking: "deepLinking";
2798
- ai: "ai";
2799
- payments: "payments";
2800
2785
  logging: "logging";
2786
+ observability: "observability";
2801
2787
  featureFlags: "featureFlags";
2802
2788
  integrations: "integrations";
2803
2789
  ecommerce: "ecommerce";
2804
2790
  analytics: "analytics";
2805
2791
  webMcp: "webMcp";
2806
2792
  cms: "cms";
2793
+ caching: "caching";
2794
+ rateLimit: "rateLimit";
2795
+ botProtection: "botProtection";
2807
2796
  i18n: "i18n";
2797
+ search: "search";
2798
+ vectorDb: "vectorDb";
2799
+ fileStorage: "fileStorage";
2800
+ config: "config";
2801
+ graphql: "graphql";
2802
+ deploy: "deploy";
2803
+ migrations: "migrations";
2804
+ navigation: "navigation";
2805
+ ui: "ui";
2806
+ css: "css";
2807
+ storage: "storage";
2808
+ push: "push";
2809
+ ota: "ota";
2810
+ deepLinking: "deepLinking";
2808
2811
  documentation: "documentation";
2809
2812
  codeQuality: "codeQuality";
2810
2813
  appPlatform: "appPlatform";
@@ -2821,20 +2824,17 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
2821
2824
  apiGateway: "apiGateway";
2822
2825
  continuousIntegration: "continuousIntegration";
2823
2826
  backendUtilities: "backendUtilities";
2824
- examples: "examples";
2825
2827
  language: "language";
2826
2828
  buildTool: "buildTool";
2827
2829
  cli: "cli";
2828
2830
  errorHandling: "errorHandling";
2829
2831
  httpClient: "httpClient";
2830
2832
  libraries: "libraries";
2831
- config: "config";
2832
2833
  templating: "templating";
2833
2834
  cloudSdk: "cloudSdk";
2834
2835
  data: "data";
2835
2836
  media: "media";
2836
2837
  server: "server";
2837
- packageManager: "packageManager";
2838
2838
  messageQueue: "messageQueue";
2839
2839
  }>;
2840
2840
  toolId: z.ZodString;
@@ -2896,13 +2896,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2896
2896
  sequelize: "sequelize";
2897
2897
  }>;
2898
2898
  backend: z.ZodEnum<{
2899
- effect: "effect";
2900
2899
  none: "none";
2901
2900
  hono: "hono";
2902
2901
  express: "express";
2903
2902
  fastify: "fastify";
2904
2903
  elysia: "elysia";
2905
2904
  fets: "fets";
2905
+ effect: "effect";
2906
2906
  nestjs: "nestjs";
2907
2907
  adonisjs: "adonisjs";
2908
2908
  nitro: "nitro";
@@ -2984,8 +2984,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
2984
2984
  capacitor: "capacitor";
2985
2985
  }>>;
2986
2986
  examples: z.ZodArray<z.ZodEnum<{
2987
- ai: "ai";
2988
2987
  none: "none";
2988
+ ai: "ai";
2989
2989
  "chat-sdk": "chat-sdk";
2990
2990
  "tanstack-showcase": "tanstack-showcase";
2991
2991
  }>>;
@@ -3100,8 +3100,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3100
3100
  "ai-cli": "ai-cli";
3101
3101
  }>;
3102
3102
  effect: z.ZodEnum<{
3103
- effect: "effect";
3104
3103
  none: "none";
3104
+ effect: "effect";
3105
3105
  "effect-full": "effect-full";
3106
3106
  }>;
3107
3107
  stateManagement: z.ZodEnum<{
@@ -3236,8 +3236,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3236
3236
  "geist-mono": "geist-mono";
3237
3237
  }>>;
3238
3238
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
3239
- default: "default";
3240
3239
  none: "none";
3240
+ default: "default";
3241
3241
  small: "small";
3242
3242
  medium: "medium";
3243
3243
  large: "large";
@@ -3389,9 +3389,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3389
3389
  }>;
3390
3390
  mobileUI: z.ZodEnum<{
3391
3391
  none: "none";
3392
+ uniwind: "uniwind";
3392
3393
  tamagui: "tamagui";
3393
3394
  "gluestack-ui": "gluestack-ui";
3394
- uniwind: "uniwind";
3395
3395
  unistyles: "unistyles";
3396
3396
  }>;
3397
3397
  mobileStorage: z.ZodEnum<{
@@ -3507,12 +3507,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
3507
3507
  ratatui: "ratatui";
3508
3508
  }>;
3509
3509
  rustLibraries: z.ZodArray<z.ZodEnum<{
3510
- config: "config";
3511
3510
  none: "none";
3512
3511
  serde: "serde";
3513
3512
  uuid: "uuid";
3514
3513
  chrono: "chrono";
3515
3514
  reqwest: "reqwest";
3515
+ config: "config";
3516
3516
  dashmap: "dashmap";
3517
3517
  "parking-lot": "parking-lot";
3518
3518
  secrecy: "secrecy";
@@ -4124,52 +4124,55 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4124
4124
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
4125
4125
  id: z.ZodString;
4126
4126
  role: z.ZodEnum<{
4127
- push: "push";
4127
+ effect: "effect";
4128
+ ai: "ai";
4128
4129
  frontend: "frontend";
4129
4130
  backend: "backend";
4130
4131
  mobile: "mobile";
4131
4132
  database: "database";
4132
- api: "api";
4133
- graphql: "graphql";
4134
4133
  orm: "orm";
4135
4134
  auth: "auth";
4136
- runtime: "runtime";
4137
- deploy: "deploy";
4135
+ payments: "payments";
4136
+ examples: "examples";
4137
+ packageManager: "packageManager";
4138
4138
  dbSetup: "dbSetup";
4139
- migrations: "migrations";
4140
- realtime: "realtime";
4141
- navigation: "navigation";
4142
- caching: "caching";
4143
- observability: "observability";
4144
- email: "email";
4145
- search: "search";
4146
- vectorDb: "vectorDb";
4147
- fileStorage: "fileStorage";
4148
- jobQueue: "jobQueue";
4149
- rateLimit: "rateLimit";
4150
- botProtection: "botProtection";
4151
- testing: "testing";
4139
+ runtime: "runtime";
4140
+ api: "api";
4152
4141
  stateManagement: "stateManagement";
4153
4142
  forms: "forms";
4143
+ testing: "testing";
4144
+ email: "email";
4145
+ validation: "validation";
4146
+ realtime: "realtime";
4147
+ jobQueue: "jobQueue";
4154
4148
  animation: "animation";
4155
4149
  fileUpload: "fileUpload";
4156
- validation: "validation";
4157
- effect: "effect";
4158
- ui: "ui";
4159
- css: "css";
4160
- storage: "storage";
4161
- ota: "ota";
4162
- deepLinking: "deepLinking";
4163
- ai: "ai";
4164
- payments: "payments";
4165
4150
  logging: "logging";
4151
+ observability: "observability";
4166
4152
  featureFlags: "featureFlags";
4167
4153
  integrations: "integrations";
4168
4154
  ecommerce: "ecommerce";
4169
4155
  analytics: "analytics";
4170
4156
  webMcp: "webMcp";
4171
4157
  cms: "cms";
4158
+ caching: "caching";
4159
+ rateLimit: "rateLimit";
4160
+ botProtection: "botProtection";
4172
4161
  i18n: "i18n";
4162
+ search: "search";
4163
+ vectorDb: "vectorDb";
4164
+ fileStorage: "fileStorage";
4165
+ config: "config";
4166
+ graphql: "graphql";
4167
+ deploy: "deploy";
4168
+ migrations: "migrations";
4169
+ navigation: "navigation";
4170
+ ui: "ui";
4171
+ css: "css";
4172
+ storage: "storage";
4173
+ push: "push";
4174
+ ota: "ota";
4175
+ deepLinking: "deepLinking";
4173
4176
  documentation: "documentation";
4174
4177
  codeQuality: "codeQuality";
4175
4178
  appPlatform: "appPlatform";
@@ -4186,20 +4189,17 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
4186
4189
  apiGateway: "apiGateway";
4187
4190
  continuousIntegration: "continuousIntegration";
4188
4191
  backendUtilities: "backendUtilities";
4189
- examples: "examples";
4190
4192
  language: "language";
4191
4193
  buildTool: "buildTool";
4192
4194
  cli: "cli";
4193
4195
  errorHandling: "errorHandling";
4194
4196
  httpClient: "httpClient";
4195
4197
  libraries: "libraries";
4196
- config: "config";
4197
4198
  templating: "templating";
4198
4199
  cloudSdk: "cloudSdk";
4199
4200
  data: "data";
4200
4201
  media: "media";
4201
4202
  server: "server";
4202
- packageManager: "packageManager";
4203
4203
  messageQueue: "messageQueue";
4204
4204
  }>;
4205
4205
  toolId: z.ZodString;
@@ -4261,13 +4261,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4261
4261
  sequelize: "sequelize";
4262
4262
  }>;
4263
4263
  backend: z.ZodEnum<{
4264
- effect: "effect";
4265
4264
  none: "none";
4266
4265
  hono: "hono";
4267
4266
  express: "express";
4268
4267
  fastify: "fastify";
4269
4268
  elysia: "elysia";
4270
4269
  fets: "fets";
4270
+ effect: "effect";
4271
4271
  nestjs: "nestjs";
4272
4272
  adonisjs: "adonisjs";
4273
4273
  nitro: "nitro";
@@ -4349,8 +4349,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4349
4349
  capacitor: "capacitor";
4350
4350
  }>>;
4351
4351
  examples: z.ZodArray<z.ZodEnum<{
4352
- ai: "ai";
4353
4352
  none: "none";
4353
+ ai: "ai";
4354
4354
  "chat-sdk": "chat-sdk";
4355
4355
  "tanstack-showcase": "tanstack-showcase";
4356
4356
  }>>;
@@ -4465,8 +4465,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4465
4465
  "ai-cli": "ai-cli";
4466
4466
  }>;
4467
4467
  effect: z.ZodEnum<{
4468
- effect: "effect";
4469
4468
  none: "none";
4469
+ effect: "effect";
4470
4470
  "effect-full": "effect-full";
4471
4471
  }>;
4472
4472
  stateManagement: z.ZodEnum<{
@@ -4601,8 +4601,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4601
4601
  "geist-mono": "geist-mono";
4602
4602
  }>>;
4603
4603
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
4604
- default: "default";
4605
4604
  none: "none";
4605
+ default: "default";
4606
4606
  small: "small";
4607
4607
  medium: "medium";
4608
4608
  large: "large";
@@ -4754,9 +4754,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4754
4754
  }>;
4755
4755
  mobileUI: z.ZodEnum<{
4756
4756
  none: "none";
4757
+ uniwind: "uniwind";
4757
4758
  tamagui: "tamagui";
4758
4759
  "gluestack-ui": "gluestack-ui";
4759
- uniwind: "uniwind";
4760
4760
  unistyles: "unistyles";
4761
4761
  }>;
4762
4762
  mobileStorage: z.ZodEnum<{
@@ -4872,12 +4872,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
4872
4872
  ratatui: "ratatui";
4873
4873
  }>;
4874
4874
  rustLibraries: z.ZodArray<z.ZodEnum<{
4875
- config: "config";
4876
4875
  none: "none";
4877
4876
  serde: "serde";
4878
4877
  uuid: "uuid";
4879
4878
  chrono: "chrono";
4880
4879
  reqwest: "reqwest";
4880
+ config: "config";
4881
4881
  dashmap: "dashmap";
4882
4882
  "parking-lot": "parking-lot";
4883
4883
  secrecy: "secrecy";
@@ -5489,52 +5489,55 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5489
5489
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
5490
5490
  id: z.ZodString;
5491
5491
  role: z.ZodEnum<{
5492
- push: "push";
5492
+ effect: "effect";
5493
+ ai: "ai";
5493
5494
  frontend: "frontend";
5494
5495
  backend: "backend";
5495
5496
  mobile: "mobile";
5496
5497
  database: "database";
5497
- api: "api";
5498
- graphql: "graphql";
5499
5498
  orm: "orm";
5500
5499
  auth: "auth";
5501
- runtime: "runtime";
5502
- deploy: "deploy";
5500
+ payments: "payments";
5501
+ examples: "examples";
5502
+ packageManager: "packageManager";
5503
5503
  dbSetup: "dbSetup";
5504
- migrations: "migrations";
5505
- realtime: "realtime";
5506
- navigation: "navigation";
5507
- caching: "caching";
5508
- observability: "observability";
5509
- email: "email";
5510
- search: "search";
5511
- vectorDb: "vectorDb";
5512
- fileStorage: "fileStorage";
5513
- jobQueue: "jobQueue";
5514
- rateLimit: "rateLimit";
5515
- botProtection: "botProtection";
5516
- testing: "testing";
5504
+ runtime: "runtime";
5505
+ api: "api";
5517
5506
  stateManagement: "stateManagement";
5518
5507
  forms: "forms";
5508
+ testing: "testing";
5509
+ email: "email";
5510
+ validation: "validation";
5511
+ realtime: "realtime";
5512
+ jobQueue: "jobQueue";
5519
5513
  animation: "animation";
5520
5514
  fileUpload: "fileUpload";
5521
- validation: "validation";
5522
- effect: "effect";
5523
- ui: "ui";
5524
- css: "css";
5525
- storage: "storage";
5526
- ota: "ota";
5527
- deepLinking: "deepLinking";
5528
- ai: "ai";
5529
- payments: "payments";
5530
5515
  logging: "logging";
5516
+ observability: "observability";
5531
5517
  featureFlags: "featureFlags";
5532
5518
  integrations: "integrations";
5533
5519
  ecommerce: "ecommerce";
5534
5520
  analytics: "analytics";
5535
5521
  webMcp: "webMcp";
5536
5522
  cms: "cms";
5523
+ caching: "caching";
5524
+ rateLimit: "rateLimit";
5525
+ botProtection: "botProtection";
5537
5526
  i18n: "i18n";
5527
+ search: "search";
5528
+ vectorDb: "vectorDb";
5529
+ fileStorage: "fileStorage";
5530
+ config: "config";
5531
+ graphql: "graphql";
5532
+ deploy: "deploy";
5533
+ migrations: "migrations";
5534
+ navigation: "navigation";
5535
+ ui: "ui";
5536
+ css: "css";
5537
+ storage: "storage";
5538
+ push: "push";
5539
+ ota: "ota";
5540
+ deepLinking: "deepLinking";
5538
5541
  documentation: "documentation";
5539
5542
  codeQuality: "codeQuality";
5540
5543
  appPlatform: "appPlatform";
@@ -5551,20 +5554,17 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
5551
5554
  apiGateway: "apiGateway";
5552
5555
  continuousIntegration: "continuousIntegration";
5553
5556
  backendUtilities: "backendUtilities";
5554
- examples: "examples";
5555
5557
  language: "language";
5556
5558
  buildTool: "buildTool";
5557
5559
  cli: "cli";
5558
5560
  errorHandling: "errorHandling";
5559
5561
  httpClient: "httpClient";
5560
5562
  libraries: "libraries";
5561
- config: "config";
5562
5563
  templating: "templating";
5563
5564
  cloudSdk: "cloudSdk";
5564
5565
  data: "data";
5565
5566
  media: "media";
5566
5567
  server: "server";
5567
- packageManager: "packageManager";
5568
5568
  messageQueue: "messageQueue";
5569
5569
  }>;
5570
5570
  toolId: z.ZodString;
@@ -5627,13 +5627,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5627
5627
  sequelize: "sequelize";
5628
5628
  }>;
5629
5629
  backend: z.ZodEnum<{
5630
- effect: "effect";
5631
5630
  none: "none";
5632
5631
  hono: "hono";
5633
5632
  express: "express";
5634
5633
  fastify: "fastify";
5635
5634
  elysia: "elysia";
5636
5635
  fets: "fets";
5636
+ effect: "effect";
5637
5637
  nestjs: "nestjs";
5638
5638
  adonisjs: "adonisjs";
5639
5639
  nitro: "nitro";
@@ -5715,8 +5715,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5715
5715
  capacitor: "capacitor";
5716
5716
  }>>;
5717
5717
  examples: z.ZodArray<z.ZodEnum<{
5718
- ai: "ai";
5719
5718
  none: "none";
5719
+ ai: "ai";
5720
5720
  "chat-sdk": "chat-sdk";
5721
5721
  "tanstack-showcase": "tanstack-showcase";
5722
5722
  }>>;
@@ -5833,8 +5833,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5833
5833
  "ai-cli": "ai-cli";
5834
5834
  }>;
5835
5835
  effect: z.ZodEnum<{
5836
- effect: "effect";
5837
5836
  none: "none";
5837
+ effect: "effect";
5838
5838
  "effect-full": "effect-full";
5839
5839
  }>;
5840
5840
  stateManagement: z.ZodEnum<{
@@ -5969,8 +5969,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
5969
5969
  "geist-mono": "geist-mono";
5970
5970
  }>>;
5971
5971
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
5972
- default: "default";
5973
5972
  none: "none";
5973
+ default: "default";
5974
5974
  small: "small";
5975
5975
  medium: "medium";
5976
5976
  large: "large";
@@ -6122,9 +6122,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6122
6122
  }>;
6123
6123
  mobileUI: z.ZodEnum<{
6124
6124
  none: "none";
6125
+ uniwind: "uniwind";
6125
6126
  tamagui: "tamagui";
6126
6127
  "gluestack-ui": "gluestack-ui";
6127
- uniwind: "uniwind";
6128
6128
  unistyles: "unistyles";
6129
6129
  }>;
6130
6130
  mobileStorage: z.ZodEnum<{
@@ -6240,12 +6240,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6240
6240
  ratatui: "ratatui";
6241
6241
  }>;
6242
6242
  rustLibraries: z.ZodArray<z.ZodEnum<{
6243
- config: "config";
6244
6243
  none: "none";
6245
6244
  serde: "serde";
6246
6245
  uuid: "uuid";
6247
6246
  chrono: "chrono";
6248
6247
  reqwest: "reqwest";
6248
+ config: "config";
6249
6249
  dashmap: "dashmap";
6250
6250
  "parking-lot": "parking-lot";
6251
6251
  secrecy: "secrecy";
@@ -6857,52 +6857,55 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6857
6857
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
6858
6858
  id: z.ZodString;
6859
6859
  role: z.ZodEnum<{
6860
- push: "push";
6861
- frontend: "frontend";
6860
+ effect: "effect";
6861
+ ai: "ai";
6862
+ frontend: "frontend";
6862
6863
  backend: "backend";
6863
6864
  mobile: "mobile";
6864
6865
  database: "database";
6865
- api: "api";
6866
- graphql: "graphql";
6867
6866
  orm: "orm";
6868
6867
  auth: "auth";
6869
- runtime: "runtime";
6870
- deploy: "deploy";
6868
+ payments: "payments";
6869
+ examples: "examples";
6870
+ packageManager: "packageManager";
6871
6871
  dbSetup: "dbSetup";
6872
- migrations: "migrations";
6873
- realtime: "realtime";
6874
- navigation: "navigation";
6875
- caching: "caching";
6876
- observability: "observability";
6877
- email: "email";
6878
- search: "search";
6879
- vectorDb: "vectorDb";
6880
- fileStorage: "fileStorage";
6881
- jobQueue: "jobQueue";
6882
- rateLimit: "rateLimit";
6883
- botProtection: "botProtection";
6884
- testing: "testing";
6872
+ runtime: "runtime";
6873
+ api: "api";
6885
6874
  stateManagement: "stateManagement";
6886
6875
  forms: "forms";
6876
+ testing: "testing";
6877
+ email: "email";
6878
+ validation: "validation";
6879
+ realtime: "realtime";
6880
+ jobQueue: "jobQueue";
6887
6881
  animation: "animation";
6888
6882
  fileUpload: "fileUpload";
6889
- validation: "validation";
6890
- effect: "effect";
6891
- ui: "ui";
6892
- css: "css";
6893
- storage: "storage";
6894
- ota: "ota";
6895
- deepLinking: "deepLinking";
6896
- ai: "ai";
6897
- payments: "payments";
6898
6883
  logging: "logging";
6884
+ observability: "observability";
6899
6885
  featureFlags: "featureFlags";
6900
6886
  integrations: "integrations";
6901
6887
  ecommerce: "ecommerce";
6902
6888
  analytics: "analytics";
6903
6889
  webMcp: "webMcp";
6904
6890
  cms: "cms";
6891
+ caching: "caching";
6892
+ rateLimit: "rateLimit";
6893
+ botProtection: "botProtection";
6905
6894
  i18n: "i18n";
6895
+ search: "search";
6896
+ vectorDb: "vectorDb";
6897
+ fileStorage: "fileStorage";
6898
+ config: "config";
6899
+ graphql: "graphql";
6900
+ deploy: "deploy";
6901
+ migrations: "migrations";
6902
+ navigation: "navigation";
6903
+ ui: "ui";
6904
+ css: "css";
6905
+ storage: "storage";
6906
+ push: "push";
6907
+ ota: "ota";
6908
+ deepLinking: "deepLinking";
6906
6909
  documentation: "documentation";
6907
6910
  codeQuality: "codeQuality";
6908
6911
  appPlatform: "appPlatform";
@@ -6919,20 +6922,17 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
6919
6922
  apiGateway: "apiGateway";
6920
6923
  continuousIntegration: "continuousIntegration";
6921
6924
  backendUtilities: "backendUtilities";
6922
- examples: "examples";
6923
6925
  language: "language";
6924
6926
  buildTool: "buildTool";
6925
6927
  cli: "cli";
6926
6928
  errorHandling: "errorHandling";
6927
6929
  httpClient: "httpClient";
6928
6930
  libraries: "libraries";
6929
- config: "config";
6930
6931
  templating: "templating";
6931
6932
  cloudSdk: "cloudSdk";
6932
6933
  data: "data";
6933
6934
  media: "media";
6934
6935
  server: "server";
6935
- packageManager: "packageManager";
6936
6936
  messageQueue: "messageQueue";
6937
6937
  }>;
6938
6938
  toolId: z.ZodString;
@@ -7336,13 +7336,13 @@ declare function getAllJsonSchemas(): {
7336
7336
  sequelize: "sequelize";
7337
7337
  }>>;
7338
7338
  backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7339
- effect: "effect";
7340
7339
  none: "none";
7341
7340
  hono: "hono";
7342
7341
  express: "express";
7343
7342
  fastify: "fastify";
7344
7343
  elysia: "elysia";
7345
7344
  fets: "fets";
7345
+ effect: "effect";
7346
7346
  nestjs: "nestjs";
7347
7347
  adonisjs: "adonisjs";
7348
7348
  nitro: "nitro";
@@ -7424,8 +7424,8 @@ declare function getAllJsonSchemas(): {
7424
7424
  capacitor: "capacitor";
7425
7425
  }>>;
7426
7426
  examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7427
- ai: "ai";
7428
7427
  none: "none";
7428
+ ai: "ai";
7429
7429
  "chat-sdk": "chat-sdk";
7430
7430
  "tanstack-showcase": "tanstack-showcase";
7431
7431
  }>>;
@@ -7508,18 +7508,18 @@ declare function getAllJsonSchemas(): {
7508
7508
  vercel: "vercel";
7509
7509
  }>>;
7510
7510
  directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7511
- error: "error";
7512
7511
  merge: "merge";
7513
7512
  overwrite: "overwrite";
7514
7513
  increment: "increment";
7514
+ error: "error";
7515
7515
  }>>;
7516
7516
  template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7517
7517
  none: "none";
7518
- uniwind: "uniwind";
7519
7518
  mern: "mern";
7520
7519
  pern: "pern";
7521
7520
  t3: "t3";
7522
7521
  saas: "saas";
7522
+ uniwind: "uniwind";
7523
7523
  }>>;
7524
7524
  goWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
7525
7525
  none: "none";
@@ -7870,17 +7870,17 @@ declare function getAllJsonSchemas(): {
7870
7870
  projectName: z.ZodOptional<z.ZodString>;
7871
7871
  template: z.ZodOptional<z.ZodEnum<{
7872
7872
  none: "none";
7873
- uniwind: "uniwind";
7874
7873
  mern: "mern";
7875
7874
  pern: "pern";
7876
7875
  t3: "t3";
7877
7876
  saas: "saas";
7877
+ uniwind: "uniwind";
7878
7878
  }>>;
7879
7879
  shape: z.ZodOptional<z.ZodEnum<{
7880
+ fullstack: "fullstack";
7880
7881
  frontend: "frontend";
7881
7882
  backend: "backend";
7882
7883
  mobile: "mobile";
7883
- fullstack: "fullstack";
7884
7884
  }>>;
7885
7885
  yes: z.ZodOptional<z.ZodBoolean>;
7886
7886
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -8012,8 +8012,8 @@ declare function getAllJsonSchemas(): {
8012
8012
  capacitor: "capacitor";
8013
8013
  }>>>;
8014
8014
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8015
- ai: "ai";
8016
8015
  none: "none";
8016
+ ai: "ai";
8017
8017
  "chat-sdk": "chat-sdk";
8018
8018
  "tanstack-showcase": "tanstack-showcase";
8019
8019
  }>>>;
@@ -8047,13 +8047,13 @@ declare function getAllJsonSchemas(): {
8047
8047
  docker: "docker";
8048
8048
  }>>;
8049
8049
  backend: z.ZodOptional<z.ZodEnum<{
8050
- effect: "effect";
8051
8050
  none: "none";
8052
8051
  hono: "hono";
8053
8052
  express: "express";
8054
8053
  fastify: "fastify";
8055
8054
  elysia: "elysia";
8056
8055
  fets: "fets";
8056
+ effect: "effect";
8057
8057
  nestjs: "nestjs";
8058
8058
  adonisjs: "adonisjs";
8059
8059
  nitro: "nitro";
@@ -8100,10 +8100,10 @@ declare function getAllJsonSchemas(): {
8100
8100
  vercel: "vercel";
8101
8101
  }>>;
8102
8102
  directoryConflict: z.ZodOptional<z.ZodEnum<{
8103
- error: "error";
8104
8103
  merge: "merge";
8105
8104
  overwrite: "overwrite";
8106
8105
  increment: "increment";
8106
+ error: "error";
8107
8107
  }>>;
8108
8108
  renderTitle: z.ZodOptional<z.ZodBoolean>;
8109
8109
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -8132,8 +8132,8 @@ declare function getAllJsonSchemas(): {
8132
8132
  "ai-cli": "ai-cli";
8133
8133
  }>>;
8134
8134
  effect: z.ZodOptional<z.ZodEnum<{
8135
- effect: "effect";
8136
8135
  none: "none";
8136
+ effect: "effect";
8137
8137
  "effect-full": "effect-full";
8138
8138
  }>>;
8139
8139
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -8268,8 +8268,8 @@ declare function getAllJsonSchemas(): {
8268
8268
  "geist-mono": "geist-mono";
8269
8269
  }>>;
8270
8270
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
8271
- default: "default";
8272
8271
  none: "none";
8272
+ default: "default";
8273
8273
  small: "small";
8274
8274
  medium: "medium";
8275
8275
  large: "large";
@@ -8421,9 +8421,9 @@ declare function getAllJsonSchemas(): {
8421
8421
  }>>;
8422
8422
  mobileUI: z.ZodOptional<z.ZodEnum<{
8423
8423
  none: "none";
8424
+ uniwind: "uniwind";
8424
8425
  tamagui: "tamagui";
8425
8426
  "gluestack-ui": "gluestack-ui";
8426
- uniwind: "uniwind";
8427
8427
  unistyles: "unistyles";
8428
8428
  }>>;
8429
8429
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -8539,12 +8539,12 @@ declare function getAllJsonSchemas(): {
8539
8539
  ratatui: "ratatui";
8540
8540
  }>>;
8541
8541
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8542
- config: "config";
8543
8542
  none: "none";
8544
8543
  serde: "serde";
8545
8544
  uuid: "uuid";
8546
8545
  chrono: "chrono";
8547
8546
  reqwest: "reqwest";
8547
+ config: "config";
8548
8548
  dashmap: "dashmap";
8549
8549
  "parking-lot": "parking-lot";
8550
8550
  secrecy: "secrecy";
@@ -9189,13 +9189,13 @@ declare function getAllJsonSchemas(): {
9189
9189
  sequelize: "sequelize";
9190
9190
  }>;
9191
9191
  backend: z.ZodEnum<{
9192
- effect: "effect";
9193
9192
  none: "none";
9194
9193
  hono: "hono";
9195
9194
  express: "express";
9196
9195
  fastify: "fastify";
9197
9196
  elysia: "elysia";
9198
9197
  fets: "fets";
9198
+ effect: "effect";
9199
9199
  nestjs: "nestjs";
9200
9200
  adonisjs: "adonisjs";
9201
9201
  nitro: "nitro";
@@ -9277,8 +9277,8 @@ declare function getAllJsonSchemas(): {
9277
9277
  capacitor: "capacitor";
9278
9278
  }>>;
9279
9279
  examples: z.ZodArray<z.ZodEnum<{
9280
- ai: "ai";
9281
9280
  none: "none";
9281
+ ai: "ai";
9282
9282
  "chat-sdk": "chat-sdk";
9283
9283
  "tanstack-showcase": "tanstack-showcase";
9284
9284
  }>>;
@@ -9395,8 +9395,8 @@ declare function getAllJsonSchemas(): {
9395
9395
  "ai-cli": "ai-cli";
9396
9396
  }>;
9397
9397
  effect: z.ZodEnum<{
9398
- effect: "effect";
9399
9398
  none: "none";
9399
+ effect: "effect";
9400
9400
  "effect-full": "effect-full";
9401
9401
  }>;
9402
9402
  stateManagement: z.ZodEnum<{
@@ -9531,8 +9531,8 @@ declare function getAllJsonSchemas(): {
9531
9531
  "geist-mono": "geist-mono";
9532
9532
  }>>;
9533
9533
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
9534
- default: "default";
9535
9534
  none: "none";
9535
+ default: "default";
9536
9536
  small: "small";
9537
9537
  medium: "medium";
9538
9538
  large: "large";
@@ -9684,9 +9684,9 @@ declare function getAllJsonSchemas(): {
9684
9684
  }>;
9685
9685
  mobileUI: z.ZodEnum<{
9686
9686
  none: "none";
9687
+ uniwind: "uniwind";
9687
9688
  tamagui: "tamagui";
9688
9689
  "gluestack-ui": "gluestack-ui";
9689
- uniwind: "uniwind";
9690
9690
  unistyles: "unistyles";
9691
9691
  }>;
9692
9692
  mobileStorage: z.ZodEnum<{
@@ -9802,12 +9802,12 @@ declare function getAllJsonSchemas(): {
9802
9802
  ratatui: "ratatui";
9803
9803
  }>;
9804
9804
  rustLibraries: z.ZodArray<z.ZodEnum<{
9805
- config: "config";
9806
9805
  none: "none";
9807
9806
  serde: "serde";
9808
9807
  uuid: "uuid";
9809
9808
  chrono: "chrono";
9810
9809
  reqwest: "reqwest";
9810
+ config: "config";
9811
9811
  dashmap: "dashmap";
9812
9812
  "parking-lot": "parking-lot";
9813
9813
  secrecy: "secrecy";
@@ -10419,52 +10419,55 @@ declare function getAllJsonSchemas(): {
10419
10419
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
10420
10420
  id: z.ZodString;
10421
10421
  role: z.ZodEnum<{
10422
- push: "push";
10422
+ effect: "effect";
10423
+ ai: "ai";
10423
10424
  frontend: "frontend";
10424
10425
  backend: "backend";
10425
10426
  mobile: "mobile";
10426
10427
  database: "database";
10427
- api: "api";
10428
- graphql: "graphql";
10429
10428
  orm: "orm";
10430
10429
  auth: "auth";
10431
- runtime: "runtime";
10432
- deploy: "deploy";
10430
+ payments: "payments";
10431
+ examples: "examples";
10432
+ packageManager: "packageManager";
10433
10433
  dbSetup: "dbSetup";
10434
- migrations: "migrations";
10435
- realtime: "realtime";
10436
- navigation: "navigation";
10437
- caching: "caching";
10438
- observability: "observability";
10439
- email: "email";
10440
- search: "search";
10441
- vectorDb: "vectorDb";
10442
- fileStorage: "fileStorage";
10443
- jobQueue: "jobQueue";
10444
- rateLimit: "rateLimit";
10445
- botProtection: "botProtection";
10446
- testing: "testing";
10434
+ runtime: "runtime";
10435
+ api: "api";
10447
10436
  stateManagement: "stateManagement";
10448
10437
  forms: "forms";
10438
+ testing: "testing";
10439
+ email: "email";
10440
+ validation: "validation";
10441
+ realtime: "realtime";
10442
+ jobQueue: "jobQueue";
10449
10443
  animation: "animation";
10450
10444
  fileUpload: "fileUpload";
10451
- validation: "validation";
10452
- effect: "effect";
10453
- ui: "ui";
10454
- css: "css";
10455
- storage: "storage";
10456
- ota: "ota";
10457
- deepLinking: "deepLinking";
10458
- ai: "ai";
10459
- payments: "payments";
10460
10445
  logging: "logging";
10446
+ observability: "observability";
10461
10447
  featureFlags: "featureFlags";
10462
10448
  integrations: "integrations";
10463
10449
  ecommerce: "ecommerce";
10464
10450
  analytics: "analytics";
10465
10451
  webMcp: "webMcp";
10466
10452
  cms: "cms";
10453
+ caching: "caching";
10454
+ rateLimit: "rateLimit";
10455
+ botProtection: "botProtection";
10467
10456
  i18n: "i18n";
10457
+ search: "search";
10458
+ vectorDb: "vectorDb";
10459
+ fileStorage: "fileStorage";
10460
+ config: "config";
10461
+ graphql: "graphql";
10462
+ deploy: "deploy";
10463
+ migrations: "migrations";
10464
+ navigation: "navigation";
10465
+ ui: "ui";
10466
+ css: "css";
10467
+ storage: "storage";
10468
+ push: "push";
10469
+ ota: "ota";
10470
+ deepLinking: "deepLinking";
10468
10471
  documentation: "documentation";
10469
10472
  codeQuality: "codeQuality";
10470
10473
  appPlatform: "appPlatform";
@@ -10481,20 +10484,17 @@ declare function getAllJsonSchemas(): {
10481
10484
  apiGateway: "apiGateway";
10482
10485
  continuousIntegration: "continuousIntegration";
10483
10486
  backendUtilities: "backendUtilities";
10484
- examples: "examples";
10485
10487
  language: "language";
10486
10488
  buildTool: "buildTool";
10487
10489
  cli: "cli";
10488
10490
  errorHandling: "errorHandling";
10489
10491
  httpClient: "httpClient";
10490
10492
  libraries: "libraries";
10491
- config: "config";
10492
10493
  templating: "templating";
10493
10494
  cloudSdk: "cloudSdk";
10494
10495
  data: "data";
10495
10496
  media: "media";
10496
10497
  server: "server";
10497
- packageManager: "packageManager";
10498
10498
  messageQueue: "messageQueue";
10499
10499
  }>;
10500
10500
  toolId: z.ZodString;
@@ -10556,13 +10556,13 @@ declare function getAllJsonSchemas(): {
10556
10556
  sequelize: "sequelize";
10557
10557
  }>;
10558
10558
  backend: z.ZodEnum<{
10559
- effect: "effect";
10560
10559
  none: "none";
10561
10560
  hono: "hono";
10562
10561
  express: "express";
10563
10562
  fastify: "fastify";
10564
10563
  elysia: "elysia";
10565
10564
  fets: "fets";
10565
+ effect: "effect";
10566
10566
  nestjs: "nestjs";
10567
10567
  adonisjs: "adonisjs";
10568
10568
  nitro: "nitro";
@@ -10644,8 +10644,8 @@ declare function getAllJsonSchemas(): {
10644
10644
  capacitor: "capacitor";
10645
10645
  }>>;
10646
10646
  examples: z.ZodArray<z.ZodEnum<{
10647
- ai: "ai";
10648
10647
  none: "none";
10648
+ ai: "ai";
10649
10649
  "chat-sdk": "chat-sdk";
10650
10650
  "tanstack-showcase": "tanstack-showcase";
10651
10651
  }>>;
@@ -10760,8 +10760,8 @@ declare function getAllJsonSchemas(): {
10760
10760
  "ai-cli": "ai-cli";
10761
10761
  }>;
10762
10762
  effect: z.ZodEnum<{
10763
- effect: "effect";
10764
10763
  none: "none";
10764
+ effect: "effect";
10765
10765
  "effect-full": "effect-full";
10766
10766
  }>;
10767
10767
  stateManagement: z.ZodEnum<{
@@ -10896,8 +10896,8 @@ declare function getAllJsonSchemas(): {
10896
10896
  "geist-mono": "geist-mono";
10897
10897
  }>>;
10898
10898
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
10899
- default: "default";
10900
10899
  none: "none";
10900
+ default: "default";
10901
10901
  small: "small";
10902
10902
  medium: "medium";
10903
10903
  large: "large";
@@ -11049,9 +11049,9 @@ declare function getAllJsonSchemas(): {
11049
11049
  }>;
11050
11050
  mobileUI: z.ZodEnum<{
11051
11051
  none: "none";
11052
+ uniwind: "uniwind";
11052
11053
  tamagui: "tamagui";
11053
11054
  "gluestack-ui": "gluestack-ui";
11054
- uniwind: "uniwind";
11055
11055
  unistyles: "unistyles";
11056
11056
  }>;
11057
11057
  mobileStorage: z.ZodEnum<{
@@ -11167,12 +11167,12 @@ declare function getAllJsonSchemas(): {
11167
11167
  ratatui: "ratatui";
11168
11168
  }>;
11169
11169
  rustLibraries: z.ZodArray<z.ZodEnum<{
11170
- config: "config";
11171
11170
  none: "none";
11172
11171
  serde: "serde";
11173
11172
  uuid: "uuid";
11174
11173
  chrono: "chrono";
11175
11174
  reqwest: "reqwest";
11175
+ config: "config";
11176
11176
  dashmap: "dashmap";
11177
11177
  "parking-lot": "parking-lot";
11178
11178
  secrecy: "secrecy";
@@ -11784,52 +11784,55 @@ declare function getAllJsonSchemas(): {
11784
11784
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
11785
11785
  id: z.ZodString;
11786
11786
  role: z.ZodEnum<{
11787
- push: "push";
11787
+ effect: "effect";
11788
+ ai: "ai";
11788
11789
  frontend: "frontend";
11789
11790
  backend: "backend";
11790
11791
  mobile: "mobile";
11791
11792
  database: "database";
11792
- api: "api";
11793
- graphql: "graphql";
11794
11793
  orm: "orm";
11795
11794
  auth: "auth";
11796
- runtime: "runtime";
11797
- deploy: "deploy";
11795
+ payments: "payments";
11796
+ examples: "examples";
11797
+ packageManager: "packageManager";
11798
11798
  dbSetup: "dbSetup";
11799
- migrations: "migrations";
11800
- realtime: "realtime";
11801
- navigation: "navigation";
11802
- caching: "caching";
11803
- observability: "observability";
11804
- email: "email";
11805
- search: "search";
11806
- vectorDb: "vectorDb";
11807
- fileStorage: "fileStorage";
11808
- jobQueue: "jobQueue";
11809
- rateLimit: "rateLimit";
11810
- botProtection: "botProtection";
11811
- testing: "testing";
11799
+ runtime: "runtime";
11800
+ api: "api";
11812
11801
  stateManagement: "stateManagement";
11813
11802
  forms: "forms";
11803
+ testing: "testing";
11804
+ email: "email";
11805
+ validation: "validation";
11806
+ realtime: "realtime";
11807
+ jobQueue: "jobQueue";
11814
11808
  animation: "animation";
11815
11809
  fileUpload: "fileUpload";
11816
- validation: "validation";
11817
- effect: "effect";
11818
- ui: "ui";
11819
- css: "css";
11820
- storage: "storage";
11821
- ota: "ota";
11822
- deepLinking: "deepLinking";
11823
- ai: "ai";
11824
- payments: "payments";
11825
11810
  logging: "logging";
11811
+ observability: "observability";
11826
11812
  featureFlags: "featureFlags";
11827
11813
  integrations: "integrations";
11828
11814
  ecommerce: "ecommerce";
11829
11815
  analytics: "analytics";
11830
11816
  webMcp: "webMcp";
11831
11817
  cms: "cms";
11818
+ caching: "caching";
11819
+ rateLimit: "rateLimit";
11820
+ botProtection: "botProtection";
11832
11821
  i18n: "i18n";
11822
+ search: "search";
11823
+ vectorDb: "vectorDb";
11824
+ fileStorage: "fileStorage";
11825
+ config: "config";
11826
+ graphql: "graphql";
11827
+ deploy: "deploy";
11828
+ migrations: "migrations";
11829
+ navigation: "navigation";
11830
+ ui: "ui";
11831
+ css: "css";
11832
+ storage: "storage";
11833
+ push: "push";
11834
+ ota: "ota";
11835
+ deepLinking: "deepLinking";
11833
11836
  documentation: "documentation";
11834
11837
  codeQuality: "codeQuality";
11835
11838
  appPlatform: "appPlatform";
@@ -11846,20 +11849,17 @@ declare function getAllJsonSchemas(): {
11846
11849
  apiGateway: "apiGateway";
11847
11850
  continuousIntegration: "continuousIntegration";
11848
11851
  backendUtilities: "backendUtilities";
11849
- examples: "examples";
11850
11852
  language: "language";
11851
11853
  buildTool: "buildTool";
11852
11854
  cli: "cli";
11853
11855
  errorHandling: "errorHandling";
11854
11856
  httpClient: "httpClient";
11855
11857
  libraries: "libraries";
11856
- config: "config";
11857
11858
  templating: "templating";
11858
11859
  cloudSdk: "cloudSdk";
11859
11860
  data: "data";
11860
11861
  media: "media";
11861
11862
  server: "server";
11862
- packageManager: "packageManager";
11863
11863
  messageQueue: "messageQueue";
11864
11864
  }>;
11865
11865
  toolId: z.ZodString;
@@ -11921,13 +11921,13 @@ declare function getAllJsonSchemas(): {
11921
11921
  sequelize: "sequelize";
11922
11922
  }>;
11923
11923
  backend: z.ZodEnum<{
11924
- effect: "effect";
11925
11924
  none: "none";
11926
11925
  hono: "hono";
11927
11926
  express: "express";
11928
11927
  fastify: "fastify";
11929
11928
  elysia: "elysia";
11930
11929
  fets: "fets";
11930
+ effect: "effect";
11931
11931
  nestjs: "nestjs";
11932
11932
  adonisjs: "adonisjs";
11933
11933
  nitro: "nitro";
@@ -12009,8 +12009,8 @@ declare function getAllJsonSchemas(): {
12009
12009
  capacitor: "capacitor";
12010
12010
  }>>;
12011
12011
  examples: z.ZodArray<z.ZodEnum<{
12012
- ai: "ai";
12013
12012
  none: "none";
12013
+ ai: "ai";
12014
12014
  "chat-sdk": "chat-sdk";
12015
12015
  "tanstack-showcase": "tanstack-showcase";
12016
12016
  }>>;
@@ -12125,8 +12125,8 @@ declare function getAllJsonSchemas(): {
12125
12125
  "ai-cli": "ai-cli";
12126
12126
  }>;
12127
12127
  effect: z.ZodEnum<{
12128
- effect: "effect";
12129
12128
  none: "none";
12129
+ effect: "effect";
12130
12130
  "effect-full": "effect-full";
12131
12131
  }>;
12132
12132
  stateManagement: z.ZodEnum<{
@@ -12261,8 +12261,8 @@ declare function getAllJsonSchemas(): {
12261
12261
  "geist-mono": "geist-mono";
12262
12262
  }>>;
12263
12263
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
12264
- default: "default";
12265
12264
  none: "none";
12265
+ default: "default";
12266
12266
  small: "small";
12267
12267
  medium: "medium";
12268
12268
  large: "large";
@@ -12414,9 +12414,9 @@ declare function getAllJsonSchemas(): {
12414
12414
  }>;
12415
12415
  mobileUI: z.ZodEnum<{
12416
12416
  none: "none";
12417
+ uniwind: "uniwind";
12417
12418
  tamagui: "tamagui";
12418
12419
  "gluestack-ui": "gluestack-ui";
12419
- uniwind: "uniwind";
12420
12420
  unistyles: "unistyles";
12421
12421
  }>;
12422
12422
  mobileStorage: z.ZodEnum<{
@@ -12532,12 +12532,12 @@ declare function getAllJsonSchemas(): {
12532
12532
  ratatui: "ratatui";
12533
12533
  }>;
12534
12534
  rustLibraries: z.ZodArray<z.ZodEnum<{
12535
- config: "config";
12536
12535
  none: "none";
12537
12536
  serde: "serde";
12538
12537
  uuid: "uuid";
12539
12538
  chrono: "chrono";
12540
12539
  reqwest: "reqwest";
12540
+ config: "config";
12541
12541
  dashmap: "dashmap";
12542
12542
  "parking-lot": "parking-lot";
12543
12543
  secrecy: "secrecy";
@@ -13149,52 +13149,55 @@ declare function getAllJsonSchemas(): {
13149
13149
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
13150
13150
  id: z.ZodString;
13151
13151
  role: z.ZodEnum<{
13152
- push: "push";
13152
+ effect: "effect";
13153
+ ai: "ai";
13153
13154
  frontend: "frontend";
13154
13155
  backend: "backend";
13155
13156
  mobile: "mobile";
13156
13157
  database: "database";
13157
- api: "api";
13158
- graphql: "graphql";
13159
13158
  orm: "orm";
13160
13159
  auth: "auth";
13161
- runtime: "runtime";
13162
- deploy: "deploy";
13160
+ payments: "payments";
13161
+ examples: "examples";
13162
+ packageManager: "packageManager";
13163
13163
  dbSetup: "dbSetup";
13164
- migrations: "migrations";
13165
- realtime: "realtime";
13166
- navigation: "navigation";
13167
- caching: "caching";
13168
- observability: "observability";
13169
- email: "email";
13170
- search: "search";
13171
- vectorDb: "vectorDb";
13172
- fileStorage: "fileStorage";
13173
- jobQueue: "jobQueue";
13174
- rateLimit: "rateLimit";
13175
- botProtection: "botProtection";
13176
- testing: "testing";
13164
+ runtime: "runtime";
13165
+ api: "api";
13177
13166
  stateManagement: "stateManagement";
13178
13167
  forms: "forms";
13168
+ testing: "testing";
13169
+ email: "email";
13170
+ validation: "validation";
13171
+ realtime: "realtime";
13172
+ jobQueue: "jobQueue";
13179
13173
  animation: "animation";
13180
13174
  fileUpload: "fileUpload";
13181
- validation: "validation";
13182
- effect: "effect";
13183
- ui: "ui";
13184
- css: "css";
13185
- storage: "storage";
13186
- ota: "ota";
13187
- deepLinking: "deepLinking";
13188
- ai: "ai";
13189
- payments: "payments";
13190
13175
  logging: "logging";
13176
+ observability: "observability";
13191
13177
  featureFlags: "featureFlags";
13192
13178
  integrations: "integrations";
13193
13179
  ecommerce: "ecommerce";
13194
13180
  analytics: "analytics";
13195
13181
  webMcp: "webMcp";
13196
13182
  cms: "cms";
13183
+ caching: "caching";
13184
+ rateLimit: "rateLimit";
13185
+ botProtection: "botProtection";
13197
13186
  i18n: "i18n";
13187
+ search: "search";
13188
+ vectorDb: "vectorDb";
13189
+ fileStorage: "fileStorage";
13190
+ config: "config";
13191
+ graphql: "graphql";
13192
+ deploy: "deploy";
13193
+ migrations: "migrations";
13194
+ navigation: "navigation";
13195
+ ui: "ui";
13196
+ css: "css";
13197
+ storage: "storage";
13198
+ push: "push";
13199
+ ota: "ota";
13200
+ deepLinking: "deepLinking";
13198
13201
  documentation: "documentation";
13199
13202
  codeQuality: "codeQuality";
13200
13203
  appPlatform: "appPlatform";
@@ -13211,20 +13214,17 @@ declare function getAllJsonSchemas(): {
13211
13214
  apiGateway: "apiGateway";
13212
13215
  continuousIntegration: "continuousIntegration";
13213
13216
  backendUtilities: "backendUtilities";
13214
- examples: "examples";
13215
13217
  language: "language";
13216
13218
  buildTool: "buildTool";
13217
13219
  cli: "cli";
13218
13220
  errorHandling: "errorHandling";
13219
13221
  httpClient: "httpClient";
13220
13222
  libraries: "libraries";
13221
- config: "config";
13222
13223
  templating: "templating";
13223
13224
  cloudSdk: "cloudSdk";
13224
13225
  data: "data";
13225
13226
  media: "media";
13226
13227
  server: "server";
13227
- packageManager: "packageManager";
13228
13228
  messageQueue: "messageQueue";
13229
13229
  }>;
13230
13230
  toolId: z.ZodString;
@@ -13287,13 +13287,13 @@ declare function getAllJsonSchemas(): {
13287
13287
  sequelize: "sequelize";
13288
13288
  }>;
13289
13289
  backend: z.ZodEnum<{
13290
- effect: "effect";
13291
13290
  none: "none";
13292
13291
  hono: "hono";
13293
13292
  express: "express";
13294
13293
  fastify: "fastify";
13295
13294
  elysia: "elysia";
13296
13295
  fets: "fets";
13296
+ effect: "effect";
13297
13297
  nestjs: "nestjs";
13298
13298
  adonisjs: "adonisjs";
13299
13299
  nitro: "nitro";
@@ -13375,8 +13375,8 @@ declare function getAllJsonSchemas(): {
13375
13375
  capacitor: "capacitor";
13376
13376
  }>>;
13377
13377
  examples: z.ZodArray<z.ZodEnum<{
13378
- ai: "ai";
13379
13378
  none: "none";
13379
+ ai: "ai";
13380
13380
  "chat-sdk": "chat-sdk";
13381
13381
  "tanstack-showcase": "tanstack-showcase";
13382
13382
  }>>;
@@ -13493,8 +13493,8 @@ declare function getAllJsonSchemas(): {
13493
13493
  "ai-cli": "ai-cli";
13494
13494
  }>;
13495
13495
  effect: z.ZodEnum<{
13496
- effect: "effect";
13497
13496
  none: "none";
13497
+ effect: "effect";
13498
13498
  "effect-full": "effect-full";
13499
13499
  }>;
13500
13500
  stateManagement: z.ZodEnum<{
@@ -13629,8 +13629,8 @@ declare function getAllJsonSchemas(): {
13629
13629
  "geist-mono": "geist-mono";
13630
13630
  }>>;
13631
13631
  shadcnRadius: z.ZodOptional<z.ZodEnum<{
13632
- default: "default";
13633
13632
  none: "none";
13633
+ default: "default";
13634
13634
  small: "small";
13635
13635
  medium: "medium";
13636
13636
  large: "large";
@@ -13782,9 +13782,9 @@ declare function getAllJsonSchemas(): {
13782
13782
  }>;
13783
13783
  mobileUI: z.ZodEnum<{
13784
13784
  none: "none";
13785
+ uniwind: "uniwind";
13785
13786
  tamagui: "tamagui";
13786
13787
  "gluestack-ui": "gluestack-ui";
13787
- uniwind: "uniwind";
13788
13788
  unistyles: "unistyles";
13789
13789
  }>;
13790
13790
  mobileStorage: z.ZodEnum<{
@@ -13900,12 +13900,12 @@ declare function getAllJsonSchemas(): {
13900
13900
  ratatui: "ratatui";
13901
13901
  }>;
13902
13902
  rustLibraries: z.ZodArray<z.ZodEnum<{
13903
- config: "config";
13904
13903
  none: "none";
13905
13904
  serde: "serde";
13906
13905
  uuid: "uuid";
13907
13906
  chrono: "chrono";
13908
13907
  reqwest: "reqwest";
13908
+ config: "config";
13909
13909
  dashmap: "dashmap";
13910
13910
  "parking-lot": "parking-lot";
13911
13911
  secrecy: "secrecy";
@@ -14517,52 +14517,55 @@ declare function getAllJsonSchemas(): {
14517
14517
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
14518
14518
  id: z.ZodString;
14519
14519
  role: z.ZodEnum<{
14520
- push: "push";
14520
+ effect: "effect";
14521
+ ai: "ai";
14521
14522
  frontend: "frontend";
14522
14523
  backend: "backend";
14523
14524
  mobile: "mobile";
14524
14525
  database: "database";
14525
- api: "api";
14526
- graphql: "graphql";
14527
14526
  orm: "orm";
14528
14527
  auth: "auth";
14529
- runtime: "runtime";
14530
- deploy: "deploy";
14528
+ payments: "payments";
14529
+ examples: "examples";
14530
+ packageManager: "packageManager";
14531
14531
  dbSetup: "dbSetup";
14532
- migrations: "migrations";
14533
- realtime: "realtime";
14534
- navigation: "navigation";
14535
- caching: "caching";
14536
- observability: "observability";
14537
- email: "email";
14538
- search: "search";
14539
- vectorDb: "vectorDb";
14540
- fileStorage: "fileStorage";
14541
- jobQueue: "jobQueue";
14542
- rateLimit: "rateLimit";
14543
- botProtection: "botProtection";
14544
- testing: "testing";
14532
+ runtime: "runtime";
14533
+ api: "api";
14545
14534
  stateManagement: "stateManagement";
14546
14535
  forms: "forms";
14536
+ testing: "testing";
14537
+ email: "email";
14538
+ validation: "validation";
14539
+ realtime: "realtime";
14540
+ jobQueue: "jobQueue";
14547
14541
  animation: "animation";
14548
14542
  fileUpload: "fileUpload";
14549
- validation: "validation";
14550
- effect: "effect";
14551
- ui: "ui";
14552
- css: "css";
14553
- storage: "storage";
14554
- ota: "ota";
14555
- deepLinking: "deepLinking";
14556
- ai: "ai";
14557
- payments: "payments";
14558
14543
  logging: "logging";
14544
+ observability: "observability";
14559
14545
  featureFlags: "featureFlags";
14560
14546
  integrations: "integrations";
14561
14547
  ecommerce: "ecommerce";
14562
14548
  analytics: "analytics";
14563
14549
  webMcp: "webMcp";
14564
14550
  cms: "cms";
14551
+ caching: "caching";
14552
+ rateLimit: "rateLimit";
14553
+ botProtection: "botProtection";
14565
14554
  i18n: "i18n";
14555
+ search: "search";
14556
+ vectorDb: "vectorDb";
14557
+ fileStorage: "fileStorage";
14558
+ config: "config";
14559
+ graphql: "graphql";
14560
+ deploy: "deploy";
14561
+ migrations: "migrations";
14562
+ navigation: "navigation";
14563
+ ui: "ui";
14564
+ css: "css";
14565
+ storage: "storage";
14566
+ push: "push";
14567
+ ota: "ota";
14568
+ deepLinking: "deepLinking";
14566
14569
  documentation: "documentation";
14567
14570
  codeQuality: "codeQuality";
14568
14571
  appPlatform: "appPlatform";
@@ -14579,20 +14582,17 @@ declare function getAllJsonSchemas(): {
14579
14582
  apiGateway: "apiGateway";
14580
14583
  continuousIntegration: "continuousIntegration";
14581
14584
  backendUtilities: "backendUtilities";
14582
- examples: "examples";
14583
14585
  language: "language";
14584
14586
  buildTool: "buildTool";
14585
14587
  cli: "cli";
14586
14588
  errorHandling: "errorHandling";
14587
14589
  httpClient: "httpClient";
14588
14590
  libraries: "libraries";
14589
- config: "config";
14590
14591
  templating: "templating";
14591
14592
  cloudSdk: "cloudSdk";
14592
14593
  data: "data";
14593
14594
  media: "media";
14594
14595
  server: "server";
14595
- packageManager: "packageManager";
14596
14596
  messageQueue: "messageQueue";
14597
14597
  }>;
14598
14598
  toolId: z.ZodString;