@better-fullstack/types 2.5.1 → 2.6.0
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.
- package/dist/{defaults-RqRyHpap.d.mts → defaults-7VECSARb.d.mts} +2 -2
- package/dist/defaults-7VECSARb.d.mts.map +1 -0
- package/dist/{defaults-BzWJP6p0.mjs → defaults-Bp46Ajyg.mjs} +2 -1
- package/dist/defaults-Bp46Ajyg.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +52 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +22 -20
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +508 -328
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-CtieNRfz.mjs → schemas-CH1UszP5.mjs} +36 -9
- package/dist/schemas-CH1UszP5.mjs.map +1 -0
- package/dist/{schemas-GnlaSaAD.d.mts → schemas-CY0MaZmU.d.mts} +816 -635
- package/dist/schemas-CY0MaZmU.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-CXTiPofQ.mjs → stack-graph-AWbdUrN3.mjs} +615 -131
- package/dist/stack-graph-AWbdUrN3.mjs.map +1 -0
- package/dist/{stack-graph-D8YLovR0.d.mts → stack-graph-DkJ944IX.d.mts} +7 -3
- package/dist/stack-graph-DkJ944IX.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-BV7cLYdZ.d.mts → stack-translation-C9yYLNwM.d.mts} +27 -7
- package/dist/stack-translation-C9yYLNwM.d.mts.map +1 -0
- package/dist/{stack-translation-B-zArJLM.mjs → stack-translation-Cn6zGJ5q.mjs} +253 -26
- package/dist/stack-translation-Cn6zGJ5q.mjs.map +1 -0
- package/dist/stack-translation.d.mts +5 -5
- package/dist/stack-translation.mjs +4 -4
- package/dist/{types-BdHthWR-.d.mts → types-fGT5qf7O.d.mts} +5 -3
- package/dist/types-fGT5qf7O.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-BzWJP6p0.mjs.map +0 -1
- package/dist/defaults-RqRyHpap.d.mts.map +0 -1
- package/dist/schemas-CtieNRfz.mjs.map +0 -1
- package/dist/schemas-GnlaSaAD.d.mts.map +0 -1
- package/dist/stack-graph-CXTiPofQ.mjs.map +0 -1
- package/dist/stack-graph-D8YLovR0.d.mts.map +0 -1
- package/dist/stack-translation-B-zArJLM.mjs.map +0 -1
- package/dist/stack-translation-BV7cLYdZ.d.mts.map +0 -1
- package/dist/types-BdHthWR-.d.mts.map +0 -1
|
@@ -22,69 +22,81 @@ 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
|
-
|
|
26
|
-
|
|
25
|
+
push: "push";
|
|
26
|
+
frontend: "frontend";
|
|
27
|
+
backend: "backend";
|
|
28
|
+
mobile: "mobile";
|
|
27
29
|
database: "database";
|
|
30
|
+
api: "api";
|
|
31
|
+
graphql: "graphql";
|
|
28
32
|
orm: "orm";
|
|
29
33
|
auth: "auth";
|
|
30
|
-
payments: "payments";
|
|
31
|
-
frontend: "frontend";
|
|
32
|
-
examples: "examples";
|
|
33
|
-
packageManager: "packageManager";
|
|
34
|
-
dbSetup: "dbSetup";
|
|
35
|
-
backend: "backend";
|
|
36
34
|
runtime: "runtime";
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
testing: "testing";
|
|
41
|
-
email: "email";
|
|
42
|
-
validation: "validation";
|
|
35
|
+
deploy: "deploy";
|
|
36
|
+
dbSetup: "dbSetup";
|
|
37
|
+
migrations: "migrations";
|
|
43
38
|
realtime: "realtime";
|
|
39
|
+
navigation: "navigation";
|
|
40
|
+
caching: "caching";
|
|
41
|
+
observability: "observability";
|
|
42
|
+
email: "email";
|
|
43
|
+
search: "search";
|
|
44
|
+
vectorDb: "vectorDb";
|
|
45
|
+
fileStorage: "fileStorage";
|
|
44
46
|
jobQueue: "jobQueue";
|
|
47
|
+
rateLimit: "rateLimit";
|
|
48
|
+
botProtection: "botProtection";
|
|
49
|
+
testing: "testing";
|
|
50
|
+
stateManagement: "stateManagement";
|
|
51
|
+
forms: "forms";
|
|
45
52
|
animation: "animation";
|
|
46
53
|
fileUpload: "fileUpload";
|
|
54
|
+
validation: "validation";
|
|
55
|
+
effect: "effect";
|
|
56
|
+
ui: "ui";
|
|
57
|
+
css: "css";
|
|
58
|
+
storage: "storage";
|
|
59
|
+
ota: "ota";
|
|
60
|
+
deepLinking: "deepLinking";
|
|
61
|
+
ai: "ai";
|
|
62
|
+
payments: "payments";
|
|
47
63
|
logging: "logging";
|
|
48
|
-
observability: "observability";
|
|
49
64
|
featureFlags: "featureFlags";
|
|
50
65
|
integrations: "integrations";
|
|
51
66
|
ecommerce: "ecommerce";
|
|
52
67
|
analytics: "analytics";
|
|
53
68
|
cms: "cms";
|
|
54
|
-
caching: "caching";
|
|
55
|
-
rateLimit: "rateLimit";
|
|
56
69
|
i18n: "i18n";
|
|
57
|
-
search: "search";
|
|
58
|
-
vectorDb: "vectorDb";
|
|
59
|
-
fileStorage: "fileStorage";
|
|
60
|
-
config: "config";
|
|
61
|
-
mobile: "mobile";
|
|
62
|
-
graphql: "graphql";
|
|
63
|
-
deploy: "deploy";
|
|
64
|
-
migrations: "migrations";
|
|
65
|
-
navigation: "navigation";
|
|
66
|
-
ui: "ui";
|
|
67
|
-
css: "css";
|
|
68
|
-
storage: "storage";
|
|
69
|
-
push: "push";
|
|
70
|
-
ota: "ota";
|
|
71
|
-
deepLinking: "deepLinking";
|
|
72
70
|
documentation: "documentation";
|
|
73
71
|
codeQuality: "codeQuality";
|
|
74
72
|
appPlatform: "appPlatform";
|
|
75
73
|
dataFetching: "dataFetching";
|
|
76
74
|
workspaceTooling: "workspaceTooling";
|
|
75
|
+
toolchain: "toolchain";
|
|
76
|
+
workspaceRunner: "workspaceRunner";
|
|
77
|
+
gitHooks: "gitHooks";
|
|
78
|
+
staticAnalysis: "staticAnalysis";
|
|
79
|
+
aiTooling: "aiTooling";
|
|
80
|
+
codeGeneration: "codeGeneration";
|
|
81
|
+
developerEnvironment: "developerEnvironment";
|
|
82
|
+
containerOrchestration: "containerOrchestration";
|
|
83
|
+
apiGateway: "apiGateway";
|
|
84
|
+
continuousIntegration: "continuousIntegration";
|
|
85
|
+
backendUtilities: "backendUtilities";
|
|
86
|
+
examples: "examples";
|
|
77
87
|
language: "language";
|
|
78
88
|
buildTool: "buildTool";
|
|
79
89
|
cli: "cli";
|
|
80
90
|
errorHandling: "errorHandling";
|
|
81
91
|
httpClient: "httpClient";
|
|
82
92
|
libraries: "libraries";
|
|
93
|
+
config: "config";
|
|
83
94
|
templating: "templating";
|
|
84
95
|
cloudSdk: "cloudSdk";
|
|
85
96
|
data: "data";
|
|
86
97
|
media: "media";
|
|
87
98
|
server: "server";
|
|
99
|
+
packageManager: "packageManager";
|
|
88
100
|
messageQueue: "messageQueue";
|
|
89
101
|
}>;
|
|
90
102
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
@@ -97,69 +109,81 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
97
109
|
declare const StackPartSchema: z.ZodObject<{
|
|
98
110
|
id: z.ZodString;
|
|
99
111
|
role: z.ZodEnum<{
|
|
100
|
-
|
|
101
|
-
|
|
112
|
+
push: "push";
|
|
113
|
+
frontend: "frontend";
|
|
114
|
+
backend: "backend";
|
|
115
|
+
mobile: "mobile";
|
|
102
116
|
database: "database";
|
|
117
|
+
api: "api";
|
|
118
|
+
graphql: "graphql";
|
|
103
119
|
orm: "orm";
|
|
104
120
|
auth: "auth";
|
|
105
|
-
payments: "payments";
|
|
106
|
-
frontend: "frontend";
|
|
107
|
-
examples: "examples";
|
|
108
|
-
packageManager: "packageManager";
|
|
109
|
-
dbSetup: "dbSetup";
|
|
110
|
-
backend: "backend";
|
|
111
121
|
runtime: "runtime";
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
testing: "testing";
|
|
116
|
-
email: "email";
|
|
117
|
-
validation: "validation";
|
|
122
|
+
deploy: "deploy";
|
|
123
|
+
dbSetup: "dbSetup";
|
|
124
|
+
migrations: "migrations";
|
|
118
125
|
realtime: "realtime";
|
|
126
|
+
navigation: "navigation";
|
|
127
|
+
caching: "caching";
|
|
128
|
+
observability: "observability";
|
|
129
|
+
email: "email";
|
|
130
|
+
search: "search";
|
|
131
|
+
vectorDb: "vectorDb";
|
|
132
|
+
fileStorage: "fileStorage";
|
|
119
133
|
jobQueue: "jobQueue";
|
|
134
|
+
rateLimit: "rateLimit";
|
|
135
|
+
botProtection: "botProtection";
|
|
136
|
+
testing: "testing";
|
|
137
|
+
stateManagement: "stateManagement";
|
|
138
|
+
forms: "forms";
|
|
120
139
|
animation: "animation";
|
|
121
140
|
fileUpload: "fileUpload";
|
|
141
|
+
validation: "validation";
|
|
142
|
+
effect: "effect";
|
|
143
|
+
ui: "ui";
|
|
144
|
+
css: "css";
|
|
145
|
+
storage: "storage";
|
|
146
|
+
ota: "ota";
|
|
147
|
+
deepLinking: "deepLinking";
|
|
148
|
+
ai: "ai";
|
|
149
|
+
payments: "payments";
|
|
122
150
|
logging: "logging";
|
|
123
|
-
observability: "observability";
|
|
124
151
|
featureFlags: "featureFlags";
|
|
125
152
|
integrations: "integrations";
|
|
126
153
|
ecommerce: "ecommerce";
|
|
127
154
|
analytics: "analytics";
|
|
128
155
|
cms: "cms";
|
|
129
|
-
caching: "caching";
|
|
130
|
-
rateLimit: "rateLimit";
|
|
131
156
|
i18n: "i18n";
|
|
132
|
-
search: "search";
|
|
133
|
-
vectorDb: "vectorDb";
|
|
134
|
-
fileStorage: "fileStorage";
|
|
135
|
-
config: "config";
|
|
136
|
-
mobile: "mobile";
|
|
137
|
-
graphql: "graphql";
|
|
138
|
-
deploy: "deploy";
|
|
139
|
-
migrations: "migrations";
|
|
140
|
-
navigation: "navigation";
|
|
141
|
-
ui: "ui";
|
|
142
|
-
css: "css";
|
|
143
|
-
storage: "storage";
|
|
144
|
-
push: "push";
|
|
145
|
-
ota: "ota";
|
|
146
|
-
deepLinking: "deepLinking";
|
|
147
157
|
documentation: "documentation";
|
|
148
158
|
codeQuality: "codeQuality";
|
|
149
159
|
appPlatform: "appPlatform";
|
|
150
160
|
dataFetching: "dataFetching";
|
|
151
161
|
workspaceTooling: "workspaceTooling";
|
|
162
|
+
toolchain: "toolchain";
|
|
163
|
+
workspaceRunner: "workspaceRunner";
|
|
164
|
+
gitHooks: "gitHooks";
|
|
165
|
+
staticAnalysis: "staticAnalysis";
|
|
166
|
+
aiTooling: "aiTooling";
|
|
167
|
+
codeGeneration: "codeGeneration";
|
|
168
|
+
developerEnvironment: "developerEnvironment";
|
|
169
|
+
containerOrchestration: "containerOrchestration";
|
|
170
|
+
apiGateway: "apiGateway";
|
|
171
|
+
continuousIntegration: "continuousIntegration";
|
|
172
|
+
backendUtilities: "backendUtilities";
|
|
173
|
+
examples: "examples";
|
|
152
174
|
language: "language";
|
|
153
175
|
buildTool: "buildTool";
|
|
154
176
|
cli: "cli";
|
|
155
177
|
errorHandling: "errorHandling";
|
|
156
178
|
httpClient: "httpClient";
|
|
157
179
|
libraries: "libraries";
|
|
180
|
+
config: "config";
|
|
158
181
|
templating: "templating";
|
|
159
182
|
cloudSdk: "cloudSdk";
|
|
160
183
|
data: "data";
|
|
161
184
|
media: "media";
|
|
162
185
|
server: "server";
|
|
186
|
+
packageManager: "packageManager";
|
|
163
187
|
messageQueue: "messageQueue";
|
|
164
188
|
}>;
|
|
165
189
|
toolId: z.ZodString;
|
|
@@ -205,13 +229,13 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
205
229
|
sequelize: "sequelize";
|
|
206
230
|
}>;
|
|
207
231
|
declare const BackendSchema: z.ZodEnum<{
|
|
232
|
+
effect: "effect";
|
|
208
233
|
none: "none";
|
|
209
234
|
hono: "hono";
|
|
210
235
|
express: "express";
|
|
211
236
|
fastify: "fastify";
|
|
212
237
|
elysia: "elysia";
|
|
213
238
|
fets: "fets";
|
|
214
|
-
effect: "effect";
|
|
215
239
|
nestjs: "nestjs";
|
|
216
240
|
adonisjs: "adonisjs";
|
|
217
241
|
nitro: "nitro";
|
|
@@ -270,6 +294,7 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
270
294
|
skills: "skills";
|
|
271
295
|
turborepo: "turborepo";
|
|
272
296
|
nx: "nx";
|
|
297
|
+
"vite-plus": "vite-plus";
|
|
273
298
|
fumadocs: "fumadocs";
|
|
274
299
|
ultracite: "ultracite";
|
|
275
300
|
oxlint: "oxlint";
|
|
@@ -298,16 +323,11 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
298
323
|
electron: "electron";
|
|
299
324
|
capacitor: "capacitor";
|
|
300
325
|
}>;
|
|
301
|
-
/**
|
|
302
|
-
* Addon values that are app platforms — shells/targets that package the web
|
|
303
|
-
* frontend (desktop, mobile hybrid, browser extension, terminal, installable
|
|
304
|
-
* PWA). Surfaced as a dedicated "App Platforms" section in the CLI and web
|
|
305
|
-
* builder; they still serialize into the `addons` config field.
|
|
306
|
-
*/
|
|
326
|
+
/** @deprecated Use tooling capability metadata and Stack Part role bindings. */
|
|
307
327
|
declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
|
|
308
328
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
309
|
-
none: "none";
|
|
310
329
|
ai: "ai";
|
|
330
|
+
none: "none";
|
|
311
331
|
"chat-sdk": "chat-sdk";
|
|
312
332
|
"tanstack-showcase": "tanstack-showcase";
|
|
313
333
|
}>;
|
|
@@ -415,8 +435,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
415
435
|
"ai-cli": "ai-cli";
|
|
416
436
|
}>;
|
|
417
437
|
declare const EffectSchema: z.ZodEnum<{
|
|
418
|
-
none: "none";
|
|
419
438
|
effect: "effect";
|
|
439
|
+
none: "none";
|
|
420
440
|
"effect-full": "effect-full";
|
|
421
441
|
}>;
|
|
422
442
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -507,6 +527,11 @@ declare const RateLimitSchema: z.ZodEnum<{
|
|
|
507
527
|
arcjet: "arcjet";
|
|
508
528
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
509
529
|
}>;
|
|
530
|
+
declare const BotProtectionSchema: z.ZodEnum<{
|
|
531
|
+
none: "none";
|
|
532
|
+
botid: "botid";
|
|
533
|
+
turnstile: "turnstile";
|
|
534
|
+
}>;
|
|
510
535
|
declare const I18nSchema: z.ZodEnum<{
|
|
511
536
|
none: "none";
|
|
512
537
|
paraglide: "paraglide";
|
|
@@ -589,6 +614,7 @@ declare const AnalyticsSchema: z.ZodEnum<{
|
|
|
589
614
|
plausible: "plausible";
|
|
590
615
|
umami: "umami";
|
|
591
616
|
ga4: "ga4";
|
|
617
|
+
"vercel-analytics": "vercel-analytics";
|
|
592
618
|
}>;
|
|
593
619
|
declare const MobileNavigationSchema: z.ZodEnum<{
|
|
594
620
|
none: "none";
|
|
@@ -597,9 +623,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
597
623
|
}>;
|
|
598
624
|
declare const MobileUISchema: z.ZodEnum<{
|
|
599
625
|
none: "none";
|
|
600
|
-
uniwind: "uniwind";
|
|
601
626
|
tamagui: "tamagui";
|
|
602
627
|
"gluestack-ui": "gluestack-ui";
|
|
628
|
+
uniwind: "uniwind";
|
|
603
629
|
unistyles: "unistyles";
|
|
604
630
|
}>;
|
|
605
631
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -715,12 +741,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
715
741
|
ratatui: "ratatui";
|
|
716
742
|
}>;
|
|
717
743
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
744
|
+
config: "config";
|
|
718
745
|
none: "none";
|
|
719
746
|
serde: "serde";
|
|
720
747
|
uuid: "uuid";
|
|
721
748
|
chrono: "chrono";
|
|
722
749
|
reqwest: "reqwest";
|
|
723
|
-
config: "config";
|
|
724
750
|
dashmap: "dashmap";
|
|
725
751
|
"parking-lot": "parking-lot";
|
|
726
752
|
secrecy: "secrecy";
|
|
@@ -1420,36 +1446,48 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
1420
1446
|
"geist-mono": "geist-mono";
|
|
1421
1447
|
}>;
|
|
1422
1448
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
1423
|
-
none: "none";
|
|
1424
1449
|
default: "default";
|
|
1450
|
+
none: "none";
|
|
1425
1451
|
small: "small";
|
|
1426
1452
|
medium: "medium";
|
|
1427
1453
|
large: "large";
|
|
1428
1454
|
}>;
|
|
1429
1455
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1456
|
+
error: "error";
|
|
1430
1457
|
merge: "merge";
|
|
1431
1458
|
overwrite: "overwrite";
|
|
1432
1459
|
increment: "increment";
|
|
1433
|
-
error: "error";
|
|
1434
1460
|
}>;
|
|
1435
1461
|
declare const TemplateSchema: z.ZodEnum<{
|
|
1436
1462
|
none: "none";
|
|
1463
|
+
uniwind: "uniwind";
|
|
1437
1464
|
mern: "mern";
|
|
1438
1465
|
pern: "pern";
|
|
1439
1466
|
t3: "t3";
|
|
1440
1467
|
saas: "saas";
|
|
1441
|
-
|
|
1468
|
+
}>;
|
|
1469
|
+
declare const ProjectShapeSchema: z.ZodEnum<{
|
|
1470
|
+
frontend: "frontend";
|
|
1471
|
+
backend: "backend";
|
|
1472
|
+
mobile: "mobile";
|
|
1473
|
+
fullstack: "fullstack";
|
|
1442
1474
|
}>;
|
|
1443
1475
|
declare const ProjectNameSchema: z.ZodString;
|
|
1444
1476
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1445
1477
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1446
1478
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1447
1479
|
none: "none";
|
|
1480
|
+
uniwind: "uniwind";
|
|
1448
1481
|
mern: "mern";
|
|
1449
1482
|
pern: "pern";
|
|
1450
1483
|
t3: "t3";
|
|
1451
1484
|
saas: "saas";
|
|
1452
|
-
|
|
1485
|
+
}>>;
|
|
1486
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
1487
|
+
frontend: "frontend";
|
|
1488
|
+
backend: "backend";
|
|
1489
|
+
mobile: "mobile";
|
|
1490
|
+
fullstack: "fullstack";
|
|
1453
1491
|
}>>;
|
|
1454
1492
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1455
1493
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1551,6 +1589,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1551
1589
|
skills: "skills";
|
|
1552
1590
|
turborepo: "turborepo";
|
|
1553
1591
|
nx: "nx";
|
|
1592
|
+
"vite-plus": "vite-plus";
|
|
1554
1593
|
fumadocs: "fumadocs";
|
|
1555
1594
|
ultracite: "ultracite";
|
|
1556
1595
|
oxlint: "oxlint";
|
|
@@ -1580,8 +1619,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1580
1619
|
capacitor: "capacitor";
|
|
1581
1620
|
}>>>;
|
|
1582
1621
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1583
|
-
none: "none";
|
|
1584
1622
|
ai: "ai";
|
|
1623
|
+
none: "none";
|
|
1585
1624
|
"chat-sdk": "chat-sdk";
|
|
1586
1625
|
"tanstack-showcase": "tanstack-showcase";
|
|
1587
1626
|
}>>>;
|
|
@@ -1615,13 +1654,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1615
1654
|
docker: "docker";
|
|
1616
1655
|
}>>;
|
|
1617
1656
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
1657
|
+
effect: "effect";
|
|
1618
1658
|
none: "none";
|
|
1619
1659
|
hono: "hono";
|
|
1620
1660
|
express: "express";
|
|
1621
1661
|
fastify: "fastify";
|
|
1622
1662
|
elysia: "elysia";
|
|
1623
1663
|
fets: "fets";
|
|
1624
|
-
effect: "effect";
|
|
1625
1664
|
nestjs: "nestjs";
|
|
1626
1665
|
adonisjs: "adonisjs";
|
|
1627
1666
|
nitro: "nitro";
|
|
@@ -1668,10 +1707,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1668
1707
|
vercel: "vercel";
|
|
1669
1708
|
}>>;
|
|
1670
1709
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1710
|
+
error: "error";
|
|
1671
1711
|
merge: "merge";
|
|
1672
1712
|
overwrite: "overwrite";
|
|
1673
1713
|
increment: "increment";
|
|
1674
|
-
error: "error";
|
|
1675
1714
|
}>>;
|
|
1676
1715
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1677
1716
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1700,8 +1739,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1700
1739
|
"ai-cli": "ai-cli";
|
|
1701
1740
|
}>>;
|
|
1702
1741
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1703
|
-
none: "none";
|
|
1704
1742
|
effect: "effect";
|
|
1743
|
+
none: "none";
|
|
1705
1744
|
"effect-full": "effect-full";
|
|
1706
1745
|
}>>;
|
|
1707
1746
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1836,8 +1875,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1836
1875
|
"geist-mono": "geist-mono";
|
|
1837
1876
|
}>>;
|
|
1838
1877
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1839
|
-
none: "none";
|
|
1840
1878
|
default: "default";
|
|
1879
|
+
none: "none";
|
|
1841
1880
|
small: "small";
|
|
1842
1881
|
medium: "medium";
|
|
1843
1882
|
large: "large";
|
|
@@ -1921,6 +1960,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1921
1960
|
plausible: "plausible";
|
|
1922
1961
|
umami: "umami";
|
|
1923
1962
|
ga4: "ga4";
|
|
1963
|
+
"vercel-analytics": "vercel-analytics";
|
|
1924
1964
|
}>>;
|
|
1925
1965
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
1926
1966
|
none: "none";
|
|
@@ -1942,6 +1982,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1942
1982
|
arcjet: "arcjet";
|
|
1943
1983
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
1944
1984
|
}>>;
|
|
1985
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
1986
|
+
none: "none";
|
|
1987
|
+
botid: "botid";
|
|
1988
|
+
turnstile: "turnstile";
|
|
1989
|
+
}>>;
|
|
1945
1990
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1946
1991
|
none: "none";
|
|
1947
1992
|
paraglide: "paraglide";
|
|
@@ -1979,9 +2024,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1979
2024
|
}>>;
|
|
1980
2025
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1981
2026
|
none: "none";
|
|
1982
|
-
uniwind: "uniwind";
|
|
1983
2027
|
tamagui: "tamagui";
|
|
1984
2028
|
"gluestack-ui": "gluestack-ui";
|
|
2029
|
+
uniwind: "uniwind";
|
|
1985
2030
|
unistyles: "unistyles";
|
|
1986
2031
|
}>>;
|
|
1987
2032
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2097,12 +2142,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2097
2142
|
ratatui: "ratatui";
|
|
2098
2143
|
}>>;
|
|
2099
2144
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2145
|
+
config: "config";
|
|
2100
2146
|
none: "none";
|
|
2101
2147
|
serde: "serde";
|
|
2102
2148
|
uuid: "uuid";
|
|
2103
2149
|
chrono: "chrono";
|
|
2104
2150
|
reqwest: "reqwest";
|
|
2105
|
-
config: "config";
|
|
2106
2151
|
dashmap: "dashmap";
|
|
2107
2152
|
"parking-lot": "parking-lot";
|
|
2108
2153
|
secrecy: "secrecy";
|
|
@@ -2714,37 +2759,43 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2714
2759
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2715
2760
|
}, z.core.$strip>;
|
|
2716
2761
|
declare const AddInputSchema: z.ZodObject<{
|
|
2717
|
-
|
|
2762
|
+
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2718
2763
|
none: "none";
|
|
2764
|
+
"tanstack-router": "tanstack-router";
|
|
2765
|
+
"react-router": "react-router";
|
|
2766
|
+
"react-vite": "react-vite";
|
|
2767
|
+
"vanilla-vite": "vanilla-vite";
|
|
2768
|
+
vue: "vue";
|
|
2769
|
+
"tanstack-start": "tanstack-start";
|
|
2770
|
+
next: "next";
|
|
2771
|
+
vinext: "vinext";
|
|
2772
|
+
nuxt: "nuxt";
|
|
2773
|
+
"native-bare": "native-bare";
|
|
2774
|
+
"native-uniwind": "native-uniwind";
|
|
2775
|
+
"native-unistyles": "native-unistyles";
|
|
2776
|
+
svelte: "svelte";
|
|
2777
|
+
solid: "solid";
|
|
2778
|
+
"solid-start": "solid-start";
|
|
2779
|
+
astro: "astro";
|
|
2780
|
+
qwik: "qwik";
|
|
2781
|
+
angular: "angular";
|
|
2782
|
+
redwood: "redwood";
|
|
2783
|
+
fresh: "fresh";
|
|
2784
|
+
}>>>;
|
|
2785
|
+
backend: z.ZodOptional<z.ZodEnum<{
|
|
2719
2786
|
effect: "effect";
|
|
2720
|
-
"effect-full": "effect-full";
|
|
2721
|
-
}>>;
|
|
2722
|
-
ai: z.ZodOptional<z.ZodEnum<{
|
|
2723
2787
|
none: "none";
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
"tanstack-ai": "tanstack-ai";
|
|
2736
|
-
"ai-cli": "ai-cli";
|
|
2737
|
-
}>>;
|
|
2738
|
-
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2739
|
-
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2740
|
-
typescript: "typescript";
|
|
2741
|
-
"react-native": "react-native";
|
|
2742
|
-
rust: "rust";
|
|
2743
|
-
python: "python";
|
|
2744
|
-
go: "go";
|
|
2745
|
-
java: "java";
|
|
2746
|
-
elixir: "elixir";
|
|
2747
|
-
dotnet: "dotnet";
|
|
2788
|
+
hono: "hono";
|
|
2789
|
+
express: "express";
|
|
2790
|
+
fastify: "fastify";
|
|
2791
|
+
elysia: "elysia";
|
|
2792
|
+
fets: "fets";
|
|
2793
|
+
nestjs: "nestjs";
|
|
2794
|
+
adonisjs: "adonisjs";
|
|
2795
|
+
nitro: "nitro";
|
|
2796
|
+
encore: "encore";
|
|
2797
|
+
convex: "convex";
|
|
2798
|
+
self: "self";
|
|
2748
2799
|
}>>;
|
|
2749
2800
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2750
2801
|
none: "none";
|
|
@@ -2755,6 +2806,16 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2755
2806
|
edgedb: "edgedb";
|
|
2756
2807
|
redis: "redis";
|
|
2757
2808
|
}>>;
|
|
2809
|
+
api: z.ZodOptional<z.ZodEnum<{
|
|
2810
|
+
none: "none";
|
|
2811
|
+
trpc: "trpc";
|
|
2812
|
+
orpc: "orpc";
|
|
2813
|
+
"ts-rest": "ts-rest";
|
|
2814
|
+
garph: "garph";
|
|
2815
|
+
"graphql-yoga": "graphql-yoga";
|
|
2816
|
+
"apollo-server": "apollo-server";
|
|
2817
|
+
openapi: "openapi";
|
|
2818
|
+
}>>;
|
|
2758
2819
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
2759
2820
|
none: "none";
|
|
2760
2821
|
drizzle: "drizzle";
|
|
@@ -2779,43 +2840,259 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2779
2840
|
kinde: "kinde";
|
|
2780
2841
|
passport: "passport";
|
|
2781
2842
|
}>>;
|
|
2782
|
-
|
|
2843
|
+
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2783
2844
|
none: "none";
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2845
|
+
bun: "bun";
|
|
2846
|
+
node: "node";
|
|
2847
|
+
workers: "workers";
|
|
2848
|
+
}>>;
|
|
2849
|
+
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2850
|
+
none: "none";
|
|
2851
|
+
turso: "turso";
|
|
2852
|
+
neon: "neon";
|
|
2853
|
+
"prisma-postgres": "prisma-postgres";
|
|
2854
|
+
planetscale: "planetscale";
|
|
2855
|
+
"mongodb-atlas": "mongodb-atlas";
|
|
2856
|
+
supabase: "supabase";
|
|
2857
|
+
upstash: "upstash";
|
|
2858
|
+
d1: "d1";
|
|
2859
|
+
docker: "docker";
|
|
2860
|
+
}>>;
|
|
2861
|
+
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2862
|
+
none: "none";
|
|
2863
|
+
"socket-io": "socket-io";
|
|
2864
|
+
ws: "ws";
|
|
2865
|
+
partykit: "partykit";
|
|
2866
|
+
ably: "ably";
|
|
2867
|
+
pusher: "pusher";
|
|
2868
|
+
liveblocks: "liveblocks";
|
|
2869
|
+
yjs: "yjs";
|
|
2870
|
+
}>>;
|
|
2871
|
+
caching: z.ZodOptional<z.ZodEnum<{
|
|
2872
|
+
none: "none";
|
|
2873
|
+
redis: "redis";
|
|
2874
|
+
"upstash-redis": "upstash-redis";
|
|
2875
|
+
}>>;
|
|
2876
|
+
observability: z.ZodOptional<z.ZodEnum<{
|
|
2877
|
+
none: "none";
|
|
2878
|
+
opentelemetry: "opentelemetry";
|
|
2879
|
+
signoz: "signoz";
|
|
2880
|
+
sentry: "sentry";
|
|
2881
|
+
grafana: "grafana";
|
|
2882
|
+
datadog: "datadog";
|
|
2883
|
+
axiom: "axiom";
|
|
2884
|
+
betterstack: "betterstack";
|
|
2885
|
+
}>>;
|
|
2886
|
+
email: z.ZodOptional<z.ZodEnum<{
|
|
2887
|
+
none: "none";
|
|
2888
|
+
"react-email": "react-email";
|
|
2889
|
+
resend: "resend";
|
|
2890
|
+
nodemailer: "nodemailer";
|
|
2891
|
+
postmark: "postmark";
|
|
2892
|
+
sendgrid: "sendgrid";
|
|
2893
|
+
"aws-ses": "aws-ses";
|
|
2894
|
+
mailgun: "mailgun";
|
|
2895
|
+
plunk: "plunk";
|
|
2896
|
+
}>>;
|
|
2897
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
2898
|
+
none: "none";
|
|
2899
|
+
meilisearch: "meilisearch";
|
|
2900
|
+
typesense: "typesense";
|
|
2901
|
+
elasticsearch: "elasticsearch";
|
|
2902
|
+
opensearch: "opensearch";
|
|
2903
|
+
algolia: "algolia";
|
|
2904
|
+
bleve: "bleve";
|
|
2905
|
+
}>>;
|
|
2906
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2907
|
+
none: "none";
|
|
2908
|
+
pgvector: "pgvector";
|
|
2909
|
+
qdrant: "qdrant";
|
|
2910
|
+
chroma: "chroma";
|
|
2911
|
+
pinecone: "pinecone";
|
|
2912
|
+
}>>;
|
|
2913
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
2914
|
+
none: "none";
|
|
2915
|
+
s3: "s3";
|
|
2916
|
+
r2: "r2";
|
|
2917
|
+
cloudinary: "cloudinary";
|
|
2918
|
+
"supabase-storage": "supabase-storage";
|
|
2919
|
+
}>>;
|
|
2920
|
+
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2921
|
+
none: "none";
|
|
2922
|
+
bullmq: "bullmq";
|
|
2923
|
+
"trigger-dev": "trigger-dev";
|
|
2924
|
+
inngest: "inngest";
|
|
2925
|
+
temporal: "temporal";
|
|
2926
|
+
}>>;
|
|
2927
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2928
|
+
none: "none";
|
|
2929
|
+
arcjet: "arcjet";
|
|
2930
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2931
|
+
}>>;
|
|
2932
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
2933
|
+
none: "none";
|
|
2934
|
+
botid: "botid";
|
|
2935
|
+
turnstile: "turnstile";
|
|
2936
|
+
}>>;
|
|
2937
|
+
testing: z.ZodOptional<z.ZodEnum<{
|
|
2938
|
+
none: "none";
|
|
2939
|
+
vitest: "vitest";
|
|
2940
|
+
playwright: "playwright";
|
|
2941
|
+
"vitest-playwright": "vitest-playwright";
|
|
2942
|
+
jest: "jest";
|
|
2943
|
+
mocha: "mocha";
|
|
2944
|
+
cypress: "cypress";
|
|
2945
|
+
}>>;
|
|
2946
|
+
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2947
|
+
none: "none";
|
|
2948
|
+
zustand: "zustand";
|
|
2949
|
+
jotai: "jotai";
|
|
2950
|
+
nanostores: "nanostores";
|
|
2951
|
+
"redux-toolkit": "redux-toolkit";
|
|
2952
|
+
mobx: "mobx";
|
|
2953
|
+
xstate: "xstate";
|
|
2954
|
+
valtio: "valtio";
|
|
2955
|
+
"tanstack-store": "tanstack-store";
|
|
2956
|
+
"legend-state": "legend-state";
|
|
2957
|
+
}>>;
|
|
2958
|
+
forms: z.ZodOptional<z.ZodEnum<{
|
|
2959
|
+
none: "none";
|
|
2960
|
+
"tanstack-form": "tanstack-form";
|
|
2961
|
+
"react-hook-form": "react-hook-form";
|
|
2962
|
+
formik: "formik";
|
|
2963
|
+
"final-form": "final-form";
|
|
2964
|
+
conform: "conform";
|
|
2965
|
+
"modular-forms": "modular-forms";
|
|
2966
|
+
}>>;
|
|
2967
|
+
animation: z.ZodOptional<z.ZodEnum<{
|
|
2968
|
+
none: "none";
|
|
2969
|
+
"framer-motion": "framer-motion";
|
|
2970
|
+
gsap: "gsap";
|
|
2971
|
+
"react-spring": "react-spring";
|
|
2972
|
+
"auto-animate": "auto-animate";
|
|
2973
|
+
lottie: "lottie";
|
|
2974
|
+
}>>;
|
|
2975
|
+
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2976
|
+
none: "none";
|
|
2977
|
+
uploadthing: "uploadthing";
|
|
2978
|
+
filepond: "filepond";
|
|
2979
|
+
uppy: "uppy";
|
|
2980
|
+
}>>;
|
|
2981
|
+
validation: z.ZodOptional<z.ZodEnum<{
|
|
2982
|
+
none: "none";
|
|
2983
|
+
zod: "zod";
|
|
2984
|
+
valibot: "valibot";
|
|
2985
|
+
arktype: "arktype";
|
|
2986
|
+
typebox: "typebox";
|
|
2987
|
+
typia: "typia";
|
|
2988
|
+
runtypes: "runtypes";
|
|
2989
|
+
"effect-schema": "effect-schema";
|
|
2990
|
+
}>>;
|
|
2991
|
+
effect: z.ZodOptional<z.ZodEnum<{
|
|
2992
|
+
effect: "effect";
|
|
2993
|
+
none: "none";
|
|
2994
|
+
"effect-full": "effect-full";
|
|
2995
|
+
}>>;
|
|
2996
|
+
ai: z.ZodOptional<z.ZodEnum<{
|
|
2997
|
+
none: "none";
|
|
2998
|
+
"vercel-ai": "vercel-ai";
|
|
2999
|
+
mastra: "mastra";
|
|
3000
|
+
voltagent: "voltagent";
|
|
3001
|
+
langgraph: "langgraph";
|
|
3002
|
+
"openai-agents": "openai-agents";
|
|
3003
|
+
"openai-sdk": "openai-sdk";
|
|
3004
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
3005
|
+
"google-adk": "google-adk";
|
|
3006
|
+
modelfusion: "modelfusion";
|
|
3007
|
+
langchain: "langchain";
|
|
3008
|
+
llamaindex: "llamaindex";
|
|
3009
|
+
"tanstack-ai": "tanstack-ai";
|
|
3010
|
+
"ai-cli": "ai-cli";
|
|
3011
|
+
}>>;
|
|
3012
|
+
payments: z.ZodOptional<z.ZodEnum<{
|
|
3013
|
+
none: "none";
|
|
3014
|
+
revenuecat: "revenuecat";
|
|
3015
|
+
polar: "polar";
|
|
3016
|
+
stripe: "stripe";
|
|
3017
|
+
"lemon-squeezy": "lemon-squeezy";
|
|
3018
|
+
paddle: "paddle";
|
|
3019
|
+
paypal: "paypal";
|
|
3020
|
+
dodo: "dodo";
|
|
3021
|
+
creem: "creem";
|
|
3022
|
+
autumn: "autumn";
|
|
3023
|
+
commet: "commet";
|
|
2794
3024
|
xendit: "xendit";
|
|
2795
3025
|
}>>;
|
|
2796
|
-
|
|
3026
|
+
logging: z.ZodOptional<z.ZodEnum<{
|
|
2797
3027
|
none: "none";
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
3028
|
+
pino: "pino";
|
|
3029
|
+
winston: "winston";
|
|
3030
|
+
evlog: "evlog";
|
|
3031
|
+
}>>;
|
|
3032
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3033
|
+
none: "none";
|
|
3034
|
+
growthbook: "growthbook";
|
|
3035
|
+
posthog: "posthog";
|
|
3036
|
+
launchdarkly: "launchdarkly";
|
|
3037
|
+
flagsmith: "flagsmith";
|
|
3038
|
+
unleash: "unleash";
|
|
3039
|
+
}>>;
|
|
3040
|
+
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3041
|
+
none: "none";
|
|
3042
|
+
nango: "nango";
|
|
3043
|
+
}>>;
|
|
3044
|
+
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3045
|
+
none: "none";
|
|
3046
|
+
medusa: "medusa";
|
|
3047
|
+
}>>;
|
|
3048
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3049
|
+
none: "none";
|
|
3050
|
+
posthog: "posthog";
|
|
3051
|
+
plausible: "plausible";
|
|
3052
|
+
umami: "umami";
|
|
3053
|
+
ga4: "ga4";
|
|
3054
|
+
"vercel-analytics": "vercel-analytics";
|
|
3055
|
+
}>>;
|
|
3056
|
+
cms: z.ZodOptional<z.ZodEnum<{
|
|
3057
|
+
none: "none";
|
|
3058
|
+
payload: "payload";
|
|
3059
|
+
sanity: "sanity";
|
|
3060
|
+
strapi: "strapi";
|
|
3061
|
+
tinacms: "tinacms";
|
|
3062
|
+
directus: "directus";
|
|
3063
|
+
keystatic: "keystatic";
|
|
3064
|
+
contentful: "contentful";
|
|
3065
|
+
}>>;
|
|
3066
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3067
|
+
none: "none";
|
|
3068
|
+
paraglide: "paraglide";
|
|
3069
|
+
i18next: "i18next";
|
|
3070
|
+
"next-intl": "next-intl";
|
|
3071
|
+
intlayer: "intlayer";
|
|
3072
|
+
}>>;
|
|
3073
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3074
|
+
ai: "ai";
|
|
3075
|
+
none: "none";
|
|
3076
|
+
"chat-sdk": "chat-sdk";
|
|
3077
|
+
"tanstack-showcase": "tanstack-showcase";
|
|
2818
3078
|
}>>>;
|
|
3079
|
+
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
3080
|
+
bun: "bun";
|
|
3081
|
+
npm: "npm";
|
|
3082
|
+
pnpm: "pnpm";
|
|
3083
|
+
yarn: "yarn";
|
|
3084
|
+
}>>;
|
|
3085
|
+
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
3086
|
+
typescript: "typescript";
|
|
3087
|
+
"react-native": "react-native";
|
|
3088
|
+
rust: "rust";
|
|
3089
|
+
python: "python";
|
|
3090
|
+
go: "go";
|
|
3091
|
+
java: "java";
|
|
3092
|
+
elixir: "elixir";
|
|
3093
|
+
dotnet: "dotnet";
|
|
3094
|
+
}>>;
|
|
3095
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2819
3096
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2820
3097
|
none: "none";
|
|
2821
3098
|
pwa: "pwa";
|
|
@@ -2831,6 +3108,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2831
3108
|
skills: "skills";
|
|
2832
3109
|
turborepo: "turborepo";
|
|
2833
3110
|
nx: "nx";
|
|
3111
|
+
"vite-plus": "vite-plus";
|
|
2834
3112
|
fumadocs: "fumadocs";
|
|
2835
3113
|
ultracite: "ultracite";
|
|
2836
3114
|
oxlint: "oxlint";
|
|
@@ -2859,18 +3137,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2859
3137
|
electron: "electron";
|
|
2860
3138
|
capacitor: "capacitor";
|
|
2861
3139
|
}>>>;
|
|
2862
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2863
|
-
none: "none";
|
|
2864
|
-
ai: "ai";
|
|
2865
|
-
"chat-sdk": "chat-sdk";
|
|
2866
|
-
"tanstack-showcase": "tanstack-showcase";
|
|
2867
|
-
}>>>;
|
|
2868
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
2869
|
-
bun: "bun";
|
|
2870
|
-
npm: "npm";
|
|
2871
|
-
pnpm: "pnpm";
|
|
2872
|
-
yarn: "yarn";
|
|
2873
|
-
}>>;
|
|
2874
3140
|
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
2875
3141
|
monorepo: "monorepo";
|
|
2876
3142
|
"single-app": "single-app";
|
|
@@ -2881,49 +3147,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2881
3147
|
beta: "beta";
|
|
2882
3148
|
}>>;
|
|
2883
3149
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
2884
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2885
|
-
none: "none";
|
|
2886
|
-
turso: "turso";
|
|
2887
|
-
neon: "neon";
|
|
2888
|
-
"prisma-postgres": "prisma-postgres";
|
|
2889
|
-
planetscale: "planetscale";
|
|
2890
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
2891
|
-
supabase: "supabase";
|
|
2892
|
-
upstash: "upstash";
|
|
2893
|
-
d1: "d1";
|
|
2894
|
-
docker: "docker";
|
|
2895
|
-
}>>;
|
|
2896
|
-
backend: z.ZodOptional<z.ZodEnum<{
|
|
2897
|
-
none: "none";
|
|
2898
|
-
hono: "hono";
|
|
2899
|
-
express: "express";
|
|
2900
|
-
fastify: "fastify";
|
|
2901
|
-
elysia: "elysia";
|
|
2902
|
-
fets: "fets";
|
|
2903
|
-
effect: "effect";
|
|
2904
|
-
nestjs: "nestjs";
|
|
2905
|
-
adonisjs: "adonisjs";
|
|
2906
|
-
nitro: "nitro";
|
|
2907
|
-
encore: "encore";
|
|
2908
|
-
convex: "convex";
|
|
2909
|
-
self: "self";
|
|
2910
|
-
}>>;
|
|
2911
|
-
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2912
|
-
none: "none";
|
|
2913
|
-
bun: "bun";
|
|
2914
|
-
node: "node";
|
|
2915
|
-
workers: "workers";
|
|
2916
|
-
}>>;
|
|
2917
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
2918
|
-
none: "none";
|
|
2919
|
-
trpc: "trpc";
|
|
2920
|
-
orpc: "orpc";
|
|
2921
|
-
"ts-rest": "ts-rest";
|
|
2922
|
-
garph: "garph";
|
|
2923
|
-
"graphql-yoga": "graphql-yoga";
|
|
2924
|
-
"apollo-server": "apollo-server";
|
|
2925
|
-
openapi: "openapi";
|
|
2926
|
-
}>>;
|
|
2927
3150
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2928
3151
|
none: "none";
|
|
2929
3152
|
docker: "docker";
|
|
@@ -2953,47 +3176,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2953
3176
|
solid: "solid";
|
|
2954
3177
|
react: "react";
|
|
2955
3178
|
}>>;
|
|
2956
|
-
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2957
|
-
none: "none";
|
|
2958
|
-
zustand: "zustand";
|
|
2959
|
-
jotai: "jotai";
|
|
2960
|
-
nanostores: "nanostores";
|
|
2961
|
-
"redux-toolkit": "redux-toolkit";
|
|
2962
|
-
mobx: "mobx";
|
|
2963
|
-
xstate: "xstate";
|
|
2964
|
-
valtio: "valtio";
|
|
2965
|
-
"tanstack-store": "tanstack-store";
|
|
2966
|
-
"legend-state": "legend-state";
|
|
2967
|
-
}>>;
|
|
2968
|
-
forms: z.ZodOptional<z.ZodEnum<{
|
|
2969
|
-
none: "none";
|
|
2970
|
-
"tanstack-form": "tanstack-form";
|
|
2971
|
-
"react-hook-form": "react-hook-form";
|
|
2972
|
-
formik: "formik";
|
|
2973
|
-
"final-form": "final-form";
|
|
2974
|
-
conform: "conform";
|
|
2975
|
-
"modular-forms": "modular-forms";
|
|
2976
|
-
}>>;
|
|
2977
|
-
testing: z.ZodOptional<z.ZodEnum<{
|
|
2978
|
-
none: "none";
|
|
2979
|
-
vitest: "vitest";
|
|
2980
|
-
playwright: "playwright";
|
|
2981
|
-
"vitest-playwright": "vitest-playwright";
|
|
2982
|
-
jest: "jest";
|
|
2983
|
-
mocha: "mocha";
|
|
2984
|
-
cypress: "cypress";
|
|
2985
|
-
}>>;
|
|
2986
|
-
email: z.ZodOptional<z.ZodEnum<{
|
|
2987
|
-
none: "none";
|
|
2988
|
-
"react-email": "react-email";
|
|
2989
|
-
resend: "resend";
|
|
2990
|
-
nodemailer: "nodemailer";
|
|
2991
|
-
postmark: "postmark";
|
|
2992
|
-
sendgrid: "sendgrid";
|
|
2993
|
-
"aws-ses": "aws-ses";
|
|
2994
|
-
mailgun: "mailgun";
|
|
2995
|
-
plunk: "plunk";
|
|
2996
|
-
}>>;
|
|
2997
3179
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
2998
3180
|
none: "none";
|
|
2999
3181
|
tailwind: "tailwind";
|
|
@@ -3075,151 +3257,21 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3075
3257
|
geist: "geist";
|
|
3076
3258
|
"noto-sans": "noto-sans";
|
|
3077
3259
|
"nunito-sans": "nunito-sans";
|
|
3078
|
-
figtree: "figtree";
|
|
3079
|
-
roboto: "roboto";
|
|
3080
|
-
raleway: "raleway";
|
|
3081
|
-
"dm-sans": "dm-sans";
|
|
3082
|
-
"public-sans": "public-sans";
|
|
3083
|
-
outfit: "outfit";
|
|
3084
|
-
"jetbrains-mono": "jetbrains-mono";
|
|
3085
|
-
"geist-mono": "geist-mono";
|
|
3086
|
-
}>>;
|
|
3087
|
-
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3088
|
-
none: "none";
|
|
3089
|
-
default: "default";
|
|
3090
|
-
small: "small";
|
|
3091
|
-
medium: "medium";
|
|
3092
|
-
large: "large";
|
|
3093
|
-
}>>;
|
|
3094
|
-
validation: z.ZodOptional<z.ZodEnum<{
|
|
3095
|
-
none: "none";
|
|
3096
|
-
zod: "zod";
|
|
3097
|
-
valibot: "valibot";
|
|
3098
|
-
arktype: "arktype";
|
|
3099
|
-
typebox: "typebox";
|
|
3100
|
-
typia: "typia";
|
|
3101
|
-
runtypes: "runtypes";
|
|
3102
|
-
"effect-schema": "effect-schema";
|
|
3103
|
-
}>>;
|
|
3104
|
-
realtime: z.ZodOptional<z.ZodEnum<{
|
|
3105
|
-
none: "none";
|
|
3106
|
-
"socket-io": "socket-io";
|
|
3107
|
-
ws: "ws";
|
|
3108
|
-
partykit: "partykit";
|
|
3109
|
-
ably: "ably";
|
|
3110
|
-
pusher: "pusher";
|
|
3111
|
-
liveblocks: "liveblocks";
|
|
3112
|
-
yjs: "yjs";
|
|
3113
|
-
}>>;
|
|
3114
|
-
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
3115
|
-
none: "none";
|
|
3116
|
-
bullmq: "bullmq";
|
|
3117
|
-
"trigger-dev": "trigger-dev";
|
|
3118
|
-
inngest: "inngest";
|
|
3119
|
-
temporal: "temporal";
|
|
3120
|
-
}>>;
|
|
3121
|
-
animation: z.ZodOptional<z.ZodEnum<{
|
|
3122
|
-
none: "none";
|
|
3123
|
-
"framer-motion": "framer-motion";
|
|
3124
|
-
gsap: "gsap";
|
|
3125
|
-
"react-spring": "react-spring";
|
|
3126
|
-
"auto-animate": "auto-animate";
|
|
3127
|
-
lottie: "lottie";
|
|
3128
|
-
}>>;
|
|
3129
|
-
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
3130
|
-
none: "none";
|
|
3131
|
-
uploadthing: "uploadthing";
|
|
3132
|
-
filepond: "filepond";
|
|
3133
|
-
uppy: "uppy";
|
|
3134
|
-
}>>;
|
|
3135
|
-
logging: z.ZodOptional<z.ZodEnum<{
|
|
3136
|
-
none: "none";
|
|
3137
|
-
pino: "pino";
|
|
3138
|
-
winston: "winston";
|
|
3139
|
-
evlog: "evlog";
|
|
3140
|
-
}>>;
|
|
3141
|
-
observability: z.ZodOptional<z.ZodEnum<{
|
|
3142
|
-
none: "none";
|
|
3143
|
-
opentelemetry: "opentelemetry";
|
|
3144
|
-
signoz: "signoz";
|
|
3145
|
-
sentry: "sentry";
|
|
3146
|
-
grafana: "grafana";
|
|
3147
|
-
datadog: "datadog";
|
|
3148
|
-
axiom: "axiom";
|
|
3149
|
-
betterstack: "betterstack";
|
|
3150
|
-
}>>;
|
|
3151
|
-
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3152
|
-
none: "none";
|
|
3153
|
-
growthbook: "growthbook";
|
|
3154
|
-
posthog: "posthog";
|
|
3155
|
-
launchdarkly: "launchdarkly";
|
|
3156
|
-
flagsmith: "flagsmith";
|
|
3157
|
-
unleash: "unleash";
|
|
3158
|
-
}>>;
|
|
3159
|
-
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3160
|
-
none: "none";
|
|
3161
|
-
nango: "nango";
|
|
3162
|
-
}>>;
|
|
3163
|
-
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3164
|
-
none: "none";
|
|
3165
|
-
medusa: "medusa";
|
|
3166
|
-
}>>;
|
|
3167
|
-
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3168
|
-
none: "none";
|
|
3169
|
-
posthog: "posthog";
|
|
3170
|
-
plausible: "plausible";
|
|
3171
|
-
umami: "umami";
|
|
3172
|
-
ga4: "ga4";
|
|
3173
|
-
}>>;
|
|
3174
|
-
cms: z.ZodOptional<z.ZodEnum<{
|
|
3175
|
-
none: "none";
|
|
3176
|
-
payload: "payload";
|
|
3177
|
-
sanity: "sanity";
|
|
3178
|
-
strapi: "strapi";
|
|
3179
|
-
tinacms: "tinacms";
|
|
3180
|
-
directus: "directus";
|
|
3181
|
-
keystatic: "keystatic";
|
|
3182
|
-
contentful: "contentful";
|
|
3183
|
-
}>>;
|
|
3184
|
-
caching: z.ZodOptional<z.ZodEnum<{
|
|
3185
|
-
none: "none";
|
|
3186
|
-
redis: "redis";
|
|
3187
|
-
"upstash-redis": "upstash-redis";
|
|
3188
|
-
}>>;
|
|
3189
|
-
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
3190
|
-
none: "none";
|
|
3191
|
-
arcjet: "arcjet";
|
|
3192
|
-
"upstash-ratelimit": "upstash-ratelimit";
|
|
3193
|
-
}>>;
|
|
3194
|
-
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3195
|
-
none: "none";
|
|
3196
|
-
paraglide: "paraglide";
|
|
3197
|
-
i18next: "i18next";
|
|
3198
|
-
"next-intl": "next-intl";
|
|
3199
|
-
intlayer: "intlayer";
|
|
3200
|
-
}>>;
|
|
3201
|
-
search: z.ZodOptional<z.ZodEnum<{
|
|
3202
|
-
none: "none";
|
|
3203
|
-
meilisearch: "meilisearch";
|
|
3204
|
-
typesense: "typesense";
|
|
3205
|
-
elasticsearch: "elasticsearch";
|
|
3206
|
-
opensearch: "opensearch";
|
|
3207
|
-
algolia: "algolia";
|
|
3208
|
-
bleve: "bleve";
|
|
3209
|
-
}>>;
|
|
3210
|
-
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
3211
|
-
none: "none";
|
|
3212
|
-
pgvector: "pgvector";
|
|
3213
|
-
qdrant: "qdrant";
|
|
3214
|
-
chroma: "chroma";
|
|
3215
|
-
pinecone: "pinecone";
|
|
3260
|
+
figtree: "figtree";
|
|
3261
|
+
roboto: "roboto";
|
|
3262
|
+
raleway: "raleway";
|
|
3263
|
+
"dm-sans": "dm-sans";
|
|
3264
|
+
"public-sans": "public-sans";
|
|
3265
|
+
outfit: "outfit";
|
|
3266
|
+
"jetbrains-mono": "jetbrains-mono";
|
|
3267
|
+
"geist-mono": "geist-mono";
|
|
3216
3268
|
}>>;
|
|
3217
|
-
|
|
3269
|
+
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3270
|
+
default: "default";
|
|
3218
3271
|
none: "none";
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
"supabase-storage": "supabase-storage";
|
|
3272
|
+
small: "small";
|
|
3273
|
+
medium: "medium";
|
|
3274
|
+
large: "large";
|
|
3223
3275
|
}>>;
|
|
3224
3276
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
3225
3277
|
none: "none";
|
|
@@ -3228,9 +3280,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3228
3280
|
}>>;
|
|
3229
3281
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
3230
3282
|
none: "none";
|
|
3231
|
-
uniwind: "uniwind";
|
|
3232
3283
|
tamagui: "tamagui";
|
|
3233
3284
|
"gluestack-ui": "gluestack-ui";
|
|
3285
|
+
uniwind: "uniwind";
|
|
3234
3286
|
unistyles: "unistyles";
|
|
3235
3287
|
}>>;
|
|
3236
3288
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3346,12 +3398,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3346
3398
|
ratatui: "ratatui";
|
|
3347
3399
|
}>>;
|
|
3348
3400
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3401
|
+
config: "config";
|
|
3349
3402
|
none: "none";
|
|
3350
3403
|
serde: "serde";
|
|
3351
3404
|
uuid: "uuid";
|
|
3352
3405
|
chrono: "chrono";
|
|
3353
3406
|
reqwest: "reqwest";
|
|
3354
|
-
config: "config";
|
|
3355
3407
|
dashmap: "dashmap";
|
|
3356
3408
|
"parking-lot": "parking-lot";
|
|
3357
3409
|
secrecy: "secrecy";
|
|
@@ -3968,11 +4020,17 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3968
4020
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3969
4021
|
template: z.ZodOptional<z.ZodEnum<{
|
|
3970
4022
|
none: "none";
|
|
4023
|
+
uniwind: "uniwind";
|
|
3971
4024
|
mern: "mern";
|
|
3972
4025
|
pern: "pern";
|
|
3973
4026
|
t3: "t3";
|
|
3974
4027
|
saas: "saas";
|
|
3975
|
-
|
|
4028
|
+
}>>;
|
|
4029
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
4030
|
+
frontend: "frontend";
|
|
4031
|
+
backend: "backend";
|
|
4032
|
+
mobile: "mobile";
|
|
4033
|
+
fullstack: "fullstack";
|
|
3976
4034
|
}>>;
|
|
3977
4035
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
3978
4036
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4074,6 +4132,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4074
4132
|
skills: "skills";
|
|
4075
4133
|
turborepo: "turborepo";
|
|
4076
4134
|
nx: "nx";
|
|
4135
|
+
"vite-plus": "vite-plus";
|
|
4077
4136
|
fumadocs: "fumadocs";
|
|
4078
4137
|
ultracite: "ultracite";
|
|
4079
4138
|
oxlint: "oxlint";
|
|
@@ -4103,8 +4162,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4103
4162
|
capacitor: "capacitor";
|
|
4104
4163
|
}>>>;
|
|
4105
4164
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4106
|
-
none: "none";
|
|
4107
4165
|
ai: "ai";
|
|
4166
|
+
none: "none";
|
|
4108
4167
|
"chat-sdk": "chat-sdk";
|
|
4109
4168
|
"tanstack-showcase": "tanstack-showcase";
|
|
4110
4169
|
}>>>;
|
|
@@ -4138,13 +4197,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4138
4197
|
docker: "docker";
|
|
4139
4198
|
}>>;
|
|
4140
4199
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
4200
|
+
effect: "effect";
|
|
4141
4201
|
none: "none";
|
|
4142
4202
|
hono: "hono";
|
|
4143
4203
|
express: "express";
|
|
4144
4204
|
fastify: "fastify";
|
|
4145
4205
|
elysia: "elysia";
|
|
4146
4206
|
fets: "fets";
|
|
4147
|
-
effect: "effect";
|
|
4148
4207
|
nestjs: "nestjs";
|
|
4149
4208
|
adonisjs: "adonisjs";
|
|
4150
4209
|
nitro: "nitro";
|
|
@@ -4191,10 +4250,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4191
4250
|
vercel: "vercel";
|
|
4192
4251
|
}>>;
|
|
4193
4252
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
4253
|
+
error: "error";
|
|
4194
4254
|
merge: "merge";
|
|
4195
4255
|
overwrite: "overwrite";
|
|
4196
4256
|
increment: "increment";
|
|
4197
|
-
error: "error";
|
|
4198
4257
|
}>>;
|
|
4199
4258
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
4200
4259
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4223,8 +4282,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4223
4282
|
"ai-cli": "ai-cli";
|
|
4224
4283
|
}>>;
|
|
4225
4284
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
4226
|
-
none: "none";
|
|
4227
4285
|
effect: "effect";
|
|
4286
|
+
none: "none";
|
|
4228
4287
|
"effect-full": "effect-full";
|
|
4229
4288
|
}>>;
|
|
4230
4289
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4359,8 +4418,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4359
4418
|
"geist-mono": "geist-mono";
|
|
4360
4419
|
}>>;
|
|
4361
4420
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4362
|
-
none: "none";
|
|
4363
4421
|
default: "default";
|
|
4422
|
+
none: "none";
|
|
4364
4423
|
small: "small";
|
|
4365
4424
|
medium: "medium";
|
|
4366
4425
|
large: "large";
|
|
@@ -4444,6 +4503,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4444
4503
|
plausible: "plausible";
|
|
4445
4504
|
umami: "umami";
|
|
4446
4505
|
ga4: "ga4";
|
|
4506
|
+
"vercel-analytics": "vercel-analytics";
|
|
4447
4507
|
}>>;
|
|
4448
4508
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
4449
4509
|
none: "none";
|
|
@@ -4465,6 +4525,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4465
4525
|
arcjet: "arcjet";
|
|
4466
4526
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
4467
4527
|
}>>;
|
|
4528
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
4529
|
+
none: "none";
|
|
4530
|
+
botid: "botid";
|
|
4531
|
+
turnstile: "turnstile";
|
|
4532
|
+
}>>;
|
|
4468
4533
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
4469
4534
|
none: "none";
|
|
4470
4535
|
paraglide: "paraglide";
|
|
@@ -4502,9 +4567,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4502
4567
|
}>>;
|
|
4503
4568
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
4504
4569
|
none: "none";
|
|
4505
|
-
uniwind: "uniwind";
|
|
4506
4570
|
tamagui: "tamagui";
|
|
4507
4571
|
"gluestack-ui": "gluestack-ui";
|
|
4572
|
+
uniwind: "uniwind";
|
|
4508
4573
|
unistyles: "unistyles";
|
|
4509
4574
|
}>>;
|
|
4510
4575
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4620,12 +4685,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4620
4685
|
ratatui: "ratatui";
|
|
4621
4686
|
}>>;
|
|
4622
4687
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4688
|
+
config: "config";
|
|
4623
4689
|
none: "none";
|
|
4624
4690
|
serde: "serde";
|
|
4625
4691
|
uuid: "uuid";
|
|
4626
4692
|
chrono: "chrono";
|
|
4627
4693
|
reqwest: "reqwest";
|
|
4628
|
-
config: "config";
|
|
4629
4694
|
dashmap: "dashmap";
|
|
4630
4695
|
"parking-lot": "parking-lot";
|
|
4631
4696
|
secrecy: "secrecy";
|
|
@@ -5271,13 +5336,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5271
5336
|
sequelize: "sequelize";
|
|
5272
5337
|
}>;
|
|
5273
5338
|
backend: z.ZodEnum<{
|
|
5339
|
+
effect: "effect";
|
|
5274
5340
|
none: "none";
|
|
5275
5341
|
hono: "hono";
|
|
5276
5342
|
express: "express";
|
|
5277
5343
|
fastify: "fastify";
|
|
5278
5344
|
elysia: "elysia";
|
|
5279
5345
|
fets: "fets";
|
|
5280
|
-
effect: "effect";
|
|
5281
5346
|
nestjs: "nestjs";
|
|
5282
5347
|
adonisjs: "adonisjs";
|
|
5283
5348
|
nitro: "nitro";
|
|
@@ -5329,6 +5394,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5329
5394
|
skills: "skills";
|
|
5330
5395
|
turborepo: "turborepo";
|
|
5331
5396
|
nx: "nx";
|
|
5397
|
+
"vite-plus": "vite-plus";
|
|
5332
5398
|
fumadocs: "fumadocs";
|
|
5333
5399
|
ultracite: "ultracite";
|
|
5334
5400
|
oxlint: "oxlint";
|
|
@@ -5358,8 +5424,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5358
5424
|
capacitor: "capacitor";
|
|
5359
5425
|
}>>;
|
|
5360
5426
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5361
|
-
none: "none";
|
|
5362
5427
|
ai: "ai";
|
|
5428
|
+
none: "none";
|
|
5363
5429
|
"chat-sdk": "chat-sdk";
|
|
5364
5430
|
"tanstack-showcase": "tanstack-showcase";
|
|
5365
5431
|
}>>;
|
|
@@ -5476,8 +5542,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5476
5542
|
"ai-cli": "ai-cli";
|
|
5477
5543
|
}>;
|
|
5478
5544
|
effect: z.ZodEnum<{
|
|
5479
|
-
none: "none";
|
|
5480
5545
|
effect: "effect";
|
|
5546
|
+
none: "none";
|
|
5481
5547
|
"effect-full": "effect-full";
|
|
5482
5548
|
}>;
|
|
5483
5549
|
stateManagement: z.ZodEnum<{
|
|
@@ -5612,8 +5678,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5612
5678
|
"geist-mono": "geist-mono";
|
|
5613
5679
|
}>>;
|
|
5614
5680
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5615
|
-
none: "none";
|
|
5616
5681
|
default: "default";
|
|
5682
|
+
none: "none";
|
|
5617
5683
|
small: "small";
|
|
5618
5684
|
medium: "medium";
|
|
5619
5685
|
large: "large";
|
|
@@ -5697,6 +5763,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5697
5763
|
plausible: "plausible";
|
|
5698
5764
|
umami: "umami";
|
|
5699
5765
|
ga4: "ga4";
|
|
5766
|
+
"vercel-analytics": "vercel-analytics";
|
|
5700
5767
|
}>;
|
|
5701
5768
|
cms: z.ZodEnum<{
|
|
5702
5769
|
none: "none";
|
|
@@ -5718,6 +5785,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5718
5785
|
arcjet: "arcjet";
|
|
5719
5786
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
5720
5787
|
}>;
|
|
5788
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
5789
|
+
none: "none";
|
|
5790
|
+
botid: "botid";
|
|
5791
|
+
turnstile: "turnstile";
|
|
5792
|
+
}>>;
|
|
5721
5793
|
i18n: z.ZodEnum<{
|
|
5722
5794
|
none: "none";
|
|
5723
5795
|
paraglide: "paraglide";
|
|
@@ -5755,9 +5827,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5755
5827
|
}>;
|
|
5756
5828
|
mobileUI: z.ZodEnum<{
|
|
5757
5829
|
none: "none";
|
|
5758
|
-
uniwind: "uniwind";
|
|
5759
5830
|
tamagui: "tamagui";
|
|
5760
5831
|
"gluestack-ui": "gluestack-ui";
|
|
5832
|
+
uniwind: "uniwind";
|
|
5761
5833
|
unistyles: "unistyles";
|
|
5762
5834
|
}>;
|
|
5763
5835
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5873,12 +5945,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5873
5945
|
ratatui: "ratatui";
|
|
5874
5946
|
}>;
|
|
5875
5947
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5948
|
+
config: "config";
|
|
5876
5949
|
none: "none";
|
|
5877
5950
|
serde: "serde";
|
|
5878
5951
|
uuid: "uuid";
|
|
5879
5952
|
chrono: "chrono";
|
|
5880
5953
|
reqwest: "reqwest";
|
|
5881
|
-
config: "config";
|
|
5882
5954
|
dashmap: "dashmap";
|
|
5883
5955
|
"parking-lot": "parking-lot";
|
|
5884
5956
|
secrecy: "secrecy";
|
|
@@ -6490,69 +6562,81 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6490
6562
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6491
6563
|
id: z.ZodString;
|
|
6492
6564
|
role: z.ZodEnum<{
|
|
6493
|
-
|
|
6494
|
-
|
|
6565
|
+
push: "push";
|
|
6566
|
+
frontend: "frontend";
|
|
6567
|
+
backend: "backend";
|
|
6568
|
+
mobile: "mobile";
|
|
6495
6569
|
database: "database";
|
|
6570
|
+
api: "api";
|
|
6571
|
+
graphql: "graphql";
|
|
6496
6572
|
orm: "orm";
|
|
6497
6573
|
auth: "auth";
|
|
6498
|
-
payments: "payments";
|
|
6499
|
-
frontend: "frontend";
|
|
6500
|
-
examples: "examples";
|
|
6501
|
-
packageManager: "packageManager";
|
|
6502
|
-
dbSetup: "dbSetup";
|
|
6503
|
-
backend: "backend";
|
|
6504
6574
|
runtime: "runtime";
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
testing: "testing";
|
|
6509
|
-
email: "email";
|
|
6510
|
-
validation: "validation";
|
|
6575
|
+
deploy: "deploy";
|
|
6576
|
+
dbSetup: "dbSetup";
|
|
6577
|
+
migrations: "migrations";
|
|
6511
6578
|
realtime: "realtime";
|
|
6579
|
+
navigation: "navigation";
|
|
6580
|
+
caching: "caching";
|
|
6581
|
+
observability: "observability";
|
|
6582
|
+
email: "email";
|
|
6583
|
+
search: "search";
|
|
6584
|
+
vectorDb: "vectorDb";
|
|
6585
|
+
fileStorage: "fileStorage";
|
|
6512
6586
|
jobQueue: "jobQueue";
|
|
6587
|
+
rateLimit: "rateLimit";
|
|
6588
|
+
botProtection: "botProtection";
|
|
6589
|
+
testing: "testing";
|
|
6590
|
+
stateManagement: "stateManagement";
|
|
6591
|
+
forms: "forms";
|
|
6513
6592
|
animation: "animation";
|
|
6514
6593
|
fileUpload: "fileUpload";
|
|
6594
|
+
validation: "validation";
|
|
6595
|
+
effect: "effect";
|
|
6596
|
+
ui: "ui";
|
|
6597
|
+
css: "css";
|
|
6598
|
+
storage: "storage";
|
|
6599
|
+
ota: "ota";
|
|
6600
|
+
deepLinking: "deepLinking";
|
|
6601
|
+
ai: "ai";
|
|
6602
|
+
payments: "payments";
|
|
6515
6603
|
logging: "logging";
|
|
6516
|
-
observability: "observability";
|
|
6517
6604
|
featureFlags: "featureFlags";
|
|
6518
6605
|
integrations: "integrations";
|
|
6519
6606
|
ecommerce: "ecommerce";
|
|
6520
6607
|
analytics: "analytics";
|
|
6521
6608
|
cms: "cms";
|
|
6522
|
-
caching: "caching";
|
|
6523
|
-
rateLimit: "rateLimit";
|
|
6524
6609
|
i18n: "i18n";
|
|
6525
|
-
search: "search";
|
|
6526
|
-
vectorDb: "vectorDb";
|
|
6527
|
-
fileStorage: "fileStorage";
|
|
6528
|
-
config: "config";
|
|
6529
|
-
mobile: "mobile";
|
|
6530
|
-
graphql: "graphql";
|
|
6531
|
-
deploy: "deploy";
|
|
6532
|
-
migrations: "migrations";
|
|
6533
|
-
navigation: "navigation";
|
|
6534
|
-
ui: "ui";
|
|
6535
|
-
css: "css";
|
|
6536
|
-
storage: "storage";
|
|
6537
|
-
push: "push";
|
|
6538
|
-
ota: "ota";
|
|
6539
|
-
deepLinking: "deepLinking";
|
|
6540
6610
|
documentation: "documentation";
|
|
6541
6611
|
codeQuality: "codeQuality";
|
|
6542
6612
|
appPlatform: "appPlatform";
|
|
6543
6613
|
dataFetching: "dataFetching";
|
|
6544
6614
|
workspaceTooling: "workspaceTooling";
|
|
6615
|
+
toolchain: "toolchain";
|
|
6616
|
+
workspaceRunner: "workspaceRunner";
|
|
6617
|
+
gitHooks: "gitHooks";
|
|
6618
|
+
staticAnalysis: "staticAnalysis";
|
|
6619
|
+
aiTooling: "aiTooling";
|
|
6620
|
+
codeGeneration: "codeGeneration";
|
|
6621
|
+
developerEnvironment: "developerEnvironment";
|
|
6622
|
+
containerOrchestration: "containerOrchestration";
|
|
6623
|
+
apiGateway: "apiGateway";
|
|
6624
|
+
continuousIntegration: "continuousIntegration";
|
|
6625
|
+
backendUtilities: "backendUtilities";
|
|
6626
|
+
examples: "examples";
|
|
6545
6627
|
language: "language";
|
|
6546
6628
|
buildTool: "buildTool";
|
|
6547
6629
|
cli: "cli";
|
|
6548
6630
|
errorHandling: "errorHandling";
|
|
6549
6631
|
httpClient: "httpClient";
|
|
6550
6632
|
libraries: "libraries";
|
|
6633
|
+
config: "config";
|
|
6551
6634
|
templating: "templating";
|
|
6552
6635
|
cloudSdk: "cloudSdk";
|
|
6553
6636
|
data: "data";
|
|
6554
6637
|
media: "media";
|
|
6555
6638
|
server: "server";
|
|
6639
|
+
packageManager: "packageManager";
|
|
6556
6640
|
messageQueue: "messageQueue";
|
|
6557
6641
|
}>;
|
|
6558
6642
|
toolId: z.ZodString;
|
|
@@ -6614,13 +6698,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6614
6698
|
sequelize: "sequelize";
|
|
6615
6699
|
}>;
|
|
6616
6700
|
backend: z.ZodEnum<{
|
|
6701
|
+
effect: "effect";
|
|
6617
6702
|
none: "none";
|
|
6618
6703
|
hono: "hono";
|
|
6619
6704
|
express: "express";
|
|
6620
6705
|
fastify: "fastify";
|
|
6621
6706
|
elysia: "elysia";
|
|
6622
6707
|
fets: "fets";
|
|
6623
|
-
effect: "effect";
|
|
6624
6708
|
nestjs: "nestjs";
|
|
6625
6709
|
adonisjs: "adonisjs";
|
|
6626
6710
|
nitro: "nitro";
|
|
@@ -6672,6 +6756,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6672
6756
|
skills: "skills";
|
|
6673
6757
|
turborepo: "turborepo";
|
|
6674
6758
|
nx: "nx";
|
|
6759
|
+
"vite-plus": "vite-plus";
|
|
6675
6760
|
fumadocs: "fumadocs";
|
|
6676
6761
|
ultracite: "ultracite";
|
|
6677
6762
|
oxlint: "oxlint";
|
|
@@ -6701,8 +6786,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6701
6786
|
capacitor: "capacitor";
|
|
6702
6787
|
}>>;
|
|
6703
6788
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6704
|
-
none: "none";
|
|
6705
6789
|
ai: "ai";
|
|
6790
|
+
none: "none";
|
|
6706
6791
|
"chat-sdk": "chat-sdk";
|
|
6707
6792
|
"tanstack-showcase": "tanstack-showcase";
|
|
6708
6793
|
}>>;
|
|
@@ -6817,8 +6902,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6817
6902
|
"ai-cli": "ai-cli";
|
|
6818
6903
|
}>;
|
|
6819
6904
|
effect: z.ZodEnum<{
|
|
6820
|
-
none: "none";
|
|
6821
6905
|
effect: "effect";
|
|
6906
|
+
none: "none";
|
|
6822
6907
|
"effect-full": "effect-full";
|
|
6823
6908
|
}>;
|
|
6824
6909
|
stateManagement: z.ZodEnum<{
|
|
@@ -6953,8 +7038,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6953
7038
|
"geist-mono": "geist-mono";
|
|
6954
7039
|
}>>;
|
|
6955
7040
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6956
|
-
none: "none";
|
|
6957
7041
|
default: "default";
|
|
7042
|
+
none: "none";
|
|
6958
7043
|
small: "small";
|
|
6959
7044
|
medium: "medium";
|
|
6960
7045
|
large: "large";
|
|
@@ -7038,6 +7123,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7038
7123
|
plausible: "plausible";
|
|
7039
7124
|
umami: "umami";
|
|
7040
7125
|
ga4: "ga4";
|
|
7126
|
+
"vercel-analytics": "vercel-analytics";
|
|
7041
7127
|
}>;
|
|
7042
7128
|
cms: z.ZodEnum<{
|
|
7043
7129
|
none: "none";
|
|
@@ -7059,6 +7145,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7059
7145
|
arcjet: "arcjet";
|
|
7060
7146
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
7061
7147
|
}>;
|
|
7148
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
7149
|
+
none: "none";
|
|
7150
|
+
botid: "botid";
|
|
7151
|
+
turnstile: "turnstile";
|
|
7152
|
+
}>>;
|
|
7062
7153
|
i18n: z.ZodEnum<{
|
|
7063
7154
|
none: "none";
|
|
7064
7155
|
paraglide: "paraglide";
|
|
@@ -7096,9 +7187,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7096
7187
|
}>;
|
|
7097
7188
|
mobileUI: z.ZodEnum<{
|
|
7098
7189
|
none: "none";
|
|
7099
|
-
uniwind: "uniwind";
|
|
7100
7190
|
tamagui: "tamagui";
|
|
7101
7191
|
"gluestack-ui": "gluestack-ui";
|
|
7192
|
+
uniwind: "uniwind";
|
|
7102
7193
|
unistyles: "unistyles";
|
|
7103
7194
|
}>;
|
|
7104
7195
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7214,12 +7305,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7214
7305
|
ratatui: "ratatui";
|
|
7215
7306
|
}>;
|
|
7216
7307
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7308
|
+
config: "config";
|
|
7217
7309
|
none: "none";
|
|
7218
7310
|
serde: "serde";
|
|
7219
7311
|
uuid: "uuid";
|
|
7220
7312
|
chrono: "chrono";
|
|
7221
7313
|
reqwest: "reqwest";
|
|
7222
|
-
config: "config";
|
|
7223
7314
|
dashmap: "dashmap";
|
|
7224
7315
|
"parking-lot": "parking-lot";
|
|
7225
7316
|
secrecy: "secrecy";
|
|
@@ -7831,69 +7922,81 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7831
7922
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7832
7923
|
id: z.ZodString;
|
|
7833
7924
|
role: z.ZodEnum<{
|
|
7834
|
-
|
|
7835
|
-
|
|
7925
|
+
push: "push";
|
|
7926
|
+
frontend: "frontend";
|
|
7927
|
+
backend: "backend";
|
|
7928
|
+
mobile: "mobile";
|
|
7836
7929
|
database: "database";
|
|
7930
|
+
api: "api";
|
|
7931
|
+
graphql: "graphql";
|
|
7837
7932
|
orm: "orm";
|
|
7838
7933
|
auth: "auth";
|
|
7839
|
-
payments: "payments";
|
|
7840
|
-
frontend: "frontend";
|
|
7841
|
-
examples: "examples";
|
|
7842
|
-
packageManager: "packageManager";
|
|
7843
|
-
dbSetup: "dbSetup";
|
|
7844
|
-
backend: "backend";
|
|
7845
7934
|
runtime: "runtime";
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
testing: "testing";
|
|
7850
|
-
email: "email";
|
|
7851
|
-
validation: "validation";
|
|
7935
|
+
deploy: "deploy";
|
|
7936
|
+
dbSetup: "dbSetup";
|
|
7937
|
+
migrations: "migrations";
|
|
7852
7938
|
realtime: "realtime";
|
|
7939
|
+
navigation: "navigation";
|
|
7940
|
+
caching: "caching";
|
|
7941
|
+
observability: "observability";
|
|
7942
|
+
email: "email";
|
|
7943
|
+
search: "search";
|
|
7944
|
+
vectorDb: "vectorDb";
|
|
7945
|
+
fileStorage: "fileStorage";
|
|
7853
7946
|
jobQueue: "jobQueue";
|
|
7947
|
+
rateLimit: "rateLimit";
|
|
7948
|
+
botProtection: "botProtection";
|
|
7949
|
+
testing: "testing";
|
|
7950
|
+
stateManagement: "stateManagement";
|
|
7951
|
+
forms: "forms";
|
|
7854
7952
|
animation: "animation";
|
|
7855
7953
|
fileUpload: "fileUpload";
|
|
7954
|
+
validation: "validation";
|
|
7955
|
+
effect: "effect";
|
|
7956
|
+
ui: "ui";
|
|
7957
|
+
css: "css";
|
|
7958
|
+
storage: "storage";
|
|
7959
|
+
ota: "ota";
|
|
7960
|
+
deepLinking: "deepLinking";
|
|
7961
|
+
ai: "ai";
|
|
7962
|
+
payments: "payments";
|
|
7856
7963
|
logging: "logging";
|
|
7857
|
-
observability: "observability";
|
|
7858
7964
|
featureFlags: "featureFlags";
|
|
7859
7965
|
integrations: "integrations";
|
|
7860
7966
|
ecommerce: "ecommerce";
|
|
7861
7967
|
analytics: "analytics";
|
|
7862
7968
|
cms: "cms";
|
|
7863
|
-
caching: "caching";
|
|
7864
|
-
rateLimit: "rateLimit";
|
|
7865
7969
|
i18n: "i18n";
|
|
7866
|
-
search: "search";
|
|
7867
|
-
vectorDb: "vectorDb";
|
|
7868
|
-
fileStorage: "fileStorage";
|
|
7869
|
-
config: "config";
|
|
7870
|
-
mobile: "mobile";
|
|
7871
|
-
graphql: "graphql";
|
|
7872
|
-
deploy: "deploy";
|
|
7873
|
-
migrations: "migrations";
|
|
7874
|
-
navigation: "navigation";
|
|
7875
|
-
ui: "ui";
|
|
7876
|
-
css: "css";
|
|
7877
|
-
storage: "storage";
|
|
7878
|
-
push: "push";
|
|
7879
|
-
ota: "ota";
|
|
7880
|
-
deepLinking: "deepLinking";
|
|
7881
7970
|
documentation: "documentation";
|
|
7882
7971
|
codeQuality: "codeQuality";
|
|
7883
7972
|
appPlatform: "appPlatform";
|
|
7884
7973
|
dataFetching: "dataFetching";
|
|
7885
7974
|
workspaceTooling: "workspaceTooling";
|
|
7975
|
+
toolchain: "toolchain";
|
|
7976
|
+
workspaceRunner: "workspaceRunner";
|
|
7977
|
+
gitHooks: "gitHooks";
|
|
7978
|
+
staticAnalysis: "staticAnalysis";
|
|
7979
|
+
aiTooling: "aiTooling";
|
|
7980
|
+
codeGeneration: "codeGeneration";
|
|
7981
|
+
developerEnvironment: "developerEnvironment";
|
|
7982
|
+
containerOrchestration: "containerOrchestration";
|
|
7983
|
+
apiGateway: "apiGateway";
|
|
7984
|
+
continuousIntegration: "continuousIntegration";
|
|
7985
|
+
backendUtilities: "backendUtilities";
|
|
7986
|
+
examples: "examples";
|
|
7886
7987
|
language: "language";
|
|
7887
7988
|
buildTool: "buildTool";
|
|
7888
7989
|
cli: "cli";
|
|
7889
7990
|
errorHandling: "errorHandling";
|
|
7890
7991
|
httpClient: "httpClient";
|
|
7891
7992
|
libraries: "libraries";
|
|
7993
|
+
config: "config";
|
|
7892
7994
|
templating: "templating";
|
|
7893
7995
|
cloudSdk: "cloudSdk";
|
|
7894
7996
|
data: "data";
|
|
7895
7997
|
media: "media";
|
|
7896
7998
|
server: "server";
|
|
7999
|
+
packageManager: "packageManager";
|
|
7897
8000
|
messageQueue: "messageQueue";
|
|
7898
8001
|
}>;
|
|
7899
8002
|
toolId: z.ZodString;
|
|
@@ -7955,13 +8058,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7955
8058
|
sequelize: "sequelize";
|
|
7956
8059
|
}>;
|
|
7957
8060
|
backend: z.ZodEnum<{
|
|
8061
|
+
effect: "effect";
|
|
7958
8062
|
none: "none";
|
|
7959
8063
|
hono: "hono";
|
|
7960
8064
|
express: "express";
|
|
7961
8065
|
fastify: "fastify";
|
|
7962
8066
|
elysia: "elysia";
|
|
7963
8067
|
fets: "fets";
|
|
7964
|
-
effect: "effect";
|
|
7965
8068
|
nestjs: "nestjs";
|
|
7966
8069
|
adonisjs: "adonisjs";
|
|
7967
8070
|
nitro: "nitro";
|
|
@@ -8013,6 +8116,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8013
8116
|
skills: "skills";
|
|
8014
8117
|
turborepo: "turborepo";
|
|
8015
8118
|
nx: "nx";
|
|
8119
|
+
"vite-plus": "vite-plus";
|
|
8016
8120
|
fumadocs: "fumadocs";
|
|
8017
8121
|
ultracite: "ultracite";
|
|
8018
8122
|
oxlint: "oxlint";
|
|
@@ -8042,8 +8146,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8042
8146
|
capacitor: "capacitor";
|
|
8043
8147
|
}>>;
|
|
8044
8148
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8045
|
-
none: "none";
|
|
8046
8149
|
ai: "ai";
|
|
8150
|
+
none: "none";
|
|
8047
8151
|
"chat-sdk": "chat-sdk";
|
|
8048
8152
|
"tanstack-showcase": "tanstack-showcase";
|
|
8049
8153
|
}>>;
|
|
@@ -8158,8 +8262,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8158
8262
|
"ai-cli": "ai-cli";
|
|
8159
8263
|
}>;
|
|
8160
8264
|
effect: z.ZodEnum<{
|
|
8161
|
-
none: "none";
|
|
8162
8265
|
effect: "effect";
|
|
8266
|
+
none: "none";
|
|
8163
8267
|
"effect-full": "effect-full";
|
|
8164
8268
|
}>;
|
|
8165
8269
|
stateManagement: z.ZodEnum<{
|
|
@@ -8294,8 +8398,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8294
8398
|
"geist-mono": "geist-mono";
|
|
8295
8399
|
}>>;
|
|
8296
8400
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8297
|
-
none: "none";
|
|
8298
8401
|
default: "default";
|
|
8402
|
+
none: "none";
|
|
8299
8403
|
small: "small";
|
|
8300
8404
|
medium: "medium";
|
|
8301
8405
|
large: "large";
|
|
@@ -8379,6 +8483,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8379
8483
|
plausible: "plausible";
|
|
8380
8484
|
umami: "umami";
|
|
8381
8485
|
ga4: "ga4";
|
|
8486
|
+
"vercel-analytics": "vercel-analytics";
|
|
8382
8487
|
}>;
|
|
8383
8488
|
cms: z.ZodEnum<{
|
|
8384
8489
|
none: "none";
|
|
@@ -8400,6 +8505,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8400
8505
|
arcjet: "arcjet";
|
|
8401
8506
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
8402
8507
|
}>;
|
|
8508
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
8509
|
+
none: "none";
|
|
8510
|
+
botid: "botid";
|
|
8511
|
+
turnstile: "turnstile";
|
|
8512
|
+
}>>;
|
|
8403
8513
|
i18n: z.ZodEnum<{
|
|
8404
8514
|
none: "none";
|
|
8405
8515
|
paraglide: "paraglide";
|
|
@@ -8437,9 +8547,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8437
8547
|
}>;
|
|
8438
8548
|
mobileUI: z.ZodEnum<{
|
|
8439
8549
|
none: "none";
|
|
8440
|
-
uniwind: "uniwind";
|
|
8441
8550
|
tamagui: "tamagui";
|
|
8442
8551
|
"gluestack-ui": "gluestack-ui";
|
|
8552
|
+
uniwind: "uniwind";
|
|
8443
8553
|
unistyles: "unistyles";
|
|
8444
8554
|
}>;
|
|
8445
8555
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8555,12 +8665,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8555
8665
|
ratatui: "ratatui";
|
|
8556
8666
|
}>;
|
|
8557
8667
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8668
|
+
config: "config";
|
|
8558
8669
|
none: "none";
|
|
8559
8670
|
serde: "serde";
|
|
8560
8671
|
uuid: "uuid";
|
|
8561
8672
|
chrono: "chrono";
|
|
8562
8673
|
reqwest: "reqwest";
|
|
8563
|
-
config: "config";
|
|
8564
8674
|
dashmap: "dashmap";
|
|
8565
8675
|
"parking-lot": "parking-lot";
|
|
8566
8676
|
secrecy: "secrecy";
|
|
@@ -9172,69 +9282,81 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9172
9282
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9173
9283
|
id: z.ZodString;
|
|
9174
9284
|
role: z.ZodEnum<{
|
|
9175
|
-
|
|
9176
|
-
|
|
9285
|
+
push: "push";
|
|
9286
|
+
frontend: "frontend";
|
|
9287
|
+
backend: "backend";
|
|
9288
|
+
mobile: "mobile";
|
|
9177
9289
|
database: "database";
|
|
9290
|
+
api: "api";
|
|
9291
|
+
graphql: "graphql";
|
|
9178
9292
|
orm: "orm";
|
|
9179
9293
|
auth: "auth";
|
|
9180
|
-
payments: "payments";
|
|
9181
|
-
frontend: "frontend";
|
|
9182
|
-
examples: "examples";
|
|
9183
|
-
packageManager: "packageManager";
|
|
9184
|
-
dbSetup: "dbSetup";
|
|
9185
|
-
backend: "backend";
|
|
9186
9294
|
runtime: "runtime";
|
|
9187
|
-
|
|
9188
|
-
|
|
9189
|
-
|
|
9190
|
-
testing: "testing";
|
|
9191
|
-
email: "email";
|
|
9192
|
-
validation: "validation";
|
|
9295
|
+
deploy: "deploy";
|
|
9296
|
+
dbSetup: "dbSetup";
|
|
9297
|
+
migrations: "migrations";
|
|
9193
9298
|
realtime: "realtime";
|
|
9299
|
+
navigation: "navigation";
|
|
9300
|
+
caching: "caching";
|
|
9301
|
+
observability: "observability";
|
|
9302
|
+
email: "email";
|
|
9303
|
+
search: "search";
|
|
9304
|
+
vectorDb: "vectorDb";
|
|
9305
|
+
fileStorage: "fileStorage";
|
|
9194
9306
|
jobQueue: "jobQueue";
|
|
9307
|
+
rateLimit: "rateLimit";
|
|
9308
|
+
botProtection: "botProtection";
|
|
9309
|
+
testing: "testing";
|
|
9310
|
+
stateManagement: "stateManagement";
|
|
9311
|
+
forms: "forms";
|
|
9195
9312
|
animation: "animation";
|
|
9196
9313
|
fileUpload: "fileUpload";
|
|
9314
|
+
validation: "validation";
|
|
9315
|
+
effect: "effect";
|
|
9316
|
+
ui: "ui";
|
|
9317
|
+
css: "css";
|
|
9318
|
+
storage: "storage";
|
|
9319
|
+
ota: "ota";
|
|
9320
|
+
deepLinking: "deepLinking";
|
|
9321
|
+
ai: "ai";
|
|
9322
|
+
payments: "payments";
|
|
9197
9323
|
logging: "logging";
|
|
9198
|
-
observability: "observability";
|
|
9199
9324
|
featureFlags: "featureFlags";
|
|
9200
9325
|
integrations: "integrations";
|
|
9201
9326
|
ecommerce: "ecommerce";
|
|
9202
9327
|
analytics: "analytics";
|
|
9203
9328
|
cms: "cms";
|
|
9204
|
-
caching: "caching";
|
|
9205
|
-
rateLimit: "rateLimit";
|
|
9206
9329
|
i18n: "i18n";
|
|
9207
|
-
search: "search";
|
|
9208
|
-
vectorDb: "vectorDb";
|
|
9209
|
-
fileStorage: "fileStorage";
|
|
9210
|
-
config: "config";
|
|
9211
|
-
mobile: "mobile";
|
|
9212
|
-
graphql: "graphql";
|
|
9213
|
-
deploy: "deploy";
|
|
9214
|
-
migrations: "migrations";
|
|
9215
|
-
navigation: "navigation";
|
|
9216
|
-
ui: "ui";
|
|
9217
|
-
css: "css";
|
|
9218
|
-
storage: "storage";
|
|
9219
|
-
push: "push";
|
|
9220
|
-
ota: "ota";
|
|
9221
|
-
deepLinking: "deepLinking";
|
|
9222
9330
|
documentation: "documentation";
|
|
9223
9331
|
codeQuality: "codeQuality";
|
|
9224
9332
|
appPlatform: "appPlatform";
|
|
9225
9333
|
dataFetching: "dataFetching";
|
|
9226
9334
|
workspaceTooling: "workspaceTooling";
|
|
9335
|
+
toolchain: "toolchain";
|
|
9336
|
+
workspaceRunner: "workspaceRunner";
|
|
9337
|
+
gitHooks: "gitHooks";
|
|
9338
|
+
staticAnalysis: "staticAnalysis";
|
|
9339
|
+
aiTooling: "aiTooling";
|
|
9340
|
+
codeGeneration: "codeGeneration";
|
|
9341
|
+
developerEnvironment: "developerEnvironment";
|
|
9342
|
+
containerOrchestration: "containerOrchestration";
|
|
9343
|
+
apiGateway: "apiGateway";
|
|
9344
|
+
continuousIntegration: "continuousIntegration";
|
|
9345
|
+
backendUtilities: "backendUtilities";
|
|
9346
|
+
examples: "examples";
|
|
9227
9347
|
language: "language";
|
|
9228
9348
|
buildTool: "buildTool";
|
|
9229
9349
|
cli: "cli";
|
|
9230
9350
|
errorHandling: "errorHandling";
|
|
9231
9351
|
httpClient: "httpClient";
|
|
9232
9352
|
libraries: "libraries";
|
|
9353
|
+
config: "config";
|
|
9233
9354
|
templating: "templating";
|
|
9234
9355
|
cloudSdk: "cloudSdk";
|
|
9235
9356
|
data: "data";
|
|
9236
9357
|
media: "media";
|
|
9237
9358
|
server: "server";
|
|
9359
|
+
packageManager: "packageManager";
|
|
9238
9360
|
messageQueue: "messageQueue";
|
|
9239
9361
|
}>;
|
|
9240
9362
|
toolId: z.ZodString;
|
|
@@ -9297,13 +9419,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9297
9419
|
sequelize: "sequelize";
|
|
9298
9420
|
}>;
|
|
9299
9421
|
backend: z.ZodEnum<{
|
|
9422
|
+
effect: "effect";
|
|
9300
9423
|
none: "none";
|
|
9301
9424
|
hono: "hono";
|
|
9302
9425
|
express: "express";
|
|
9303
9426
|
fastify: "fastify";
|
|
9304
9427
|
elysia: "elysia";
|
|
9305
9428
|
fets: "fets";
|
|
9306
|
-
effect: "effect";
|
|
9307
9429
|
nestjs: "nestjs";
|
|
9308
9430
|
adonisjs: "adonisjs";
|
|
9309
9431
|
nitro: "nitro";
|
|
@@ -9355,6 +9477,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9355
9477
|
skills: "skills";
|
|
9356
9478
|
turborepo: "turborepo";
|
|
9357
9479
|
nx: "nx";
|
|
9480
|
+
"vite-plus": "vite-plus";
|
|
9358
9481
|
fumadocs: "fumadocs";
|
|
9359
9482
|
ultracite: "ultracite";
|
|
9360
9483
|
oxlint: "oxlint";
|
|
@@ -9384,8 +9507,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9384
9507
|
capacitor: "capacitor";
|
|
9385
9508
|
}>>;
|
|
9386
9509
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9387
|
-
none: "none";
|
|
9388
9510
|
ai: "ai";
|
|
9511
|
+
none: "none";
|
|
9389
9512
|
"chat-sdk": "chat-sdk";
|
|
9390
9513
|
"tanstack-showcase": "tanstack-showcase";
|
|
9391
9514
|
}>>;
|
|
@@ -9500,8 +9623,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9500
9623
|
"ai-cli": "ai-cli";
|
|
9501
9624
|
}>;
|
|
9502
9625
|
effect: z.ZodEnum<{
|
|
9503
|
-
none: "none";
|
|
9504
9626
|
effect: "effect";
|
|
9627
|
+
none: "none";
|
|
9505
9628
|
"effect-full": "effect-full";
|
|
9506
9629
|
}>;
|
|
9507
9630
|
stateManagement: z.ZodEnum<{
|
|
@@ -9636,8 +9759,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9636
9759
|
"geist-mono": "geist-mono";
|
|
9637
9760
|
}>>;
|
|
9638
9761
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9639
|
-
none: "none";
|
|
9640
9762
|
default: "default";
|
|
9763
|
+
none: "none";
|
|
9641
9764
|
small: "small";
|
|
9642
9765
|
medium: "medium";
|
|
9643
9766
|
large: "large";
|
|
@@ -9721,6 +9844,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9721
9844
|
plausible: "plausible";
|
|
9722
9845
|
umami: "umami";
|
|
9723
9846
|
ga4: "ga4";
|
|
9847
|
+
"vercel-analytics": "vercel-analytics";
|
|
9724
9848
|
}>;
|
|
9725
9849
|
cms: z.ZodEnum<{
|
|
9726
9850
|
none: "none";
|
|
@@ -9742,6 +9866,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9742
9866
|
arcjet: "arcjet";
|
|
9743
9867
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
9744
9868
|
}>;
|
|
9869
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
9870
|
+
none: "none";
|
|
9871
|
+
botid: "botid";
|
|
9872
|
+
turnstile: "turnstile";
|
|
9873
|
+
}>>;
|
|
9745
9874
|
i18n: z.ZodEnum<{
|
|
9746
9875
|
none: "none";
|
|
9747
9876
|
paraglide: "paraglide";
|
|
@@ -9779,9 +9908,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9779
9908
|
}>;
|
|
9780
9909
|
mobileUI: z.ZodEnum<{
|
|
9781
9910
|
none: "none";
|
|
9782
|
-
uniwind: "uniwind";
|
|
9783
9911
|
tamagui: "tamagui";
|
|
9784
9912
|
"gluestack-ui": "gluestack-ui";
|
|
9913
|
+
uniwind: "uniwind";
|
|
9785
9914
|
unistyles: "unistyles";
|
|
9786
9915
|
}>;
|
|
9787
9916
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9897,12 +10026,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9897
10026
|
ratatui: "ratatui";
|
|
9898
10027
|
}>;
|
|
9899
10028
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10029
|
+
config: "config";
|
|
9900
10030
|
none: "none";
|
|
9901
10031
|
serde: "serde";
|
|
9902
10032
|
uuid: "uuid";
|
|
9903
10033
|
chrono: "chrono";
|
|
9904
10034
|
reqwest: "reqwest";
|
|
9905
|
-
config: "config";
|
|
9906
10035
|
dashmap: "dashmap";
|
|
9907
10036
|
"parking-lot": "parking-lot";
|
|
9908
10037
|
secrecy: "secrecy";
|
|
@@ -10514,69 +10643,81 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10514
10643
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10515
10644
|
id: z.ZodString;
|
|
10516
10645
|
role: z.ZodEnum<{
|
|
10517
|
-
|
|
10518
|
-
|
|
10646
|
+
push: "push";
|
|
10647
|
+
frontend: "frontend";
|
|
10648
|
+
backend: "backend";
|
|
10649
|
+
mobile: "mobile";
|
|
10519
10650
|
database: "database";
|
|
10651
|
+
api: "api";
|
|
10652
|
+
graphql: "graphql";
|
|
10520
10653
|
orm: "orm";
|
|
10521
10654
|
auth: "auth";
|
|
10522
|
-
payments: "payments";
|
|
10523
|
-
frontend: "frontend";
|
|
10524
|
-
examples: "examples";
|
|
10525
|
-
packageManager: "packageManager";
|
|
10526
|
-
dbSetup: "dbSetup";
|
|
10527
|
-
backend: "backend";
|
|
10528
10655
|
runtime: "runtime";
|
|
10529
|
-
|
|
10530
|
-
|
|
10531
|
-
|
|
10532
|
-
testing: "testing";
|
|
10533
|
-
email: "email";
|
|
10534
|
-
validation: "validation";
|
|
10656
|
+
deploy: "deploy";
|
|
10657
|
+
dbSetup: "dbSetup";
|
|
10658
|
+
migrations: "migrations";
|
|
10535
10659
|
realtime: "realtime";
|
|
10660
|
+
navigation: "navigation";
|
|
10661
|
+
caching: "caching";
|
|
10662
|
+
observability: "observability";
|
|
10663
|
+
email: "email";
|
|
10664
|
+
search: "search";
|
|
10665
|
+
vectorDb: "vectorDb";
|
|
10666
|
+
fileStorage: "fileStorage";
|
|
10536
10667
|
jobQueue: "jobQueue";
|
|
10668
|
+
rateLimit: "rateLimit";
|
|
10669
|
+
botProtection: "botProtection";
|
|
10670
|
+
testing: "testing";
|
|
10671
|
+
stateManagement: "stateManagement";
|
|
10672
|
+
forms: "forms";
|
|
10537
10673
|
animation: "animation";
|
|
10538
10674
|
fileUpload: "fileUpload";
|
|
10675
|
+
validation: "validation";
|
|
10676
|
+
effect: "effect";
|
|
10677
|
+
ui: "ui";
|
|
10678
|
+
css: "css";
|
|
10679
|
+
storage: "storage";
|
|
10680
|
+
ota: "ota";
|
|
10681
|
+
deepLinking: "deepLinking";
|
|
10682
|
+
ai: "ai";
|
|
10683
|
+
payments: "payments";
|
|
10539
10684
|
logging: "logging";
|
|
10540
|
-
observability: "observability";
|
|
10541
10685
|
featureFlags: "featureFlags";
|
|
10542
10686
|
integrations: "integrations";
|
|
10543
10687
|
ecommerce: "ecommerce";
|
|
10544
10688
|
analytics: "analytics";
|
|
10545
10689
|
cms: "cms";
|
|
10546
|
-
caching: "caching";
|
|
10547
|
-
rateLimit: "rateLimit";
|
|
10548
10690
|
i18n: "i18n";
|
|
10549
|
-
search: "search";
|
|
10550
|
-
vectorDb: "vectorDb";
|
|
10551
|
-
fileStorage: "fileStorage";
|
|
10552
|
-
config: "config";
|
|
10553
|
-
mobile: "mobile";
|
|
10554
|
-
graphql: "graphql";
|
|
10555
|
-
deploy: "deploy";
|
|
10556
|
-
migrations: "migrations";
|
|
10557
|
-
navigation: "navigation";
|
|
10558
|
-
ui: "ui";
|
|
10559
|
-
css: "css";
|
|
10560
|
-
storage: "storage";
|
|
10561
|
-
push: "push";
|
|
10562
|
-
ota: "ota";
|
|
10563
|
-
deepLinking: "deepLinking";
|
|
10564
10691
|
documentation: "documentation";
|
|
10565
10692
|
codeQuality: "codeQuality";
|
|
10566
10693
|
appPlatform: "appPlatform";
|
|
10567
10694
|
dataFetching: "dataFetching";
|
|
10568
10695
|
workspaceTooling: "workspaceTooling";
|
|
10696
|
+
toolchain: "toolchain";
|
|
10697
|
+
workspaceRunner: "workspaceRunner";
|
|
10698
|
+
gitHooks: "gitHooks";
|
|
10699
|
+
staticAnalysis: "staticAnalysis";
|
|
10700
|
+
aiTooling: "aiTooling";
|
|
10701
|
+
codeGeneration: "codeGeneration";
|
|
10702
|
+
developerEnvironment: "developerEnvironment";
|
|
10703
|
+
containerOrchestration: "containerOrchestration";
|
|
10704
|
+
apiGateway: "apiGateway";
|
|
10705
|
+
continuousIntegration: "continuousIntegration";
|
|
10706
|
+
backendUtilities: "backendUtilities";
|
|
10707
|
+
examples: "examples";
|
|
10569
10708
|
language: "language";
|
|
10570
10709
|
buildTool: "buildTool";
|
|
10571
10710
|
cli: "cli";
|
|
10572
10711
|
errorHandling: "errorHandling";
|
|
10573
10712
|
httpClient: "httpClient";
|
|
10574
10713
|
libraries: "libraries";
|
|
10714
|
+
config: "config";
|
|
10575
10715
|
templating: "templating";
|
|
10576
10716
|
cloudSdk: "cloudSdk";
|
|
10577
10717
|
data: "data";
|
|
10578
10718
|
media: "media";
|
|
10579
10719
|
server: "server";
|
|
10720
|
+
packageManager: "packageManager";
|
|
10580
10721
|
messageQueue: "messageQueue";
|
|
10581
10722
|
}>;
|
|
10582
10723
|
toolId: z.ZodString;
|
|
@@ -10639,13 +10780,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10639
10780
|
sequelize: "sequelize";
|
|
10640
10781
|
}>;
|
|
10641
10782
|
backend: z.ZodEnum<{
|
|
10783
|
+
effect: "effect";
|
|
10642
10784
|
none: "none";
|
|
10643
10785
|
hono: "hono";
|
|
10644
10786
|
express: "express";
|
|
10645
10787
|
fastify: "fastify";
|
|
10646
10788
|
elysia: "elysia";
|
|
10647
10789
|
fets: "fets";
|
|
10648
|
-
effect: "effect";
|
|
10649
10790
|
nestjs: "nestjs";
|
|
10650
10791
|
adonisjs: "adonisjs";
|
|
10651
10792
|
nitro: "nitro";
|
|
@@ -10697,6 +10838,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10697
10838
|
skills: "skills";
|
|
10698
10839
|
turborepo: "turborepo";
|
|
10699
10840
|
nx: "nx";
|
|
10841
|
+
"vite-plus": "vite-plus";
|
|
10700
10842
|
fumadocs: "fumadocs";
|
|
10701
10843
|
ultracite: "ultracite";
|
|
10702
10844
|
oxlint: "oxlint";
|
|
@@ -10726,8 +10868,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10726
10868
|
capacitor: "capacitor";
|
|
10727
10869
|
}>>;
|
|
10728
10870
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10729
|
-
none: "none";
|
|
10730
10871
|
ai: "ai";
|
|
10872
|
+
none: "none";
|
|
10731
10873
|
"chat-sdk": "chat-sdk";
|
|
10732
10874
|
"tanstack-showcase": "tanstack-showcase";
|
|
10733
10875
|
}>>;
|
|
@@ -10842,8 +10984,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10842
10984
|
"ai-cli": "ai-cli";
|
|
10843
10985
|
}>;
|
|
10844
10986
|
effect: z.ZodEnum<{
|
|
10845
|
-
none: "none";
|
|
10846
10987
|
effect: "effect";
|
|
10988
|
+
none: "none";
|
|
10847
10989
|
"effect-full": "effect-full";
|
|
10848
10990
|
}>;
|
|
10849
10991
|
stateManagement: z.ZodEnum<{
|
|
@@ -10978,8 +11120,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10978
11120
|
"geist-mono": "geist-mono";
|
|
10979
11121
|
}>>;
|
|
10980
11122
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10981
|
-
none: "none";
|
|
10982
11123
|
default: "default";
|
|
11124
|
+
none: "none";
|
|
10983
11125
|
small: "small";
|
|
10984
11126
|
medium: "medium";
|
|
10985
11127
|
large: "large";
|
|
@@ -11063,6 +11205,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11063
11205
|
plausible: "plausible";
|
|
11064
11206
|
umami: "umami";
|
|
11065
11207
|
ga4: "ga4";
|
|
11208
|
+
"vercel-analytics": "vercel-analytics";
|
|
11066
11209
|
}>;
|
|
11067
11210
|
cms: z.ZodEnum<{
|
|
11068
11211
|
none: "none";
|
|
@@ -11084,6 +11227,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11084
11227
|
arcjet: "arcjet";
|
|
11085
11228
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
11086
11229
|
}>;
|
|
11230
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
11231
|
+
none: "none";
|
|
11232
|
+
botid: "botid";
|
|
11233
|
+
turnstile: "turnstile";
|
|
11234
|
+
}>>;
|
|
11087
11235
|
i18n: z.ZodEnum<{
|
|
11088
11236
|
none: "none";
|
|
11089
11237
|
paraglide: "paraglide";
|
|
@@ -11121,9 +11269,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11121
11269
|
}>;
|
|
11122
11270
|
mobileUI: z.ZodEnum<{
|
|
11123
11271
|
none: "none";
|
|
11124
|
-
uniwind: "uniwind";
|
|
11125
11272
|
tamagui: "tamagui";
|
|
11126
11273
|
"gluestack-ui": "gluestack-ui";
|
|
11274
|
+
uniwind: "uniwind";
|
|
11127
11275
|
unistyles: "unistyles";
|
|
11128
11276
|
}>;
|
|
11129
11277
|
mobileStorage: z.ZodEnum<{
|
|
@@ -11239,12 +11387,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11239
11387
|
ratatui: "ratatui";
|
|
11240
11388
|
}>;
|
|
11241
11389
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
11390
|
+
config: "config";
|
|
11242
11391
|
none: "none";
|
|
11243
11392
|
serde: "serde";
|
|
11244
11393
|
uuid: "uuid";
|
|
11245
11394
|
chrono: "chrono";
|
|
11246
11395
|
reqwest: "reqwest";
|
|
11247
|
-
config: "config";
|
|
11248
11396
|
dashmap: "dashmap";
|
|
11249
11397
|
"parking-lot": "parking-lot";
|
|
11250
11398
|
secrecy: "secrecy";
|
|
@@ -11856,69 +12004,81 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11856
12004
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11857
12005
|
id: z.ZodString;
|
|
11858
12006
|
role: z.ZodEnum<{
|
|
11859
|
-
|
|
11860
|
-
|
|
12007
|
+
push: "push";
|
|
12008
|
+
frontend: "frontend";
|
|
12009
|
+
backend: "backend";
|
|
12010
|
+
mobile: "mobile";
|
|
11861
12011
|
database: "database";
|
|
12012
|
+
api: "api";
|
|
12013
|
+
graphql: "graphql";
|
|
11862
12014
|
orm: "orm";
|
|
11863
12015
|
auth: "auth";
|
|
11864
|
-
payments: "payments";
|
|
11865
|
-
frontend: "frontend";
|
|
11866
|
-
examples: "examples";
|
|
11867
|
-
packageManager: "packageManager";
|
|
11868
|
-
dbSetup: "dbSetup";
|
|
11869
|
-
backend: "backend";
|
|
11870
12016
|
runtime: "runtime";
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
testing: "testing";
|
|
11875
|
-
email: "email";
|
|
11876
|
-
validation: "validation";
|
|
12017
|
+
deploy: "deploy";
|
|
12018
|
+
dbSetup: "dbSetup";
|
|
12019
|
+
migrations: "migrations";
|
|
11877
12020
|
realtime: "realtime";
|
|
12021
|
+
navigation: "navigation";
|
|
12022
|
+
caching: "caching";
|
|
12023
|
+
observability: "observability";
|
|
12024
|
+
email: "email";
|
|
12025
|
+
search: "search";
|
|
12026
|
+
vectorDb: "vectorDb";
|
|
12027
|
+
fileStorage: "fileStorage";
|
|
11878
12028
|
jobQueue: "jobQueue";
|
|
12029
|
+
rateLimit: "rateLimit";
|
|
12030
|
+
botProtection: "botProtection";
|
|
12031
|
+
testing: "testing";
|
|
12032
|
+
stateManagement: "stateManagement";
|
|
12033
|
+
forms: "forms";
|
|
11879
12034
|
animation: "animation";
|
|
11880
12035
|
fileUpload: "fileUpload";
|
|
12036
|
+
validation: "validation";
|
|
12037
|
+
effect: "effect";
|
|
12038
|
+
ui: "ui";
|
|
12039
|
+
css: "css";
|
|
12040
|
+
storage: "storage";
|
|
12041
|
+
ota: "ota";
|
|
12042
|
+
deepLinking: "deepLinking";
|
|
12043
|
+
ai: "ai";
|
|
12044
|
+
payments: "payments";
|
|
11881
12045
|
logging: "logging";
|
|
11882
|
-
observability: "observability";
|
|
11883
12046
|
featureFlags: "featureFlags";
|
|
11884
12047
|
integrations: "integrations";
|
|
11885
12048
|
ecommerce: "ecommerce";
|
|
11886
12049
|
analytics: "analytics";
|
|
11887
12050
|
cms: "cms";
|
|
11888
|
-
caching: "caching";
|
|
11889
|
-
rateLimit: "rateLimit";
|
|
11890
12051
|
i18n: "i18n";
|
|
11891
|
-
search: "search";
|
|
11892
|
-
vectorDb: "vectorDb";
|
|
11893
|
-
fileStorage: "fileStorage";
|
|
11894
|
-
config: "config";
|
|
11895
|
-
mobile: "mobile";
|
|
11896
|
-
graphql: "graphql";
|
|
11897
|
-
deploy: "deploy";
|
|
11898
|
-
migrations: "migrations";
|
|
11899
|
-
navigation: "navigation";
|
|
11900
|
-
ui: "ui";
|
|
11901
|
-
css: "css";
|
|
11902
|
-
storage: "storage";
|
|
11903
|
-
push: "push";
|
|
11904
|
-
ota: "ota";
|
|
11905
|
-
deepLinking: "deepLinking";
|
|
11906
12052
|
documentation: "documentation";
|
|
11907
12053
|
codeQuality: "codeQuality";
|
|
11908
12054
|
appPlatform: "appPlatform";
|
|
11909
12055
|
dataFetching: "dataFetching";
|
|
11910
12056
|
workspaceTooling: "workspaceTooling";
|
|
12057
|
+
toolchain: "toolchain";
|
|
12058
|
+
workspaceRunner: "workspaceRunner";
|
|
12059
|
+
gitHooks: "gitHooks";
|
|
12060
|
+
staticAnalysis: "staticAnalysis";
|
|
12061
|
+
aiTooling: "aiTooling";
|
|
12062
|
+
codeGeneration: "codeGeneration";
|
|
12063
|
+
developerEnvironment: "developerEnvironment";
|
|
12064
|
+
containerOrchestration: "containerOrchestration";
|
|
12065
|
+
apiGateway: "apiGateway";
|
|
12066
|
+
continuousIntegration: "continuousIntegration";
|
|
12067
|
+
backendUtilities: "backendUtilities";
|
|
12068
|
+
examples: "examples";
|
|
11911
12069
|
language: "language";
|
|
11912
12070
|
buildTool: "buildTool";
|
|
11913
12071
|
cli: "cli";
|
|
11914
12072
|
errorHandling: "errorHandling";
|
|
11915
12073
|
httpClient: "httpClient";
|
|
11916
12074
|
libraries: "libraries";
|
|
12075
|
+
config: "config";
|
|
11917
12076
|
templating: "templating";
|
|
11918
12077
|
cloudSdk: "cloudSdk";
|
|
11919
12078
|
data: "data";
|
|
11920
12079
|
media: "media";
|
|
11921
12080
|
server: "server";
|
|
12081
|
+
packageManager: "packageManager";
|
|
11922
12082
|
messageQueue: "messageQueue";
|
|
11923
12083
|
}>;
|
|
11924
12084
|
toolId: z.ZodString;
|
|
@@ -11981,13 +12141,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11981
12141
|
sequelize: "sequelize";
|
|
11982
12142
|
}>;
|
|
11983
12143
|
backend: z.ZodEnum<{
|
|
12144
|
+
effect: "effect";
|
|
11984
12145
|
none: "none";
|
|
11985
12146
|
hono: "hono";
|
|
11986
12147
|
express: "express";
|
|
11987
12148
|
fastify: "fastify";
|
|
11988
12149
|
elysia: "elysia";
|
|
11989
12150
|
fets: "fets";
|
|
11990
|
-
effect: "effect";
|
|
11991
12151
|
nestjs: "nestjs";
|
|
11992
12152
|
adonisjs: "adonisjs";
|
|
11993
12153
|
nitro: "nitro";
|
|
@@ -12039,6 +12199,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12039
12199
|
skills: "skills";
|
|
12040
12200
|
turborepo: "turborepo";
|
|
12041
12201
|
nx: "nx";
|
|
12202
|
+
"vite-plus": "vite-plus";
|
|
12042
12203
|
fumadocs: "fumadocs";
|
|
12043
12204
|
ultracite: "ultracite";
|
|
12044
12205
|
oxlint: "oxlint";
|
|
@@ -12068,8 +12229,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12068
12229
|
capacitor: "capacitor";
|
|
12069
12230
|
}>>;
|
|
12070
12231
|
examples: z.ZodArray<z.ZodEnum<{
|
|
12071
|
-
none: "none";
|
|
12072
12232
|
ai: "ai";
|
|
12233
|
+
none: "none";
|
|
12073
12234
|
"chat-sdk": "chat-sdk";
|
|
12074
12235
|
"tanstack-showcase": "tanstack-showcase";
|
|
12075
12236
|
}>>;
|
|
@@ -12186,8 +12347,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12186
12347
|
"ai-cli": "ai-cli";
|
|
12187
12348
|
}>;
|
|
12188
12349
|
effect: z.ZodEnum<{
|
|
12189
|
-
none: "none";
|
|
12190
12350
|
effect: "effect";
|
|
12351
|
+
none: "none";
|
|
12191
12352
|
"effect-full": "effect-full";
|
|
12192
12353
|
}>;
|
|
12193
12354
|
stateManagement: z.ZodEnum<{
|
|
@@ -12322,8 +12483,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12322
12483
|
"geist-mono": "geist-mono";
|
|
12323
12484
|
}>>;
|
|
12324
12485
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
12325
|
-
none: "none";
|
|
12326
12486
|
default: "default";
|
|
12487
|
+
none: "none";
|
|
12327
12488
|
small: "small";
|
|
12328
12489
|
medium: "medium";
|
|
12329
12490
|
large: "large";
|
|
@@ -12407,6 +12568,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12407
12568
|
plausible: "plausible";
|
|
12408
12569
|
umami: "umami";
|
|
12409
12570
|
ga4: "ga4";
|
|
12571
|
+
"vercel-analytics": "vercel-analytics";
|
|
12410
12572
|
}>;
|
|
12411
12573
|
cms: z.ZodEnum<{
|
|
12412
12574
|
none: "none";
|
|
@@ -12428,6 +12590,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12428
12590
|
arcjet: "arcjet";
|
|
12429
12591
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
12430
12592
|
}>;
|
|
12593
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
12594
|
+
none: "none";
|
|
12595
|
+
botid: "botid";
|
|
12596
|
+
turnstile: "turnstile";
|
|
12597
|
+
}>>;
|
|
12431
12598
|
i18n: z.ZodEnum<{
|
|
12432
12599
|
none: "none";
|
|
12433
12600
|
paraglide: "paraglide";
|
|
@@ -12465,9 +12632,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12465
12632
|
}>;
|
|
12466
12633
|
mobileUI: z.ZodEnum<{
|
|
12467
12634
|
none: "none";
|
|
12468
|
-
uniwind: "uniwind";
|
|
12469
12635
|
tamagui: "tamagui";
|
|
12470
12636
|
"gluestack-ui": "gluestack-ui";
|
|
12637
|
+
uniwind: "uniwind";
|
|
12471
12638
|
unistyles: "unistyles";
|
|
12472
12639
|
}>;
|
|
12473
12640
|
mobileStorage: z.ZodEnum<{
|
|
@@ -12583,12 +12750,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12583
12750
|
ratatui: "ratatui";
|
|
12584
12751
|
}>;
|
|
12585
12752
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
12753
|
+
config: "config";
|
|
12586
12754
|
none: "none";
|
|
12587
12755
|
serde: "serde";
|
|
12588
12756
|
uuid: "uuid";
|
|
12589
12757
|
chrono: "chrono";
|
|
12590
12758
|
reqwest: "reqwest";
|
|
12591
|
-
config: "config";
|
|
12592
12759
|
dashmap: "dashmap";
|
|
12593
12760
|
"parking-lot": "parking-lot";
|
|
12594
12761
|
secrecy: "secrecy";
|
|
@@ -13200,69 +13367,81 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13200
13367
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13201
13368
|
id: z.ZodString;
|
|
13202
13369
|
role: z.ZodEnum<{
|
|
13203
|
-
|
|
13204
|
-
|
|
13370
|
+
push: "push";
|
|
13371
|
+
frontend: "frontend";
|
|
13372
|
+
backend: "backend";
|
|
13373
|
+
mobile: "mobile";
|
|
13205
13374
|
database: "database";
|
|
13375
|
+
api: "api";
|
|
13376
|
+
graphql: "graphql";
|
|
13206
13377
|
orm: "orm";
|
|
13207
13378
|
auth: "auth";
|
|
13208
|
-
payments: "payments";
|
|
13209
|
-
frontend: "frontend";
|
|
13210
|
-
examples: "examples";
|
|
13211
|
-
packageManager: "packageManager";
|
|
13212
|
-
dbSetup: "dbSetup";
|
|
13213
|
-
backend: "backend";
|
|
13214
13379
|
runtime: "runtime";
|
|
13215
|
-
|
|
13216
|
-
|
|
13217
|
-
|
|
13218
|
-
testing: "testing";
|
|
13219
|
-
email: "email";
|
|
13220
|
-
validation: "validation";
|
|
13380
|
+
deploy: "deploy";
|
|
13381
|
+
dbSetup: "dbSetup";
|
|
13382
|
+
migrations: "migrations";
|
|
13221
13383
|
realtime: "realtime";
|
|
13384
|
+
navigation: "navigation";
|
|
13385
|
+
caching: "caching";
|
|
13386
|
+
observability: "observability";
|
|
13387
|
+
email: "email";
|
|
13388
|
+
search: "search";
|
|
13389
|
+
vectorDb: "vectorDb";
|
|
13390
|
+
fileStorage: "fileStorage";
|
|
13222
13391
|
jobQueue: "jobQueue";
|
|
13392
|
+
rateLimit: "rateLimit";
|
|
13393
|
+
botProtection: "botProtection";
|
|
13394
|
+
testing: "testing";
|
|
13395
|
+
stateManagement: "stateManagement";
|
|
13396
|
+
forms: "forms";
|
|
13223
13397
|
animation: "animation";
|
|
13224
13398
|
fileUpload: "fileUpload";
|
|
13399
|
+
validation: "validation";
|
|
13400
|
+
effect: "effect";
|
|
13401
|
+
ui: "ui";
|
|
13402
|
+
css: "css";
|
|
13403
|
+
storage: "storage";
|
|
13404
|
+
ota: "ota";
|
|
13405
|
+
deepLinking: "deepLinking";
|
|
13406
|
+
ai: "ai";
|
|
13407
|
+
payments: "payments";
|
|
13225
13408
|
logging: "logging";
|
|
13226
|
-
observability: "observability";
|
|
13227
13409
|
featureFlags: "featureFlags";
|
|
13228
13410
|
integrations: "integrations";
|
|
13229
13411
|
ecommerce: "ecommerce";
|
|
13230
13412
|
analytics: "analytics";
|
|
13231
13413
|
cms: "cms";
|
|
13232
|
-
caching: "caching";
|
|
13233
|
-
rateLimit: "rateLimit";
|
|
13234
13414
|
i18n: "i18n";
|
|
13235
|
-
search: "search";
|
|
13236
|
-
vectorDb: "vectorDb";
|
|
13237
|
-
fileStorage: "fileStorage";
|
|
13238
|
-
config: "config";
|
|
13239
|
-
mobile: "mobile";
|
|
13240
|
-
graphql: "graphql";
|
|
13241
|
-
deploy: "deploy";
|
|
13242
|
-
migrations: "migrations";
|
|
13243
|
-
navigation: "navigation";
|
|
13244
|
-
ui: "ui";
|
|
13245
|
-
css: "css";
|
|
13246
|
-
storage: "storage";
|
|
13247
|
-
push: "push";
|
|
13248
|
-
ota: "ota";
|
|
13249
|
-
deepLinking: "deepLinking";
|
|
13250
13415
|
documentation: "documentation";
|
|
13251
13416
|
codeQuality: "codeQuality";
|
|
13252
13417
|
appPlatform: "appPlatform";
|
|
13253
13418
|
dataFetching: "dataFetching";
|
|
13254
13419
|
workspaceTooling: "workspaceTooling";
|
|
13420
|
+
toolchain: "toolchain";
|
|
13421
|
+
workspaceRunner: "workspaceRunner";
|
|
13422
|
+
gitHooks: "gitHooks";
|
|
13423
|
+
staticAnalysis: "staticAnalysis";
|
|
13424
|
+
aiTooling: "aiTooling";
|
|
13425
|
+
codeGeneration: "codeGeneration";
|
|
13426
|
+
developerEnvironment: "developerEnvironment";
|
|
13427
|
+
containerOrchestration: "containerOrchestration";
|
|
13428
|
+
apiGateway: "apiGateway";
|
|
13429
|
+
continuousIntegration: "continuousIntegration";
|
|
13430
|
+
backendUtilities: "backendUtilities";
|
|
13431
|
+
examples: "examples";
|
|
13255
13432
|
language: "language";
|
|
13256
13433
|
buildTool: "buildTool";
|
|
13257
13434
|
cli: "cli";
|
|
13258
13435
|
errorHandling: "errorHandling";
|
|
13259
13436
|
httpClient: "httpClient";
|
|
13260
13437
|
libraries: "libraries";
|
|
13438
|
+
config: "config";
|
|
13261
13439
|
templating: "templating";
|
|
13262
13440
|
cloudSdk: "cloudSdk";
|
|
13263
13441
|
data: "data";
|
|
13264
13442
|
media: "media";
|
|
13265
13443
|
server: "server";
|
|
13444
|
+
packageManager: "packageManager";
|
|
13266
13445
|
messageQueue: "messageQueue";
|
|
13267
13446
|
}>;
|
|
13268
13447
|
toolId: z.ZodString;
|
|
@@ -13302,11 +13481,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13302
13481
|
}, z.core.$strip>;
|
|
13303
13482
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
13304
13483
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
13305
|
-
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "
|
|
13484
|
+
declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
13306
13485
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
13307
13486
|
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")[];
|
|
13308
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
|
|
13309
|
-
declare const EXAMPLES_VALUES: ("
|
|
13487
|
+
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")[];
|
|
13310
13489
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
13311
13490
|
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
13312
13491
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
@@ -13316,11 +13495,12 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations"
|
|
|
13316
13495
|
declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet" | "xendit")[];
|
|
13317
13496
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13318
13497
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13319
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
13320
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
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: ("frontend" | "backend" | "mobile" | "fullstack")[];
|
|
13321
13501
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
|
|
13322
13502
|
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")[];
|
|
13323
|
-
declare const EFFECT_VALUES: ("
|
|
13503
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
13324
13504
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
13325
13505
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
13326
13506
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "mocha" | "cypress")[];
|
|
@@ -13337,9 +13517,9 @@ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "signoz" | "sent
|
|
|
13337
13517
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
13338
13518
|
declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
|
|
13339
13519
|
declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
|
|
13340
|
-
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4")[];
|
|
13520
|
+
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4" | "vercel-analytics")[];
|
|
13341
13521
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
13342
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
13522
|
+
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
13343
13523
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
13344
13524
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
13345
13525
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -13349,6 +13529,7 @@ declare const MOBILE_LIBRARIES_VALUES: ("none" | "expo-sqlite" | "expo-camera" |
|
|
|
13349
13529
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic" | "contentful")[];
|
|
13350
13530
|
declare const CACHING_VALUES: ("none" | "redis" | "upstash-redis")[];
|
|
13351
13531
|
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
13532
|
+
declare const BOT_PROTECTION_VALUES: ("none" | "botid" | "turnstile")[];
|
|
13352
13533
|
declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl" | "intlayer")[];
|
|
13353
13534
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia" | "bleve")[];
|
|
13354
13535
|
declare const VECTOR_DB_VALUES: ("none" | "pgvector" | "qdrant" | "chroma" | "pinecone")[];
|
|
@@ -13364,7 +13545,7 @@ declare const DART_MOBILE_VALUES: ("none" | "flutter")[];
|
|
|
13364
13545
|
declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
|
|
13365
13546
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
|
|
13366
13547
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
13367
|
-
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "
|
|
13548
|
+
declare const RUST_LIBRARIES_VALUES: ("config" | "none" | "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")[];
|
|
13368
13549
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
13369
13550
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
13370
13551
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
@@ -13461,7 +13642,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
13461
13642
|
declare const SHADCN_COLOR_THEME_VALUES: ("neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow")[];
|
|
13462
13643
|
declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
|
|
13463
13644
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
13464
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
13645
|
+
declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "small" | "medium" | "large")[];
|
|
13465
13646
|
//#endregion
|
|
13466
|
-
export {
|
|
13467
|
-
//# sourceMappingURL=schemas-
|
|
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-CY0MaZmU.d.mts.map
|