@better-fullstack/types 2.6.1 → 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-vm2Pzryr.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 +364 -364
  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-ah-Pon-K.d.mts → schemas-82xJXQrZ.d.mts} +719 -637
  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-B2L-S2-8.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-BJ9ulTxF.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-CxFTot-Q.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-Bp46Ajyg.mjs.map +0 -1
  44. package/dist/defaults-vm2Pzryr.d.mts.map +0 -1
  45. package/dist/schemas-CH1UszP5.mjs.map +0 -1
  46. package/dist/schemas-ah-Pon-K.d.mts.map +0 -1
  47. package/dist/stack-graph-AWbdUrN3.mjs.map +0 -1
  48. package/dist/stack-graph-B2L-S2-8.d.mts.map +0 -1
  49. package/dist/stack-translation-BJ9ulTxF.d.mts.map +0 -1
  50. package/dist/stack-translation-Cn6zGJ5q.mjs.map +0 -1
  51. package/dist/types-CxFTot-Q.d.mts.map +0 -1
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
 
3
- //#region src/schemas.d.ts
3
+ //#region src/config/schemas.d.ts
4
4
  declare const EcosystemSchema: z.ZodEnum<{
5
5
  typescript: "typescript";
6
6
  "react-native": "react-native";
@@ -22,14 +22,28 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
22
22
  dotnet: "dotnet";
23
23
  }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
24
24
  declare const StackPartRoleSchema: z.ZodEnum<{
25
- runtime: "runtime";
25
+ effect: "effect";
26
+ ai: "ai";
27
+ frontend: "frontend";
26
28
  backend: "backend";
29
+ mobile: "mobile";
27
30
  database: "database";
28
31
  orm: "orm";
29
- dbSetup: "dbSetup";
30
32
  auth: "auth";
31
33
  payments: "payments";
34
+ examples: "examples";
35
+ packageManager: "packageManager";
36
+ dbSetup: "dbSetup";
37
+ runtime: "runtime";
38
+ api: "api";
39
+ stateManagement: "stateManagement";
40
+ forms: "forms";
41
+ testing: "testing";
32
42
  email: "email";
43
+ validation: "validation";
44
+ realtime: "realtime";
45
+ jobQueue: "jobQueue";
46
+ animation: "animation";
33
47
  fileUpload: "fileUpload";
34
48
  logging: "logging";
35
49
  observability: "observability";
@@ -37,53 +51,40 @@ declare const StackPartRoleSchema: z.ZodEnum<{
37
51
  integrations: "integrations";
38
52
  ecommerce: "ecommerce";
39
53
  analytics: "analytics";
40
- stateManagement: "stateManagement";
41
- forms: "forms";
42
- validation: "validation";
43
- testing: "testing";
44
- realtime: "realtime";
45
- jobQueue: "jobQueue";
54
+ cms: "cms";
46
55
  caching: "caching";
47
56
  rateLimit: "rateLimit";
48
57
  botProtection: "botProtection";
49
- animation: "animation";
50
- cms: "cms";
51
58
  i18n: "i18n";
52
59
  search: "search";
53
60
  vectorDb: "vectorDb";
54
61
  fileStorage: "fileStorage";
55
- codeQuality: "codeQuality";
56
- documentation: "documentation";
57
- packageManager: "packageManager";
58
- examples: "examples";
59
- api: "api";
60
- workspaceRunner: "workspaceRunner";
61
- gitHooks: "gitHooks";
62
- staticAnalysis: "staticAnalysis";
63
- aiTooling: "aiTooling";
64
- codeGeneration: "codeGeneration";
65
- developerEnvironment: "developerEnvironment";
66
- containerOrchestration: "containerOrchestration";
67
- apiGateway: "apiGateway";
68
- continuousIntegration: "continuousIntegration";
69
- ai: "ai";
70
- effect: "effect";
71
- css: "css";
72
- ui: "ui";
73
- push: "push";
74
- frontend: "frontend";
75
- mobile: "mobile";
62
+ config: "config";
76
63
  graphql: "graphql";
77
64
  deploy: "deploy";
78
65
  migrations: "migrations";
79
66
  navigation: "navigation";
67
+ ui: "ui";
68
+ css: "css";
80
69
  storage: "storage";
70
+ push: "push";
81
71
  ota: "ota";
82
72
  deepLinking: "deepLinking";
73
+ documentation: "documentation";
74
+ codeQuality: "codeQuality";
83
75
  appPlatform: "appPlatform";
84
76
  dataFetching: "dataFetching";
85
77
  workspaceTooling: "workspaceTooling";
86
78
  toolchain: "toolchain";
79
+ workspaceRunner: "workspaceRunner";
80
+ gitHooks: "gitHooks";
81
+ staticAnalysis: "staticAnalysis";
82
+ aiTooling: "aiTooling";
83
+ codeGeneration: "codeGeneration";
84
+ developerEnvironment: "developerEnvironment";
85
+ containerOrchestration: "containerOrchestration";
86
+ apiGateway: "apiGateway";
87
+ continuousIntegration: "continuousIntegration";
87
88
  backendUtilities: "backendUtilities";
88
89
  language: "language";
89
90
  buildTool: "buildTool";
@@ -91,7 +92,6 @@ declare const StackPartRoleSchema: z.ZodEnum<{
91
92
  errorHandling: "errorHandling";
92
93
  httpClient: "httpClient";
93
94
  libraries: "libraries";
94
- config: "config";
95
95
  templating: "templating";
96
96
  cloudSdk: "cloudSdk";
97
97
  data: "data";
@@ -109,14 +109,28 @@ declare const StackPartSourceSchema: z.ZodEnum<{
109
109
  declare const StackPartSchema: z.ZodObject<{
110
110
  id: z.ZodString;
111
111
  role: z.ZodEnum<{
112
- runtime: "runtime";
112
+ effect: "effect";
113
+ ai: "ai";
114
+ frontend: "frontend";
113
115
  backend: "backend";
116
+ mobile: "mobile";
114
117
  database: "database";
115
118
  orm: "orm";
116
- dbSetup: "dbSetup";
117
119
  auth: "auth";
118
120
  payments: "payments";
121
+ examples: "examples";
122
+ packageManager: "packageManager";
123
+ dbSetup: "dbSetup";
124
+ runtime: "runtime";
125
+ api: "api";
126
+ stateManagement: "stateManagement";
127
+ forms: "forms";
128
+ testing: "testing";
119
129
  email: "email";
130
+ validation: "validation";
131
+ realtime: "realtime";
132
+ jobQueue: "jobQueue";
133
+ animation: "animation";
120
134
  fileUpload: "fileUpload";
121
135
  logging: "logging";
122
136
  observability: "observability";
@@ -124,53 +138,40 @@ declare const StackPartSchema: z.ZodObject<{
124
138
  integrations: "integrations";
125
139
  ecommerce: "ecommerce";
126
140
  analytics: "analytics";
127
- stateManagement: "stateManagement";
128
- forms: "forms";
129
- validation: "validation";
130
- testing: "testing";
131
- realtime: "realtime";
132
- jobQueue: "jobQueue";
141
+ cms: "cms";
133
142
  caching: "caching";
134
143
  rateLimit: "rateLimit";
135
144
  botProtection: "botProtection";
136
- animation: "animation";
137
- cms: "cms";
138
145
  i18n: "i18n";
139
146
  search: "search";
140
147
  vectorDb: "vectorDb";
141
148
  fileStorage: "fileStorage";
142
- codeQuality: "codeQuality";
143
- documentation: "documentation";
144
- packageManager: "packageManager";
145
- examples: "examples";
146
- api: "api";
147
- workspaceRunner: "workspaceRunner";
148
- gitHooks: "gitHooks";
149
- staticAnalysis: "staticAnalysis";
150
- aiTooling: "aiTooling";
151
- codeGeneration: "codeGeneration";
152
- developerEnvironment: "developerEnvironment";
153
- containerOrchestration: "containerOrchestration";
154
- apiGateway: "apiGateway";
155
- continuousIntegration: "continuousIntegration";
156
- ai: "ai";
157
- effect: "effect";
158
- css: "css";
159
- ui: "ui";
160
- push: "push";
161
- frontend: "frontend";
162
- mobile: "mobile";
149
+ config: "config";
163
150
  graphql: "graphql";
164
151
  deploy: "deploy";
165
152
  migrations: "migrations";
166
153
  navigation: "navigation";
154
+ ui: "ui";
155
+ css: "css";
167
156
  storage: "storage";
157
+ push: "push";
168
158
  ota: "ota";
169
159
  deepLinking: "deepLinking";
160
+ documentation: "documentation";
161
+ codeQuality: "codeQuality";
170
162
  appPlatform: "appPlatform";
171
163
  dataFetching: "dataFetching";
172
164
  workspaceTooling: "workspaceTooling";
173
165
  toolchain: "toolchain";
166
+ workspaceRunner: "workspaceRunner";
167
+ gitHooks: "gitHooks";
168
+ staticAnalysis: "staticAnalysis";
169
+ aiTooling: "aiTooling";
170
+ codeGeneration: "codeGeneration";
171
+ developerEnvironment: "developerEnvironment";
172
+ containerOrchestration: "containerOrchestration";
173
+ apiGateway: "apiGateway";
174
+ continuousIntegration: "continuousIntegration";
174
175
  backendUtilities: "backendUtilities";
175
176
  language: "language";
176
177
  buildTool: "buildTool";
@@ -178,7 +179,6 @@ declare const StackPartSchema: z.ZodObject<{
178
179
  errorHandling: "errorHandling";
179
180
  httpClient: "httpClient";
180
181
  libraries: "libraries";
181
- config: "config";
182
182
  templating: "templating";
183
183
  cloudSdk: "cloudSdk";
184
184
  data: "data";
@@ -207,7 +207,7 @@ declare const StackPartSchema: z.ZodObject<{
207
207
  }>;
208
208
  providedByPartId: z.ZodOptional<z.ZodString>;
209
209
  targetPath: z.ZodOptional<z.ZodString>;
210
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
210
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
211
211
  }, z.core.$strip>;
212
212
  declare const DatabaseSchema: z.ZodEnum<{
213
213
  none: "none";
@@ -229,13 +229,13 @@ declare const ORMSchema: z.ZodEnum<{
229
229
  sequelize: "sequelize";
230
230
  }>;
231
231
  declare const BackendSchema: z.ZodEnum<{
232
- effect: "effect";
233
232
  none: "none";
234
233
  hono: "hono";
235
234
  express: "express";
236
235
  fastify: "fastify";
237
236
  elysia: "elysia";
238
237
  fets: "fets";
238
+ effect: "effect";
239
239
  nestjs: "nestjs";
240
240
  adonisjs: "adonisjs";
241
241
  nitro: "nitro";
@@ -326,8 +326,8 @@ declare const AddonsSchema: z.ZodEnum<{
326
326
  /** @deprecated Use tooling capability metadata and Stack Part role bindings. */
327
327
  declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
328
328
  declare const ExamplesSchema: z.ZodEnum<{
329
- ai: "ai";
330
329
  none: "none";
330
+ ai: "ai";
331
331
  "chat-sdk": "chat-sdk";
332
332
  "tanstack-showcase": "tanstack-showcase";
333
333
  }>;
@@ -435,8 +435,8 @@ declare const AISchema: z.ZodEnum<{
435
435
  "ai-cli": "ai-cli";
436
436
  }>;
437
437
  declare const EffectSchema: z.ZodEnum<{
438
- effect: "effect";
439
438
  none: "none";
439
+ effect: "effect";
440
440
  "effect-full": "effect-full";
441
441
  }>;
442
442
  declare const StateManagementSchema: z.ZodEnum<{
@@ -491,9 +491,9 @@ declare const EmailSchema: z.ZodEnum<{
491
491
  plunk: "plunk";
492
492
  }>;
493
493
  declare const RealtimeSchema: z.ZodEnum<{
494
- ws: "ws";
495
494
  none: "none";
496
495
  "socket-io": "socket-io";
496
+ ws: "ws";
497
497
  partykit: "partykit";
498
498
  ably: "ably";
499
499
  pusher: "pusher";
@@ -623,9 +623,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
623
623
  }>;
624
624
  declare const MobileUISchema: z.ZodEnum<{
625
625
  none: "none";
626
+ uniwind: "uniwind";
626
627
  tamagui: "tamagui";
627
628
  "gluestack-ui": "gluestack-ui";
628
- uniwind: "uniwind";
629
629
  unistyles: "unistyles";
630
630
  }>;
631
631
  declare const MobileStorageSchema: z.ZodEnum<{
@@ -742,11 +742,11 @@ declare const RustCliSchema: z.ZodEnum<{
742
742
  }>;
743
743
  declare const RustLibrariesSchema: z.ZodEnum<{
744
744
  none: "none";
745
- config: "config";
746
745
  serde: "serde";
747
746
  uuid: "uuid";
748
747
  chrono: "chrono";
749
748
  reqwest: "reqwest";
749
+ config: "config";
750
750
  dashmap: "dashmap";
751
751
  "parking-lot": "parking-lot";
752
752
  secrecy: "secrecy";
@@ -952,10 +952,10 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
952
952
  httprouter: "httprouter";
953
953
  }>;
954
954
  declare const GoOrmSchema: z.ZodEnum<{
955
- gorm: "gorm";
956
955
  none: "none";
957
956
  bun: "bun";
958
957
  sqlx: "sqlx";
958
+ gorm: "gorm";
959
959
  sqlc: "sqlc";
960
960
  ent: "ent";
961
961
  }>;
@@ -1364,7 +1364,6 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
1364
1364
  "styled-components": "styled-components";
1365
1365
  }>;
1366
1366
  declare const UILibrarySchema: z.ZodEnum<{
1367
- mui: "mui";
1368
1367
  none: "none";
1369
1368
  "shadcn-ui": "shadcn-ui";
1370
1369
  "shadcn-svelte": "shadcn-svelte";
@@ -1375,6 +1374,7 @@ declare const UILibrarySchema: z.ZodEnum<{
1375
1374
  "chakra-ui": "chakra-ui";
1376
1375
  nextui: "nextui";
1377
1376
  mantine: "mantine";
1377
+ mui: "mui";
1378
1378
  antd: "antd";
1379
1379
  "base-ui": "base-ui";
1380
1380
  "ark-ui": "ark-ui";
@@ -1452,42 +1452,124 @@ declare const ShadcnRadiusSchema: z.ZodEnum<{
1452
1452
  medium: "medium";
1453
1453
  large: "large";
1454
1454
  }>;
1455
+ declare const SHADCN_STACK_PART_SETTING_KEYS: readonly ["shadcnBase", "shadcnStyle", "shadcnIconLibrary", "shadcnColorTheme", "shadcnBaseColor", "shadcnFont", "shadcnRadius"];
1456
+ declare const StackPartSettingsSchema: z.ZodObject<{
1457
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1458
+ none: "none";
1459
+ vue: "vue";
1460
+ svelte: "svelte";
1461
+ solid: "solid";
1462
+ react: "react";
1463
+ }>>;
1464
+ shadcnBase: z.ZodOptional<z.ZodEnum<{
1465
+ radix: "radix";
1466
+ base: "base";
1467
+ }>>;
1468
+ shadcnStyle: z.ZodOptional<z.ZodEnum<{
1469
+ vega: "vega";
1470
+ nova: "nova";
1471
+ maia: "maia";
1472
+ lyra: "lyra";
1473
+ mira: "mira";
1474
+ luma: "luma";
1475
+ sera: "sera";
1476
+ }>>;
1477
+ shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
1478
+ lucide: "lucide";
1479
+ tabler: "tabler";
1480
+ hugeicons: "hugeicons";
1481
+ phosphor: "phosphor";
1482
+ remixicon: "remixicon";
1483
+ heroicons: "heroicons";
1484
+ "react-icons": "react-icons";
1485
+ }>>;
1486
+ shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
1487
+ neutral: "neutral";
1488
+ stone: "stone";
1489
+ zinc: "zinc";
1490
+ gray: "gray";
1491
+ amber: "amber";
1492
+ blue: "blue";
1493
+ cyan: "cyan";
1494
+ emerald: "emerald";
1495
+ fuchsia: "fuchsia";
1496
+ green: "green";
1497
+ indigo: "indigo";
1498
+ lime: "lime";
1499
+ orange: "orange";
1500
+ pink: "pink";
1501
+ purple: "purple";
1502
+ red: "red";
1503
+ rose: "rose";
1504
+ sky: "sky";
1505
+ teal: "teal";
1506
+ violet: "violet";
1507
+ yellow: "yellow";
1508
+ }>>;
1509
+ shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
1510
+ neutral: "neutral";
1511
+ stone: "stone";
1512
+ zinc: "zinc";
1513
+ gray: "gray";
1514
+ }>>;
1515
+ shadcnFont: z.ZodOptional<z.ZodEnum<{
1516
+ inter: "inter";
1517
+ geist: "geist";
1518
+ "noto-sans": "noto-sans";
1519
+ "nunito-sans": "nunito-sans";
1520
+ figtree: "figtree";
1521
+ roboto: "roboto";
1522
+ raleway: "raleway";
1523
+ "dm-sans": "dm-sans";
1524
+ "public-sans": "public-sans";
1525
+ outfit: "outfit";
1526
+ "jetbrains-mono": "jetbrains-mono";
1527
+ "geist-mono": "geist-mono";
1528
+ }>>;
1529
+ shadcnRadius: z.ZodOptional<z.ZodEnum<{
1530
+ none: "none";
1531
+ default: "default";
1532
+ small: "small";
1533
+ medium: "medium";
1534
+ large: "large";
1535
+ }>>;
1536
+ }, z.core.$catchall<z.ZodUnknown>>;
1455
1537
  declare const DirectoryConflictSchema: z.ZodEnum<{
1456
- error: "error";
1457
1538
  merge: "merge";
1458
1539
  overwrite: "overwrite";
1459
1540
  increment: "increment";
1541
+ error: "error";
1460
1542
  }>;
1461
1543
  declare const TemplateSchema: z.ZodEnum<{
1462
1544
  none: "none";
1463
- uniwind: "uniwind";
1464
1545
  mern: "mern";
1465
1546
  pern: "pern";
1466
1547
  t3: "t3";
1467
1548
  saas: "saas";
1549
+ uniwind: "uniwind";
1468
1550
  }>;
1469
1551
  declare const ProjectShapeSchema: z.ZodEnum<{
1470
- backend: "backend";
1552
+ fullstack: "fullstack";
1471
1553
  frontend: "frontend";
1554
+ backend: "backend";
1472
1555
  mobile: "mobile";
1473
- fullstack: "fullstack";
1474
1556
  }>;
1475
1557
  declare const ProjectNameSchema: z.ZodString;
1476
1558
  declare const CreateInputSchema: z.ZodObject<{
1477
1559
  projectName: z.ZodOptional<z.ZodString>;
1478
1560
  template: z.ZodOptional<z.ZodEnum<{
1479
1561
  none: "none";
1480
- uniwind: "uniwind";
1481
1562
  mern: "mern";
1482
1563
  pern: "pern";
1483
1564
  t3: "t3";
1484
1565
  saas: "saas";
1566
+ uniwind: "uniwind";
1485
1567
  }>>;
1486
1568
  shape: z.ZodOptional<z.ZodEnum<{
1487
- backend: "backend";
1569
+ fullstack: "fullstack";
1488
1570
  frontend: "frontend";
1571
+ backend: "backend";
1489
1572
  mobile: "mobile";
1490
- fullstack: "fullstack";
1491
1573
  }>>;
1492
1574
  yes: z.ZodOptional<z.ZodBoolean>;
1493
1575
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -1619,8 +1701,8 @@ declare const CreateInputSchema: z.ZodObject<{
1619
1701
  capacitor: "capacitor";
1620
1702
  }>>>;
1621
1703
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1622
- ai: "ai";
1623
1704
  none: "none";
1705
+ ai: "ai";
1624
1706
  "chat-sdk": "chat-sdk";
1625
1707
  "tanstack-showcase": "tanstack-showcase";
1626
1708
  }>>>;
@@ -1654,13 +1736,13 @@ declare const CreateInputSchema: z.ZodObject<{
1654
1736
  docker: "docker";
1655
1737
  }>>;
1656
1738
  backend: z.ZodOptional<z.ZodEnum<{
1657
- effect: "effect";
1658
1739
  none: "none";
1659
1740
  hono: "hono";
1660
1741
  express: "express";
1661
1742
  fastify: "fastify";
1662
1743
  elysia: "elysia";
1663
1744
  fets: "fets";
1745
+ effect: "effect";
1664
1746
  nestjs: "nestjs";
1665
1747
  adonisjs: "adonisjs";
1666
1748
  nitro: "nitro";
@@ -1707,10 +1789,10 @@ declare const CreateInputSchema: z.ZodObject<{
1707
1789
  vercel: "vercel";
1708
1790
  }>>;
1709
1791
  directoryConflict: z.ZodOptional<z.ZodEnum<{
1710
- error: "error";
1711
1792
  merge: "merge";
1712
1793
  overwrite: "overwrite";
1713
1794
  increment: "increment";
1795
+ error: "error";
1714
1796
  }>>;
1715
1797
  renderTitle: z.ZodOptional<z.ZodBoolean>;
1716
1798
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -1739,8 +1821,8 @@ declare const CreateInputSchema: z.ZodObject<{
1739
1821
  "ai-cli": "ai-cli";
1740
1822
  }>>;
1741
1823
  effect: z.ZodOptional<z.ZodEnum<{
1742
- effect: "effect";
1743
1824
  none: "none";
1825
+ effect: "effect";
1744
1826
  "effect-full": "effect-full";
1745
1827
  }>>;
1746
1828
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -1793,7 +1875,6 @@ declare const CreateInputSchema: z.ZodObject<{
1793
1875
  "styled-components": "styled-components";
1794
1876
  }>>;
1795
1877
  uiLibrary: z.ZodOptional<z.ZodEnum<{
1796
- mui: "mui";
1797
1878
  none: "none";
1798
1879
  "shadcn-ui": "shadcn-ui";
1799
1880
  "shadcn-svelte": "shadcn-svelte";
@@ -1804,6 +1885,7 @@ declare const CreateInputSchema: z.ZodObject<{
1804
1885
  "chakra-ui": "chakra-ui";
1805
1886
  nextui: "nextui";
1806
1887
  mantine: "mantine";
1888
+ mui: "mui";
1807
1889
  antd: "antd";
1808
1890
  "base-ui": "base-ui";
1809
1891
  "ark-ui": "ark-ui";
@@ -1892,9 +1974,9 @@ declare const CreateInputSchema: z.ZodObject<{
1892
1974
  "effect-schema": "effect-schema";
1893
1975
  }>>;
1894
1976
  realtime: z.ZodOptional<z.ZodEnum<{
1895
- ws: "ws";
1896
1977
  none: "none";
1897
1978
  "socket-io": "socket-io";
1979
+ ws: "ws";
1898
1980
  partykit: "partykit";
1899
1981
  ably: "ably";
1900
1982
  pusher: "pusher";
@@ -2024,9 +2106,9 @@ declare const CreateInputSchema: z.ZodObject<{
2024
2106
  }>>;
2025
2107
  mobileUI: z.ZodOptional<z.ZodEnum<{
2026
2108
  none: "none";
2109
+ uniwind: "uniwind";
2027
2110
  tamagui: "tamagui";
2028
2111
  "gluestack-ui": "gluestack-ui";
2029
- uniwind: "uniwind";
2030
2112
  unistyles: "unistyles";
2031
2113
  }>>;
2032
2114
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -2143,11 +2225,11 @@ declare const CreateInputSchema: z.ZodObject<{
2143
2225
  }>>;
2144
2226
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2145
2227
  none: "none";
2146
- config: "config";
2147
2228
  serde: "serde";
2148
2229
  uuid: "uuid";
2149
2230
  chrono: "chrono";
2150
2231
  reqwest: "reqwest";
2232
+ config: "config";
2151
2233
  dashmap: "dashmap";
2152
2234
  "parking-lot": "parking-lot";
2153
2235
  secrecy: "secrecy";
@@ -2353,10 +2435,10 @@ declare const CreateInputSchema: z.ZodObject<{
2353
2435
  httprouter: "httprouter";
2354
2436
  }>>;
2355
2437
  goOrm: z.ZodOptional<z.ZodEnum<{
2356
- gorm: "gorm";
2357
2438
  none: "none";
2358
2439
  bun: "bun";
2359
2440
  sqlx: "sqlx";
2441
+ gorm: "gorm";
2360
2442
  sqlc: "sqlc";
2361
2443
  ent: "ent";
2362
2444
  }>>;
@@ -2759,37 +2841,58 @@ declare const CreateInputSchema: z.ZodObject<{
2759
2841
  part: z.ZodOptional<z.ZodArray<z.ZodString>>;
2760
2842
  }, z.core.$strip>;
2761
2843
  declare const AddInputSchema: z.ZodObject<{
2762
- ecosystem: z.ZodOptional<z.ZodEnum<{
2763
- typescript: "typescript";
2764
- "react-native": "react-native";
2765
- rust: "rust";
2766
- python: "python";
2767
- go: "go";
2768
- java: "java";
2769
- elixir: "elixir";
2770
- dotnet: "dotnet";
2844
+ effect: z.ZodOptional<z.ZodEnum<{
2845
+ none: "none";
2846
+ effect: "effect";
2847
+ "effect-full": "effect-full";
2771
2848
  }>>;
2772
- astroIntegration: z.ZodOptional<z.ZodEnum<{
2849
+ ai: z.ZodOptional<z.ZodEnum<{
2850
+ none: "none";
2851
+ "vercel-ai": "vercel-ai";
2852
+ mastra: "mastra";
2853
+ voltagent: "voltagent";
2854
+ langgraph: "langgraph";
2855
+ "openai-agents": "openai-agents";
2856
+ "openai-sdk": "openai-sdk";
2857
+ "anthropic-sdk": "anthropic-sdk";
2858
+ "google-adk": "google-adk";
2859
+ modelfusion: "modelfusion";
2860
+ langchain: "langchain";
2861
+ llamaindex: "llamaindex";
2862
+ "tanstack-ai": "tanstack-ai";
2863
+ "ai-cli": "ai-cli";
2864
+ }>>;
2865
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2773
2866
  none: "none";
2867
+ "tanstack-router": "tanstack-router";
2868
+ "react-router": "react-router";
2869
+ "react-vite": "react-vite";
2870
+ "vanilla-vite": "vanilla-vite";
2774
2871
  vue: "vue";
2872
+ "tanstack-start": "tanstack-start";
2873
+ next: "next";
2874
+ vinext: "vinext";
2875
+ nuxt: "nuxt";
2876
+ "native-bare": "native-bare";
2877
+ "native-uniwind": "native-uniwind";
2878
+ "native-unistyles": "native-unistyles";
2775
2879
  svelte: "svelte";
2776
2880
  solid: "solid";
2777
- react: "react";
2778
- }>>;
2779
- runtime: z.ZodOptional<z.ZodEnum<{
2780
- none: "none";
2781
- bun: "bun";
2782
- node: "node";
2783
- workers: "workers";
2784
- }>>;
2881
+ "solid-start": "solid-start";
2882
+ astro: "astro";
2883
+ qwik: "qwik";
2884
+ angular: "angular";
2885
+ redwood: "redwood";
2886
+ fresh: "fresh";
2887
+ }>>>;
2785
2888
  backend: z.ZodOptional<z.ZodEnum<{
2786
- effect: "effect";
2787
2889
  none: "none";
2788
2890
  hono: "hono";
2789
2891
  express: "express";
2790
2892
  fastify: "fastify";
2791
2893
  elysia: "elysia";
2792
2894
  fets: "fets";
2895
+ effect: "effect";
2793
2896
  nestjs: "nestjs";
2794
2897
  adonisjs: "adonisjs";
2795
2898
  nitro: "nitro";
@@ -2797,6 +2900,17 @@ declare const AddInputSchema: z.ZodObject<{
2797
2900
  convex: "convex";
2798
2901
  self: "self";
2799
2902
  }>>;
2903
+ dryRun: z.ZodOptional<z.ZodBoolean>;
2904
+ ecosystem: z.ZodOptional<z.ZodEnum<{
2905
+ typescript: "typescript";
2906
+ "react-native": "react-native";
2907
+ rust: "rust";
2908
+ python: "python";
2909
+ go: "go";
2910
+ java: "java";
2911
+ elixir: "elixir";
2912
+ dotnet: "dotnet";
2913
+ }>>;
2800
2914
  database: z.ZodOptional<z.ZodEnum<{
2801
2915
  none: "none";
2802
2916
  sqlite: "sqlite";
@@ -2816,18 +2930,6 @@ declare const AddInputSchema: z.ZodObject<{
2816
2930
  mikroorm: "mikroorm";
2817
2931
  sequelize: "sequelize";
2818
2932
  }>>;
2819
- dbSetup: z.ZodOptional<z.ZodEnum<{
2820
- none: "none";
2821
- turso: "turso";
2822
- neon: "neon";
2823
- "prisma-postgres": "prisma-postgres";
2824
- planetscale: "planetscale";
2825
- "mongodb-atlas": "mongodb-atlas";
2826
- supabase: "supabase";
2827
- upstash: "upstash";
2828
- d1: "d1";
2829
- docker: "docker";
2830
- }>>;
2831
2933
  auth: z.ZodOptional<z.ZodEnum<{
2832
2934
  none: "none";
2833
2935
  "better-auth": "better-auth";
@@ -2856,62 +2958,128 @@ declare const AddInputSchema: z.ZodObject<{
2856
2958
  commet: "commet";
2857
2959
  xendit: "xendit";
2858
2960
  }>>;
2859
- email: z.ZodOptional<z.ZodEnum<{
2961
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2860
2962
  none: "none";
2861
- "react-email": "react-email";
2862
- resend: "resend";
2863
- nodemailer: "nodemailer";
2864
- postmark: "postmark";
2865
- sendgrid: "sendgrid";
2866
- "aws-ses": "aws-ses";
2867
- mailgun: "mailgun";
2868
- plunk: "plunk";
2869
- }>>;
2870
- fileUpload: z.ZodOptional<z.ZodEnum<{
2963
+ pwa: "pwa";
2964
+ tauri: "tauri";
2965
+ starlight: "starlight";
2966
+ biome: "biome";
2967
+ lefthook: "lefthook";
2968
+ husky: "husky";
2969
+ knip: "knip";
2970
+ gitleaks: "gitleaks";
2971
+ ruler: "ruler";
2972
+ mcp: "mcp";
2973
+ skills: "skills";
2974
+ turborepo: "turborepo";
2975
+ nx: "nx";
2976
+ "vite-plus": "vite-plus";
2977
+ fumadocs: "fumadocs";
2978
+ ultracite: "ultracite";
2979
+ oxlint: "oxlint";
2980
+ opentui: "opentui";
2981
+ wxt: "wxt";
2982
+ msw: "msw";
2983
+ storybook: "storybook";
2984
+ swr: "swr";
2985
+ "tanstack-query": "tanstack-query";
2986
+ "tanstack-table": "tanstack-table";
2987
+ "tanstack-virtual": "tanstack-virtual";
2988
+ "tanstack-db": "tanstack-db";
2989
+ "tanstack-pacer": "tanstack-pacer";
2990
+ "backend-utils": "backend-utils";
2991
+ devcontainer: "devcontainer";
2992
+ "docker-compose": "docker-compose";
2993
+ kong: "kong";
2994
+ "github-actions": "github-actions";
2995
+ eslint: "eslint";
2996
+ prettier: "prettier";
2997
+ axios: "axios";
2998
+ firebase: "firebase";
2999
+ "graphql-codegen": "graphql-codegen";
3000
+ "openapi-typescript": "openapi-typescript";
3001
+ "apollo-client": "apollo-client";
3002
+ electron: "electron";
3003
+ capacitor: "capacitor";
3004
+ }>>>;
3005
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2871
3006
  none: "none";
2872
- uploadthing: "uploadthing";
2873
- filepond: "filepond";
2874
- uppy: "uppy";
3007
+ ai: "ai";
3008
+ "chat-sdk": "chat-sdk";
3009
+ "tanstack-showcase": "tanstack-showcase";
3010
+ }>>>;
3011
+ packageManager: z.ZodOptional<z.ZodEnum<{
3012
+ bun: "bun";
3013
+ npm: "npm";
3014
+ pnpm: "pnpm";
3015
+ yarn: "yarn";
2875
3016
  }>>;
2876
- logging: z.ZodOptional<z.ZodEnum<{
3017
+ workspaceShape: z.ZodOptional<z.ZodEnum<{
3018
+ monorepo: "monorepo";
3019
+ "single-app": "single-app";
3020
+ }>>;
3021
+ versionChannel: z.ZodOptional<z.ZodEnum<{
3022
+ stable: "stable";
3023
+ latest: "latest";
3024
+ beta: "beta";
3025
+ }>>;
3026
+ install: z.ZodOptional<z.ZodBoolean>;
3027
+ dbSetup: z.ZodOptional<z.ZodEnum<{
2877
3028
  none: "none";
2878
- pino: "pino";
2879
- winston: "winston";
2880
- evlog: "evlog";
3029
+ turso: "turso";
3030
+ neon: "neon";
3031
+ "prisma-postgres": "prisma-postgres";
3032
+ planetscale: "planetscale";
3033
+ "mongodb-atlas": "mongodb-atlas";
3034
+ supabase: "supabase";
3035
+ upstash: "upstash";
3036
+ d1: "d1";
3037
+ docker: "docker";
2881
3038
  }>>;
2882
- observability: z.ZodOptional<z.ZodEnum<{
3039
+ runtime: z.ZodOptional<z.ZodEnum<{
2883
3040
  none: "none";
2884
- opentelemetry: "opentelemetry";
2885
- signoz: "signoz";
2886
- sentry: "sentry";
2887
- grafana: "grafana";
2888
- datadog: "datadog";
2889
- axiom: "axiom";
2890
- betterstack: "betterstack";
3041
+ bun: "bun";
3042
+ node: "node";
3043
+ workers: "workers";
2891
3044
  }>>;
2892
- featureFlags: z.ZodOptional<z.ZodEnum<{
3045
+ api: z.ZodOptional<z.ZodEnum<{
2893
3046
  none: "none";
2894
- growthbook: "growthbook";
2895
- posthog: "posthog";
2896
- launchdarkly: "launchdarkly";
2897
- flagsmith: "flagsmith";
2898
- unleash: "unleash";
3047
+ trpc: "trpc";
3048
+ orpc: "orpc";
3049
+ "ts-rest": "ts-rest";
3050
+ garph: "garph";
3051
+ "graphql-yoga": "graphql-yoga";
3052
+ "apollo-server": "apollo-server";
3053
+ openapi: "openapi";
2899
3054
  }>>;
2900
- integrations: z.ZodOptional<z.ZodEnum<{
3055
+ webDeploy: z.ZodOptional<z.ZodEnum<{
2901
3056
  none: "none";
2902
- nango: "nango";
3057
+ docker: "docker";
3058
+ cloudflare: "cloudflare";
3059
+ fly: "fly";
3060
+ railway: "railway";
3061
+ render: "render";
3062
+ netlify: "netlify";
3063
+ sst: "sst";
3064
+ vercel: "vercel";
2903
3065
  }>>;
2904
- ecommerce: z.ZodOptional<z.ZodEnum<{
3066
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
2905
3067
  none: "none";
2906
- medusa: "medusa";
3068
+ docker: "docker";
3069
+ cloudflare: "cloudflare";
3070
+ fly: "fly";
3071
+ railway: "railway";
3072
+ render: "render";
3073
+ netlify: "netlify";
3074
+ sst: "sst";
3075
+ vercel: "vercel";
2907
3076
  }>>;
2908
- analytics: z.ZodOptional<z.ZodEnum<{
3077
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
2909
3078
  none: "none";
2910
- posthog: "posthog";
2911
- plausible: "plausible";
2912
- umami: "umami";
2913
- ga4: "ga4";
2914
- "vercel-analytics": "vercel-analytics";
3079
+ vue: "vue";
3080
+ svelte: "svelte";
3081
+ solid: "solid";
3082
+ react: "react";
2915
3083
  }>>;
2916
3084
  stateManagement: z.ZodOptional<z.ZodEnum<{
2917
3085
  none: "none";
@@ -2934,16 +3102,6 @@ declare const AddInputSchema: z.ZodObject<{
2934
3102
  conform: "conform";
2935
3103
  "modular-forms": "modular-forms";
2936
3104
  }>>;
2937
- validation: z.ZodOptional<z.ZodEnum<{
2938
- none: "none";
2939
- zod: "zod";
2940
- valibot: "valibot";
2941
- arktype: "arktype";
2942
- typebox: "typebox";
2943
- typia: "typia";
2944
- runtypes: "runtypes";
2945
- "effect-schema": "effect-schema";
2946
- }>>;
2947
3105
  testing: z.ZodOptional<z.ZodEnum<{
2948
3106
  none: "none";
2949
3107
  vitest: "vitest";
@@ -2953,45 +3111,16 @@ declare const AddInputSchema: z.ZodObject<{
2953
3111
  mocha: "mocha";
2954
3112
  cypress: "cypress";
2955
3113
  }>>;
2956
- realtime: z.ZodOptional<z.ZodEnum<{
2957
- ws: "ws";
2958
- none: "none";
2959
- "socket-io": "socket-io";
2960
- partykit: "partykit";
2961
- ably: "ably";
2962
- pusher: "pusher";
2963
- liveblocks: "liveblocks";
2964
- yjs: "yjs";
2965
- }>>;
2966
- jobQueue: z.ZodOptional<z.ZodEnum<{
2967
- none: "none";
2968
- bullmq: "bullmq";
2969
- "trigger-dev": "trigger-dev";
2970
- inngest: "inngest";
2971
- temporal: "temporal";
2972
- }>>;
2973
- caching: z.ZodOptional<z.ZodEnum<{
2974
- none: "none";
2975
- redis: "redis";
2976
- "upstash-redis": "upstash-redis";
2977
- }>>;
2978
- rateLimit: z.ZodOptional<z.ZodEnum<{
2979
- none: "none";
2980
- arcjet: "arcjet";
2981
- "upstash-ratelimit": "upstash-ratelimit";
2982
- }>>;
2983
- botProtection: z.ZodOptional<z.ZodEnum<{
2984
- none: "none";
2985
- botid: "botid";
2986
- turnstile: "turnstile";
2987
- }>>;
2988
- animation: z.ZodOptional<z.ZodEnum<{
3114
+ email: z.ZodOptional<z.ZodEnum<{
2989
3115
  none: "none";
2990
- "framer-motion": "framer-motion";
2991
- gsap: "gsap";
2992
- "react-spring": "react-spring";
2993
- "auto-animate": "auto-animate";
2994
- lottie: "lottie";
3116
+ "react-email": "react-email";
3117
+ resend: "resend";
3118
+ nodemailer: "nodemailer";
3119
+ postmark: "postmark";
3120
+ sendgrid: "sendgrid";
3121
+ "aws-ses": "aws-ses";
3122
+ mailgun: "mailgun";
3123
+ plunk: "plunk";
2995
3124
  }>>;
2996
3125
  cssFramework: z.ZodOptional<z.ZodEnum<{
2997
3126
  none: "none";
@@ -3002,7 +3131,6 @@ declare const AddInputSchema: z.ZodObject<{
3002
3131
  "styled-components": "styled-components";
3003
3132
  }>>;
3004
3133
  uiLibrary: z.ZodOptional<z.ZodEnum<{
3005
- mui: "mui";
3006
3134
  none: "none";
3007
3135
  "shadcn-ui": "shadcn-ui";
3008
3136
  "shadcn-svelte": "shadcn-svelte";
@@ -3013,6 +3141,7 @@ declare const AddInputSchema: z.ZodObject<{
3013
3141
  "chakra-ui": "chakra-ui";
3014
3142
  nextui: "nextui";
3015
3143
  mantine: "mantine";
3144
+ mui: "mui";
3016
3145
  antd: "antd";
3017
3146
  "base-ui": "base-ui";
3018
3147
  "ark-ui": "ark-ui";
@@ -3090,6 +3219,87 @@ declare const AddInputSchema: z.ZodObject<{
3090
3219
  medium: "medium";
3091
3220
  large: "large";
3092
3221
  }>>;
3222
+ validation: z.ZodOptional<z.ZodEnum<{
3223
+ none: "none";
3224
+ zod: "zod";
3225
+ valibot: "valibot";
3226
+ arktype: "arktype";
3227
+ typebox: "typebox";
3228
+ typia: "typia";
3229
+ runtypes: "runtypes";
3230
+ "effect-schema": "effect-schema";
3231
+ }>>;
3232
+ realtime: z.ZodOptional<z.ZodEnum<{
3233
+ none: "none";
3234
+ "socket-io": "socket-io";
3235
+ ws: "ws";
3236
+ partykit: "partykit";
3237
+ ably: "ably";
3238
+ pusher: "pusher";
3239
+ liveblocks: "liveblocks";
3240
+ yjs: "yjs";
3241
+ }>>;
3242
+ jobQueue: z.ZodOptional<z.ZodEnum<{
3243
+ none: "none";
3244
+ bullmq: "bullmq";
3245
+ "trigger-dev": "trigger-dev";
3246
+ inngest: "inngest";
3247
+ temporal: "temporal";
3248
+ }>>;
3249
+ animation: z.ZodOptional<z.ZodEnum<{
3250
+ none: "none";
3251
+ "framer-motion": "framer-motion";
3252
+ gsap: "gsap";
3253
+ "react-spring": "react-spring";
3254
+ "auto-animate": "auto-animate";
3255
+ lottie: "lottie";
3256
+ }>>;
3257
+ fileUpload: z.ZodOptional<z.ZodEnum<{
3258
+ none: "none";
3259
+ uploadthing: "uploadthing";
3260
+ filepond: "filepond";
3261
+ uppy: "uppy";
3262
+ }>>;
3263
+ logging: z.ZodOptional<z.ZodEnum<{
3264
+ none: "none";
3265
+ pino: "pino";
3266
+ winston: "winston";
3267
+ evlog: "evlog";
3268
+ }>>;
3269
+ observability: z.ZodOptional<z.ZodEnum<{
3270
+ none: "none";
3271
+ opentelemetry: "opentelemetry";
3272
+ signoz: "signoz";
3273
+ sentry: "sentry";
3274
+ grafana: "grafana";
3275
+ datadog: "datadog";
3276
+ axiom: "axiom";
3277
+ betterstack: "betterstack";
3278
+ }>>;
3279
+ featureFlags: z.ZodOptional<z.ZodEnum<{
3280
+ none: "none";
3281
+ growthbook: "growthbook";
3282
+ posthog: "posthog";
3283
+ launchdarkly: "launchdarkly";
3284
+ flagsmith: "flagsmith";
3285
+ unleash: "unleash";
3286
+ }>>;
3287
+ integrations: z.ZodOptional<z.ZodEnum<{
3288
+ none: "none";
3289
+ nango: "nango";
3290
+ }>>;
3291
+ ecommerce: z.ZodOptional<z.ZodEnum<{
3292
+ none: "none";
3293
+ medusa: "medusa";
3294
+ }>>;
3295
+ analytics: z.ZodOptional<z.ZodEnum<{
3296
+ none: "none";
3297
+ posthog: "posthog";
3298
+ plausible: "plausible";
3299
+ umami: "umami";
3300
+ ga4: "ga4";
3301
+ "vercel-analytics": "vercel-analytics";
3302
+ }>>;
3093
3303
  cms: z.ZodOptional<z.ZodEnum<{
3094
3304
  none: "none";
3095
3305
  payload: "payload";
@@ -3100,6 +3310,21 @@ declare const AddInputSchema: z.ZodObject<{
3100
3310
  keystatic: "keystatic";
3101
3311
  contentful: "contentful";
3102
3312
  }>>;
3313
+ caching: z.ZodOptional<z.ZodEnum<{
3314
+ none: "none";
3315
+ redis: "redis";
3316
+ "upstash-redis": "upstash-redis";
3317
+ }>>;
3318
+ rateLimit: z.ZodOptional<z.ZodEnum<{
3319
+ none: "none";
3320
+ arcjet: "arcjet";
3321
+ "upstash-ratelimit": "upstash-ratelimit";
3322
+ }>>;
3323
+ botProtection: z.ZodOptional<z.ZodEnum<{
3324
+ none: "none";
3325
+ botid: "botid";
3326
+ turnstile: "turnstile";
3327
+ }>>;
3103
3328
  i18n: z.ZodOptional<z.ZodEnum<{
3104
3329
  none: "none";
3105
3330
  paraglide: "paraglide";
@@ -3137,9 +3362,9 @@ declare const AddInputSchema: z.ZodObject<{
3137
3362
  }>>;
3138
3363
  mobileUI: z.ZodOptional<z.ZodEnum<{
3139
3364
  none: "none";
3365
+ uniwind: "uniwind";
3140
3366
  tamagui: "tamagui";
3141
3367
  "gluestack-ui": "gluestack-ui";
3142
- uniwind: "uniwind";
3143
3368
  unistyles: "unistyles";
3144
3369
  }>>;
3145
3370
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -3187,66 +3412,6 @@ declare const AddInputSchema: z.ZodObject<{
3187
3412
  "expo-battery": "expo-battery";
3188
3413
  "expo-screen-capture": "expo-screen-capture";
3189
3414
  }>>>;
3190
- packageManager: z.ZodOptional<z.ZodEnum<{
3191
- bun: "bun";
3192
- npm: "npm";
3193
- pnpm: "pnpm";
3194
- yarn: "yarn";
3195
- }>>;
3196
- workspaceShape: z.ZodOptional<z.ZodEnum<{
3197
- monorepo: "monorepo";
3198
- "single-app": "single-app";
3199
- }>>;
3200
- versionChannel: z.ZodOptional<z.ZodEnum<{
3201
- stable: "stable";
3202
- latest: "latest";
3203
- beta: "beta";
3204
- }>>;
3205
- examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3206
- ai: "ai";
3207
- none: "none";
3208
- "chat-sdk": "chat-sdk";
3209
- "tanstack-showcase": "tanstack-showcase";
3210
- }>>>;
3211
- aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3212
- none: "none";
3213
- "claude-md": "claude-md";
3214
- "agents-md": "agents-md";
3215
- cursorrules: "cursorrules";
3216
- }>>>;
3217
- install: z.ZodOptional<z.ZodBoolean>;
3218
- api: z.ZodOptional<z.ZodEnum<{
3219
- none: "none";
3220
- trpc: "trpc";
3221
- orpc: "orpc";
3222
- "ts-rest": "ts-rest";
3223
- garph: "garph";
3224
- "graphql-yoga": "graphql-yoga";
3225
- "apollo-server": "apollo-server";
3226
- openapi: "openapi";
3227
- }>>;
3228
- webDeploy: z.ZodOptional<z.ZodEnum<{
3229
- none: "none";
3230
- docker: "docker";
3231
- cloudflare: "cloudflare";
3232
- fly: "fly";
3233
- railway: "railway";
3234
- render: "render";
3235
- netlify: "netlify";
3236
- sst: "sst";
3237
- vercel: "vercel";
3238
- }>>;
3239
- serverDeploy: z.ZodOptional<z.ZodEnum<{
3240
- none: "none";
3241
- docker: "docker";
3242
- cloudflare: "cloudflare";
3243
- fly: "fly";
3244
- railway: "railway";
3245
- render: "render";
3246
- netlify: "netlify";
3247
- sst: "sst";
3248
- vercel: "vercel";
3249
- }>>;
3250
3415
  rustWebFramework: z.ZodOptional<z.ZodEnum<{
3251
3416
  none: "none";
3252
3417
  axum: "axum";
@@ -3316,11 +3481,11 @@ declare const AddInputSchema: z.ZodObject<{
3316
3481
  }>>;
3317
3482
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3318
3483
  none: "none";
3319
- config: "config";
3320
3484
  serde: "serde";
3321
3485
  uuid: "uuid";
3322
3486
  chrono: "chrono";
3323
3487
  reqwest: "reqwest";
3488
+ config: "config";
3324
3489
  dashmap: "dashmap";
3325
3490
  "parking-lot": "parking-lot";
3326
3491
  secrecy: "secrecy";
@@ -3526,10 +3691,10 @@ declare const AddInputSchema: z.ZodObject<{
3526
3691
  httprouter: "httprouter";
3527
3692
  }>>;
3528
3693
  goOrm: z.ZodOptional<z.ZodEnum<{
3529
- gorm: "gorm";
3530
3694
  none: "none";
3531
3695
  bun: "bun";
3532
3696
  sqlx: "sqlx";
3697
+ gorm: "gorm";
3533
3698
  sqlc: "sqlc";
3534
3699
  ent: "ent";
3535
3700
  }>>;
@@ -3921,98 +4086,15 @@ declare const AddInputSchema: z.ZodObject<{
3921
4086
  broadway: "broadway";
3922
4087
  ex_aws: "ex_aws";
3923
4088
  floki: "floki";
3924
- rustler: "rustler";
3925
- }>>>;
3926
- ai: z.ZodOptional<z.ZodEnum<{
3927
- none: "none";
3928
- "vercel-ai": "vercel-ai";
3929
- mastra: "mastra";
3930
- voltagent: "voltagent";
3931
- langgraph: "langgraph";
3932
- "openai-agents": "openai-agents";
3933
- "openai-sdk": "openai-sdk";
3934
- "anthropic-sdk": "anthropic-sdk";
3935
- "google-adk": "google-adk";
3936
- modelfusion: "modelfusion";
3937
- langchain: "langchain";
3938
- llamaindex: "llamaindex";
3939
- "tanstack-ai": "tanstack-ai";
3940
- "ai-cli": "ai-cli";
3941
- }>>;
3942
- effect: z.ZodOptional<z.ZodEnum<{
3943
- effect: "effect";
3944
- none: "none";
3945
- "effect-full": "effect-full";
3946
- }>>;
3947
- part: z.ZodOptional<z.ZodArray<z.ZodString>>;
3948
- frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3949
- none: "none";
3950
- "tanstack-router": "tanstack-router";
3951
- "react-router": "react-router";
3952
- "react-vite": "react-vite";
3953
- "vanilla-vite": "vanilla-vite";
3954
- vue: "vue";
3955
- "tanstack-start": "tanstack-start";
3956
- next: "next";
3957
- vinext: "vinext";
3958
- nuxt: "nuxt";
3959
- "native-bare": "native-bare";
3960
- "native-uniwind": "native-uniwind";
3961
- "native-unistyles": "native-unistyles";
3962
- svelte: "svelte";
3963
- solid: "solid";
3964
- "solid-start": "solid-start";
3965
- astro: "astro";
3966
- qwik: "qwik";
3967
- angular: "angular";
3968
- redwood: "redwood";
3969
- fresh: "fresh";
3970
- }>>>;
3971
- dryRun: z.ZodOptional<z.ZodBoolean>;
3972
- addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3973
- none: "none";
3974
- pwa: "pwa";
3975
- tauri: "tauri";
3976
- starlight: "starlight";
3977
- biome: "biome";
3978
- lefthook: "lefthook";
3979
- husky: "husky";
3980
- knip: "knip";
3981
- gitleaks: "gitleaks";
3982
- ruler: "ruler";
3983
- mcp: "mcp";
3984
- skills: "skills";
3985
- turborepo: "turborepo";
3986
- nx: "nx";
3987
- "vite-plus": "vite-plus";
3988
- fumadocs: "fumadocs";
3989
- ultracite: "ultracite";
3990
- oxlint: "oxlint";
3991
- opentui: "opentui";
3992
- wxt: "wxt";
3993
- msw: "msw";
3994
- storybook: "storybook";
3995
- swr: "swr";
3996
- "tanstack-query": "tanstack-query";
3997
- "tanstack-table": "tanstack-table";
3998
- "tanstack-virtual": "tanstack-virtual";
3999
- "tanstack-db": "tanstack-db";
4000
- "tanstack-pacer": "tanstack-pacer";
4001
- "backend-utils": "backend-utils";
4002
- devcontainer: "devcontainer";
4003
- "docker-compose": "docker-compose";
4004
- kong: "kong";
4005
- "github-actions": "github-actions";
4006
- eslint: "eslint";
4007
- prettier: "prettier";
4008
- axios: "axios";
4009
- firebase: "firebase";
4010
- "graphql-codegen": "graphql-codegen";
4011
- "openapi-typescript": "openapi-typescript";
4012
- "apollo-client": "apollo-client";
4013
- electron: "electron";
4014
- capacitor: "capacitor";
4089
+ rustler: "rustler";
4090
+ }>>>;
4091
+ aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4092
+ none: "none";
4093
+ "claude-md": "claude-md";
4094
+ "agents-md": "agents-md";
4095
+ cursorrules: "cursorrules";
4015
4096
  }>>>;
4097
+ part: z.ZodOptional<z.ZodArray<z.ZodString>>;
4016
4098
  projectDir: z.ZodOptional<z.ZodString>;
4017
4099
  acknowledgeArchitectureChange: z.ZodOptional<z.ZodBoolean>;
4018
4100
  }, z.core.$strip>;
@@ -4020,17 +4102,17 @@ declare const CLIInputSchema: z.ZodObject<{
4020
4102
  projectName: z.ZodOptional<z.ZodString>;
4021
4103
  template: z.ZodOptional<z.ZodEnum<{
4022
4104
  none: "none";
4023
- uniwind: "uniwind";
4024
4105
  mern: "mern";
4025
4106
  pern: "pern";
4026
4107
  t3: "t3";
4027
4108
  saas: "saas";
4109
+ uniwind: "uniwind";
4028
4110
  }>>;
4029
4111
  shape: z.ZodOptional<z.ZodEnum<{
4030
- backend: "backend";
4112
+ fullstack: "fullstack";
4031
4113
  frontend: "frontend";
4114
+ backend: "backend";
4032
4115
  mobile: "mobile";
4033
- fullstack: "fullstack";
4034
4116
  }>>;
4035
4117
  yes: z.ZodOptional<z.ZodBoolean>;
4036
4118
  yolo: z.ZodOptional<z.ZodBoolean>;
@@ -4162,8 +4244,8 @@ declare const CLIInputSchema: z.ZodObject<{
4162
4244
  capacitor: "capacitor";
4163
4245
  }>>>;
4164
4246
  examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4165
- ai: "ai";
4166
4247
  none: "none";
4248
+ ai: "ai";
4167
4249
  "chat-sdk": "chat-sdk";
4168
4250
  "tanstack-showcase": "tanstack-showcase";
4169
4251
  }>>>;
@@ -4197,13 +4279,13 @@ declare const CLIInputSchema: z.ZodObject<{
4197
4279
  docker: "docker";
4198
4280
  }>>;
4199
4281
  backend: z.ZodOptional<z.ZodEnum<{
4200
- effect: "effect";
4201
4282
  none: "none";
4202
4283
  hono: "hono";
4203
4284
  express: "express";
4204
4285
  fastify: "fastify";
4205
4286
  elysia: "elysia";
4206
4287
  fets: "fets";
4288
+ effect: "effect";
4207
4289
  nestjs: "nestjs";
4208
4290
  adonisjs: "adonisjs";
4209
4291
  nitro: "nitro";
@@ -4250,10 +4332,10 @@ declare const CLIInputSchema: z.ZodObject<{
4250
4332
  vercel: "vercel";
4251
4333
  }>>;
4252
4334
  directoryConflict: z.ZodOptional<z.ZodEnum<{
4253
- error: "error";
4254
4335
  merge: "merge";
4255
4336
  overwrite: "overwrite";
4256
4337
  increment: "increment";
4338
+ error: "error";
4257
4339
  }>>;
4258
4340
  renderTitle: z.ZodOptional<z.ZodBoolean>;
4259
4341
  disableAnalytics: z.ZodOptional<z.ZodBoolean>;
@@ -4282,8 +4364,8 @@ declare const CLIInputSchema: z.ZodObject<{
4282
4364
  "ai-cli": "ai-cli";
4283
4365
  }>>;
4284
4366
  effect: z.ZodOptional<z.ZodEnum<{
4285
- effect: "effect";
4286
4367
  none: "none";
4368
+ effect: "effect";
4287
4369
  "effect-full": "effect-full";
4288
4370
  }>>;
4289
4371
  stateManagement: z.ZodOptional<z.ZodEnum<{
@@ -4336,7 +4418,6 @@ declare const CLIInputSchema: z.ZodObject<{
4336
4418
  "styled-components": "styled-components";
4337
4419
  }>>;
4338
4420
  uiLibrary: z.ZodOptional<z.ZodEnum<{
4339
- mui: "mui";
4340
4421
  none: "none";
4341
4422
  "shadcn-ui": "shadcn-ui";
4342
4423
  "shadcn-svelte": "shadcn-svelte";
@@ -4347,6 +4428,7 @@ declare const CLIInputSchema: z.ZodObject<{
4347
4428
  "chakra-ui": "chakra-ui";
4348
4429
  nextui: "nextui";
4349
4430
  mantine: "mantine";
4431
+ mui: "mui";
4350
4432
  antd: "antd";
4351
4433
  "base-ui": "base-ui";
4352
4434
  "ark-ui": "ark-ui";
@@ -4435,9 +4517,9 @@ declare const CLIInputSchema: z.ZodObject<{
4435
4517
  "effect-schema": "effect-schema";
4436
4518
  }>>;
4437
4519
  realtime: z.ZodOptional<z.ZodEnum<{
4438
- ws: "ws";
4439
4520
  none: "none";
4440
4521
  "socket-io": "socket-io";
4522
+ ws: "ws";
4441
4523
  partykit: "partykit";
4442
4524
  ably: "ably";
4443
4525
  pusher: "pusher";
@@ -4567,9 +4649,9 @@ declare const CLIInputSchema: z.ZodObject<{
4567
4649
  }>>;
4568
4650
  mobileUI: z.ZodOptional<z.ZodEnum<{
4569
4651
  none: "none";
4652
+ uniwind: "uniwind";
4570
4653
  tamagui: "tamagui";
4571
4654
  "gluestack-ui": "gluestack-ui";
4572
- uniwind: "uniwind";
4573
4655
  unistyles: "unistyles";
4574
4656
  }>>;
4575
4657
  mobileStorage: z.ZodOptional<z.ZodEnum<{
@@ -4686,11 +4768,11 @@ declare const CLIInputSchema: z.ZodObject<{
4686
4768
  }>>;
4687
4769
  rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4688
4770
  none: "none";
4689
- config: "config";
4690
4771
  serde: "serde";
4691
4772
  uuid: "uuid";
4692
4773
  chrono: "chrono";
4693
4774
  reqwest: "reqwest";
4775
+ config: "config";
4694
4776
  dashmap: "dashmap";
4695
4777
  "parking-lot": "parking-lot";
4696
4778
  secrecy: "secrecy";
@@ -4896,10 +4978,10 @@ declare const CLIInputSchema: z.ZodObject<{
4896
4978
  httprouter: "httprouter";
4897
4979
  }>>;
4898
4980
  goOrm: z.ZodOptional<z.ZodEnum<{
4899
- gorm: "gorm";
4900
4981
  none: "none";
4901
4982
  bun: "bun";
4902
4983
  sqlx: "sqlx";
4984
+ gorm: "gorm";
4903
4985
  sqlc: "sqlc";
4904
4986
  ent: "ent";
4905
4987
  }>>;
@@ -5336,13 +5418,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
5336
5418
  sequelize: "sequelize";
5337
5419
  }>;
5338
5420
  backend: z.ZodEnum<{
5339
- effect: "effect";
5340
5421
  none: "none";
5341
5422
  hono: "hono";
5342
5423
  express: "express";
5343
5424
  fastify: "fastify";
5344
5425
  elysia: "elysia";
5345
5426
  fets: "fets";
5427
+ effect: "effect";
5346
5428
  nestjs: "nestjs";
5347
5429
  adonisjs: "adonisjs";
5348
5430
  nitro: "nitro";
@@ -5424,8 +5506,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
5424
5506
  capacitor: "capacitor";
5425
5507
  }>>;
5426
5508
  examples: z.ZodArray<z.ZodEnum<{
5427
- ai: "ai";
5428
5509
  none: "none";
5510
+ ai: "ai";
5429
5511
  "chat-sdk": "chat-sdk";
5430
5512
  "tanstack-showcase": "tanstack-showcase";
5431
5513
  }>>;
@@ -5542,8 +5624,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
5542
5624
  "ai-cli": "ai-cli";
5543
5625
  }>;
5544
5626
  effect: z.ZodEnum<{
5545
- effect: "effect";
5546
5627
  none: "none";
5628
+ effect: "effect";
5547
5629
  "effect-full": "effect-full";
5548
5630
  }>;
5549
5631
  stateManagement: z.ZodEnum<{
@@ -5596,7 +5678,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
5596
5678
  "styled-components": "styled-components";
5597
5679
  }>;
5598
5680
  uiLibrary: z.ZodEnum<{
5599
- mui: "mui";
5600
5681
  none: "none";
5601
5682
  "shadcn-ui": "shadcn-ui";
5602
5683
  "shadcn-svelte": "shadcn-svelte";
@@ -5607,6 +5688,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5607
5688
  "chakra-ui": "chakra-ui";
5608
5689
  nextui: "nextui";
5609
5690
  mantine: "mantine";
5691
+ mui: "mui";
5610
5692
  antd: "antd";
5611
5693
  "base-ui": "base-ui";
5612
5694
  "ark-ui": "ark-ui";
@@ -5695,9 +5777,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
5695
5777
  "effect-schema": "effect-schema";
5696
5778
  }>;
5697
5779
  realtime: z.ZodEnum<{
5698
- ws: "ws";
5699
5780
  none: "none";
5700
5781
  "socket-io": "socket-io";
5782
+ ws: "ws";
5701
5783
  partykit: "partykit";
5702
5784
  ably: "ably";
5703
5785
  pusher: "pusher";
@@ -5827,9 +5909,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
5827
5909
  }>;
5828
5910
  mobileUI: z.ZodEnum<{
5829
5911
  none: "none";
5912
+ uniwind: "uniwind";
5830
5913
  tamagui: "tamagui";
5831
5914
  "gluestack-ui": "gluestack-ui";
5832
- uniwind: "uniwind";
5833
5915
  unistyles: "unistyles";
5834
5916
  }>;
5835
5917
  mobileStorage: z.ZodEnum<{
@@ -5946,11 +6028,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
5946
6028
  }>;
5947
6029
  rustLibraries: z.ZodArray<z.ZodEnum<{
5948
6030
  none: "none";
5949
- config: "config";
5950
6031
  serde: "serde";
5951
6032
  uuid: "uuid";
5952
6033
  chrono: "chrono";
5953
6034
  reqwest: "reqwest";
6035
+ config: "config";
5954
6036
  dashmap: "dashmap";
5955
6037
  "parking-lot": "parking-lot";
5956
6038
  secrecy: "secrecy";
@@ -6156,10 +6238,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
6156
6238
  httprouter: "httprouter";
6157
6239
  }>;
6158
6240
  goOrm: z.ZodEnum<{
6159
- gorm: "gorm";
6160
6241
  none: "none";
6161
6242
  bun: "bun";
6162
6243
  sqlx: "sqlx";
6244
+ gorm: "gorm";
6163
6245
  sqlc: "sqlc";
6164
6246
  ent: "ent";
6165
6247
  }>;
@@ -6562,14 +6644,28 @@ declare const ProjectConfigSchema: z.ZodObject<{
6562
6644
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
6563
6645
  id: z.ZodString;
6564
6646
  role: z.ZodEnum<{
6565
- runtime: "runtime";
6647
+ effect: "effect";
6648
+ ai: "ai";
6649
+ frontend: "frontend";
6566
6650
  backend: "backend";
6651
+ mobile: "mobile";
6567
6652
  database: "database";
6568
6653
  orm: "orm";
6569
- dbSetup: "dbSetup";
6570
6654
  auth: "auth";
6571
6655
  payments: "payments";
6656
+ examples: "examples";
6657
+ packageManager: "packageManager";
6658
+ dbSetup: "dbSetup";
6659
+ runtime: "runtime";
6660
+ api: "api";
6661
+ stateManagement: "stateManagement";
6662
+ forms: "forms";
6663
+ testing: "testing";
6572
6664
  email: "email";
6665
+ validation: "validation";
6666
+ realtime: "realtime";
6667
+ jobQueue: "jobQueue";
6668
+ animation: "animation";
6573
6669
  fileUpload: "fileUpload";
6574
6670
  logging: "logging";
6575
6671
  observability: "observability";
@@ -6577,53 +6673,40 @@ declare const ProjectConfigSchema: z.ZodObject<{
6577
6673
  integrations: "integrations";
6578
6674
  ecommerce: "ecommerce";
6579
6675
  analytics: "analytics";
6580
- stateManagement: "stateManagement";
6581
- forms: "forms";
6582
- validation: "validation";
6583
- testing: "testing";
6584
- realtime: "realtime";
6585
- jobQueue: "jobQueue";
6676
+ cms: "cms";
6586
6677
  caching: "caching";
6587
6678
  rateLimit: "rateLimit";
6588
6679
  botProtection: "botProtection";
6589
- animation: "animation";
6590
- cms: "cms";
6591
6680
  i18n: "i18n";
6592
6681
  search: "search";
6593
6682
  vectorDb: "vectorDb";
6594
6683
  fileStorage: "fileStorage";
6595
- codeQuality: "codeQuality";
6596
- documentation: "documentation";
6597
- packageManager: "packageManager";
6598
- examples: "examples";
6599
- api: "api";
6600
- workspaceRunner: "workspaceRunner";
6601
- gitHooks: "gitHooks";
6602
- staticAnalysis: "staticAnalysis";
6603
- aiTooling: "aiTooling";
6604
- codeGeneration: "codeGeneration";
6605
- developerEnvironment: "developerEnvironment";
6606
- containerOrchestration: "containerOrchestration";
6607
- apiGateway: "apiGateway";
6608
- continuousIntegration: "continuousIntegration";
6609
- ai: "ai";
6610
- effect: "effect";
6611
- css: "css";
6612
- ui: "ui";
6613
- push: "push";
6614
- frontend: "frontend";
6615
- mobile: "mobile";
6684
+ config: "config";
6616
6685
  graphql: "graphql";
6617
6686
  deploy: "deploy";
6618
6687
  migrations: "migrations";
6619
6688
  navigation: "navigation";
6689
+ ui: "ui";
6690
+ css: "css";
6620
6691
  storage: "storage";
6692
+ push: "push";
6621
6693
  ota: "ota";
6622
6694
  deepLinking: "deepLinking";
6695
+ documentation: "documentation";
6696
+ codeQuality: "codeQuality";
6623
6697
  appPlatform: "appPlatform";
6624
6698
  dataFetching: "dataFetching";
6625
6699
  workspaceTooling: "workspaceTooling";
6626
6700
  toolchain: "toolchain";
6701
+ workspaceRunner: "workspaceRunner";
6702
+ gitHooks: "gitHooks";
6703
+ staticAnalysis: "staticAnalysis";
6704
+ aiTooling: "aiTooling";
6705
+ codeGeneration: "codeGeneration";
6706
+ developerEnvironment: "developerEnvironment";
6707
+ containerOrchestration: "containerOrchestration";
6708
+ apiGateway: "apiGateway";
6709
+ continuousIntegration: "continuousIntegration";
6627
6710
  backendUtilities: "backendUtilities";
6628
6711
  language: "language";
6629
6712
  buildTool: "buildTool";
@@ -6631,7 +6714,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
6631
6714
  errorHandling: "errorHandling";
6632
6715
  httpClient: "httpClient";
6633
6716
  libraries: "libraries";
6634
- config: "config";
6635
6717
  templating: "templating";
6636
6718
  cloudSdk: "cloudSdk";
6637
6719
  data: "data";
@@ -6660,7 +6742,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
6660
6742
  }>;
6661
6743
  providedByPartId: z.ZodOptional<z.ZodString>;
6662
6744
  targetPath: z.ZodOptional<z.ZodString>;
6663
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6745
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
6664
6746
  }, z.core.$strip>>>;
6665
6747
  }, z.core.$strip>;
6666
6748
  declare const BetterTStackConfigSchema: z.ZodObject<{
@@ -6698,13 +6780,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6698
6780
  sequelize: "sequelize";
6699
6781
  }>;
6700
6782
  backend: z.ZodEnum<{
6701
- effect: "effect";
6702
6783
  none: "none";
6703
6784
  hono: "hono";
6704
6785
  express: "express";
6705
6786
  fastify: "fastify";
6706
6787
  elysia: "elysia";
6707
6788
  fets: "fets";
6789
+ effect: "effect";
6708
6790
  nestjs: "nestjs";
6709
6791
  adonisjs: "adonisjs";
6710
6792
  nitro: "nitro";
@@ -6786,8 +6868,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6786
6868
  capacitor: "capacitor";
6787
6869
  }>>;
6788
6870
  examples: z.ZodArray<z.ZodEnum<{
6789
- ai: "ai";
6790
6871
  none: "none";
6872
+ ai: "ai";
6791
6873
  "chat-sdk": "chat-sdk";
6792
6874
  "tanstack-showcase": "tanstack-showcase";
6793
6875
  }>>;
@@ -6902,8 +6984,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6902
6984
  "ai-cli": "ai-cli";
6903
6985
  }>;
6904
6986
  effect: z.ZodEnum<{
6905
- effect: "effect";
6906
6987
  none: "none";
6988
+ effect: "effect";
6907
6989
  "effect-full": "effect-full";
6908
6990
  }>;
6909
6991
  stateManagement: z.ZodEnum<{
@@ -6956,7 +7038,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6956
7038
  "styled-components": "styled-components";
6957
7039
  }>;
6958
7040
  uiLibrary: z.ZodEnum<{
6959
- mui: "mui";
6960
7041
  none: "none";
6961
7042
  "shadcn-ui": "shadcn-ui";
6962
7043
  "shadcn-svelte": "shadcn-svelte";
@@ -6967,6 +7048,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6967
7048
  "chakra-ui": "chakra-ui";
6968
7049
  nextui: "nextui";
6969
7050
  mantine: "mantine";
7051
+ mui: "mui";
6970
7052
  antd: "antd";
6971
7053
  "base-ui": "base-ui";
6972
7054
  "ark-ui": "ark-ui";
@@ -7055,9 +7137,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7055
7137
  "effect-schema": "effect-schema";
7056
7138
  }>;
7057
7139
  realtime: z.ZodEnum<{
7058
- ws: "ws";
7059
7140
  none: "none";
7060
7141
  "socket-io": "socket-io";
7142
+ ws: "ws";
7061
7143
  partykit: "partykit";
7062
7144
  ably: "ably";
7063
7145
  pusher: "pusher";
@@ -7187,9 +7269,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7187
7269
  }>;
7188
7270
  mobileUI: z.ZodEnum<{
7189
7271
  none: "none";
7272
+ uniwind: "uniwind";
7190
7273
  tamagui: "tamagui";
7191
7274
  "gluestack-ui": "gluestack-ui";
7192
- uniwind: "uniwind";
7193
7275
  unistyles: "unistyles";
7194
7276
  }>;
7195
7277
  mobileStorage: z.ZodEnum<{
@@ -7306,11 +7388,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7306
7388
  }>;
7307
7389
  rustLibraries: z.ZodArray<z.ZodEnum<{
7308
7390
  none: "none";
7309
- config: "config";
7310
7391
  serde: "serde";
7311
7392
  uuid: "uuid";
7312
7393
  chrono: "chrono";
7313
7394
  reqwest: "reqwest";
7395
+ config: "config";
7314
7396
  dashmap: "dashmap";
7315
7397
  "parking-lot": "parking-lot";
7316
7398
  secrecy: "secrecy";
@@ -7516,10 +7598,10 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7516
7598
  httprouter: "httprouter";
7517
7599
  }>;
7518
7600
  goOrm: z.ZodEnum<{
7519
- gorm: "gorm";
7520
7601
  none: "none";
7521
7602
  bun: "bun";
7522
7603
  sqlx: "sqlx";
7604
+ gorm: "gorm";
7523
7605
  sqlc: "sqlc";
7524
7606
  ent: "ent";
7525
7607
  }>;
@@ -7922,14 +8004,28 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7922
8004
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
7923
8005
  id: z.ZodString;
7924
8006
  role: z.ZodEnum<{
7925
- runtime: "runtime";
8007
+ effect: "effect";
8008
+ ai: "ai";
8009
+ frontend: "frontend";
7926
8010
  backend: "backend";
8011
+ mobile: "mobile";
7927
8012
  database: "database";
7928
8013
  orm: "orm";
7929
- dbSetup: "dbSetup";
7930
8014
  auth: "auth";
7931
8015
  payments: "payments";
8016
+ examples: "examples";
8017
+ packageManager: "packageManager";
8018
+ dbSetup: "dbSetup";
8019
+ runtime: "runtime";
8020
+ api: "api";
8021
+ stateManagement: "stateManagement";
8022
+ forms: "forms";
8023
+ testing: "testing";
7932
8024
  email: "email";
8025
+ validation: "validation";
8026
+ realtime: "realtime";
8027
+ jobQueue: "jobQueue";
8028
+ animation: "animation";
7933
8029
  fileUpload: "fileUpload";
7934
8030
  logging: "logging";
7935
8031
  observability: "observability";
@@ -7937,53 +8033,40 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7937
8033
  integrations: "integrations";
7938
8034
  ecommerce: "ecommerce";
7939
8035
  analytics: "analytics";
7940
- stateManagement: "stateManagement";
7941
- forms: "forms";
7942
- validation: "validation";
7943
- testing: "testing";
7944
- realtime: "realtime";
7945
- jobQueue: "jobQueue";
8036
+ cms: "cms";
7946
8037
  caching: "caching";
7947
8038
  rateLimit: "rateLimit";
7948
8039
  botProtection: "botProtection";
7949
- animation: "animation";
7950
- cms: "cms";
7951
8040
  i18n: "i18n";
7952
8041
  search: "search";
7953
8042
  vectorDb: "vectorDb";
7954
8043
  fileStorage: "fileStorage";
7955
- codeQuality: "codeQuality";
7956
- documentation: "documentation";
7957
- packageManager: "packageManager";
7958
- examples: "examples";
7959
- api: "api";
7960
- workspaceRunner: "workspaceRunner";
7961
- gitHooks: "gitHooks";
7962
- staticAnalysis: "staticAnalysis";
7963
- aiTooling: "aiTooling";
7964
- codeGeneration: "codeGeneration";
7965
- developerEnvironment: "developerEnvironment";
7966
- containerOrchestration: "containerOrchestration";
7967
- apiGateway: "apiGateway";
7968
- continuousIntegration: "continuousIntegration";
7969
- ai: "ai";
7970
- effect: "effect";
7971
- css: "css";
7972
- ui: "ui";
7973
- push: "push";
7974
- frontend: "frontend";
7975
- mobile: "mobile";
8044
+ config: "config";
7976
8045
  graphql: "graphql";
7977
8046
  deploy: "deploy";
7978
8047
  migrations: "migrations";
7979
8048
  navigation: "navigation";
8049
+ ui: "ui";
8050
+ css: "css";
7980
8051
  storage: "storage";
8052
+ push: "push";
7981
8053
  ota: "ota";
7982
8054
  deepLinking: "deepLinking";
8055
+ documentation: "documentation";
8056
+ codeQuality: "codeQuality";
7983
8057
  appPlatform: "appPlatform";
7984
8058
  dataFetching: "dataFetching";
7985
8059
  workspaceTooling: "workspaceTooling";
7986
8060
  toolchain: "toolchain";
8061
+ workspaceRunner: "workspaceRunner";
8062
+ gitHooks: "gitHooks";
8063
+ staticAnalysis: "staticAnalysis";
8064
+ aiTooling: "aiTooling";
8065
+ codeGeneration: "codeGeneration";
8066
+ developerEnvironment: "developerEnvironment";
8067
+ containerOrchestration: "containerOrchestration";
8068
+ apiGateway: "apiGateway";
8069
+ continuousIntegration: "continuousIntegration";
7987
8070
  backendUtilities: "backendUtilities";
7988
8071
  language: "language";
7989
8072
  buildTool: "buildTool";
@@ -7991,7 +8074,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7991
8074
  errorHandling: "errorHandling";
7992
8075
  httpClient: "httpClient";
7993
8076
  libraries: "libraries";
7994
- config: "config";
7995
8077
  templating: "templating";
7996
8078
  cloudSdk: "cloudSdk";
7997
8079
  data: "data";
@@ -8020,7 +8102,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
8020
8102
  }>;
8021
8103
  providedByPartId: z.ZodOptional<z.ZodString>;
8022
8104
  targetPath: z.ZodOptional<z.ZodString>;
8023
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8105
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
8024
8106
  }, z.core.$strip>>>;
8025
8107
  }, z.core.$strip>;
8026
8108
  declare const BetterFullstackConfigSchema: z.ZodObject<{
@@ -8058,13 +8140,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8058
8140
  sequelize: "sequelize";
8059
8141
  }>;
8060
8142
  backend: z.ZodEnum<{
8061
- effect: "effect";
8062
8143
  none: "none";
8063
8144
  hono: "hono";
8064
8145
  express: "express";
8065
8146
  fastify: "fastify";
8066
8147
  elysia: "elysia";
8067
8148
  fets: "fets";
8149
+ effect: "effect";
8068
8150
  nestjs: "nestjs";
8069
8151
  adonisjs: "adonisjs";
8070
8152
  nitro: "nitro";
@@ -8146,8 +8228,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8146
8228
  capacitor: "capacitor";
8147
8229
  }>>;
8148
8230
  examples: z.ZodArray<z.ZodEnum<{
8149
- ai: "ai";
8150
8231
  none: "none";
8232
+ ai: "ai";
8151
8233
  "chat-sdk": "chat-sdk";
8152
8234
  "tanstack-showcase": "tanstack-showcase";
8153
8235
  }>>;
@@ -8262,8 +8344,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8262
8344
  "ai-cli": "ai-cli";
8263
8345
  }>;
8264
8346
  effect: z.ZodEnum<{
8265
- effect: "effect";
8266
8347
  none: "none";
8348
+ effect: "effect";
8267
8349
  "effect-full": "effect-full";
8268
8350
  }>;
8269
8351
  stateManagement: z.ZodEnum<{
@@ -8316,7 +8398,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8316
8398
  "styled-components": "styled-components";
8317
8399
  }>;
8318
8400
  uiLibrary: z.ZodEnum<{
8319
- mui: "mui";
8320
8401
  none: "none";
8321
8402
  "shadcn-ui": "shadcn-ui";
8322
8403
  "shadcn-svelte": "shadcn-svelte";
@@ -8327,6 +8408,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8327
8408
  "chakra-ui": "chakra-ui";
8328
8409
  nextui: "nextui";
8329
8410
  mantine: "mantine";
8411
+ mui: "mui";
8330
8412
  antd: "antd";
8331
8413
  "base-ui": "base-ui";
8332
8414
  "ark-ui": "ark-ui";
@@ -8415,9 +8497,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8415
8497
  "effect-schema": "effect-schema";
8416
8498
  }>;
8417
8499
  realtime: z.ZodEnum<{
8418
- ws: "ws";
8419
8500
  none: "none";
8420
8501
  "socket-io": "socket-io";
8502
+ ws: "ws";
8421
8503
  partykit: "partykit";
8422
8504
  ably: "ably";
8423
8505
  pusher: "pusher";
@@ -8547,9 +8629,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8547
8629
  }>;
8548
8630
  mobileUI: z.ZodEnum<{
8549
8631
  none: "none";
8632
+ uniwind: "uniwind";
8550
8633
  tamagui: "tamagui";
8551
8634
  "gluestack-ui": "gluestack-ui";
8552
- uniwind: "uniwind";
8553
8635
  unistyles: "unistyles";
8554
8636
  }>;
8555
8637
  mobileStorage: z.ZodEnum<{
@@ -8666,11 +8748,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8666
8748
  }>;
8667
8749
  rustLibraries: z.ZodArray<z.ZodEnum<{
8668
8750
  none: "none";
8669
- config: "config";
8670
8751
  serde: "serde";
8671
8752
  uuid: "uuid";
8672
8753
  chrono: "chrono";
8673
8754
  reqwest: "reqwest";
8755
+ config: "config";
8674
8756
  dashmap: "dashmap";
8675
8757
  "parking-lot": "parking-lot";
8676
8758
  secrecy: "secrecy";
@@ -8876,10 +8958,10 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8876
8958
  httprouter: "httprouter";
8877
8959
  }>;
8878
8960
  goOrm: z.ZodEnum<{
8879
- gorm: "gorm";
8880
8961
  none: "none";
8881
8962
  bun: "bun";
8882
8963
  sqlx: "sqlx";
8964
+ gorm: "gorm";
8883
8965
  sqlc: "sqlc";
8884
8966
  ent: "ent";
8885
8967
  }>;
@@ -9282,14 +9364,28 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
9282
9364
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
9283
9365
  id: z.ZodString;
9284
9366
  role: z.ZodEnum<{
9285
- runtime: "runtime";
9367
+ effect: "effect";
9368
+ ai: "ai";
9369
+ frontend: "frontend";
9286
9370
  backend: "backend";
9371
+ mobile: "mobile";
9287
9372
  database: "database";
9288
9373
  orm: "orm";
9289
- dbSetup: "dbSetup";
9290
9374
  auth: "auth";
9291
9375
  payments: "payments";
9376
+ examples: "examples";
9377
+ packageManager: "packageManager";
9378
+ dbSetup: "dbSetup";
9379
+ runtime: "runtime";
9380
+ api: "api";
9381
+ stateManagement: "stateManagement";
9382
+ forms: "forms";
9383
+ testing: "testing";
9292
9384
  email: "email";
9385
+ validation: "validation";
9386
+ realtime: "realtime";
9387
+ jobQueue: "jobQueue";
9388
+ animation: "animation";
9293
9389
  fileUpload: "fileUpload";
9294
9390
  logging: "logging";
9295
9391
  observability: "observability";
@@ -9297,53 +9393,40 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
9297
9393
  integrations: "integrations";
9298
9394
  ecommerce: "ecommerce";
9299
9395
  analytics: "analytics";
9300
- stateManagement: "stateManagement";
9301
- forms: "forms";
9302
- validation: "validation";
9303
- testing: "testing";
9304
- realtime: "realtime";
9305
- jobQueue: "jobQueue";
9396
+ cms: "cms";
9306
9397
  caching: "caching";
9307
9398
  rateLimit: "rateLimit";
9308
9399
  botProtection: "botProtection";
9309
- animation: "animation";
9310
- cms: "cms";
9311
9400
  i18n: "i18n";
9312
9401
  search: "search";
9313
9402
  vectorDb: "vectorDb";
9314
9403
  fileStorage: "fileStorage";
9315
- codeQuality: "codeQuality";
9316
- documentation: "documentation";
9317
- packageManager: "packageManager";
9318
- examples: "examples";
9319
- api: "api";
9320
- workspaceRunner: "workspaceRunner";
9321
- gitHooks: "gitHooks";
9322
- staticAnalysis: "staticAnalysis";
9323
- aiTooling: "aiTooling";
9324
- codeGeneration: "codeGeneration";
9325
- developerEnvironment: "developerEnvironment";
9326
- containerOrchestration: "containerOrchestration";
9327
- apiGateway: "apiGateway";
9328
- continuousIntegration: "continuousIntegration";
9329
- ai: "ai";
9330
- effect: "effect";
9331
- css: "css";
9332
- ui: "ui";
9333
- push: "push";
9334
- frontend: "frontend";
9335
- mobile: "mobile";
9404
+ config: "config";
9336
9405
  graphql: "graphql";
9337
9406
  deploy: "deploy";
9338
9407
  migrations: "migrations";
9339
9408
  navigation: "navigation";
9409
+ ui: "ui";
9410
+ css: "css";
9340
9411
  storage: "storage";
9412
+ push: "push";
9341
9413
  ota: "ota";
9342
9414
  deepLinking: "deepLinking";
9415
+ documentation: "documentation";
9416
+ codeQuality: "codeQuality";
9343
9417
  appPlatform: "appPlatform";
9344
9418
  dataFetching: "dataFetching";
9345
9419
  workspaceTooling: "workspaceTooling";
9346
9420
  toolchain: "toolchain";
9421
+ workspaceRunner: "workspaceRunner";
9422
+ gitHooks: "gitHooks";
9423
+ staticAnalysis: "staticAnalysis";
9424
+ aiTooling: "aiTooling";
9425
+ codeGeneration: "codeGeneration";
9426
+ developerEnvironment: "developerEnvironment";
9427
+ containerOrchestration: "containerOrchestration";
9428
+ apiGateway: "apiGateway";
9429
+ continuousIntegration: "continuousIntegration";
9347
9430
  backendUtilities: "backendUtilities";
9348
9431
  language: "language";
9349
9432
  buildTool: "buildTool";
@@ -9351,7 +9434,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
9351
9434
  errorHandling: "errorHandling";
9352
9435
  httpClient: "httpClient";
9353
9436
  libraries: "libraries";
9354
- config: "config";
9355
9437
  templating: "templating";
9356
9438
  cloudSdk: "cloudSdk";
9357
9439
  data: "data";
@@ -9380,7 +9462,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
9380
9462
  }>;
9381
9463
  providedByPartId: z.ZodOptional<z.ZodString>;
9382
9464
  targetPath: z.ZodOptional<z.ZodString>;
9383
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9465
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
9384
9466
  }, z.core.$strip>>>;
9385
9467
  }, z.core.$strip>;
9386
9468
  declare const BetterTStackConfigFileSchema: z.ZodObject<{
@@ -9419,13 +9501,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9419
9501
  sequelize: "sequelize";
9420
9502
  }>;
9421
9503
  backend: z.ZodEnum<{
9422
- effect: "effect";
9423
9504
  none: "none";
9424
9505
  hono: "hono";
9425
9506
  express: "express";
9426
9507
  fastify: "fastify";
9427
9508
  elysia: "elysia";
9428
9509
  fets: "fets";
9510
+ effect: "effect";
9429
9511
  nestjs: "nestjs";
9430
9512
  adonisjs: "adonisjs";
9431
9513
  nitro: "nitro";
@@ -9507,8 +9589,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9507
9589
  capacitor: "capacitor";
9508
9590
  }>>;
9509
9591
  examples: z.ZodArray<z.ZodEnum<{
9510
- ai: "ai";
9511
9592
  none: "none";
9593
+ ai: "ai";
9512
9594
  "chat-sdk": "chat-sdk";
9513
9595
  "tanstack-showcase": "tanstack-showcase";
9514
9596
  }>>;
@@ -9623,8 +9705,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9623
9705
  "ai-cli": "ai-cli";
9624
9706
  }>;
9625
9707
  effect: z.ZodEnum<{
9626
- effect: "effect";
9627
9708
  none: "none";
9709
+ effect: "effect";
9628
9710
  "effect-full": "effect-full";
9629
9711
  }>;
9630
9712
  stateManagement: z.ZodEnum<{
@@ -9677,7 +9759,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9677
9759
  "styled-components": "styled-components";
9678
9760
  }>;
9679
9761
  uiLibrary: z.ZodEnum<{
9680
- mui: "mui";
9681
9762
  none: "none";
9682
9763
  "shadcn-ui": "shadcn-ui";
9683
9764
  "shadcn-svelte": "shadcn-svelte";
@@ -9688,6 +9769,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9688
9769
  "chakra-ui": "chakra-ui";
9689
9770
  nextui: "nextui";
9690
9771
  mantine: "mantine";
9772
+ mui: "mui";
9691
9773
  antd: "antd";
9692
9774
  "base-ui": "base-ui";
9693
9775
  "ark-ui": "ark-ui";
@@ -9776,9 +9858,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9776
9858
  "effect-schema": "effect-schema";
9777
9859
  }>;
9778
9860
  realtime: z.ZodEnum<{
9779
- ws: "ws";
9780
9861
  none: "none";
9781
9862
  "socket-io": "socket-io";
9863
+ ws: "ws";
9782
9864
  partykit: "partykit";
9783
9865
  ably: "ably";
9784
9866
  pusher: "pusher";
@@ -9908,9 +9990,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9908
9990
  }>;
9909
9991
  mobileUI: z.ZodEnum<{
9910
9992
  none: "none";
9993
+ uniwind: "uniwind";
9911
9994
  tamagui: "tamagui";
9912
9995
  "gluestack-ui": "gluestack-ui";
9913
- uniwind: "uniwind";
9914
9996
  unistyles: "unistyles";
9915
9997
  }>;
9916
9998
  mobileStorage: z.ZodEnum<{
@@ -10027,11 +10109,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10027
10109
  }>;
10028
10110
  rustLibraries: z.ZodArray<z.ZodEnum<{
10029
10111
  none: "none";
10030
- config: "config";
10031
10112
  serde: "serde";
10032
10113
  uuid: "uuid";
10033
10114
  chrono: "chrono";
10034
10115
  reqwest: "reqwest";
10116
+ config: "config";
10035
10117
  dashmap: "dashmap";
10036
10118
  "parking-lot": "parking-lot";
10037
10119
  secrecy: "secrecy";
@@ -10237,10 +10319,10 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10237
10319
  httprouter: "httprouter";
10238
10320
  }>;
10239
10321
  goOrm: z.ZodEnum<{
10240
- gorm: "gorm";
10241
10322
  none: "none";
10242
10323
  bun: "bun";
10243
10324
  sqlx: "sqlx";
10325
+ gorm: "gorm";
10244
10326
  sqlc: "sqlc";
10245
10327
  ent: "ent";
10246
10328
  }>;
@@ -10643,14 +10725,28 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10643
10725
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
10644
10726
  id: z.ZodString;
10645
10727
  role: z.ZodEnum<{
10646
- runtime: "runtime";
10728
+ effect: "effect";
10729
+ ai: "ai";
10730
+ frontend: "frontend";
10647
10731
  backend: "backend";
10732
+ mobile: "mobile";
10648
10733
  database: "database";
10649
10734
  orm: "orm";
10650
- dbSetup: "dbSetup";
10651
10735
  auth: "auth";
10652
10736
  payments: "payments";
10737
+ examples: "examples";
10738
+ packageManager: "packageManager";
10739
+ dbSetup: "dbSetup";
10740
+ runtime: "runtime";
10741
+ api: "api";
10742
+ stateManagement: "stateManagement";
10743
+ forms: "forms";
10744
+ testing: "testing";
10653
10745
  email: "email";
10746
+ validation: "validation";
10747
+ realtime: "realtime";
10748
+ jobQueue: "jobQueue";
10749
+ animation: "animation";
10654
10750
  fileUpload: "fileUpload";
10655
10751
  logging: "logging";
10656
10752
  observability: "observability";
@@ -10658,53 +10754,40 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10658
10754
  integrations: "integrations";
10659
10755
  ecommerce: "ecommerce";
10660
10756
  analytics: "analytics";
10661
- stateManagement: "stateManagement";
10662
- forms: "forms";
10663
- validation: "validation";
10664
- testing: "testing";
10665
- realtime: "realtime";
10666
- jobQueue: "jobQueue";
10757
+ cms: "cms";
10667
10758
  caching: "caching";
10668
10759
  rateLimit: "rateLimit";
10669
10760
  botProtection: "botProtection";
10670
- animation: "animation";
10671
- cms: "cms";
10672
10761
  i18n: "i18n";
10673
10762
  search: "search";
10674
10763
  vectorDb: "vectorDb";
10675
10764
  fileStorage: "fileStorage";
10676
- codeQuality: "codeQuality";
10677
- documentation: "documentation";
10678
- packageManager: "packageManager";
10679
- examples: "examples";
10680
- api: "api";
10681
- workspaceRunner: "workspaceRunner";
10682
- gitHooks: "gitHooks";
10683
- staticAnalysis: "staticAnalysis";
10684
- aiTooling: "aiTooling";
10685
- codeGeneration: "codeGeneration";
10686
- developerEnvironment: "developerEnvironment";
10687
- containerOrchestration: "containerOrchestration";
10688
- apiGateway: "apiGateway";
10689
- continuousIntegration: "continuousIntegration";
10690
- ai: "ai";
10691
- effect: "effect";
10692
- css: "css";
10693
- ui: "ui";
10694
- push: "push";
10695
- frontend: "frontend";
10696
- mobile: "mobile";
10765
+ config: "config";
10697
10766
  graphql: "graphql";
10698
10767
  deploy: "deploy";
10699
10768
  migrations: "migrations";
10700
10769
  navigation: "navigation";
10770
+ ui: "ui";
10771
+ css: "css";
10701
10772
  storage: "storage";
10773
+ push: "push";
10702
10774
  ota: "ota";
10703
10775
  deepLinking: "deepLinking";
10776
+ documentation: "documentation";
10777
+ codeQuality: "codeQuality";
10704
10778
  appPlatform: "appPlatform";
10705
10779
  dataFetching: "dataFetching";
10706
10780
  workspaceTooling: "workspaceTooling";
10707
10781
  toolchain: "toolchain";
10782
+ workspaceRunner: "workspaceRunner";
10783
+ gitHooks: "gitHooks";
10784
+ staticAnalysis: "staticAnalysis";
10785
+ aiTooling: "aiTooling";
10786
+ codeGeneration: "codeGeneration";
10787
+ developerEnvironment: "developerEnvironment";
10788
+ containerOrchestration: "containerOrchestration";
10789
+ apiGateway: "apiGateway";
10790
+ continuousIntegration: "continuousIntegration";
10708
10791
  backendUtilities: "backendUtilities";
10709
10792
  language: "language";
10710
10793
  buildTool: "buildTool";
@@ -10712,7 +10795,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10712
10795
  errorHandling: "errorHandling";
10713
10796
  httpClient: "httpClient";
10714
10797
  libraries: "libraries";
10715
- config: "config";
10716
10798
  templating: "templating";
10717
10799
  cloudSdk: "cloudSdk";
10718
10800
  data: "data";
@@ -10741,7 +10823,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10741
10823
  }>;
10742
10824
  providedByPartId: z.ZodOptional<z.ZodString>;
10743
10825
  targetPath: z.ZodOptional<z.ZodString>;
10744
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
10826
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
10745
10827
  }, z.core.$strip>>>;
10746
10828
  }, z.core.$strip>;
10747
10829
  declare const BetterFullstackConfigFileSchema: z.ZodObject<{
@@ -10780,13 +10862,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10780
10862
  sequelize: "sequelize";
10781
10863
  }>;
10782
10864
  backend: z.ZodEnum<{
10783
- effect: "effect";
10784
10865
  none: "none";
10785
10866
  hono: "hono";
10786
10867
  express: "express";
10787
10868
  fastify: "fastify";
10788
10869
  elysia: "elysia";
10789
10870
  fets: "fets";
10871
+ effect: "effect";
10790
10872
  nestjs: "nestjs";
10791
10873
  adonisjs: "adonisjs";
10792
10874
  nitro: "nitro";
@@ -10868,8 +10950,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10868
10950
  capacitor: "capacitor";
10869
10951
  }>>;
10870
10952
  examples: z.ZodArray<z.ZodEnum<{
10871
- ai: "ai";
10872
10953
  none: "none";
10954
+ ai: "ai";
10873
10955
  "chat-sdk": "chat-sdk";
10874
10956
  "tanstack-showcase": "tanstack-showcase";
10875
10957
  }>>;
@@ -10984,8 +11066,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10984
11066
  "ai-cli": "ai-cli";
10985
11067
  }>;
10986
11068
  effect: z.ZodEnum<{
10987
- effect: "effect";
10988
11069
  none: "none";
11070
+ effect: "effect";
10989
11071
  "effect-full": "effect-full";
10990
11072
  }>;
10991
11073
  stateManagement: z.ZodEnum<{
@@ -11038,7 +11120,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11038
11120
  "styled-components": "styled-components";
11039
11121
  }>;
11040
11122
  uiLibrary: z.ZodEnum<{
11041
- mui: "mui";
11042
11123
  none: "none";
11043
11124
  "shadcn-ui": "shadcn-ui";
11044
11125
  "shadcn-svelte": "shadcn-svelte";
@@ -11049,6 +11130,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11049
11130
  "chakra-ui": "chakra-ui";
11050
11131
  nextui: "nextui";
11051
11132
  mantine: "mantine";
11133
+ mui: "mui";
11052
11134
  antd: "antd";
11053
11135
  "base-ui": "base-ui";
11054
11136
  "ark-ui": "ark-ui";
@@ -11137,9 +11219,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11137
11219
  "effect-schema": "effect-schema";
11138
11220
  }>;
11139
11221
  realtime: z.ZodEnum<{
11140
- ws: "ws";
11141
11222
  none: "none";
11142
11223
  "socket-io": "socket-io";
11224
+ ws: "ws";
11143
11225
  partykit: "partykit";
11144
11226
  ably: "ably";
11145
11227
  pusher: "pusher";
@@ -11269,9 +11351,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11269
11351
  }>;
11270
11352
  mobileUI: z.ZodEnum<{
11271
11353
  none: "none";
11354
+ uniwind: "uniwind";
11272
11355
  tamagui: "tamagui";
11273
11356
  "gluestack-ui": "gluestack-ui";
11274
- uniwind: "uniwind";
11275
11357
  unistyles: "unistyles";
11276
11358
  }>;
11277
11359
  mobileStorage: z.ZodEnum<{
@@ -11388,11 +11470,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11388
11470
  }>;
11389
11471
  rustLibraries: z.ZodArray<z.ZodEnum<{
11390
11472
  none: "none";
11391
- config: "config";
11392
11473
  serde: "serde";
11393
11474
  uuid: "uuid";
11394
11475
  chrono: "chrono";
11395
11476
  reqwest: "reqwest";
11477
+ config: "config";
11396
11478
  dashmap: "dashmap";
11397
11479
  "parking-lot": "parking-lot";
11398
11480
  secrecy: "secrecy";
@@ -11598,10 +11680,10 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11598
11680
  httprouter: "httprouter";
11599
11681
  }>;
11600
11682
  goOrm: z.ZodEnum<{
11601
- gorm: "gorm";
11602
11683
  none: "none";
11603
11684
  bun: "bun";
11604
11685
  sqlx: "sqlx";
11686
+ gorm: "gorm";
11605
11687
  sqlc: "sqlc";
11606
11688
  ent: "ent";
11607
11689
  }>;
@@ -12004,14 +12086,28 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
12004
12086
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
12005
12087
  id: z.ZodString;
12006
12088
  role: z.ZodEnum<{
12007
- runtime: "runtime";
12089
+ effect: "effect";
12090
+ ai: "ai";
12091
+ frontend: "frontend";
12008
12092
  backend: "backend";
12093
+ mobile: "mobile";
12009
12094
  database: "database";
12010
12095
  orm: "orm";
12011
- dbSetup: "dbSetup";
12012
12096
  auth: "auth";
12013
12097
  payments: "payments";
12098
+ examples: "examples";
12099
+ packageManager: "packageManager";
12100
+ dbSetup: "dbSetup";
12101
+ runtime: "runtime";
12102
+ api: "api";
12103
+ stateManagement: "stateManagement";
12104
+ forms: "forms";
12105
+ testing: "testing";
12014
12106
  email: "email";
12107
+ validation: "validation";
12108
+ realtime: "realtime";
12109
+ jobQueue: "jobQueue";
12110
+ animation: "animation";
12015
12111
  fileUpload: "fileUpload";
12016
12112
  logging: "logging";
12017
12113
  observability: "observability";
@@ -12019,53 +12115,40 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
12019
12115
  integrations: "integrations";
12020
12116
  ecommerce: "ecommerce";
12021
12117
  analytics: "analytics";
12022
- stateManagement: "stateManagement";
12023
- forms: "forms";
12024
- validation: "validation";
12025
- testing: "testing";
12026
- realtime: "realtime";
12027
- jobQueue: "jobQueue";
12118
+ cms: "cms";
12028
12119
  caching: "caching";
12029
12120
  rateLimit: "rateLimit";
12030
12121
  botProtection: "botProtection";
12031
- animation: "animation";
12032
- cms: "cms";
12033
12122
  i18n: "i18n";
12034
12123
  search: "search";
12035
12124
  vectorDb: "vectorDb";
12036
12125
  fileStorage: "fileStorage";
12037
- codeQuality: "codeQuality";
12038
- documentation: "documentation";
12039
- packageManager: "packageManager";
12040
- examples: "examples";
12041
- api: "api";
12042
- workspaceRunner: "workspaceRunner";
12043
- gitHooks: "gitHooks";
12044
- staticAnalysis: "staticAnalysis";
12045
- aiTooling: "aiTooling";
12046
- codeGeneration: "codeGeneration";
12047
- developerEnvironment: "developerEnvironment";
12048
- containerOrchestration: "containerOrchestration";
12049
- apiGateway: "apiGateway";
12050
- continuousIntegration: "continuousIntegration";
12051
- ai: "ai";
12052
- effect: "effect";
12053
- css: "css";
12054
- ui: "ui";
12055
- push: "push";
12056
- frontend: "frontend";
12057
- mobile: "mobile";
12126
+ config: "config";
12058
12127
  graphql: "graphql";
12059
12128
  deploy: "deploy";
12060
12129
  migrations: "migrations";
12061
12130
  navigation: "navigation";
12131
+ ui: "ui";
12132
+ css: "css";
12062
12133
  storage: "storage";
12134
+ push: "push";
12063
12135
  ota: "ota";
12064
12136
  deepLinking: "deepLinking";
12137
+ documentation: "documentation";
12138
+ codeQuality: "codeQuality";
12065
12139
  appPlatform: "appPlatform";
12066
12140
  dataFetching: "dataFetching";
12067
12141
  workspaceTooling: "workspaceTooling";
12068
12142
  toolchain: "toolchain";
12143
+ workspaceRunner: "workspaceRunner";
12144
+ gitHooks: "gitHooks";
12145
+ staticAnalysis: "staticAnalysis";
12146
+ aiTooling: "aiTooling";
12147
+ codeGeneration: "codeGeneration";
12148
+ developerEnvironment: "developerEnvironment";
12149
+ containerOrchestration: "containerOrchestration";
12150
+ apiGateway: "apiGateway";
12151
+ continuousIntegration: "continuousIntegration";
12069
12152
  backendUtilities: "backendUtilities";
12070
12153
  language: "language";
12071
12154
  buildTool: "buildTool";
@@ -12073,7 +12156,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
12073
12156
  errorHandling: "errorHandling";
12074
12157
  httpClient: "httpClient";
12075
12158
  libraries: "libraries";
12076
- config: "config";
12077
12159
  templating: "templating";
12078
12160
  cloudSdk: "cloudSdk";
12079
12161
  data: "data";
@@ -12102,7 +12184,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
12102
12184
  }>;
12103
12185
  providedByPartId: z.ZodOptional<z.ZodString>;
12104
12186
  targetPath: z.ZodOptional<z.ZodString>;
12105
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
12187
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
12106
12188
  }, z.core.$strip>>>;
12107
12189
  }, z.core.$strip>;
12108
12190
  declare const InitResultSchema: z.ZodObject<{
@@ -12141,13 +12223,13 @@ declare const InitResultSchema: z.ZodObject<{
12141
12223
  sequelize: "sequelize";
12142
12224
  }>;
12143
12225
  backend: z.ZodEnum<{
12144
- effect: "effect";
12145
12226
  none: "none";
12146
12227
  hono: "hono";
12147
12228
  express: "express";
12148
12229
  fastify: "fastify";
12149
12230
  elysia: "elysia";
12150
12231
  fets: "fets";
12232
+ effect: "effect";
12151
12233
  nestjs: "nestjs";
12152
12234
  adonisjs: "adonisjs";
12153
12235
  nitro: "nitro";
@@ -12229,8 +12311,8 @@ declare const InitResultSchema: z.ZodObject<{
12229
12311
  capacitor: "capacitor";
12230
12312
  }>>;
12231
12313
  examples: z.ZodArray<z.ZodEnum<{
12232
- ai: "ai";
12233
12314
  none: "none";
12315
+ ai: "ai";
12234
12316
  "chat-sdk": "chat-sdk";
12235
12317
  "tanstack-showcase": "tanstack-showcase";
12236
12318
  }>>;
@@ -12347,8 +12429,8 @@ declare const InitResultSchema: z.ZodObject<{
12347
12429
  "ai-cli": "ai-cli";
12348
12430
  }>;
12349
12431
  effect: z.ZodEnum<{
12350
- effect: "effect";
12351
12432
  none: "none";
12433
+ effect: "effect";
12352
12434
  "effect-full": "effect-full";
12353
12435
  }>;
12354
12436
  stateManagement: z.ZodEnum<{
@@ -12401,7 +12483,6 @@ declare const InitResultSchema: z.ZodObject<{
12401
12483
  "styled-components": "styled-components";
12402
12484
  }>;
12403
12485
  uiLibrary: z.ZodEnum<{
12404
- mui: "mui";
12405
12486
  none: "none";
12406
12487
  "shadcn-ui": "shadcn-ui";
12407
12488
  "shadcn-svelte": "shadcn-svelte";
@@ -12412,6 +12493,7 @@ declare const InitResultSchema: z.ZodObject<{
12412
12493
  "chakra-ui": "chakra-ui";
12413
12494
  nextui: "nextui";
12414
12495
  mantine: "mantine";
12496
+ mui: "mui";
12415
12497
  antd: "antd";
12416
12498
  "base-ui": "base-ui";
12417
12499
  "ark-ui": "ark-ui";
@@ -12500,9 +12582,9 @@ declare const InitResultSchema: z.ZodObject<{
12500
12582
  "effect-schema": "effect-schema";
12501
12583
  }>;
12502
12584
  realtime: z.ZodEnum<{
12503
- ws: "ws";
12504
12585
  none: "none";
12505
12586
  "socket-io": "socket-io";
12587
+ ws: "ws";
12506
12588
  partykit: "partykit";
12507
12589
  ably: "ably";
12508
12590
  pusher: "pusher";
@@ -12632,9 +12714,9 @@ declare const InitResultSchema: z.ZodObject<{
12632
12714
  }>;
12633
12715
  mobileUI: z.ZodEnum<{
12634
12716
  none: "none";
12717
+ uniwind: "uniwind";
12635
12718
  tamagui: "tamagui";
12636
12719
  "gluestack-ui": "gluestack-ui";
12637
- uniwind: "uniwind";
12638
12720
  unistyles: "unistyles";
12639
12721
  }>;
12640
12722
  mobileStorage: z.ZodEnum<{
@@ -12751,11 +12833,11 @@ declare const InitResultSchema: z.ZodObject<{
12751
12833
  }>;
12752
12834
  rustLibraries: z.ZodArray<z.ZodEnum<{
12753
12835
  none: "none";
12754
- config: "config";
12755
12836
  serde: "serde";
12756
12837
  uuid: "uuid";
12757
12838
  chrono: "chrono";
12758
12839
  reqwest: "reqwest";
12840
+ config: "config";
12759
12841
  dashmap: "dashmap";
12760
12842
  "parking-lot": "parking-lot";
12761
12843
  secrecy: "secrecy";
@@ -12961,10 +13043,10 @@ declare const InitResultSchema: z.ZodObject<{
12961
13043
  httprouter: "httprouter";
12962
13044
  }>;
12963
13045
  goOrm: z.ZodEnum<{
12964
- gorm: "gorm";
12965
13046
  none: "none";
12966
13047
  bun: "bun";
12967
13048
  sqlx: "sqlx";
13049
+ gorm: "gorm";
12968
13050
  sqlc: "sqlc";
12969
13051
  ent: "ent";
12970
13052
  }>;
@@ -13367,14 +13449,28 @@ declare const InitResultSchema: z.ZodObject<{
13367
13449
  stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
13368
13450
  id: z.ZodString;
13369
13451
  role: z.ZodEnum<{
13370
- runtime: "runtime";
13452
+ effect: "effect";
13453
+ ai: "ai";
13454
+ frontend: "frontend";
13371
13455
  backend: "backend";
13456
+ mobile: "mobile";
13372
13457
  database: "database";
13373
13458
  orm: "orm";
13374
- dbSetup: "dbSetup";
13375
13459
  auth: "auth";
13376
13460
  payments: "payments";
13461
+ examples: "examples";
13462
+ packageManager: "packageManager";
13463
+ dbSetup: "dbSetup";
13464
+ runtime: "runtime";
13465
+ api: "api";
13466
+ stateManagement: "stateManagement";
13467
+ forms: "forms";
13468
+ testing: "testing";
13377
13469
  email: "email";
13470
+ validation: "validation";
13471
+ realtime: "realtime";
13472
+ jobQueue: "jobQueue";
13473
+ animation: "animation";
13378
13474
  fileUpload: "fileUpload";
13379
13475
  logging: "logging";
13380
13476
  observability: "observability";
@@ -13382,53 +13478,40 @@ declare const InitResultSchema: z.ZodObject<{
13382
13478
  integrations: "integrations";
13383
13479
  ecommerce: "ecommerce";
13384
13480
  analytics: "analytics";
13385
- stateManagement: "stateManagement";
13386
- forms: "forms";
13387
- validation: "validation";
13388
- testing: "testing";
13389
- realtime: "realtime";
13390
- jobQueue: "jobQueue";
13481
+ cms: "cms";
13391
13482
  caching: "caching";
13392
13483
  rateLimit: "rateLimit";
13393
13484
  botProtection: "botProtection";
13394
- animation: "animation";
13395
- cms: "cms";
13396
13485
  i18n: "i18n";
13397
13486
  search: "search";
13398
13487
  vectorDb: "vectorDb";
13399
13488
  fileStorage: "fileStorage";
13400
- codeQuality: "codeQuality";
13401
- documentation: "documentation";
13402
- packageManager: "packageManager";
13403
- examples: "examples";
13404
- api: "api";
13405
- workspaceRunner: "workspaceRunner";
13406
- gitHooks: "gitHooks";
13407
- staticAnalysis: "staticAnalysis";
13408
- aiTooling: "aiTooling";
13409
- codeGeneration: "codeGeneration";
13410
- developerEnvironment: "developerEnvironment";
13411
- containerOrchestration: "containerOrchestration";
13412
- apiGateway: "apiGateway";
13413
- continuousIntegration: "continuousIntegration";
13414
- ai: "ai";
13415
- effect: "effect";
13416
- css: "css";
13417
- ui: "ui";
13418
- push: "push";
13419
- frontend: "frontend";
13420
- mobile: "mobile";
13489
+ config: "config";
13421
13490
  graphql: "graphql";
13422
13491
  deploy: "deploy";
13423
13492
  migrations: "migrations";
13424
13493
  navigation: "navigation";
13494
+ ui: "ui";
13495
+ css: "css";
13425
13496
  storage: "storage";
13497
+ push: "push";
13426
13498
  ota: "ota";
13427
13499
  deepLinking: "deepLinking";
13500
+ documentation: "documentation";
13501
+ codeQuality: "codeQuality";
13428
13502
  appPlatform: "appPlatform";
13429
13503
  dataFetching: "dataFetching";
13430
13504
  workspaceTooling: "workspaceTooling";
13431
13505
  toolchain: "toolchain";
13506
+ workspaceRunner: "workspaceRunner";
13507
+ gitHooks: "gitHooks";
13508
+ staticAnalysis: "staticAnalysis";
13509
+ aiTooling: "aiTooling";
13510
+ codeGeneration: "codeGeneration";
13511
+ developerEnvironment: "developerEnvironment";
13512
+ containerOrchestration: "containerOrchestration";
13513
+ apiGateway: "apiGateway";
13514
+ continuousIntegration: "continuousIntegration";
13432
13515
  backendUtilities: "backendUtilities";
13433
13516
  language: "language";
13434
13517
  buildTool: "buildTool";
@@ -13436,7 +13519,6 @@ declare const InitResultSchema: z.ZodObject<{
13436
13519
  errorHandling: "errorHandling";
13437
13520
  httpClient: "httpClient";
13438
13521
  libraries: "libraries";
13439
- config: "config";
13440
13522
  templating: "templating";
13441
13523
  cloudSdk: "cloudSdk";
13442
13524
  data: "data";
@@ -13465,7 +13547,7 @@ declare const InitResultSchema: z.ZodObject<{
13465
13547
  }>;
13466
13548
  providedByPartId: z.ZodOptional<z.ZodString>;
13467
13549
  targetPath: z.ZodOptional<z.ZodString>;
13468
- settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
13550
+ settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
13469
13551
  }, z.core.$strip>>>;
13470
13552
  }, z.core.$strip>;
13471
13553
  reproducibleCommand: z.ZodString;
@@ -13481,11 +13563,11 @@ declare const InitResultSchema: z.ZodObject<{
13481
13563
  }, z.core.$strip>;
13482
13564
  declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
13483
13565
  declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
13484
- declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
13566
+ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "effect" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
13485
13567
  declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
13486
13568
  declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "vanilla-vite" | "vue" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
13487
13569
  declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "vite-plus" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
13488
- declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
13570
+ declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
13489
13571
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
13490
13572
  declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
13491
13573
  declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
@@ -13495,20 +13577,20 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations"
13495
13577
  declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet" | "xendit")[];
13496
13578
  declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
13497
13579
  declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
13498
- declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
13499
- declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3" | "saas")[];
13500
- declare const PROJECT_SHAPE_VALUES: ("backend" | "frontend" | "mobile" | "fullstack")[];
13580
+ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
13581
+ declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "saas" | "uniwind")[];
13582
+ declare const PROJECT_SHAPE_VALUES: ("fullstack" | "frontend" | "backend" | "mobile")[];
13501
13583
  declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
13502
13584
  declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
13503
- declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
13585
+ declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
13504
13586
  declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
13505
13587
  declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
13506
13588
  declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "mocha" | "cypress")[];
13507
13589
  declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
13508
13590
  declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only" | "styled-components")[];
13509
- declare const UI_LIBRARY_VALUES: ("mui" | "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
13591
+ declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
13510
13592
  declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
13511
- declare const REALTIME_VALUES: ("ws" | "none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
13593
+ declare const REALTIME_VALUES: ("none" | "socket-io" | "ws" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
13512
13594
  declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
13513
13595
  declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
13514
13596
  declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
@@ -13519,7 +13601,7 @@ declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
13519
13601
  declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
13520
13602
  declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4" | "vercel-analytics")[];
13521
13603
  declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
13522
- declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
13604
+ declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
13523
13605
  declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
13524
13606
  declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
13525
13607
  declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
@@ -13545,7 +13627,7 @@ declare const DART_MOBILE_VALUES: ("none" | "flutter")[];
13545
13627
  declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
13546
13628
  declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
13547
13629
  declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
13548
- declare const RUST_LIBRARIES_VALUES: ("none" | "config" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta" | "rand" | "regex" | "rayon" | "itertools" | "rstest" | "cargo-nextest" | "cargo-audit")[];
13630
+ declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "config" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta" | "rand" | "regex" | "rayon" | "itertools" | "rstest" | "cargo-nextest" | "cargo-audit")[];
13549
13631
  declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
13550
13632
  declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
13551
13633
  declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
@@ -13576,7 +13658,7 @@ declare const PYTHON_SERVER_VALUES: ("none" | "gunicorn")[];
13576
13658
  declare const PYTHON_PACKAGE_MANAGER_VALUES: ("none" | "uv" | "poetry")[];
13577
13659
  declare const PYTHON_MESSAGE_QUEUE_VALUES: ("none" | "confluent-kafka")[];
13578
13660
  declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi" | "stdlib" | "go-zero" | "kratos" | "httprouter")[];
13579
- declare const GO_ORM_VALUES: ("gorm" | "none" | "bun" | "sqlx" | "sqlc" | "ent")[];
13661
+ declare const GO_ORM_VALUES: ("none" | "bun" | "sqlx" | "gorm" | "sqlc" | "ent")[];
13580
13662
  declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen" | "grpc-gateway" | "connect-go" | "oapi-codegen")[];
13581
13663
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
13582
13664
  declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
@@ -13644,5 +13726,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
13644
13726
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
13645
13727
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
13646
13728
  //#endregion
13647
- export { DatabaseSchema as $, StackPartRoleSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STYLE_VALUES as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ShadcnBaseColorSchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, SWIFT_MOBILE_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnFontSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, StackPartEcosystemSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SearchSchema as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, STATE_MANAGEMENT_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, ServerDeploySchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnRadiusSchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnIconLibrarySchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnStyleSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, WORKSPACE_SHAPE_VALUES as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, TESTING_VALUES as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn, JavaApiSchema as br, ELIXIR_AUTH_VALUES as bt, API_VALUES as c, RUST_LOGGING_VALUES as ca, PYTHON_CACHING_VALUES as ci, ElixirTestingSchema as cn, UILibrarySchema as co, InitResultSchema as cr, DotnetLibrariesSchema as ct, AUTH_VALUES as d, RUST_ORM_VALUES as da, PYTHON_DATA_VALUES as di, EmailSchema as dn, VECTOR_DB_VALUES as do, JAVA_AUTH_VALUES as dr, DotnetRealtimeSchema as dt, RUNTIME_VALUES as ea, ORM_VALUES as ei, ElixirI18nSchema as en, StackPartSchema as eo, GoRealtimeSchema as er, DatabaseSetupSchema as et, AddInputSchema as f, RUST_REALTIME_VALUES as fa, PYTHON_GRAPHQL_VALUES as fi, ExamplesSchema as fn, VERSION_CHANNEL_VALUES as fo, JAVA_BUILD_TOOL_VALUES as fr, DotnetTestingSchema as ft, AnimationSchema as g, RealtimeSchema as ga, PYTHON_OBSERVABILITY_VALUES as gi, FORMS_VALUES as gn, WEB_DEPLOY_VALUES as go, JAVA_ORM_VALUES as gr, ECOSYSTEM_VALUES as gt, AnalyticsSchema as h, RateLimitSchema as ha, PYTHON_MESSAGE_QUEUE_VALUES as hi, FILE_UPLOAD_VALUES as hn, VersionChannelSchema as ho, JAVA_LOGGING_VALUES as hr, ECOMMERCE_VALUES as ht, AI_VALUES as i, RUST_CLI_VALUES as ia, PROJECT_SHAPE_VALUES as ii, ElixirObservabilitySchema as in, TEMPLATE_VALUES as io, GoWebFrameworkSchema as ir, DotnetCachingSchema as it, CSSFrameworkSchema as j, RustWebFrameworkSchema as ja, PythonAiSchema as ji, GO_MIGRATIONS_VALUES as jn, KOTLIN_MOBILE_VALUES as jr, ELIXIR_LIBRARIES_VALUES as jt, CMSSchema as k, RustRealtimeSchema as ka, ProjectNameSchema as ki, GO_LOGGING_VALUES as kn, JobQueueSchema as kr, ELIXIR_JOBS_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_MESSAGE_QUEUE_VALUES as la, PYTHON_CLI_VALUES as li, ElixirValidationSchema as ln, UI_LIBRARY_VALUES as lo, IntegrationsSchema as lr, DotnetObservabilitySchema as lt, AiDocsSchema as m, RUST_WEB_FRAMEWORK_VALUES as ma, PYTHON_MEDIA_VALUES as mi, FILE_STORAGE_VALUES as mn, VectorDbSchema as mo, JAVA_LIBRARIES_VALUES as mr, DotnetWebFrameworkSchema as mt, AISchema as n, RUST_AUTH_VALUES as na, PACKAGE_MANAGER_VALUES as ni, ElixirJsonSchema as nn, StateManagementSchema as no, GoTestingSchema as nr, DotnetApiSchema as nt, ANIMATION_VALUES as o, RUST_FRONTEND_VALUES as oa, PYTHON_API_VALUES as oi, ElixirQualitySchema as on, TemplateSchema as oo, I18nSchema as or, DotnetFrontendSchema as ot, AddonsSchema as p, RUST_TEMPLATING_VALUES as pa, PYTHON_HTTP_CLIENT_VALUES as pi, FEATURE_FLAGS_VALUES as pn, ValidationSchema as po, JAVA_LANGUAGE_VALUES as pr, DotnetValidationSchema as pt, DOTNET_ORM_VALUES as q, ShadcnColorThemeSchema as qa, PythonServerSchema as qi, GoLoggingSchema as qn, MobileOTASchema as qr, ElixirCachingSchema as qt, AI_DOCS_VALUES as r, RUST_CACHING_VALUES as ra, PAYMENTS_VALUES as ri, ElixirLibrariesSchema as rn, SwiftMobileSchema as ro, GoValidationSchema as rr, DotnetAuthSchema as rt, APISchema as s, RUST_LIBRARIES_VALUES as sa, PYTHON_AUTH_VALUES as si, ElixirRealtimeSchema as sn, TestingSchema as so, INTEGRATIONS_VALUES as sr, DotnetJobQueueSchema as st, ADDONS_VALUES as t, RUST_API_VALUES as ta, ObservabilitySchema as ti, ElixirJobsSchema as tn, StackPartSourceSchema as to, GoTemplatingSchema as tr, DirectoryConflictSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_OBSERVABILITY_VALUES as ua, PYTHON_CLOUD_SDK_VALUES as ui, ElixirWebFrameworkSchema as un, VALIDATION_VALUES as uo, JAVA_API_VALUES as ur, DotnetOrmSchema as ut, AuthSchema as v, RustApiSchema as va, PYTHON_PACKAGE_MANAGER_VALUES as vi, FeatureFlagsSchema as vn, WebDeploySchema as vo, JAVA_WEB_FRAMEWORK_VALUES as vr, ELIXIR_API_VALUES as vt, BetterTStackConfigFileSchema as w, RustLibrariesSchema as wa, PYTHON_VALIDATION_VALUES as wi, GO_AUTH_VALUES as wn, JavaLibrariesSchema as wr, ELIXIR_DOCUMENTATION_VALUES as wt, BackendSchema as x, RustCliSchema as xa, PYTHON_SERVER_VALUES as xi, FormsSchema as xn, JavaAuthSchema as xr, ELIXIR_CACHING_VALUES as xt, BACKEND_VALUES as y, RustAuthSchema as ya, PYTHON_QUALITY_VALUES as yi, FileStorageSchema as yn, WorkspaceShapeSchema as yo, JOB_QUEUE_VALUES as yr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as yt, DOTNET_API_VALUES as z, SHADCN_RADIUS_VALUES as za, PythonHttpClientSchema as zi, GO_VALIDATION_VALUES as zn, MOBILE_OTA_VALUES as zr, EMAIL_VALUES as zt };
13648
- //# sourceMappingURL=schemas-ah-Pon-K.d.mts.map
13729
+ export { DatabaseSchema as $, StackPartEcosystemSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STACK_PART_SETTING_KEYS as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ServerDeploySchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, STATE_MANAGEMENT_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnColorThemeSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseColorSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, ShadcnStyleSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SWIFT_MOBILE_VALUES as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, SHADCN_STYLE_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, SearchSchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnIconLibrarySchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnFontSchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnRadiusSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, VersionChannelSchema as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, SwiftMobileSchema as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn, WebDeploySchema as bo, JavaApiSchema as br, ELIXIR_AUTH_VALUES as bt, API_VALUES as c, RUST_LOGGING_VALUES as ca, PYTHON_CACHING_VALUES as ci, ElixirTestingSchema as cn, TemplateSchema as co, InitResultSchema as cr, DotnetLibrariesSchema as ct, AUTH_VALUES as d, RUST_ORM_VALUES as da, PYTHON_DATA_VALUES as di, EmailSchema as dn, UI_LIBRARY_VALUES as do, JAVA_AUTH_VALUES as dr, DotnetRealtimeSchema as dt, RUNTIME_VALUES as ea, ORM_VALUES as ei, ElixirI18nSchema as en, StackPartRoleSchema as eo, GoRealtimeSchema as er, DatabaseSetupSchema as et, AddInputSchema as f, RUST_REALTIME_VALUES as fa, PYTHON_GRAPHQL_VALUES as fi, ExamplesSchema as fn, VALIDATION_VALUES as fo, JAVA_BUILD_TOOL_VALUES as fr, DotnetTestingSchema as ft, AnimationSchema as g, RealtimeSchema as ga, PYTHON_OBSERVABILITY_VALUES as gi, FORMS_VALUES as gn, VectorDbSchema as go, JAVA_ORM_VALUES as gr, ECOSYSTEM_VALUES as gt, AnalyticsSchema as h, RateLimitSchema as ha, PYTHON_MESSAGE_QUEUE_VALUES as hi, FILE_UPLOAD_VALUES as hn, ValidationSchema as ho, JAVA_LOGGING_VALUES as hr, ECOMMERCE_VALUES as ht, AI_VALUES as i, RUST_CLI_VALUES as ia, PROJECT_SHAPE_VALUES as ii, ElixirObservabilitySchema as in, StateManagementSchema as io, GoWebFrameworkSchema as ir, DotnetCachingSchema as it, CSSFrameworkSchema as j, RustWebFrameworkSchema as ja, PythonAiSchema as ji, GO_MIGRATIONS_VALUES as jn, KOTLIN_MOBILE_VALUES as jr, ELIXIR_LIBRARIES_VALUES as jt, CMSSchema as k, RustRealtimeSchema as ka, ProjectNameSchema as ki, GO_LOGGING_VALUES as kn, JobQueueSchema as kr, ELIXIR_JOBS_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_MESSAGE_QUEUE_VALUES as la, PYTHON_CLI_VALUES as li, ElixirValidationSchema as ln, TestingSchema as lo, IntegrationsSchema as lr, DotnetObservabilitySchema as lt, AiDocsSchema as m, RUST_WEB_FRAMEWORK_VALUES as ma, PYTHON_MEDIA_VALUES as mi, FILE_STORAGE_VALUES as mn, VERSION_CHANNEL_VALUES as mo, JAVA_LIBRARIES_VALUES as mr, DotnetWebFrameworkSchema as mt, AISchema as n, RUST_AUTH_VALUES as na, PACKAGE_MANAGER_VALUES as ni, ElixirJsonSchema as nn, StackPartSettingsSchema as no, GoTestingSchema as nr, DotnetApiSchema as nt, ANIMATION_VALUES as o, RUST_FRONTEND_VALUES as oa, PYTHON_API_VALUES as oi, ElixirQualitySchema as on, TEMPLATE_VALUES as oo, I18nSchema as or, DotnetFrontendSchema as ot, AddonsSchema as p, RUST_TEMPLATING_VALUES as pa, PYTHON_HTTP_CLIENT_VALUES as pi, FEATURE_FLAGS_VALUES as pn, VECTOR_DB_VALUES as po, JAVA_LANGUAGE_VALUES as pr, DotnetValidationSchema as pt, DOTNET_ORM_VALUES as q, ShadcnBaseSchema as qa, PythonServerSchema as qi, GoLoggingSchema as qn, MobileOTASchema as qr, ElixirCachingSchema as qt, AI_DOCS_VALUES as r, RUST_CACHING_VALUES as ra, PAYMENTS_VALUES as ri, ElixirLibrariesSchema as rn, StackPartSourceSchema as ro, GoValidationSchema as rr, DotnetAuthSchema as rt, APISchema as s, RUST_LIBRARIES_VALUES as sa, PYTHON_AUTH_VALUES as si, ElixirRealtimeSchema as sn, TESTING_VALUES as so, INTEGRATIONS_VALUES as sr, DotnetJobQueueSchema as st, ADDONS_VALUES as t, RUST_API_VALUES as ta, ObservabilitySchema as ti, ElixirJobsSchema as tn, StackPartSchema as to, GoTemplatingSchema as tr, DirectoryConflictSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_OBSERVABILITY_VALUES as ua, PYTHON_CLOUD_SDK_VALUES as ui, ElixirWebFrameworkSchema as un, UILibrarySchema as uo, JAVA_API_VALUES as ur, DotnetOrmSchema as ut, AuthSchema as v, RustApiSchema as va, PYTHON_PACKAGE_MANAGER_VALUES as vi, FeatureFlagsSchema as vn, WEB_DEPLOY_VALUES as vo, JAVA_WEB_FRAMEWORK_VALUES as vr, ELIXIR_API_VALUES as vt, BetterTStackConfigFileSchema as w, RustLibrariesSchema as wa, PYTHON_VALIDATION_VALUES as wi, GO_AUTH_VALUES as wn, JavaLibrariesSchema as wr, ELIXIR_DOCUMENTATION_VALUES as wt, BackendSchema as x, RustCliSchema as xa, PYTHON_SERVER_VALUES as xi, FormsSchema as xn, WorkspaceShapeSchema as xo, JavaAuthSchema as xr, ELIXIR_CACHING_VALUES as xt, BACKEND_VALUES as y, RustAuthSchema as ya, PYTHON_QUALITY_VALUES as yi, FileStorageSchema as yn, WORKSPACE_SHAPE_VALUES as yo, JOB_QUEUE_VALUES as yr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as yt, DOTNET_API_VALUES as z, SHADCN_RADIUS_VALUES as za, PythonHttpClientSchema as zi, GO_VALIDATION_VALUES as zn, MOBILE_OTA_VALUES as zr, EMAIL_VALUES as zt };
13730
+ //# sourceMappingURL=schemas-82xJXQrZ.d.mts.map