@better-fullstack/types 2.6.2 → 2.6.4
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-CZeSVSu8.d.mts → defaults-B8xnKlp6.d.mts} +2 -2
- package/dist/defaults-B8xnKlp6.d.mts.map +1 -0
- package/dist/{defaults-DTS30ICD.mjs → defaults-nq08Mnf5.mjs} +2 -1
- package/dist/defaults-nq08Mnf5.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +31 -31
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +15 -6
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +370 -322
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-82xJXQrZ.d.mts → schemas-CgldOz7b.d.mts} +682 -633
- package/dist/schemas-CgldOz7b.d.mts.map +1 -0
- package/dist/{schemas-cgmdgudQ.mjs → schemas-CywxHrK2.mjs} +8 -2
- package/dist/schemas-CywxHrK2.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-Oj-P0cij.mjs → stack-graph-B1N4281Q.mjs} +4 -2
- package/dist/stack-graph-B1N4281Q.mjs.map +1 -0
- package/dist/{stack-graph-DG53F1Q2.d.mts → stack-graph-C5tnlzLw.d.mts} +2 -2
- package/dist/{stack-graph-DG53F1Q2.d.mts.map → stack-graph-C5tnlzLw.d.mts.map} +1 -1
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-49iba9M5.mjs → stack-translation-DYhRy_yT.mjs} +54 -8
- package/dist/stack-translation-DYhRy_yT.mjs.map +1 -0
- package/dist/{stack-translation-0OwfhcBf.d.mts → stack-translation-vg1Nwe1o.d.mts} +7 -5
- package/dist/stack-translation-vg1Nwe1o.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{telemetry-C9qQ80l9.mjs → telemetry-C3RfYkCK.mjs} +6 -4
- package/dist/telemetry-C3RfYkCK.mjs.map +1 -0
- package/dist/{telemetry-CUtrUTe9.d.mts → telemetry-D4mP-fTC.d.mts} +3 -3
- package/dist/telemetry-D4mP-fTC.d.mts.map +1 -0
- package/dist/telemetry.d.mts +1 -1
- package/dist/telemetry.mjs +4 -4
- package/dist/{types-CfEIdtDo.d.mts → types-BvyHjJEI.d.mts} +4 -3
- package/dist/types-BvyHjJEI.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +2 -2
- package/dist/defaults-CZeSVSu8.d.mts.map +0 -1
- package/dist/defaults-DTS30ICD.mjs.map +0 -1
- package/dist/schemas-82xJXQrZ.d.mts.map +0 -1
- package/dist/schemas-cgmdgudQ.mjs.map +0 -1
- package/dist/stack-graph-Oj-P0cij.mjs.map +0 -1
- package/dist/stack-translation-0OwfhcBf.d.mts.map +0 -1
- package/dist/stack-translation-49iba9M5.mjs.map +0 -1
- package/dist/telemetry-C9qQ80l9.mjs.map +0 -1
- package/dist/telemetry-CUtrUTe9.d.mts.map +0 -1
- package/dist/types-CfEIdtDo.d.mts.map +0 -1
|
@@ -22,54 +22,52 @@ 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
|
-
ai: "ai";
|
|
25
|
+
push: "push";
|
|
27
26
|
frontend: "frontend";
|
|
28
27
|
backend: "backend";
|
|
29
28
|
mobile: "mobile";
|
|
30
29
|
database: "database";
|
|
30
|
+
api: "api";
|
|
31
|
+
graphql: "graphql";
|
|
31
32
|
orm: "orm";
|
|
32
33
|
auth: "auth";
|
|
33
|
-
payments: "payments";
|
|
34
|
-
examples: "examples";
|
|
35
|
-
packageManager: "packageManager";
|
|
36
|
-
dbSetup: "dbSetup";
|
|
37
34
|
runtime: "runtime";
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
testing: "testing";
|
|
42
|
-
email: "email";
|
|
43
|
-
validation: "validation";
|
|
35
|
+
deploy: "deploy";
|
|
36
|
+
dbSetup: "dbSetup";
|
|
37
|
+
migrations: "migrations";
|
|
44
38
|
realtime: "realtime";
|
|
39
|
+
navigation: "navigation";
|
|
40
|
+
caching: "caching";
|
|
41
|
+
observability: "observability";
|
|
42
|
+
email: "email";
|
|
43
|
+
search: "search";
|
|
44
|
+
vectorDb: "vectorDb";
|
|
45
|
+
fileStorage: "fileStorage";
|
|
45
46
|
jobQueue: "jobQueue";
|
|
47
|
+
rateLimit: "rateLimit";
|
|
48
|
+
botProtection: "botProtection";
|
|
49
|
+
testing: "testing";
|
|
50
|
+
stateManagement: "stateManagement";
|
|
51
|
+
forms: "forms";
|
|
46
52
|
animation: "animation";
|
|
47
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";
|
|
48
63
|
logging: "logging";
|
|
49
|
-
observability: "observability";
|
|
50
64
|
featureFlags: "featureFlags";
|
|
51
65
|
integrations: "integrations";
|
|
52
66
|
ecommerce: "ecommerce";
|
|
53
67
|
analytics: "analytics";
|
|
68
|
+
webMcp: "webMcp";
|
|
54
69
|
cms: "cms";
|
|
55
|
-
caching: "caching";
|
|
56
|
-
rateLimit: "rateLimit";
|
|
57
|
-
botProtection: "botProtection";
|
|
58
70
|
i18n: "i18n";
|
|
59
|
-
search: "search";
|
|
60
|
-
vectorDb: "vectorDb";
|
|
61
|
-
fileStorage: "fileStorage";
|
|
62
|
-
config: "config";
|
|
63
|
-
graphql: "graphql";
|
|
64
|
-
deploy: "deploy";
|
|
65
|
-
migrations: "migrations";
|
|
66
|
-
navigation: "navigation";
|
|
67
|
-
ui: "ui";
|
|
68
|
-
css: "css";
|
|
69
|
-
storage: "storage";
|
|
70
|
-
push: "push";
|
|
71
|
-
ota: "ota";
|
|
72
|
-
deepLinking: "deepLinking";
|
|
73
71
|
documentation: "documentation";
|
|
74
72
|
codeQuality: "codeQuality";
|
|
75
73
|
appPlatform: "appPlatform";
|
|
@@ -86,22 +84,25 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
86
84
|
apiGateway: "apiGateway";
|
|
87
85
|
continuousIntegration: "continuousIntegration";
|
|
88
86
|
backendUtilities: "backendUtilities";
|
|
87
|
+
examples: "examples";
|
|
89
88
|
language: "language";
|
|
90
89
|
buildTool: "buildTool";
|
|
91
90
|
cli: "cli";
|
|
92
91
|
errorHandling: "errorHandling";
|
|
93
92
|
httpClient: "httpClient";
|
|
94
93
|
libraries: "libraries";
|
|
94
|
+
config: "config";
|
|
95
95
|
templating: "templating";
|
|
96
96
|
cloudSdk: "cloudSdk";
|
|
97
97
|
data: "data";
|
|
98
98
|
media: "media";
|
|
99
99
|
server: "server";
|
|
100
|
+
packageManager: "packageManager";
|
|
100
101
|
messageQueue: "messageQueue";
|
|
101
102
|
}>;
|
|
102
103
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
103
|
-
selected: "selected";
|
|
104
104
|
defaulted: "defaulted";
|
|
105
|
+
selected: "selected";
|
|
105
106
|
provided: "provided";
|
|
106
107
|
legacy: "legacy";
|
|
107
108
|
adjusted: "adjusted";
|
|
@@ -109,54 +110,52 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
109
110
|
declare const StackPartSchema: z.ZodObject<{
|
|
110
111
|
id: z.ZodString;
|
|
111
112
|
role: z.ZodEnum<{
|
|
112
|
-
|
|
113
|
-
ai: "ai";
|
|
113
|
+
push: "push";
|
|
114
114
|
frontend: "frontend";
|
|
115
115
|
backend: "backend";
|
|
116
116
|
mobile: "mobile";
|
|
117
117
|
database: "database";
|
|
118
|
+
api: "api";
|
|
119
|
+
graphql: "graphql";
|
|
118
120
|
orm: "orm";
|
|
119
121
|
auth: "auth";
|
|
120
|
-
payments: "payments";
|
|
121
|
-
examples: "examples";
|
|
122
|
-
packageManager: "packageManager";
|
|
123
|
-
dbSetup: "dbSetup";
|
|
124
122
|
runtime: "runtime";
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
testing: "testing";
|
|
129
|
-
email: "email";
|
|
130
|
-
validation: "validation";
|
|
123
|
+
deploy: "deploy";
|
|
124
|
+
dbSetup: "dbSetup";
|
|
125
|
+
migrations: "migrations";
|
|
131
126
|
realtime: "realtime";
|
|
127
|
+
navigation: "navigation";
|
|
128
|
+
caching: "caching";
|
|
129
|
+
observability: "observability";
|
|
130
|
+
email: "email";
|
|
131
|
+
search: "search";
|
|
132
|
+
vectorDb: "vectorDb";
|
|
133
|
+
fileStorage: "fileStorage";
|
|
132
134
|
jobQueue: "jobQueue";
|
|
135
|
+
rateLimit: "rateLimit";
|
|
136
|
+
botProtection: "botProtection";
|
|
137
|
+
testing: "testing";
|
|
138
|
+
stateManagement: "stateManagement";
|
|
139
|
+
forms: "forms";
|
|
133
140
|
animation: "animation";
|
|
134
141
|
fileUpload: "fileUpload";
|
|
142
|
+
validation: "validation";
|
|
143
|
+
effect: "effect";
|
|
144
|
+
ui: "ui";
|
|
145
|
+
css: "css";
|
|
146
|
+
storage: "storage";
|
|
147
|
+
ota: "ota";
|
|
148
|
+
deepLinking: "deepLinking";
|
|
149
|
+
ai: "ai";
|
|
150
|
+
payments: "payments";
|
|
135
151
|
logging: "logging";
|
|
136
|
-
observability: "observability";
|
|
137
152
|
featureFlags: "featureFlags";
|
|
138
153
|
integrations: "integrations";
|
|
139
154
|
ecommerce: "ecommerce";
|
|
140
155
|
analytics: "analytics";
|
|
156
|
+
webMcp: "webMcp";
|
|
141
157
|
cms: "cms";
|
|
142
|
-
caching: "caching";
|
|
143
|
-
rateLimit: "rateLimit";
|
|
144
|
-
botProtection: "botProtection";
|
|
145
158
|
i18n: "i18n";
|
|
146
|
-
search: "search";
|
|
147
|
-
vectorDb: "vectorDb";
|
|
148
|
-
fileStorage: "fileStorage";
|
|
149
|
-
config: "config";
|
|
150
|
-
graphql: "graphql";
|
|
151
|
-
deploy: "deploy";
|
|
152
|
-
migrations: "migrations";
|
|
153
|
-
navigation: "navigation";
|
|
154
|
-
ui: "ui";
|
|
155
|
-
css: "css";
|
|
156
|
-
storage: "storage";
|
|
157
|
-
push: "push";
|
|
158
|
-
ota: "ota";
|
|
159
|
-
deepLinking: "deepLinking";
|
|
160
159
|
documentation: "documentation";
|
|
161
160
|
codeQuality: "codeQuality";
|
|
162
161
|
appPlatform: "appPlatform";
|
|
@@ -173,17 +172,20 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
173
172
|
apiGateway: "apiGateway";
|
|
174
173
|
continuousIntegration: "continuousIntegration";
|
|
175
174
|
backendUtilities: "backendUtilities";
|
|
175
|
+
examples: "examples";
|
|
176
176
|
language: "language";
|
|
177
177
|
buildTool: "buildTool";
|
|
178
178
|
cli: "cli";
|
|
179
179
|
errorHandling: "errorHandling";
|
|
180
180
|
httpClient: "httpClient";
|
|
181
181
|
libraries: "libraries";
|
|
182
|
+
config: "config";
|
|
182
183
|
templating: "templating";
|
|
183
184
|
cloudSdk: "cloudSdk";
|
|
184
185
|
data: "data";
|
|
185
186
|
media: "media";
|
|
186
187
|
server: "server";
|
|
188
|
+
packageManager: "packageManager";
|
|
187
189
|
messageQueue: "messageQueue";
|
|
188
190
|
}>;
|
|
189
191
|
toolId: z.ZodString;
|
|
@@ -199,8 +201,8 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
199
201
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
200
202
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
201
203
|
source: z.ZodEnum<{
|
|
202
|
-
selected: "selected";
|
|
203
204
|
defaulted: "defaulted";
|
|
205
|
+
selected: "selected";
|
|
204
206
|
provided: "provided";
|
|
205
207
|
legacy: "legacy";
|
|
206
208
|
adjusted: "adjusted";
|
|
@@ -229,13 +231,13 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
229
231
|
sequelize: "sequelize";
|
|
230
232
|
}>;
|
|
231
233
|
declare const BackendSchema: z.ZodEnum<{
|
|
234
|
+
effect: "effect";
|
|
232
235
|
none: "none";
|
|
233
236
|
hono: "hono";
|
|
234
237
|
express: "express";
|
|
235
238
|
fastify: "fastify";
|
|
236
239
|
elysia: "elysia";
|
|
237
240
|
fets: "fets";
|
|
238
|
-
effect: "effect";
|
|
239
241
|
nestjs: "nestjs";
|
|
240
242
|
adonisjs: "adonisjs";
|
|
241
243
|
nitro: "nitro";
|
|
@@ -326,8 +328,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
326
328
|
/** @deprecated Use tooling capability metadata and Stack Part role bindings. */
|
|
327
329
|
declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
|
|
328
330
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
329
|
-
none: "none";
|
|
330
331
|
ai: "ai";
|
|
332
|
+
none: "none";
|
|
331
333
|
"chat-sdk": "chat-sdk";
|
|
332
334
|
"tanstack-showcase": "tanstack-showcase";
|
|
333
335
|
}>;
|
|
@@ -435,8 +437,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
435
437
|
"ai-cli": "ai-cli";
|
|
436
438
|
}>;
|
|
437
439
|
declare const EffectSchema: z.ZodEnum<{
|
|
438
|
-
none: "none";
|
|
439
440
|
effect: "effect";
|
|
441
|
+
none: "none";
|
|
440
442
|
"effect-full": "effect-full";
|
|
441
443
|
}>;
|
|
442
444
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -616,6 +618,10 @@ declare const AnalyticsSchema: z.ZodEnum<{
|
|
|
616
618
|
ga4: "ga4";
|
|
617
619
|
"vercel-analytics": "vercel-analytics";
|
|
618
620
|
}>;
|
|
621
|
+
declare const WebMcpSchema: z.ZodEnum<{
|
|
622
|
+
none: "none";
|
|
623
|
+
enabled: "enabled";
|
|
624
|
+
}>;
|
|
619
625
|
declare const MobileNavigationSchema: z.ZodEnum<{
|
|
620
626
|
none: "none";
|
|
621
627
|
"expo-router": "expo-router";
|
|
@@ -623,9 +629,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
623
629
|
}>;
|
|
624
630
|
declare const MobileUISchema: z.ZodEnum<{
|
|
625
631
|
none: "none";
|
|
626
|
-
uniwind: "uniwind";
|
|
627
632
|
tamagui: "tamagui";
|
|
628
633
|
"gluestack-ui": "gluestack-ui";
|
|
634
|
+
uniwind: "uniwind";
|
|
629
635
|
unistyles: "unistyles";
|
|
630
636
|
}>;
|
|
631
637
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -741,12 +747,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
741
747
|
ratatui: "ratatui";
|
|
742
748
|
}>;
|
|
743
749
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
750
|
+
config: "config";
|
|
744
751
|
none: "none";
|
|
745
752
|
serde: "serde";
|
|
746
753
|
uuid: "uuid";
|
|
747
754
|
chrono: "chrono";
|
|
748
755
|
reqwest: "reqwest";
|
|
749
|
-
config: "config";
|
|
750
756
|
dashmap: "dashmap";
|
|
751
757
|
"parking-lot": "parking-lot";
|
|
752
758
|
secrecy: "secrecy";
|
|
@@ -1446,8 +1452,8 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
1446
1452
|
"geist-mono": "geist-mono";
|
|
1447
1453
|
}>;
|
|
1448
1454
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
1449
|
-
none: "none";
|
|
1450
1455
|
default: "default";
|
|
1456
|
+
none: "none";
|
|
1451
1457
|
small: "small";
|
|
1452
1458
|
medium: "medium";
|
|
1453
1459
|
large: "large";
|
|
@@ -1527,49 +1533,49 @@ declare const StackPartSettingsSchema: z.ZodObject<{
|
|
|
1527
1533
|
"geist-mono": "geist-mono";
|
|
1528
1534
|
}>>;
|
|
1529
1535
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1530
|
-
none: "none";
|
|
1531
1536
|
default: "default";
|
|
1537
|
+
none: "none";
|
|
1532
1538
|
small: "small";
|
|
1533
1539
|
medium: "medium";
|
|
1534
1540
|
large: "large";
|
|
1535
1541
|
}>>;
|
|
1536
1542
|
}, z.core.$catchall<z.ZodUnknown>>;
|
|
1537
1543
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1544
|
+
error: "error";
|
|
1538
1545
|
merge: "merge";
|
|
1539
1546
|
overwrite: "overwrite";
|
|
1540
1547
|
increment: "increment";
|
|
1541
|
-
error: "error";
|
|
1542
1548
|
}>;
|
|
1543
1549
|
declare const TemplateSchema: z.ZodEnum<{
|
|
1544
1550
|
none: "none";
|
|
1551
|
+
uniwind: "uniwind";
|
|
1545
1552
|
mern: "mern";
|
|
1546
1553
|
pern: "pern";
|
|
1547
1554
|
t3: "t3";
|
|
1548
1555
|
saas: "saas";
|
|
1549
|
-
uniwind: "uniwind";
|
|
1550
1556
|
}>;
|
|
1551
1557
|
declare const ProjectShapeSchema: z.ZodEnum<{
|
|
1552
|
-
fullstack: "fullstack";
|
|
1553
1558
|
frontend: "frontend";
|
|
1554
1559
|
backend: "backend";
|
|
1555
1560
|
mobile: "mobile";
|
|
1561
|
+
fullstack: "fullstack";
|
|
1556
1562
|
}>;
|
|
1557
1563
|
declare const ProjectNameSchema: z.ZodString;
|
|
1558
1564
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1559
1565
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1560
1566
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1561
1567
|
none: "none";
|
|
1568
|
+
uniwind: "uniwind";
|
|
1562
1569
|
mern: "mern";
|
|
1563
1570
|
pern: "pern";
|
|
1564
1571
|
t3: "t3";
|
|
1565
1572
|
saas: "saas";
|
|
1566
|
-
uniwind: "uniwind";
|
|
1567
1573
|
}>>;
|
|
1568
1574
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
1569
|
-
fullstack: "fullstack";
|
|
1570
1575
|
frontend: "frontend";
|
|
1571
1576
|
backend: "backend";
|
|
1572
1577
|
mobile: "mobile";
|
|
1578
|
+
fullstack: "fullstack";
|
|
1573
1579
|
}>>;
|
|
1574
1580
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1575
1581
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1701,8 +1707,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1701
1707
|
capacitor: "capacitor";
|
|
1702
1708
|
}>>>;
|
|
1703
1709
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1704
|
-
none: "none";
|
|
1705
1710
|
ai: "ai";
|
|
1711
|
+
none: "none";
|
|
1706
1712
|
"chat-sdk": "chat-sdk";
|
|
1707
1713
|
"tanstack-showcase": "tanstack-showcase";
|
|
1708
1714
|
}>>>;
|
|
@@ -1736,13 +1742,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1736
1742
|
docker: "docker";
|
|
1737
1743
|
}>>;
|
|
1738
1744
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
1745
|
+
effect: "effect";
|
|
1739
1746
|
none: "none";
|
|
1740
1747
|
hono: "hono";
|
|
1741
1748
|
express: "express";
|
|
1742
1749
|
fastify: "fastify";
|
|
1743
1750
|
elysia: "elysia";
|
|
1744
1751
|
fets: "fets";
|
|
1745
|
-
effect: "effect";
|
|
1746
1752
|
nestjs: "nestjs";
|
|
1747
1753
|
adonisjs: "adonisjs";
|
|
1748
1754
|
nitro: "nitro";
|
|
@@ -1789,10 +1795,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1789
1795
|
vercel: "vercel";
|
|
1790
1796
|
}>>;
|
|
1791
1797
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1798
|
+
error: "error";
|
|
1792
1799
|
merge: "merge";
|
|
1793
1800
|
overwrite: "overwrite";
|
|
1794
1801
|
increment: "increment";
|
|
1795
|
-
error: "error";
|
|
1796
1802
|
}>>;
|
|
1797
1803
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1798
1804
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1821,8 +1827,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1821
1827
|
"ai-cli": "ai-cli";
|
|
1822
1828
|
}>>;
|
|
1823
1829
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1824
|
-
none: "none";
|
|
1825
1830
|
effect: "effect";
|
|
1831
|
+
none: "none";
|
|
1826
1832
|
"effect-full": "effect-full";
|
|
1827
1833
|
}>>;
|
|
1828
1834
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1957,8 +1963,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1957
1963
|
"geist-mono": "geist-mono";
|
|
1958
1964
|
}>>;
|
|
1959
1965
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1960
|
-
none: "none";
|
|
1961
1966
|
default: "default";
|
|
1967
|
+
none: "none";
|
|
1962
1968
|
small: "small";
|
|
1963
1969
|
medium: "medium";
|
|
1964
1970
|
large: "large";
|
|
@@ -2044,6 +2050,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2044
2050
|
ga4: "ga4";
|
|
2045
2051
|
"vercel-analytics": "vercel-analytics";
|
|
2046
2052
|
}>>;
|
|
2053
|
+
webMcp: z.ZodOptional<z.ZodEnum<{
|
|
2054
|
+
none: "none";
|
|
2055
|
+
enabled: "enabled";
|
|
2056
|
+
}>>;
|
|
2047
2057
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
2048
2058
|
none: "none";
|
|
2049
2059
|
payload: "payload";
|
|
@@ -2106,9 +2116,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2106
2116
|
}>>;
|
|
2107
2117
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2108
2118
|
none: "none";
|
|
2109
|
-
uniwind: "uniwind";
|
|
2110
2119
|
tamagui: "tamagui";
|
|
2111
2120
|
"gluestack-ui": "gluestack-ui";
|
|
2121
|
+
uniwind: "uniwind";
|
|
2112
2122
|
unistyles: "unistyles";
|
|
2113
2123
|
}>>;
|
|
2114
2124
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2224,12 +2234,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2224
2234
|
ratatui: "ratatui";
|
|
2225
2235
|
}>>;
|
|
2226
2236
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2237
|
+
config: "config";
|
|
2227
2238
|
none: "none";
|
|
2228
2239
|
serde: "serde";
|
|
2229
2240
|
uuid: "uuid";
|
|
2230
2241
|
chrono: "chrono";
|
|
2231
2242
|
reqwest: "reqwest";
|
|
2232
|
-
config: "config";
|
|
2233
2243
|
dashmap: "dashmap";
|
|
2234
2244
|
"parking-lot": "parking-lot";
|
|
2235
2245
|
secrecy: "secrecy";
|
|
@@ -2841,27 +2851,6 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2841
2851
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2842
2852
|
}, z.core.$strip>;
|
|
2843
2853
|
declare const AddInputSchema: z.ZodObject<{
|
|
2844
|
-
effect: z.ZodOptional<z.ZodEnum<{
|
|
2845
|
-
none: "none";
|
|
2846
|
-
effect: "effect";
|
|
2847
|
-
"effect-full": "effect-full";
|
|
2848
|
-
}>>;
|
|
2849
|
-
ai: z.ZodOptional<z.ZodEnum<{
|
|
2850
|
-
none: "none";
|
|
2851
|
-
"vercel-ai": "vercel-ai";
|
|
2852
|
-
mastra: "mastra";
|
|
2853
|
-
voltagent: "voltagent";
|
|
2854
|
-
langgraph: "langgraph";
|
|
2855
|
-
"openai-agents": "openai-agents";
|
|
2856
|
-
"openai-sdk": "openai-sdk";
|
|
2857
|
-
"anthropic-sdk": "anthropic-sdk";
|
|
2858
|
-
"google-adk": "google-adk";
|
|
2859
|
-
modelfusion: "modelfusion";
|
|
2860
|
-
langchain: "langchain";
|
|
2861
|
-
llamaindex: "llamaindex";
|
|
2862
|
-
"tanstack-ai": "tanstack-ai";
|
|
2863
|
-
"ai-cli": "ai-cli";
|
|
2864
|
-
}>>;
|
|
2865
2854
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2866
2855
|
none: "none";
|
|
2867
2856
|
"tanstack-router": "tanstack-router";
|
|
@@ -2886,13 +2875,13 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2886
2875
|
fresh: "fresh";
|
|
2887
2876
|
}>>>;
|
|
2888
2877
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
2878
|
+
effect: "effect";
|
|
2889
2879
|
none: "none";
|
|
2890
2880
|
hono: "hono";
|
|
2891
2881
|
express: "express";
|
|
2892
2882
|
fastify: "fastify";
|
|
2893
2883
|
elysia: "elysia";
|
|
2894
2884
|
fets: "fets";
|
|
2895
|
-
effect: "effect";
|
|
2896
2885
|
nestjs: "nestjs";
|
|
2897
2886
|
adonisjs: "adonisjs";
|
|
2898
2887
|
nitro: "nitro";
|
|
@@ -2900,17 +2889,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2900
2889
|
convex: "convex";
|
|
2901
2890
|
self: "self";
|
|
2902
2891
|
}>>;
|
|
2903
|
-
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2904
|
-
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2905
|
-
typescript: "typescript";
|
|
2906
|
-
"react-native": "react-native";
|
|
2907
|
-
rust: "rust";
|
|
2908
|
-
python: "python";
|
|
2909
|
-
go: "go";
|
|
2910
|
-
java: "java";
|
|
2911
|
-
elixir: "elixir";
|
|
2912
|
-
dotnet: "dotnet";
|
|
2913
|
-
}>>;
|
|
2914
2892
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2915
2893
|
none: "none";
|
|
2916
2894
|
sqlite: "sqlite";
|
|
@@ -2920,6 +2898,16 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2920
2898
|
edgedb: "edgedb";
|
|
2921
2899
|
redis: "redis";
|
|
2922
2900
|
}>>;
|
|
2901
|
+
api: z.ZodOptional<z.ZodEnum<{
|
|
2902
|
+
none: "none";
|
|
2903
|
+
trpc: "trpc";
|
|
2904
|
+
orpc: "orpc";
|
|
2905
|
+
"ts-rest": "ts-rest";
|
|
2906
|
+
garph: "garph";
|
|
2907
|
+
"graphql-yoga": "graphql-yoga";
|
|
2908
|
+
"apollo-server": "apollo-server";
|
|
2909
|
+
openapi: "openapi";
|
|
2910
|
+
}>>;
|
|
2923
2911
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
2924
2912
|
none: "none";
|
|
2925
2913
|
drizzle: "drizzle";
|
|
@@ -2944,87 +2932,13 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2944
2932
|
kinde: "kinde";
|
|
2945
2933
|
passport: "passport";
|
|
2946
2934
|
}>>;
|
|
2947
|
-
|
|
2935
|
+
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2948
2936
|
none: "none";
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
"lemon-squeezy": "lemon-squeezy";
|
|
2953
|
-
paddle: "paddle";
|
|
2954
|
-
paypal: "paypal";
|
|
2955
|
-
dodo: "dodo";
|
|
2956
|
-
creem: "creem";
|
|
2957
|
-
autumn: "autumn";
|
|
2958
|
-
commet: "commet";
|
|
2959
|
-
xendit: "xendit";
|
|
2937
|
+
bun: "bun";
|
|
2938
|
+
node: "node";
|
|
2939
|
+
workers: "workers";
|
|
2960
2940
|
}>>;
|
|
2961
|
-
|
|
2962
|
-
none: "none";
|
|
2963
|
-
pwa: "pwa";
|
|
2964
|
-
tauri: "tauri";
|
|
2965
|
-
starlight: "starlight";
|
|
2966
|
-
biome: "biome";
|
|
2967
|
-
lefthook: "lefthook";
|
|
2968
|
-
husky: "husky";
|
|
2969
|
-
knip: "knip";
|
|
2970
|
-
gitleaks: "gitleaks";
|
|
2971
|
-
ruler: "ruler";
|
|
2972
|
-
mcp: "mcp";
|
|
2973
|
-
skills: "skills";
|
|
2974
|
-
turborepo: "turborepo";
|
|
2975
|
-
nx: "nx";
|
|
2976
|
-
"vite-plus": "vite-plus";
|
|
2977
|
-
fumadocs: "fumadocs";
|
|
2978
|
-
ultracite: "ultracite";
|
|
2979
|
-
oxlint: "oxlint";
|
|
2980
|
-
opentui: "opentui";
|
|
2981
|
-
wxt: "wxt";
|
|
2982
|
-
msw: "msw";
|
|
2983
|
-
storybook: "storybook";
|
|
2984
|
-
swr: "swr";
|
|
2985
|
-
"tanstack-query": "tanstack-query";
|
|
2986
|
-
"tanstack-table": "tanstack-table";
|
|
2987
|
-
"tanstack-virtual": "tanstack-virtual";
|
|
2988
|
-
"tanstack-db": "tanstack-db";
|
|
2989
|
-
"tanstack-pacer": "tanstack-pacer";
|
|
2990
|
-
"backend-utils": "backend-utils";
|
|
2991
|
-
devcontainer: "devcontainer";
|
|
2992
|
-
"docker-compose": "docker-compose";
|
|
2993
|
-
kong: "kong";
|
|
2994
|
-
"github-actions": "github-actions";
|
|
2995
|
-
eslint: "eslint";
|
|
2996
|
-
prettier: "prettier";
|
|
2997
|
-
axios: "axios";
|
|
2998
|
-
firebase: "firebase";
|
|
2999
|
-
"graphql-codegen": "graphql-codegen";
|
|
3000
|
-
"openapi-typescript": "openapi-typescript";
|
|
3001
|
-
"apollo-client": "apollo-client";
|
|
3002
|
-
electron: "electron";
|
|
3003
|
-
capacitor: "capacitor";
|
|
3004
|
-
}>>>;
|
|
3005
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3006
|
-
none: "none";
|
|
3007
|
-
ai: "ai";
|
|
3008
|
-
"chat-sdk": "chat-sdk";
|
|
3009
|
-
"tanstack-showcase": "tanstack-showcase";
|
|
3010
|
-
}>>>;
|
|
3011
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
3012
|
-
bun: "bun";
|
|
3013
|
-
npm: "npm";
|
|
3014
|
-
pnpm: "pnpm";
|
|
3015
|
-
yarn: "yarn";
|
|
3016
|
-
}>>;
|
|
3017
|
-
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3018
|
-
monorepo: "monorepo";
|
|
3019
|
-
"single-app": "single-app";
|
|
3020
|
-
}>>;
|
|
3021
|
-
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
3022
|
-
stable: "stable";
|
|
3023
|
-
latest: "latest";
|
|
3024
|
-
beta: "beta";
|
|
3025
|
-
}>>;
|
|
3026
|
-
install: z.ZodOptional<z.ZodBoolean>;
|
|
3027
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2941
|
+
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
3028
2942
|
none: "none";
|
|
3029
2943
|
turso: "turso";
|
|
3030
2944
|
neon: "neon";
|
|
@@ -3036,50 +2950,90 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3036
2950
|
d1: "d1";
|
|
3037
2951
|
docker: "docker";
|
|
3038
2952
|
}>>;
|
|
3039
|
-
|
|
2953
|
+
realtime: z.ZodOptional<z.ZodEnum<{
|
|
3040
2954
|
none: "none";
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
2955
|
+
"socket-io": "socket-io";
|
|
2956
|
+
ws: "ws";
|
|
2957
|
+
partykit: "partykit";
|
|
2958
|
+
ably: "ably";
|
|
2959
|
+
pusher: "pusher";
|
|
2960
|
+
liveblocks: "liveblocks";
|
|
2961
|
+
yjs: "yjs";
|
|
3044
2962
|
}>>;
|
|
3045
|
-
|
|
2963
|
+
caching: z.ZodOptional<z.ZodEnum<{
|
|
3046
2964
|
none: "none";
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
"ts-rest": "ts-rest";
|
|
3050
|
-
garph: "garph";
|
|
3051
|
-
"graphql-yoga": "graphql-yoga";
|
|
3052
|
-
"apollo-server": "apollo-server";
|
|
3053
|
-
openapi: "openapi";
|
|
2965
|
+
redis: "redis";
|
|
2966
|
+
"upstash-redis": "upstash-redis";
|
|
3054
2967
|
}>>;
|
|
3055
|
-
|
|
2968
|
+
observability: z.ZodOptional<z.ZodEnum<{
|
|
3056
2969
|
none: "none";
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
vercel: "vercel";
|
|
2970
|
+
opentelemetry: "opentelemetry";
|
|
2971
|
+
signoz: "signoz";
|
|
2972
|
+
sentry: "sentry";
|
|
2973
|
+
grafana: "grafana";
|
|
2974
|
+
datadog: "datadog";
|
|
2975
|
+
axiom: "axiom";
|
|
2976
|
+
betterstack: "betterstack";
|
|
3065
2977
|
}>>;
|
|
3066
|
-
|
|
2978
|
+
email: z.ZodOptional<z.ZodEnum<{
|
|
3067
2979
|
none: "none";
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
2980
|
+
"react-email": "react-email";
|
|
2981
|
+
resend: "resend";
|
|
2982
|
+
nodemailer: "nodemailer";
|
|
2983
|
+
postmark: "postmark";
|
|
2984
|
+
sendgrid: "sendgrid";
|
|
2985
|
+
"aws-ses": "aws-ses";
|
|
2986
|
+
mailgun: "mailgun";
|
|
2987
|
+
plunk: "plunk";
|
|
3076
2988
|
}>>;
|
|
3077
|
-
|
|
2989
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
3078
2990
|
none: "none";
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
2991
|
+
meilisearch: "meilisearch";
|
|
2992
|
+
typesense: "typesense";
|
|
2993
|
+
elasticsearch: "elasticsearch";
|
|
2994
|
+
opensearch: "opensearch";
|
|
2995
|
+
algolia: "algolia";
|
|
2996
|
+
bleve: "bleve";
|
|
2997
|
+
}>>;
|
|
2998
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2999
|
+
none: "none";
|
|
3000
|
+
pgvector: "pgvector";
|
|
3001
|
+
qdrant: "qdrant";
|
|
3002
|
+
chroma: "chroma";
|
|
3003
|
+
pinecone: "pinecone";
|
|
3004
|
+
}>>;
|
|
3005
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
3006
|
+
none: "none";
|
|
3007
|
+
s3: "s3";
|
|
3008
|
+
r2: "r2";
|
|
3009
|
+
cloudinary: "cloudinary";
|
|
3010
|
+
"supabase-storage": "supabase-storage";
|
|
3011
|
+
}>>;
|
|
3012
|
+
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
3013
|
+
none: "none";
|
|
3014
|
+
bullmq: "bullmq";
|
|
3015
|
+
"trigger-dev": "trigger-dev";
|
|
3016
|
+
inngest: "inngest";
|
|
3017
|
+
temporal: "temporal";
|
|
3018
|
+
}>>;
|
|
3019
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
3020
|
+
none: "none";
|
|
3021
|
+
arcjet: "arcjet";
|
|
3022
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
3023
|
+
}>>;
|
|
3024
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
3025
|
+
none: "none";
|
|
3026
|
+
botid: "botid";
|
|
3027
|
+
turnstile: "turnstile";
|
|
3028
|
+
}>>;
|
|
3029
|
+
testing: z.ZodOptional<z.ZodEnum<{
|
|
3030
|
+
none: "none";
|
|
3031
|
+
vitest: "vitest";
|
|
3032
|
+
playwright: "playwright";
|
|
3033
|
+
"vitest-playwright": "vitest-playwright";
|
|
3034
|
+
jest: "jest";
|
|
3035
|
+
mocha: "mocha";
|
|
3036
|
+
cypress: "cypress";
|
|
3083
3037
|
}>>;
|
|
3084
3038
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
3085
3039
|
none: "none";
|
|
@@ -3102,50 +3056,137 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3102
3056
|
conform: "conform";
|
|
3103
3057
|
"modular-forms": "modular-forms";
|
|
3104
3058
|
}>>;
|
|
3105
|
-
|
|
3059
|
+
animation: z.ZodOptional<z.ZodEnum<{
|
|
3106
3060
|
none: "none";
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
"
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
cypress: "cypress";
|
|
3061
|
+
"framer-motion": "framer-motion";
|
|
3062
|
+
gsap: "gsap";
|
|
3063
|
+
"react-spring": "react-spring";
|
|
3064
|
+
"auto-animate": "auto-animate";
|
|
3065
|
+
lottie: "lottie";
|
|
3113
3066
|
}>>;
|
|
3114
|
-
|
|
3067
|
+
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
3115
3068
|
none: "none";
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
postmark: "postmark";
|
|
3120
|
-
sendgrid: "sendgrid";
|
|
3121
|
-
"aws-ses": "aws-ses";
|
|
3122
|
-
mailgun: "mailgun";
|
|
3123
|
-
plunk: "plunk";
|
|
3069
|
+
uploadthing: "uploadthing";
|
|
3070
|
+
filepond: "filepond";
|
|
3071
|
+
uppy: "uppy";
|
|
3124
3072
|
}>>;
|
|
3125
|
-
|
|
3073
|
+
validation: z.ZodOptional<z.ZodEnum<{
|
|
3126
3074
|
none: "none";
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3075
|
+
zod: "zod";
|
|
3076
|
+
valibot: "valibot";
|
|
3077
|
+
arktype: "arktype";
|
|
3078
|
+
typebox: "typebox";
|
|
3079
|
+
typia: "typia";
|
|
3080
|
+
runtypes: "runtypes";
|
|
3081
|
+
"effect-schema": "effect-schema";
|
|
3132
3082
|
}>>;
|
|
3133
|
-
|
|
3083
|
+
effect: z.ZodOptional<z.ZodEnum<{
|
|
3084
|
+
effect: "effect";
|
|
3134
3085
|
none: "none";
|
|
3135
|
-
"
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
"
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
"
|
|
3147
|
-
|
|
3148
|
-
|
|
3086
|
+
"effect-full": "effect-full";
|
|
3087
|
+
}>>;
|
|
3088
|
+
ai: z.ZodOptional<z.ZodEnum<{
|
|
3089
|
+
none: "none";
|
|
3090
|
+
"vercel-ai": "vercel-ai";
|
|
3091
|
+
mastra: "mastra";
|
|
3092
|
+
voltagent: "voltagent";
|
|
3093
|
+
langgraph: "langgraph";
|
|
3094
|
+
"openai-agents": "openai-agents";
|
|
3095
|
+
"openai-sdk": "openai-sdk";
|
|
3096
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
3097
|
+
"google-adk": "google-adk";
|
|
3098
|
+
modelfusion: "modelfusion";
|
|
3099
|
+
langchain: "langchain";
|
|
3100
|
+
llamaindex: "llamaindex";
|
|
3101
|
+
"tanstack-ai": "tanstack-ai";
|
|
3102
|
+
"ai-cli": "ai-cli";
|
|
3103
|
+
}>>;
|
|
3104
|
+
payments: z.ZodOptional<z.ZodEnum<{
|
|
3105
|
+
none: "none";
|
|
3106
|
+
revenuecat: "revenuecat";
|
|
3107
|
+
polar: "polar";
|
|
3108
|
+
stripe: "stripe";
|
|
3109
|
+
"lemon-squeezy": "lemon-squeezy";
|
|
3110
|
+
paddle: "paddle";
|
|
3111
|
+
paypal: "paypal";
|
|
3112
|
+
dodo: "dodo";
|
|
3113
|
+
creem: "creem";
|
|
3114
|
+
autumn: "autumn";
|
|
3115
|
+
commet: "commet";
|
|
3116
|
+
xendit: "xendit";
|
|
3117
|
+
}>>;
|
|
3118
|
+
logging: z.ZodOptional<z.ZodEnum<{
|
|
3119
|
+
none: "none";
|
|
3120
|
+
pino: "pino";
|
|
3121
|
+
winston: "winston";
|
|
3122
|
+
evlog: "evlog";
|
|
3123
|
+
}>>;
|
|
3124
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3125
|
+
none: "none";
|
|
3126
|
+
growthbook: "growthbook";
|
|
3127
|
+
posthog: "posthog";
|
|
3128
|
+
launchdarkly: "launchdarkly";
|
|
3129
|
+
flagsmith: "flagsmith";
|
|
3130
|
+
unleash: "unleash";
|
|
3131
|
+
}>>;
|
|
3132
|
+
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3133
|
+
none: "none";
|
|
3134
|
+
nango: "nango";
|
|
3135
|
+
}>>;
|
|
3136
|
+
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3137
|
+
none: "none";
|
|
3138
|
+
medusa: "medusa";
|
|
3139
|
+
}>>;
|
|
3140
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3141
|
+
none: "none";
|
|
3142
|
+
posthog: "posthog";
|
|
3143
|
+
plausible: "plausible";
|
|
3144
|
+
umami: "umami";
|
|
3145
|
+
ga4: "ga4";
|
|
3146
|
+
"vercel-analytics": "vercel-analytics";
|
|
3147
|
+
}>>;
|
|
3148
|
+
webMcp: z.ZodOptional<z.ZodEnum<{
|
|
3149
|
+
none: "none";
|
|
3150
|
+
enabled: "enabled";
|
|
3151
|
+
}>>;
|
|
3152
|
+
cms: z.ZodOptional<z.ZodEnum<{
|
|
3153
|
+
none: "none";
|
|
3154
|
+
payload: "payload";
|
|
3155
|
+
sanity: "sanity";
|
|
3156
|
+
strapi: "strapi";
|
|
3157
|
+
tinacms: "tinacms";
|
|
3158
|
+
directus: "directus";
|
|
3159
|
+
keystatic: "keystatic";
|
|
3160
|
+
contentful: "contentful";
|
|
3161
|
+
}>>;
|
|
3162
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3163
|
+
none: "none";
|
|
3164
|
+
paraglide: "paraglide";
|
|
3165
|
+
i18next: "i18next";
|
|
3166
|
+
"next-intl": "next-intl";
|
|
3167
|
+
intlayer: "intlayer";
|
|
3168
|
+
}>>;
|
|
3169
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3170
|
+
ai: "ai";
|
|
3171
|
+
none: "none";
|
|
3172
|
+
"chat-sdk": "chat-sdk";
|
|
3173
|
+
"tanstack-showcase": "tanstack-showcase";
|
|
3174
|
+
}>>>;
|
|
3175
|
+
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
3176
|
+
bun: "bun";
|
|
3177
|
+
npm: "npm";
|
|
3178
|
+
pnpm: "pnpm";
|
|
3179
|
+
yarn: "yarn";
|
|
3180
|
+
}>>;
|
|
3181
|
+
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
3182
|
+
typescript: "typescript";
|
|
3183
|
+
"react-native": "react-native";
|
|
3184
|
+
rust: "rust";
|
|
3185
|
+
python: "python";
|
|
3186
|
+
go: "go";
|
|
3187
|
+
java: "java";
|
|
3188
|
+
elixir: "elixir";
|
|
3189
|
+
dotnet: "dotnet";
|
|
3149
3190
|
}>>;
|
|
3150
3191
|
shadcnBase: z.ZodOptional<z.ZodEnum<{
|
|
3151
3192
|
radix: "radix";
|
|
@@ -3213,147 +3254,120 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3213
3254
|
"geist-mono": "geist-mono";
|
|
3214
3255
|
}>>;
|
|
3215
3256
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3216
|
-
none: "none";
|
|
3217
3257
|
default: "default";
|
|
3258
|
+
none: "none";
|
|
3218
3259
|
small: "small";
|
|
3219
3260
|
medium: "medium";
|
|
3220
3261
|
large: "large";
|
|
3221
3262
|
}>>;
|
|
3222
|
-
|
|
3223
|
-
none: "none";
|
|
3224
|
-
zod: "zod";
|
|
3225
|
-
valibot: "valibot";
|
|
3226
|
-
arktype: "arktype";
|
|
3227
|
-
typebox: "typebox";
|
|
3228
|
-
typia: "typia";
|
|
3229
|
-
runtypes: "runtypes";
|
|
3230
|
-
"effect-schema": "effect-schema";
|
|
3231
|
-
}>>;
|
|
3232
|
-
realtime: z.ZodOptional<z.ZodEnum<{
|
|
3233
|
-
none: "none";
|
|
3234
|
-
"socket-io": "socket-io";
|
|
3235
|
-
ws: "ws";
|
|
3236
|
-
partykit: "partykit";
|
|
3237
|
-
ably: "ably";
|
|
3238
|
-
pusher: "pusher";
|
|
3239
|
-
liveblocks: "liveblocks";
|
|
3240
|
-
yjs: "yjs";
|
|
3241
|
-
}>>;
|
|
3242
|
-
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
3243
|
-
none: "none";
|
|
3244
|
-
bullmq: "bullmq";
|
|
3245
|
-
"trigger-dev": "trigger-dev";
|
|
3246
|
-
inngest: "inngest";
|
|
3247
|
-
temporal: "temporal";
|
|
3248
|
-
}>>;
|
|
3249
|
-
animation: z.ZodOptional<z.ZodEnum<{
|
|
3250
|
-
none: "none";
|
|
3251
|
-
"framer-motion": "framer-motion";
|
|
3252
|
-
gsap: "gsap";
|
|
3253
|
-
"react-spring": "react-spring";
|
|
3254
|
-
"auto-animate": "auto-animate";
|
|
3255
|
-
lottie: "lottie";
|
|
3256
|
-
}>>;
|
|
3257
|
-
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
3258
|
-
none: "none";
|
|
3259
|
-
uploadthing: "uploadthing";
|
|
3260
|
-
filepond: "filepond";
|
|
3261
|
-
uppy: "uppy";
|
|
3262
|
-
}>>;
|
|
3263
|
-
logging: z.ZodOptional<z.ZodEnum<{
|
|
3264
|
-
none: "none";
|
|
3265
|
-
pino: "pino";
|
|
3266
|
-
winston: "winston";
|
|
3267
|
-
evlog: "evlog";
|
|
3268
|
-
}>>;
|
|
3269
|
-
observability: z.ZodOptional<z.ZodEnum<{
|
|
3270
|
-
none: "none";
|
|
3271
|
-
opentelemetry: "opentelemetry";
|
|
3272
|
-
signoz: "signoz";
|
|
3273
|
-
sentry: "sentry";
|
|
3274
|
-
grafana: "grafana";
|
|
3275
|
-
datadog: "datadog";
|
|
3276
|
-
axiom: "axiom";
|
|
3277
|
-
betterstack: "betterstack";
|
|
3278
|
-
}>>;
|
|
3279
|
-
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3280
|
-
none: "none";
|
|
3281
|
-
growthbook: "growthbook";
|
|
3282
|
-
posthog: "posthog";
|
|
3283
|
-
launchdarkly: "launchdarkly";
|
|
3284
|
-
flagsmith: "flagsmith";
|
|
3285
|
-
unleash: "unleash";
|
|
3286
|
-
}>>;
|
|
3287
|
-
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3288
|
-
none: "none";
|
|
3289
|
-
nango: "nango";
|
|
3290
|
-
}>>;
|
|
3291
|
-
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3292
|
-
none: "none";
|
|
3293
|
-
medusa: "medusa";
|
|
3294
|
-
}>>;
|
|
3295
|
-
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3296
|
-
none: "none";
|
|
3297
|
-
posthog: "posthog";
|
|
3298
|
-
plausible: "plausible";
|
|
3299
|
-
umami: "umami";
|
|
3300
|
-
ga4: "ga4";
|
|
3301
|
-
"vercel-analytics": "vercel-analytics";
|
|
3302
|
-
}>>;
|
|
3303
|
-
cms: z.ZodOptional<z.ZodEnum<{
|
|
3304
|
-
none: "none";
|
|
3305
|
-
payload: "payload";
|
|
3306
|
-
sanity: "sanity";
|
|
3307
|
-
strapi: "strapi";
|
|
3308
|
-
tinacms: "tinacms";
|
|
3309
|
-
directus: "directus";
|
|
3310
|
-
keystatic: "keystatic";
|
|
3311
|
-
contentful: "contentful";
|
|
3312
|
-
}>>;
|
|
3313
|
-
caching: z.ZodOptional<z.ZodEnum<{
|
|
3263
|
+
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3314
3264
|
none: "none";
|
|
3315
|
-
|
|
3316
|
-
|
|
3265
|
+
vue: "vue";
|
|
3266
|
+
svelte: "svelte";
|
|
3267
|
+
solid: "solid";
|
|
3268
|
+
react: "react";
|
|
3317
3269
|
}>>;
|
|
3318
|
-
|
|
3270
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
3271
|
+
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3319
3272
|
none: "none";
|
|
3320
|
-
|
|
3321
|
-
|
|
3273
|
+
pwa: "pwa";
|
|
3274
|
+
tauri: "tauri";
|
|
3275
|
+
starlight: "starlight";
|
|
3276
|
+
biome: "biome";
|
|
3277
|
+
lefthook: "lefthook";
|
|
3278
|
+
husky: "husky";
|
|
3279
|
+
knip: "knip";
|
|
3280
|
+
gitleaks: "gitleaks";
|
|
3281
|
+
ruler: "ruler";
|
|
3282
|
+
mcp: "mcp";
|
|
3283
|
+
skills: "skills";
|
|
3284
|
+
turborepo: "turborepo";
|
|
3285
|
+
nx: "nx";
|
|
3286
|
+
"vite-plus": "vite-plus";
|
|
3287
|
+
fumadocs: "fumadocs";
|
|
3288
|
+
ultracite: "ultracite";
|
|
3289
|
+
oxlint: "oxlint";
|
|
3290
|
+
opentui: "opentui";
|
|
3291
|
+
wxt: "wxt";
|
|
3292
|
+
msw: "msw";
|
|
3293
|
+
storybook: "storybook";
|
|
3294
|
+
swr: "swr";
|
|
3295
|
+
"tanstack-query": "tanstack-query";
|
|
3296
|
+
"tanstack-table": "tanstack-table";
|
|
3297
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
3298
|
+
"tanstack-db": "tanstack-db";
|
|
3299
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
3300
|
+
"backend-utils": "backend-utils";
|
|
3301
|
+
devcontainer: "devcontainer";
|
|
3302
|
+
"docker-compose": "docker-compose";
|
|
3303
|
+
kong: "kong";
|
|
3304
|
+
"github-actions": "github-actions";
|
|
3305
|
+
eslint: "eslint";
|
|
3306
|
+
prettier: "prettier";
|
|
3307
|
+
axios: "axios";
|
|
3308
|
+
firebase: "firebase";
|
|
3309
|
+
"graphql-codegen": "graphql-codegen";
|
|
3310
|
+
"openapi-typescript": "openapi-typescript";
|
|
3311
|
+
"apollo-client": "apollo-client";
|
|
3312
|
+
electron: "electron";
|
|
3313
|
+
capacitor: "capacitor";
|
|
3314
|
+
}>>>;
|
|
3315
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3316
|
+
monorepo: "monorepo";
|
|
3317
|
+
"single-app": "single-app";
|
|
3322
3318
|
}>>;
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3319
|
+
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
3320
|
+
stable: "stable";
|
|
3321
|
+
latest: "latest";
|
|
3322
|
+
beta: "beta";
|
|
3327
3323
|
}>>;
|
|
3328
|
-
|
|
3324
|
+
install: z.ZodOptional<z.ZodBoolean>;
|
|
3325
|
+
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
3329
3326
|
none: "none";
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3327
|
+
docker: "docker";
|
|
3328
|
+
cloudflare: "cloudflare";
|
|
3329
|
+
fly: "fly";
|
|
3330
|
+
railway: "railway";
|
|
3331
|
+
render: "render";
|
|
3332
|
+
netlify: "netlify";
|
|
3333
|
+
sst: "sst";
|
|
3334
|
+
vercel: "vercel";
|
|
3334
3335
|
}>>;
|
|
3335
|
-
|
|
3336
|
+
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
3336
3337
|
none: "none";
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3338
|
+
docker: "docker";
|
|
3339
|
+
cloudflare: "cloudflare";
|
|
3340
|
+
fly: "fly";
|
|
3341
|
+
railway: "railway";
|
|
3342
|
+
render: "render";
|
|
3343
|
+
netlify: "netlify";
|
|
3344
|
+
sst: "sst";
|
|
3345
|
+
vercel: "vercel";
|
|
3343
3346
|
}>>;
|
|
3344
|
-
|
|
3347
|
+
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
3345
3348
|
none: "none";
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3349
|
+
tailwind: "tailwind";
|
|
3350
|
+
scss: "scss";
|
|
3351
|
+
less: "less";
|
|
3352
|
+
"postcss-only": "postcss-only";
|
|
3353
|
+
"styled-components": "styled-components";
|
|
3350
3354
|
}>>;
|
|
3351
|
-
|
|
3355
|
+
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
3352
3356
|
none: "none";
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
"
|
|
3357
|
+
"shadcn-ui": "shadcn-ui";
|
|
3358
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
3359
|
+
daisyui: "daisyui";
|
|
3360
|
+
"radix-ui": "radix-ui";
|
|
3361
|
+
"headless-ui": "headless-ui";
|
|
3362
|
+
"park-ui": "park-ui";
|
|
3363
|
+
"chakra-ui": "chakra-ui";
|
|
3364
|
+
nextui: "nextui";
|
|
3365
|
+
mantine: "mantine";
|
|
3366
|
+
mui: "mui";
|
|
3367
|
+
antd: "antd";
|
|
3368
|
+
"base-ui": "base-ui";
|
|
3369
|
+
"ark-ui": "ark-ui";
|
|
3370
|
+
"react-aria": "react-aria";
|
|
3357
3371
|
}>>;
|
|
3358
3372
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
3359
3373
|
none: "none";
|
|
@@ -3362,9 +3376,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3362
3376
|
}>>;
|
|
3363
3377
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
3364
3378
|
none: "none";
|
|
3365
|
-
uniwind: "uniwind";
|
|
3366
3379
|
tamagui: "tamagui";
|
|
3367
3380
|
"gluestack-ui": "gluestack-ui";
|
|
3381
|
+
uniwind: "uniwind";
|
|
3368
3382
|
unistyles: "unistyles";
|
|
3369
3383
|
}>>;
|
|
3370
3384
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3480,12 +3494,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3480
3494
|
ratatui: "ratatui";
|
|
3481
3495
|
}>>;
|
|
3482
3496
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3497
|
+
config: "config";
|
|
3483
3498
|
none: "none";
|
|
3484
3499
|
serde: "serde";
|
|
3485
3500
|
uuid: "uuid";
|
|
3486
3501
|
chrono: "chrono";
|
|
3487
3502
|
reqwest: "reqwest";
|
|
3488
|
-
config: "config";
|
|
3489
3503
|
dashmap: "dashmap";
|
|
3490
3504
|
"parking-lot": "parking-lot";
|
|
3491
3505
|
secrecy: "secrecy";
|
|
@@ -4102,17 +4116,17 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4102
4116
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4103
4117
|
template: z.ZodOptional<z.ZodEnum<{
|
|
4104
4118
|
none: "none";
|
|
4119
|
+
uniwind: "uniwind";
|
|
4105
4120
|
mern: "mern";
|
|
4106
4121
|
pern: "pern";
|
|
4107
4122
|
t3: "t3";
|
|
4108
4123
|
saas: "saas";
|
|
4109
|
-
uniwind: "uniwind";
|
|
4110
4124
|
}>>;
|
|
4111
4125
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
4112
|
-
fullstack: "fullstack";
|
|
4113
4126
|
frontend: "frontend";
|
|
4114
4127
|
backend: "backend";
|
|
4115
4128
|
mobile: "mobile";
|
|
4129
|
+
fullstack: "fullstack";
|
|
4116
4130
|
}>>;
|
|
4117
4131
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
4118
4132
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4244,8 +4258,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4244
4258
|
capacitor: "capacitor";
|
|
4245
4259
|
}>>>;
|
|
4246
4260
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4247
|
-
none: "none";
|
|
4248
4261
|
ai: "ai";
|
|
4262
|
+
none: "none";
|
|
4249
4263
|
"chat-sdk": "chat-sdk";
|
|
4250
4264
|
"tanstack-showcase": "tanstack-showcase";
|
|
4251
4265
|
}>>>;
|
|
@@ -4279,13 +4293,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4279
4293
|
docker: "docker";
|
|
4280
4294
|
}>>;
|
|
4281
4295
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
4296
|
+
effect: "effect";
|
|
4282
4297
|
none: "none";
|
|
4283
4298
|
hono: "hono";
|
|
4284
4299
|
express: "express";
|
|
4285
4300
|
fastify: "fastify";
|
|
4286
4301
|
elysia: "elysia";
|
|
4287
4302
|
fets: "fets";
|
|
4288
|
-
effect: "effect";
|
|
4289
4303
|
nestjs: "nestjs";
|
|
4290
4304
|
adonisjs: "adonisjs";
|
|
4291
4305
|
nitro: "nitro";
|
|
@@ -4332,10 +4346,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4332
4346
|
vercel: "vercel";
|
|
4333
4347
|
}>>;
|
|
4334
4348
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
4349
|
+
error: "error";
|
|
4335
4350
|
merge: "merge";
|
|
4336
4351
|
overwrite: "overwrite";
|
|
4337
4352
|
increment: "increment";
|
|
4338
|
-
error: "error";
|
|
4339
4353
|
}>>;
|
|
4340
4354
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
4341
4355
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4364,8 +4378,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4364
4378
|
"ai-cli": "ai-cli";
|
|
4365
4379
|
}>>;
|
|
4366
4380
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
4367
|
-
none: "none";
|
|
4368
4381
|
effect: "effect";
|
|
4382
|
+
none: "none";
|
|
4369
4383
|
"effect-full": "effect-full";
|
|
4370
4384
|
}>>;
|
|
4371
4385
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4500,8 +4514,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4500
4514
|
"geist-mono": "geist-mono";
|
|
4501
4515
|
}>>;
|
|
4502
4516
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4503
|
-
none: "none";
|
|
4504
4517
|
default: "default";
|
|
4518
|
+
none: "none";
|
|
4505
4519
|
small: "small";
|
|
4506
4520
|
medium: "medium";
|
|
4507
4521
|
large: "large";
|
|
@@ -4587,6 +4601,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4587
4601
|
ga4: "ga4";
|
|
4588
4602
|
"vercel-analytics": "vercel-analytics";
|
|
4589
4603
|
}>>;
|
|
4604
|
+
webMcp: z.ZodOptional<z.ZodEnum<{
|
|
4605
|
+
none: "none";
|
|
4606
|
+
enabled: "enabled";
|
|
4607
|
+
}>>;
|
|
4590
4608
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
4591
4609
|
none: "none";
|
|
4592
4610
|
payload: "payload";
|
|
@@ -4649,9 +4667,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4649
4667
|
}>>;
|
|
4650
4668
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
4651
4669
|
none: "none";
|
|
4652
|
-
uniwind: "uniwind";
|
|
4653
4670
|
tamagui: "tamagui";
|
|
4654
4671
|
"gluestack-ui": "gluestack-ui";
|
|
4672
|
+
uniwind: "uniwind";
|
|
4655
4673
|
unistyles: "unistyles";
|
|
4656
4674
|
}>>;
|
|
4657
4675
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4767,12 +4785,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4767
4785
|
ratatui: "ratatui";
|
|
4768
4786
|
}>>;
|
|
4769
4787
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4788
|
+
config: "config";
|
|
4770
4789
|
none: "none";
|
|
4771
4790
|
serde: "serde";
|
|
4772
4791
|
uuid: "uuid";
|
|
4773
4792
|
chrono: "chrono";
|
|
4774
4793
|
reqwest: "reqwest";
|
|
4775
|
-
config: "config";
|
|
4776
4794
|
dashmap: "dashmap";
|
|
4777
4795
|
"parking-lot": "parking-lot";
|
|
4778
4796
|
secrecy: "secrecy";
|
|
@@ -5418,13 +5436,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5418
5436
|
sequelize: "sequelize";
|
|
5419
5437
|
}>;
|
|
5420
5438
|
backend: z.ZodEnum<{
|
|
5439
|
+
effect: "effect";
|
|
5421
5440
|
none: "none";
|
|
5422
5441
|
hono: "hono";
|
|
5423
5442
|
express: "express";
|
|
5424
5443
|
fastify: "fastify";
|
|
5425
5444
|
elysia: "elysia";
|
|
5426
5445
|
fets: "fets";
|
|
5427
|
-
effect: "effect";
|
|
5428
5446
|
nestjs: "nestjs";
|
|
5429
5447
|
adonisjs: "adonisjs";
|
|
5430
5448
|
nitro: "nitro";
|
|
@@ -5506,8 +5524,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5506
5524
|
capacitor: "capacitor";
|
|
5507
5525
|
}>>;
|
|
5508
5526
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5509
|
-
none: "none";
|
|
5510
5527
|
ai: "ai";
|
|
5528
|
+
none: "none";
|
|
5511
5529
|
"chat-sdk": "chat-sdk";
|
|
5512
5530
|
"tanstack-showcase": "tanstack-showcase";
|
|
5513
5531
|
}>>;
|
|
@@ -5624,8 +5642,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5624
5642
|
"ai-cli": "ai-cli";
|
|
5625
5643
|
}>;
|
|
5626
5644
|
effect: z.ZodEnum<{
|
|
5627
|
-
none: "none";
|
|
5628
5645
|
effect: "effect";
|
|
5646
|
+
none: "none";
|
|
5629
5647
|
"effect-full": "effect-full";
|
|
5630
5648
|
}>;
|
|
5631
5649
|
stateManagement: z.ZodEnum<{
|
|
@@ -5760,8 +5778,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5760
5778
|
"geist-mono": "geist-mono";
|
|
5761
5779
|
}>>;
|
|
5762
5780
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5763
|
-
none: "none";
|
|
5764
5781
|
default: "default";
|
|
5782
|
+
none: "none";
|
|
5765
5783
|
small: "small";
|
|
5766
5784
|
medium: "medium";
|
|
5767
5785
|
large: "large";
|
|
@@ -5847,6 +5865,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5847
5865
|
ga4: "ga4";
|
|
5848
5866
|
"vercel-analytics": "vercel-analytics";
|
|
5849
5867
|
}>;
|
|
5868
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
5869
|
+
none: "none";
|
|
5870
|
+
enabled: "enabled";
|
|
5871
|
+
}>>;
|
|
5850
5872
|
cms: z.ZodEnum<{
|
|
5851
5873
|
none: "none";
|
|
5852
5874
|
payload: "payload";
|
|
@@ -5909,9 +5931,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5909
5931
|
}>;
|
|
5910
5932
|
mobileUI: z.ZodEnum<{
|
|
5911
5933
|
none: "none";
|
|
5912
|
-
uniwind: "uniwind";
|
|
5913
5934
|
tamagui: "tamagui";
|
|
5914
5935
|
"gluestack-ui": "gluestack-ui";
|
|
5936
|
+
uniwind: "uniwind";
|
|
5915
5937
|
unistyles: "unistyles";
|
|
5916
5938
|
}>;
|
|
5917
5939
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6027,12 +6049,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6027
6049
|
ratatui: "ratatui";
|
|
6028
6050
|
}>;
|
|
6029
6051
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
6052
|
+
config: "config";
|
|
6030
6053
|
none: "none";
|
|
6031
6054
|
serde: "serde";
|
|
6032
6055
|
uuid: "uuid";
|
|
6033
6056
|
chrono: "chrono";
|
|
6034
6057
|
reqwest: "reqwest";
|
|
6035
|
-
config: "config";
|
|
6036
6058
|
dashmap: "dashmap";
|
|
6037
6059
|
"parking-lot": "parking-lot";
|
|
6038
6060
|
secrecy: "secrecy";
|
|
@@ -6644,54 +6666,52 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6644
6666
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6645
6667
|
id: z.ZodString;
|
|
6646
6668
|
role: z.ZodEnum<{
|
|
6647
|
-
|
|
6648
|
-
ai: "ai";
|
|
6669
|
+
push: "push";
|
|
6649
6670
|
frontend: "frontend";
|
|
6650
6671
|
backend: "backend";
|
|
6651
6672
|
mobile: "mobile";
|
|
6652
6673
|
database: "database";
|
|
6674
|
+
api: "api";
|
|
6675
|
+
graphql: "graphql";
|
|
6653
6676
|
orm: "orm";
|
|
6654
6677
|
auth: "auth";
|
|
6655
|
-
payments: "payments";
|
|
6656
|
-
examples: "examples";
|
|
6657
|
-
packageManager: "packageManager";
|
|
6658
|
-
dbSetup: "dbSetup";
|
|
6659
6678
|
runtime: "runtime";
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
testing: "testing";
|
|
6664
|
-
email: "email";
|
|
6665
|
-
validation: "validation";
|
|
6679
|
+
deploy: "deploy";
|
|
6680
|
+
dbSetup: "dbSetup";
|
|
6681
|
+
migrations: "migrations";
|
|
6666
6682
|
realtime: "realtime";
|
|
6683
|
+
navigation: "navigation";
|
|
6684
|
+
caching: "caching";
|
|
6685
|
+
observability: "observability";
|
|
6686
|
+
email: "email";
|
|
6687
|
+
search: "search";
|
|
6688
|
+
vectorDb: "vectorDb";
|
|
6689
|
+
fileStorage: "fileStorage";
|
|
6667
6690
|
jobQueue: "jobQueue";
|
|
6691
|
+
rateLimit: "rateLimit";
|
|
6692
|
+
botProtection: "botProtection";
|
|
6693
|
+
testing: "testing";
|
|
6694
|
+
stateManagement: "stateManagement";
|
|
6695
|
+
forms: "forms";
|
|
6668
6696
|
animation: "animation";
|
|
6669
6697
|
fileUpload: "fileUpload";
|
|
6698
|
+
validation: "validation";
|
|
6699
|
+
effect: "effect";
|
|
6700
|
+
ui: "ui";
|
|
6701
|
+
css: "css";
|
|
6702
|
+
storage: "storage";
|
|
6703
|
+
ota: "ota";
|
|
6704
|
+
deepLinking: "deepLinking";
|
|
6705
|
+
ai: "ai";
|
|
6706
|
+
payments: "payments";
|
|
6670
6707
|
logging: "logging";
|
|
6671
|
-
observability: "observability";
|
|
6672
6708
|
featureFlags: "featureFlags";
|
|
6673
6709
|
integrations: "integrations";
|
|
6674
6710
|
ecommerce: "ecommerce";
|
|
6675
6711
|
analytics: "analytics";
|
|
6712
|
+
webMcp: "webMcp";
|
|
6676
6713
|
cms: "cms";
|
|
6677
|
-
caching: "caching";
|
|
6678
|
-
rateLimit: "rateLimit";
|
|
6679
|
-
botProtection: "botProtection";
|
|
6680
6714
|
i18n: "i18n";
|
|
6681
|
-
search: "search";
|
|
6682
|
-
vectorDb: "vectorDb";
|
|
6683
|
-
fileStorage: "fileStorage";
|
|
6684
|
-
config: "config";
|
|
6685
|
-
graphql: "graphql";
|
|
6686
|
-
deploy: "deploy";
|
|
6687
|
-
migrations: "migrations";
|
|
6688
|
-
navigation: "navigation";
|
|
6689
|
-
ui: "ui";
|
|
6690
|
-
css: "css";
|
|
6691
|
-
storage: "storage";
|
|
6692
|
-
push: "push";
|
|
6693
|
-
ota: "ota";
|
|
6694
|
-
deepLinking: "deepLinking";
|
|
6695
6715
|
documentation: "documentation";
|
|
6696
6716
|
codeQuality: "codeQuality";
|
|
6697
6717
|
appPlatform: "appPlatform";
|
|
@@ -6708,17 +6728,20 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6708
6728
|
apiGateway: "apiGateway";
|
|
6709
6729
|
continuousIntegration: "continuousIntegration";
|
|
6710
6730
|
backendUtilities: "backendUtilities";
|
|
6731
|
+
examples: "examples";
|
|
6711
6732
|
language: "language";
|
|
6712
6733
|
buildTool: "buildTool";
|
|
6713
6734
|
cli: "cli";
|
|
6714
6735
|
errorHandling: "errorHandling";
|
|
6715
6736
|
httpClient: "httpClient";
|
|
6716
6737
|
libraries: "libraries";
|
|
6738
|
+
config: "config";
|
|
6717
6739
|
templating: "templating";
|
|
6718
6740
|
cloudSdk: "cloudSdk";
|
|
6719
6741
|
data: "data";
|
|
6720
6742
|
media: "media";
|
|
6721
6743
|
server: "server";
|
|
6744
|
+
packageManager: "packageManager";
|
|
6722
6745
|
messageQueue: "messageQueue";
|
|
6723
6746
|
}>;
|
|
6724
6747
|
toolId: z.ZodString;
|
|
@@ -6734,8 +6757,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6734
6757
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
6735
6758
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6736
6759
|
source: z.ZodEnum<{
|
|
6737
|
-
selected: "selected";
|
|
6738
6760
|
defaulted: "defaulted";
|
|
6761
|
+
selected: "selected";
|
|
6739
6762
|
provided: "provided";
|
|
6740
6763
|
legacy: "legacy";
|
|
6741
6764
|
adjusted: "adjusted";
|
|
@@ -6780,13 +6803,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6780
6803
|
sequelize: "sequelize";
|
|
6781
6804
|
}>;
|
|
6782
6805
|
backend: z.ZodEnum<{
|
|
6806
|
+
effect: "effect";
|
|
6783
6807
|
none: "none";
|
|
6784
6808
|
hono: "hono";
|
|
6785
6809
|
express: "express";
|
|
6786
6810
|
fastify: "fastify";
|
|
6787
6811
|
elysia: "elysia";
|
|
6788
6812
|
fets: "fets";
|
|
6789
|
-
effect: "effect";
|
|
6790
6813
|
nestjs: "nestjs";
|
|
6791
6814
|
adonisjs: "adonisjs";
|
|
6792
6815
|
nitro: "nitro";
|
|
@@ -6868,8 +6891,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6868
6891
|
capacitor: "capacitor";
|
|
6869
6892
|
}>>;
|
|
6870
6893
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6871
|
-
none: "none";
|
|
6872
6894
|
ai: "ai";
|
|
6895
|
+
none: "none";
|
|
6873
6896
|
"chat-sdk": "chat-sdk";
|
|
6874
6897
|
"tanstack-showcase": "tanstack-showcase";
|
|
6875
6898
|
}>>;
|
|
@@ -6984,8 +7007,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6984
7007
|
"ai-cli": "ai-cli";
|
|
6985
7008
|
}>;
|
|
6986
7009
|
effect: z.ZodEnum<{
|
|
6987
|
-
none: "none";
|
|
6988
7010
|
effect: "effect";
|
|
7011
|
+
none: "none";
|
|
6989
7012
|
"effect-full": "effect-full";
|
|
6990
7013
|
}>;
|
|
6991
7014
|
stateManagement: z.ZodEnum<{
|
|
@@ -7120,8 +7143,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7120
7143
|
"geist-mono": "geist-mono";
|
|
7121
7144
|
}>>;
|
|
7122
7145
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7123
|
-
none: "none";
|
|
7124
7146
|
default: "default";
|
|
7147
|
+
none: "none";
|
|
7125
7148
|
small: "small";
|
|
7126
7149
|
medium: "medium";
|
|
7127
7150
|
large: "large";
|
|
@@ -7207,6 +7230,10 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7207
7230
|
ga4: "ga4";
|
|
7208
7231
|
"vercel-analytics": "vercel-analytics";
|
|
7209
7232
|
}>;
|
|
7233
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
7234
|
+
none: "none";
|
|
7235
|
+
enabled: "enabled";
|
|
7236
|
+
}>>;
|
|
7210
7237
|
cms: z.ZodEnum<{
|
|
7211
7238
|
none: "none";
|
|
7212
7239
|
payload: "payload";
|
|
@@ -7269,9 +7296,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7269
7296
|
}>;
|
|
7270
7297
|
mobileUI: z.ZodEnum<{
|
|
7271
7298
|
none: "none";
|
|
7272
|
-
uniwind: "uniwind";
|
|
7273
7299
|
tamagui: "tamagui";
|
|
7274
7300
|
"gluestack-ui": "gluestack-ui";
|
|
7301
|
+
uniwind: "uniwind";
|
|
7275
7302
|
unistyles: "unistyles";
|
|
7276
7303
|
}>;
|
|
7277
7304
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7387,12 +7414,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7387
7414
|
ratatui: "ratatui";
|
|
7388
7415
|
}>;
|
|
7389
7416
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7417
|
+
config: "config";
|
|
7390
7418
|
none: "none";
|
|
7391
7419
|
serde: "serde";
|
|
7392
7420
|
uuid: "uuid";
|
|
7393
7421
|
chrono: "chrono";
|
|
7394
7422
|
reqwest: "reqwest";
|
|
7395
|
-
config: "config";
|
|
7396
7423
|
dashmap: "dashmap";
|
|
7397
7424
|
"parking-lot": "parking-lot";
|
|
7398
7425
|
secrecy: "secrecy";
|
|
@@ -8004,54 +8031,52 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
8004
8031
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8005
8032
|
id: z.ZodString;
|
|
8006
8033
|
role: z.ZodEnum<{
|
|
8007
|
-
|
|
8008
|
-
ai: "ai";
|
|
8034
|
+
push: "push";
|
|
8009
8035
|
frontend: "frontend";
|
|
8010
8036
|
backend: "backend";
|
|
8011
8037
|
mobile: "mobile";
|
|
8012
8038
|
database: "database";
|
|
8039
|
+
api: "api";
|
|
8040
|
+
graphql: "graphql";
|
|
8013
8041
|
orm: "orm";
|
|
8014
8042
|
auth: "auth";
|
|
8015
|
-
payments: "payments";
|
|
8016
|
-
examples: "examples";
|
|
8017
|
-
packageManager: "packageManager";
|
|
8018
|
-
dbSetup: "dbSetup";
|
|
8019
8043
|
runtime: "runtime";
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
|
|
8023
|
-
testing: "testing";
|
|
8024
|
-
email: "email";
|
|
8025
|
-
validation: "validation";
|
|
8044
|
+
deploy: "deploy";
|
|
8045
|
+
dbSetup: "dbSetup";
|
|
8046
|
+
migrations: "migrations";
|
|
8026
8047
|
realtime: "realtime";
|
|
8048
|
+
navigation: "navigation";
|
|
8049
|
+
caching: "caching";
|
|
8050
|
+
observability: "observability";
|
|
8051
|
+
email: "email";
|
|
8052
|
+
search: "search";
|
|
8053
|
+
vectorDb: "vectorDb";
|
|
8054
|
+
fileStorage: "fileStorage";
|
|
8027
8055
|
jobQueue: "jobQueue";
|
|
8056
|
+
rateLimit: "rateLimit";
|
|
8057
|
+
botProtection: "botProtection";
|
|
8058
|
+
testing: "testing";
|
|
8059
|
+
stateManagement: "stateManagement";
|
|
8060
|
+
forms: "forms";
|
|
8028
8061
|
animation: "animation";
|
|
8029
8062
|
fileUpload: "fileUpload";
|
|
8063
|
+
validation: "validation";
|
|
8064
|
+
effect: "effect";
|
|
8065
|
+
ui: "ui";
|
|
8066
|
+
css: "css";
|
|
8067
|
+
storage: "storage";
|
|
8068
|
+
ota: "ota";
|
|
8069
|
+
deepLinking: "deepLinking";
|
|
8070
|
+
ai: "ai";
|
|
8071
|
+
payments: "payments";
|
|
8030
8072
|
logging: "logging";
|
|
8031
|
-
observability: "observability";
|
|
8032
8073
|
featureFlags: "featureFlags";
|
|
8033
8074
|
integrations: "integrations";
|
|
8034
8075
|
ecommerce: "ecommerce";
|
|
8035
8076
|
analytics: "analytics";
|
|
8077
|
+
webMcp: "webMcp";
|
|
8036
8078
|
cms: "cms";
|
|
8037
|
-
caching: "caching";
|
|
8038
|
-
rateLimit: "rateLimit";
|
|
8039
|
-
botProtection: "botProtection";
|
|
8040
8079
|
i18n: "i18n";
|
|
8041
|
-
search: "search";
|
|
8042
|
-
vectorDb: "vectorDb";
|
|
8043
|
-
fileStorage: "fileStorage";
|
|
8044
|
-
config: "config";
|
|
8045
|
-
graphql: "graphql";
|
|
8046
|
-
deploy: "deploy";
|
|
8047
|
-
migrations: "migrations";
|
|
8048
|
-
navigation: "navigation";
|
|
8049
|
-
ui: "ui";
|
|
8050
|
-
css: "css";
|
|
8051
|
-
storage: "storage";
|
|
8052
|
-
push: "push";
|
|
8053
|
-
ota: "ota";
|
|
8054
|
-
deepLinking: "deepLinking";
|
|
8055
8080
|
documentation: "documentation";
|
|
8056
8081
|
codeQuality: "codeQuality";
|
|
8057
8082
|
appPlatform: "appPlatform";
|
|
@@ -8068,17 +8093,20 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
8068
8093
|
apiGateway: "apiGateway";
|
|
8069
8094
|
continuousIntegration: "continuousIntegration";
|
|
8070
8095
|
backendUtilities: "backendUtilities";
|
|
8096
|
+
examples: "examples";
|
|
8071
8097
|
language: "language";
|
|
8072
8098
|
buildTool: "buildTool";
|
|
8073
8099
|
cli: "cli";
|
|
8074
8100
|
errorHandling: "errorHandling";
|
|
8075
8101
|
httpClient: "httpClient";
|
|
8076
8102
|
libraries: "libraries";
|
|
8103
|
+
config: "config";
|
|
8077
8104
|
templating: "templating";
|
|
8078
8105
|
cloudSdk: "cloudSdk";
|
|
8079
8106
|
data: "data";
|
|
8080
8107
|
media: "media";
|
|
8081
8108
|
server: "server";
|
|
8109
|
+
packageManager: "packageManager";
|
|
8082
8110
|
messageQueue: "messageQueue";
|
|
8083
8111
|
}>;
|
|
8084
8112
|
toolId: z.ZodString;
|
|
@@ -8094,8 +8122,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
8094
8122
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
8095
8123
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
8096
8124
|
source: z.ZodEnum<{
|
|
8097
|
-
selected: "selected";
|
|
8098
8125
|
defaulted: "defaulted";
|
|
8126
|
+
selected: "selected";
|
|
8099
8127
|
provided: "provided";
|
|
8100
8128
|
legacy: "legacy";
|
|
8101
8129
|
adjusted: "adjusted";
|
|
@@ -8140,13 +8168,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8140
8168
|
sequelize: "sequelize";
|
|
8141
8169
|
}>;
|
|
8142
8170
|
backend: z.ZodEnum<{
|
|
8171
|
+
effect: "effect";
|
|
8143
8172
|
none: "none";
|
|
8144
8173
|
hono: "hono";
|
|
8145
8174
|
express: "express";
|
|
8146
8175
|
fastify: "fastify";
|
|
8147
8176
|
elysia: "elysia";
|
|
8148
8177
|
fets: "fets";
|
|
8149
|
-
effect: "effect";
|
|
8150
8178
|
nestjs: "nestjs";
|
|
8151
8179
|
adonisjs: "adonisjs";
|
|
8152
8180
|
nitro: "nitro";
|
|
@@ -8228,8 +8256,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8228
8256
|
capacitor: "capacitor";
|
|
8229
8257
|
}>>;
|
|
8230
8258
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8231
|
-
none: "none";
|
|
8232
8259
|
ai: "ai";
|
|
8260
|
+
none: "none";
|
|
8233
8261
|
"chat-sdk": "chat-sdk";
|
|
8234
8262
|
"tanstack-showcase": "tanstack-showcase";
|
|
8235
8263
|
}>>;
|
|
@@ -8344,8 +8372,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8344
8372
|
"ai-cli": "ai-cli";
|
|
8345
8373
|
}>;
|
|
8346
8374
|
effect: z.ZodEnum<{
|
|
8347
|
-
none: "none";
|
|
8348
8375
|
effect: "effect";
|
|
8376
|
+
none: "none";
|
|
8349
8377
|
"effect-full": "effect-full";
|
|
8350
8378
|
}>;
|
|
8351
8379
|
stateManagement: z.ZodEnum<{
|
|
@@ -8480,8 +8508,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8480
8508
|
"geist-mono": "geist-mono";
|
|
8481
8509
|
}>>;
|
|
8482
8510
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8483
|
-
none: "none";
|
|
8484
8511
|
default: "default";
|
|
8512
|
+
none: "none";
|
|
8485
8513
|
small: "small";
|
|
8486
8514
|
medium: "medium";
|
|
8487
8515
|
large: "large";
|
|
@@ -8567,6 +8595,10 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8567
8595
|
ga4: "ga4";
|
|
8568
8596
|
"vercel-analytics": "vercel-analytics";
|
|
8569
8597
|
}>;
|
|
8598
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
8599
|
+
none: "none";
|
|
8600
|
+
enabled: "enabled";
|
|
8601
|
+
}>>;
|
|
8570
8602
|
cms: z.ZodEnum<{
|
|
8571
8603
|
none: "none";
|
|
8572
8604
|
payload: "payload";
|
|
@@ -8629,9 +8661,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8629
8661
|
}>;
|
|
8630
8662
|
mobileUI: z.ZodEnum<{
|
|
8631
8663
|
none: "none";
|
|
8632
|
-
uniwind: "uniwind";
|
|
8633
8664
|
tamagui: "tamagui";
|
|
8634
8665
|
"gluestack-ui": "gluestack-ui";
|
|
8666
|
+
uniwind: "uniwind";
|
|
8635
8667
|
unistyles: "unistyles";
|
|
8636
8668
|
}>;
|
|
8637
8669
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8747,12 +8779,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8747
8779
|
ratatui: "ratatui";
|
|
8748
8780
|
}>;
|
|
8749
8781
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8782
|
+
config: "config";
|
|
8750
8783
|
none: "none";
|
|
8751
8784
|
serde: "serde";
|
|
8752
8785
|
uuid: "uuid";
|
|
8753
8786
|
chrono: "chrono";
|
|
8754
8787
|
reqwest: "reqwest";
|
|
8755
|
-
config: "config";
|
|
8756
8788
|
dashmap: "dashmap";
|
|
8757
8789
|
"parking-lot": "parking-lot";
|
|
8758
8790
|
secrecy: "secrecy";
|
|
@@ -9364,54 +9396,52 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9364
9396
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9365
9397
|
id: z.ZodString;
|
|
9366
9398
|
role: z.ZodEnum<{
|
|
9367
|
-
|
|
9368
|
-
ai: "ai";
|
|
9399
|
+
push: "push";
|
|
9369
9400
|
frontend: "frontend";
|
|
9370
9401
|
backend: "backend";
|
|
9371
9402
|
mobile: "mobile";
|
|
9372
9403
|
database: "database";
|
|
9404
|
+
api: "api";
|
|
9405
|
+
graphql: "graphql";
|
|
9373
9406
|
orm: "orm";
|
|
9374
9407
|
auth: "auth";
|
|
9375
|
-
payments: "payments";
|
|
9376
|
-
examples: "examples";
|
|
9377
|
-
packageManager: "packageManager";
|
|
9378
|
-
dbSetup: "dbSetup";
|
|
9379
9408
|
runtime: "runtime";
|
|
9380
|
-
|
|
9381
|
-
|
|
9382
|
-
|
|
9383
|
-
testing: "testing";
|
|
9384
|
-
email: "email";
|
|
9385
|
-
validation: "validation";
|
|
9409
|
+
deploy: "deploy";
|
|
9410
|
+
dbSetup: "dbSetup";
|
|
9411
|
+
migrations: "migrations";
|
|
9386
9412
|
realtime: "realtime";
|
|
9413
|
+
navigation: "navigation";
|
|
9414
|
+
caching: "caching";
|
|
9415
|
+
observability: "observability";
|
|
9416
|
+
email: "email";
|
|
9417
|
+
search: "search";
|
|
9418
|
+
vectorDb: "vectorDb";
|
|
9419
|
+
fileStorage: "fileStorage";
|
|
9387
9420
|
jobQueue: "jobQueue";
|
|
9421
|
+
rateLimit: "rateLimit";
|
|
9422
|
+
botProtection: "botProtection";
|
|
9423
|
+
testing: "testing";
|
|
9424
|
+
stateManagement: "stateManagement";
|
|
9425
|
+
forms: "forms";
|
|
9388
9426
|
animation: "animation";
|
|
9389
9427
|
fileUpload: "fileUpload";
|
|
9428
|
+
validation: "validation";
|
|
9429
|
+
effect: "effect";
|
|
9430
|
+
ui: "ui";
|
|
9431
|
+
css: "css";
|
|
9432
|
+
storage: "storage";
|
|
9433
|
+
ota: "ota";
|
|
9434
|
+
deepLinking: "deepLinking";
|
|
9435
|
+
ai: "ai";
|
|
9436
|
+
payments: "payments";
|
|
9390
9437
|
logging: "logging";
|
|
9391
|
-
observability: "observability";
|
|
9392
9438
|
featureFlags: "featureFlags";
|
|
9393
9439
|
integrations: "integrations";
|
|
9394
9440
|
ecommerce: "ecommerce";
|
|
9395
9441
|
analytics: "analytics";
|
|
9442
|
+
webMcp: "webMcp";
|
|
9396
9443
|
cms: "cms";
|
|
9397
|
-
caching: "caching";
|
|
9398
|
-
rateLimit: "rateLimit";
|
|
9399
|
-
botProtection: "botProtection";
|
|
9400
9444
|
i18n: "i18n";
|
|
9401
|
-
search: "search";
|
|
9402
|
-
vectorDb: "vectorDb";
|
|
9403
|
-
fileStorage: "fileStorage";
|
|
9404
|
-
config: "config";
|
|
9405
|
-
graphql: "graphql";
|
|
9406
|
-
deploy: "deploy";
|
|
9407
|
-
migrations: "migrations";
|
|
9408
|
-
navigation: "navigation";
|
|
9409
|
-
ui: "ui";
|
|
9410
|
-
css: "css";
|
|
9411
|
-
storage: "storage";
|
|
9412
|
-
push: "push";
|
|
9413
|
-
ota: "ota";
|
|
9414
|
-
deepLinking: "deepLinking";
|
|
9415
9445
|
documentation: "documentation";
|
|
9416
9446
|
codeQuality: "codeQuality";
|
|
9417
9447
|
appPlatform: "appPlatform";
|
|
@@ -9428,17 +9458,20 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9428
9458
|
apiGateway: "apiGateway";
|
|
9429
9459
|
continuousIntegration: "continuousIntegration";
|
|
9430
9460
|
backendUtilities: "backendUtilities";
|
|
9461
|
+
examples: "examples";
|
|
9431
9462
|
language: "language";
|
|
9432
9463
|
buildTool: "buildTool";
|
|
9433
9464
|
cli: "cli";
|
|
9434
9465
|
errorHandling: "errorHandling";
|
|
9435
9466
|
httpClient: "httpClient";
|
|
9436
9467
|
libraries: "libraries";
|
|
9468
|
+
config: "config";
|
|
9437
9469
|
templating: "templating";
|
|
9438
9470
|
cloudSdk: "cloudSdk";
|
|
9439
9471
|
data: "data";
|
|
9440
9472
|
media: "media";
|
|
9441
9473
|
server: "server";
|
|
9474
|
+
packageManager: "packageManager";
|
|
9442
9475
|
messageQueue: "messageQueue";
|
|
9443
9476
|
}>;
|
|
9444
9477
|
toolId: z.ZodString;
|
|
@@ -9454,8 +9487,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9454
9487
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
9455
9488
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
9456
9489
|
source: z.ZodEnum<{
|
|
9457
|
-
selected: "selected";
|
|
9458
9490
|
defaulted: "defaulted";
|
|
9491
|
+
selected: "selected";
|
|
9459
9492
|
provided: "provided";
|
|
9460
9493
|
legacy: "legacy";
|
|
9461
9494
|
adjusted: "adjusted";
|
|
@@ -9501,13 +9534,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9501
9534
|
sequelize: "sequelize";
|
|
9502
9535
|
}>;
|
|
9503
9536
|
backend: z.ZodEnum<{
|
|
9537
|
+
effect: "effect";
|
|
9504
9538
|
none: "none";
|
|
9505
9539
|
hono: "hono";
|
|
9506
9540
|
express: "express";
|
|
9507
9541
|
fastify: "fastify";
|
|
9508
9542
|
elysia: "elysia";
|
|
9509
9543
|
fets: "fets";
|
|
9510
|
-
effect: "effect";
|
|
9511
9544
|
nestjs: "nestjs";
|
|
9512
9545
|
adonisjs: "adonisjs";
|
|
9513
9546
|
nitro: "nitro";
|
|
@@ -9589,8 +9622,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9589
9622
|
capacitor: "capacitor";
|
|
9590
9623
|
}>>;
|
|
9591
9624
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9592
|
-
none: "none";
|
|
9593
9625
|
ai: "ai";
|
|
9626
|
+
none: "none";
|
|
9594
9627
|
"chat-sdk": "chat-sdk";
|
|
9595
9628
|
"tanstack-showcase": "tanstack-showcase";
|
|
9596
9629
|
}>>;
|
|
@@ -9705,8 +9738,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9705
9738
|
"ai-cli": "ai-cli";
|
|
9706
9739
|
}>;
|
|
9707
9740
|
effect: z.ZodEnum<{
|
|
9708
|
-
none: "none";
|
|
9709
9741
|
effect: "effect";
|
|
9742
|
+
none: "none";
|
|
9710
9743
|
"effect-full": "effect-full";
|
|
9711
9744
|
}>;
|
|
9712
9745
|
stateManagement: z.ZodEnum<{
|
|
@@ -9841,8 +9874,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9841
9874
|
"geist-mono": "geist-mono";
|
|
9842
9875
|
}>>;
|
|
9843
9876
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9844
|
-
none: "none";
|
|
9845
9877
|
default: "default";
|
|
9878
|
+
none: "none";
|
|
9846
9879
|
small: "small";
|
|
9847
9880
|
medium: "medium";
|
|
9848
9881
|
large: "large";
|
|
@@ -9928,6 +9961,10 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9928
9961
|
ga4: "ga4";
|
|
9929
9962
|
"vercel-analytics": "vercel-analytics";
|
|
9930
9963
|
}>;
|
|
9964
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
9965
|
+
none: "none";
|
|
9966
|
+
enabled: "enabled";
|
|
9967
|
+
}>>;
|
|
9931
9968
|
cms: z.ZodEnum<{
|
|
9932
9969
|
none: "none";
|
|
9933
9970
|
payload: "payload";
|
|
@@ -9990,9 +10027,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9990
10027
|
}>;
|
|
9991
10028
|
mobileUI: z.ZodEnum<{
|
|
9992
10029
|
none: "none";
|
|
9993
|
-
uniwind: "uniwind";
|
|
9994
10030
|
tamagui: "tamagui";
|
|
9995
10031
|
"gluestack-ui": "gluestack-ui";
|
|
10032
|
+
uniwind: "uniwind";
|
|
9996
10033
|
unistyles: "unistyles";
|
|
9997
10034
|
}>;
|
|
9998
10035
|
mobileStorage: z.ZodEnum<{
|
|
@@ -10108,12 +10145,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10108
10145
|
ratatui: "ratatui";
|
|
10109
10146
|
}>;
|
|
10110
10147
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10148
|
+
config: "config";
|
|
10111
10149
|
none: "none";
|
|
10112
10150
|
serde: "serde";
|
|
10113
10151
|
uuid: "uuid";
|
|
10114
10152
|
chrono: "chrono";
|
|
10115
10153
|
reqwest: "reqwest";
|
|
10116
|
-
config: "config";
|
|
10117
10154
|
dashmap: "dashmap";
|
|
10118
10155
|
"parking-lot": "parking-lot";
|
|
10119
10156
|
secrecy: "secrecy";
|
|
@@ -10725,54 +10762,52 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10725
10762
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10726
10763
|
id: z.ZodString;
|
|
10727
10764
|
role: z.ZodEnum<{
|
|
10728
|
-
|
|
10729
|
-
ai: "ai";
|
|
10765
|
+
push: "push";
|
|
10730
10766
|
frontend: "frontend";
|
|
10731
10767
|
backend: "backend";
|
|
10732
10768
|
mobile: "mobile";
|
|
10733
10769
|
database: "database";
|
|
10770
|
+
api: "api";
|
|
10771
|
+
graphql: "graphql";
|
|
10734
10772
|
orm: "orm";
|
|
10735
10773
|
auth: "auth";
|
|
10736
|
-
payments: "payments";
|
|
10737
|
-
examples: "examples";
|
|
10738
|
-
packageManager: "packageManager";
|
|
10739
|
-
dbSetup: "dbSetup";
|
|
10740
10774
|
runtime: "runtime";
|
|
10741
|
-
|
|
10742
|
-
|
|
10743
|
-
|
|
10744
|
-
testing: "testing";
|
|
10745
|
-
email: "email";
|
|
10746
|
-
validation: "validation";
|
|
10775
|
+
deploy: "deploy";
|
|
10776
|
+
dbSetup: "dbSetup";
|
|
10777
|
+
migrations: "migrations";
|
|
10747
10778
|
realtime: "realtime";
|
|
10779
|
+
navigation: "navigation";
|
|
10780
|
+
caching: "caching";
|
|
10781
|
+
observability: "observability";
|
|
10782
|
+
email: "email";
|
|
10783
|
+
search: "search";
|
|
10784
|
+
vectorDb: "vectorDb";
|
|
10785
|
+
fileStorage: "fileStorage";
|
|
10748
10786
|
jobQueue: "jobQueue";
|
|
10787
|
+
rateLimit: "rateLimit";
|
|
10788
|
+
botProtection: "botProtection";
|
|
10789
|
+
testing: "testing";
|
|
10790
|
+
stateManagement: "stateManagement";
|
|
10791
|
+
forms: "forms";
|
|
10749
10792
|
animation: "animation";
|
|
10750
10793
|
fileUpload: "fileUpload";
|
|
10794
|
+
validation: "validation";
|
|
10795
|
+
effect: "effect";
|
|
10796
|
+
ui: "ui";
|
|
10797
|
+
css: "css";
|
|
10798
|
+
storage: "storage";
|
|
10799
|
+
ota: "ota";
|
|
10800
|
+
deepLinking: "deepLinking";
|
|
10801
|
+
ai: "ai";
|
|
10802
|
+
payments: "payments";
|
|
10751
10803
|
logging: "logging";
|
|
10752
|
-
observability: "observability";
|
|
10753
10804
|
featureFlags: "featureFlags";
|
|
10754
10805
|
integrations: "integrations";
|
|
10755
10806
|
ecommerce: "ecommerce";
|
|
10756
10807
|
analytics: "analytics";
|
|
10808
|
+
webMcp: "webMcp";
|
|
10757
10809
|
cms: "cms";
|
|
10758
|
-
caching: "caching";
|
|
10759
|
-
rateLimit: "rateLimit";
|
|
10760
|
-
botProtection: "botProtection";
|
|
10761
10810
|
i18n: "i18n";
|
|
10762
|
-
search: "search";
|
|
10763
|
-
vectorDb: "vectorDb";
|
|
10764
|
-
fileStorage: "fileStorage";
|
|
10765
|
-
config: "config";
|
|
10766
|
-
graphql: "graphql";
|
|
10767
|
-
deploy: "deploy";
|
|
10768
|
-
migrations: "migrations";
|
|
10769
|
-
navigation: "navigation";
|
|
10770
|
-
ui: "ui";
|
|
10771
|
-
css: "css";
|
|
10772
|
-
storage: "storage";
|
|
10773
|
-
push: "push";
|
|
10774
|
-
ota: "ota";
|
|
10775
|
-
deepLinking: "deepLinking";
|
|
10776
10811
|
documentation: "documentation";
|
|
10777
10812
|
codeQuality: "codeQuality";
|
|
10778
10813
|
appPlatform: "appPlatform";
|
|
@@ -10789,17 +10824,20 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10789
10824
|
apiGateway: "apiGateway";
|
|
10790
10825
|
continuousIntegration: "continuousIntegration";
|
|
10791
10826
|
backendUtilities: "backendUtilities";
|
|
10827
|
+
examples: "examples";
|
|
10792
10828
|
language: "language";
|
|
10793
10829
|
buildTool: "buildTool";
|
|
10794
10830
|
cli: "cli";
|
|
10795
10831
|
errorHandling: "errorHandling";
|
|
10796
10832
|
httpClient: "httpClient";
|
|
10797
10833
|
libraries: "libraries";
|
|
10834
|
+
config: "config";
|
|
10798
10835
|
templating: "templating";
|
|
10799
10836
|
cloudSdk: "cloudSdk";
|
|
10800
10837
|
data: "data";
|
|
10801
10838
|
media: "media";
|
|
10802
10839
|
server: "server";
|
|
10840
|
+
packageManager: "packageManager";
|
|
10803
10841
|
messageQueue: "messageQueue";
|
|
10804
10842
|
}>;
|
|
10805
10843
|
toolId: z.ZodString;
|
|
@@ -10815,8 +10853,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10815
10853
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
10816
10854
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
10817
10855
|
source: z.ZodEnum<{
|
|
10818
|
-
selected: "selected";
|
|
10819
10856
|
defaulted: "defaulted";
|
|
10857
|
+
selected: "selected";
|
|
10820
10858
|
provided: "provided";
|
|
10821
10859
|
legacy: "legacy";
|
|
10822
10860
|
adjusted: "adjusted";
|
|
@@ -10862,13 +10900,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10862
10900
|
sequelize: "sequelize";
|
|
10863
10901
|
}>;
|
|
10864
10902
|
backend: z.ZodEnum<{
|
|
10903
|
+
effect: "effect";
|
|
10865
10904
|
none: "none";
|
|
10866
10905
|
hono: "hono";
|
|
10867
10906
|
express: "express";
|
|
10868
10907
|
fastify: "fastify";
|
|
10869
10908
|
elysia: "elysia";
|
|
10870
10909
|
fets: "fets";
|
|
10871
|
-
effect: "effect";
|
|
10872
10910
|
nestjs: "nestjs";
|
|
10873
10911
|
adonisjs: "adonisjs";
|
|
10874
10912
|
nitro: "nitro";
|
|
@@ -10950,8 +10988,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10950
10988
|
capacitor: "capacitor";
|
|
10951
10989
|
}>>;
|
|
10952
10990
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10953
|
-
none: "none";
|
|
10954
10991
|
ai: "ai";
|
|
10992
|
+
none: "none";
|
|
10955
10993
|
"chat-sdk": "chat-sdk";
|
|
10956
10994
|
"tanstack-showcase": "tanstack-showcase";
|
|
10957
10995
|
}>>;
|
|
@@ -11066,8 +11104,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11066
11104
|
"ai-cli": "ai-cli";
|
|
11067
11105
|
}>;
|
|
11068
11106
|
effect: z.ZodEnum<{
|
|
11069
|
-
none: "none";
|
|
11070
11107
|
effect: "effect";
|
|
11108
|
+
none: "none";
|
|
11071
11109
|
"effect-full": "effect-full";
|
|
11072
11110
|
}>;
|
|
11073
11111
|
stateManagement: z.ZodEnum<{
|
|
@@ -11202,8 +11240,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11202
11240
|
"geist-mono": "geist-mono";
|
|
11203
11241
|
}>>;
|
|
11204
11242
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
11205
|
-
none: "none";
|
|
11206
11243
|
default: "default";
|
|
11244
|
+
none: "none";
|
|
11207
11245
|
small: "small";
|
|
11208
11246
|
medium: "medium";
|
|
11209
11247
|
large: "large";
|
|
@@ -11289,6 +11327,10 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11289
11327
|
ga4: "ga4";
|
|
11290
11328
|
"vercel-analytics": "vercel-analytics";
|
|
11291
11329
|
}>;
|
|
11330
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
11331
|
+
none: "none";
|
|
11332
|
+
enabled: "enabled";
|
|
11333
|
+
}>>;
|
|
11292
11334
|
cms: z.ZodEnum<{
|
|
11293
11335
|
none: "none";
|
|
11294
11336
|
payload: "payload";
|
|
@@ -11351,9 +11393,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11351
11393
|
}>;
|
|
11352
11394
|
mobileUI: z.ZodEnum<{
|
|
11353
11395
|
none: "none";
|
|
11354
|
-
uniwind: "uniwind";
|
|
11355
11396
|
tamagui: "tamagui";
|
|
11356
11397
|
"gluestack-ui": "gluestack-ui";
|
|
11398
|
+
uniwind: "uniwind";
|
|
11357
11399
|
unistyles: "unistyles";
|
|
11358
11400
|
}>;
|
|
11359
11401
|
mobileStorage: z.ZodEnum<{
|
|
@@ -11469,12 +11511,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11469
11511
|
ratatui: "ratatui";
|
|
11470
11512
|
}>;
|
|
11471
11513
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
11514
|
+
config: "config";
|
|
11472
11515
|
none: "none";
|
|
11473
11516
|
serde: "serde";
|
|
11474
11517
|
uuid: "uuid";
|
|
11475
11518
|
chrono: "chrono";
|
|
11476
11519
|
reqwest: "reqwest";
|
|
11477
|
-
config: "config";
|
|
11478
11520
|
dashmap: "dashmap";
|
|
11479
11521
|
"parking-lot": "parking-lot";
|
|
11480
11522
|
secrecy: "secrecy";
|
|
@@ -12086,54 +12128,52 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12086
12128
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12087
12129
|
id: z.ZodString;
|
|
12088
12130
|
role: z.ZodEnum<{
|
|
12089
|
-
|
|
12090
|
-
ai: "ai";
|
|
12131
|
+
push: "push";
|
|
12091
12132
|
frontend: "frontend";
|
|
12092
12133
|
backend: "backend";
|
|
12093
12134
|
mobile: "mobile";
|
|
12094
12135
|
database: "database";
|
|
12136
|
+
api: "api";
|
|
12137
|
+
graphql: "graphql";
|
|
12095
12138
|
orm: "orm";
|
|
12096
12139
|
auth: "auth";
|
|
12097
|
-
payments: "payments";
|
|
12098
|
-
examples: "examples";
|
|
12099
|
-
packageManager: "packageManager";
|
|
12100
|
-
dbSetup: "dbSetup";
|
|
12101
12140
|
runtime: "runtime";
|
|
12102
|
-
|
|
12103
|
-
|
|
12104
|
-
|
|
12105
|
-
testing: "testing";
|
|
12106
|
-
email: "email";
|
|
12107
|
-
validation: "validation";
|
|
12141
|
+
deploy: "deploy";
|
|
12142
|
+
dbSetup: "dbSetup";
|
|
12143
|
+
migrations: "migrations";
|
|
12108
12144
|
realtime: "realtime";
|
|
12145
|
+
navigation: "navigation";
|
|
12146
|
+
caching: "caching";
|
|
12147
|
+
observability: "observability";
|
|
12148
|
+
email: "email";
|
|
12149
|
+
search: "search";
|
|
12150
|
+
vectorDb: "vectorDb";
|
|
12151
|
+
fileStorage: "fileStorage";
|
|
12109
12152
|
jobQueue: "jobQueue";
|
|
12153
|
+
rateLimit: "rateLimit";
|
|
12154
|
+
botProtection: "botProtection";
|
|
12155
|
+
testing: "testing";
|
|
12156
|
+
stateManagement: "stateManagement";
|
|
12157
|
+
forms: "forms";
|
|
12110
12158
|
animation: "animation";
|
|
12111
12159
|
fileUpload: "fileUpload";
|
|
12160
|
+
validation: "validation";
|
|
12161
|
+
effect: "effect";
|
|
12162
|
+
ui: "ui";
|
|
12163
|
+
css: "css";
|
|
12164
|
+
storage: "storage";
|
|
12165
|
+
ota: "ota";
|
|
12166
|
+
deepLinking: "deepLinking";
|
|
12167
|
+
ai: "ai";
|
|
12168
|
+
payments: "payments";
|
|
12112
12169
|
logging: "logging";
|
|
12113
|
-
observability: "observability";
|
|
12114
12170
|
featureFlags: "featureFlags";
|
|
12115
12171
|
integrations: "integrations";
|
|
12116
12172
|
ecommerce: "ecommerce";
|
|
12117
12173
|
analytics: "analytics";
|
|
12174
|
+
webMcp: "webMcp";
|
|
12118
12175
|
cms: "cms";
|
|
12119
|
-
caching: "caching";
|
|
12120
|
-
rateLimit: "rateLimit";
|
|
12121
|
-
botProtection: "botProtection";
|
|
12122
12176
|
i18n: "i18n";
|
|
12123
|
-
search: "search";
|
|
12124
|
-
vectorDb: "vectorDb";
|
|
12125
|
-
fileStorage: "fileStorage";
|
|
12126
|
-
config: "config";
|
|
12127
|
-
graphql: "graphql";
|
|
12128
|
-
deploy: "deploy";
|
|
12129
|
-
migrations: "migrations";
|
|
12130
|
-
navigation: "navigation";
|
|
12131
|
-
ui: "ui";
|
|
12132
|
-
css: "css";
|
|
12133
|
-
storage: "storage";
|
|
12134
|
-
push: "push";
|
|
12135
|
-
ota: "ota";
|
|
12136
|
-
deepLinking: "deepLinking";
|
|
12137
12177
|
documentation: "documentation";
|
|
12138
12178
|
codeQuality: "codeQuality";
|
|
12139
12179
|
appPlatform: "appPlatform";
|
|
@@ -12150,17 +12190,20 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12150
12190
|
apiGateway: "apiGateway";
|
|
12151
12191
|
continuousIntegration: "continuousIntegration";
|
|
12152
12192
|
backendUtilities: "backendUtilities";
|
|
12193
|
+
examples: "examples";
|
|
12153
12194
|
language: "language";
|
|
12154
12195
|
buildTool: "buildTool";
|
|
12155
12196
|
cli: "cli";
|
|
12156
12197
|
errorHandling: "errorHandling";
|
|
12157
12198
|
httpClient: "httpClient";
|
|
12158
12199
|
libraries: "libraries";
|
|
12200
|
+
config: "config";
|
|
12159
12201
|
templating: "templating";
|
|
12160
12202
|
cloudSdk: "cloudSdk";
|
|
12161
12203
|
data: "data";
|
|
12162
12204
|
media: "media";
|
|
12163
12205
|
server: "server";
|
|
12206
|
+
packageManager: "packageManager";
|
|
12164
12207
|
messageQueue: "messageQueue";
|
|
12165
12208
|
}>;
|
|
12166
12209
|
toolId: z.ZodString;
|
|
@@ -12176,8 +12219,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12176
12219
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
12177
12220
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
12178
12221
|
source: z.ZodEnum<{
|
|
12179
|
-
selected: "selected";
|
|
12180
12222
|
defaulted: "defaulted";
|
|
12223
|
+
selected: "selected";
|
|
12181
12224
|
provided: "provided";
|
|
12182
12225
|
legacy: "legacy";
|
|
12183
12226
|
adjusted: "adjusted";
|
|
@@ -12223,13 +12266,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12223
12266
|
sequelize: "sequelize";
|
|
12224
12267
|
}>;
|
|
12225
12268
|
backend: z.ZodEnum<{
|
|
12269
|
+
effect: "effect";
|
|
12226
12270
|
none: "none";
|
|
12227
12271
|
hono: "hono";
|
|
12228
12272
|
express: "express";
|
|
12229
12273
|
fastify: "fastify";
|
|
12230
12274
|
elysia: "elysia";
|
|
12231
12275
|
fets: "fets";
|
|
12232
|
-
effect: "effect";
|
|
12233
12276
|
nestjs: "nestjs";
|
|
12234
12277
|
adonisjs: "adonisjs";
|
|
12235
12278
|
nitro: "nitro";
|
|
@@ -12311,8 +12354,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12311
12354
|
capacitor: "capacitor";
|
|
12312
12355
|
}>>;
|
|
12313
12356
|
examples: z.ZodArray<z.ZodEnum<{
|
|
12314
|
-
none: "none";
|
|
12315
12357
|
ai: "ai";
|
|
12358
|
+
none: "none";
|
|
12316
12359
|
"chat-sdk": "chat-sdk";
|
|
12317
12360
|
"tanstack-showcase": "tanstack-showcase";
|
|
12318
12361
|
}>>;
|
|
@@ -12429,8 +12472,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12429
12472
|
"ai-cli": "ai-cli";
|
|
12430
12473
|
}>;
|
|
12431
12474
|
effect: z.ZodEnum<{
|
|
12432
|
-
none: "none";
|
|
12433
12475
|
effect: "effect";
|
|
12476
|
+
none: "none";
|
|
12434
12477
|
"effect-full": "effect-full";
|
|
12435
12478
|
}>;
|
|
12436
12479
|
stateManagement: z.ZodEnum<{
|
|
@@ -12565,8 +12608,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12565
12608
|
"geist-mono": "geist-mono";
|
|
12566
12609
|
}>>;
|
|
12567
12610
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
12568
|
-
none: "none";
|
|
12569
12611
|
default: "default";
|
|
12612
|
+
none: "none";
|
|
12570
12613
|
small: "small";
|
|
12571
12614
|
medium: "medium";
|
|
12572
12615
|
large: "large";
|
|
@@ -12652,6 +12695,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12652
12695
|
ga4: "ga4";
|
|
12653
12696
|
"vercel-analytics": "vercel-analytics";
|
|
12654
12697
|
}>;
|
|
12698
|
+
webMcp: z.ZodDefault<z.ZodEnum<{
|
|
12699
|
+
none: "none";
|
|
12700
|
+
enabled: "enabled";
|
|
12701
|
+
}>>;
|
|
12655
12702
|
cms: z.ZodEnum<{
|
|
12656
12703
|
none: "none";
|
|
12657
12704
|
payload: "payload";
|
|
@@ -12714,9 +12761,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12714
12761
|
}>;
|
|
12715
12762
|
mobileUI: z.ZodEnum<{
|
|
12716
12763
|
none: "none";
|
|
12717
|
-
uniwind: "uniwind";
|
|
12718
12764
|
tamagui: "tamagui";
|
|
12719
12765
|
"gluestack-ui": "gluestack-ui";
|
|
12766
|
+
uniwind: "uniwind";
|
|
12720
12767
|
unistyles: "unistyles";
|
|
12721
12768
|
}>;
|
|
12722
12769
|
mobileStorage: z.ZodEnum<{
|
|
@@ -12832,12 +12879,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12832
12879
|
ratatui: "ratatui";
|
|
12833
12880
|
}>;
|
|
12834
12881
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
12882
|
+
config: "config";
|
|
12835
12883
|
none: "none";
|
|
12836
12884
|
serde: "serde";
|
|
12837
12885
|
uuid: "uuid";
|
|
12838
12886
|
chrono: "chrono";
|
|
12839
12887
|
reqwest: "reqwest";
|
|
12840
|
-
config: "config";
|
|
12841
12888
|
dashmap: "dashmap";
|
|
12842
12889
|
"parking-lot": "parking-lot";
|
|
12843
12890
|
secrecy: "secrecy";
|
|
@@ -13449,54 +13496,52 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13449
13496
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13450
13497
|
id: z.ZodString;
|
|
13451
13498
|
role: z.ZodEnum<{
|
|
13452
|
-
|
|
13453
|
-
ai: "ai";
|
|
13499
|
+
push: "push";
|
|
13454
13500
|
frontend: "frontend";
|
|
13455
13501
|
backend: "backend";
|
|
13456
13502
|
mobile: "mobile";
|
|
13457
13503
|
database: "database";
|
|
13504
|
+
api: "api";
|
|
13505
|
+
graphql: "graphql";
|
|
13458
13506
|
orm: "orm";
|
|
13459
13507
|
auth: "auth";
|
|
13460
|
-
payments: "payments";
|
|
13461
|
-
examples: "examples";
|
|
13462
|
-
packageManager: "packageManager";
|
|
13463
|
-
dbSetup: "dbSetup";
|
|
13464
13508
|
runtime: "runtime";
|
|
13465
|
-
|
|
13466
|
-
|
|
13467
|
-
|
|
13468
|
-
testing: "testing";
|
|
13469
|
-
email: "email";
|
|
13470
|
-
validation: "validation";
|
|
13509
|
+
deploy: "deploy";
|
|
13510
|
+
dbSetup: "dbSetup";
|
|
13511
|
+
migrations: "migrations";
|
|
13471
13512
|
realtime: "realtime";
|
|
13513
|
+
navigation: "navigation";
|
|
13514
|
+
caching: "caching";
|
|
13515
|
+
observability: "observability";
|
|
13516
|
+
email: "email";
|
|
13517
|
+
search: "search";
|
|
13518
|
+
vectorDb: "vectorDb";
|
|
13519
|
+
fileStorage: "fileStorage";
|
|
13472
13520
|
jobQueue: "jobQueue";
|
|
13521
|
+
rateLimit: "rateLimit";
|
|
13522
|
+
botProtection: "botProtection";
|
|
13523
|
+
testing: "testing";
|
|
13524
|
+
stateManagement: "stateManagement";
|
|
13525
|
+
forms: "forms";
|
|
13473
13526
|
animation: "animation";
|
|
13474
13527
|
fileUpload: "fileUpload";
|
|
13528
|
+
validation: "validation";
|
|
13529
|
+
effect: "effect";
|
|
13530
|
+
ui: "ui";
|
|
13531
|
+
css: "css";
|
|
13532
|
+
storage: "storage";
|
|
13533
|
+
ota: "ota";
|
|
13534
|
+
deepLinking: "deepLinking";
|
|
13535
|
+
ai: "ai";
|
|
13536
|
+
payments: "payments";
|
|
13475
13537
|
logging: "logging";
|
|
13476
|
-
observability: "observability";
|
|
13477
13538
|
featureFlags: "featureFlags";
|
|
13478
13539
|
integrations: "integrations";
|
|
13479
13540
|
ecommerce: "ecommerce";
|
|
13480
13541
|
analytics: "analytics";
|
|
13542
|
+
webMcp: "webMcp";
|
|
13481
13543
|
cms: "cms";
|
|
13482
|
-
caching: "caching";
|
|
13483
|
-
rateLimit: "rateLimit";
|
|
13484
|
-
botProtection: "botProtection";
|
|
13485
13544
|
i18n: "i18n";
|
|
13486
|
-
search: "search";
|
|
13487
|
-
vectorDb: "vectorDb";
|
|
13488
|
-
fileStorage: "fileStorage";
|
|
13489
|
-
config: "config";
|
|
13490
|
-
graphql: "graphql";
|
|
13491
|
-
deploy: "deploy";
|
|
13492
|
-
migrations: "migrations";
|
|
13493
|
-
navigation: "navigation";
|
|
13494
|
-
ui: "ui";
|
|
13495
|
-
css: "css";
|
|
13496
|
-
storage: "storage";
|
|
13497
|
-
push: "push";
|
|
13498
|
-
ota: "ota";
|
|
13499
|
-
deepLinking: "deepLinking";
|
|
13500
13545
|
documentation: "documentation";
|
|
13501
13546
|
codeQuality: "codeQuality";
|
|
13502
13547
|
appPlatform: "appPlatform";
|
|
@@ -13513,17 +13558,20 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13513
13558
|
apiGateway: "apiGateway";
|
|
13514
13559
|
continuousIntegration: "continuousIntegration";
|
|
13515
13560
|
backendUtilities: "backendUtilities";
|
|
13561
|
+
examples: "examples";
|
|
13516
13562
|
language: "language";
|
|
13517
13563
|
buildTool: "buildTool";
|
|
13518
13564
|
cli: "cli";
|
|
13519
13565
|
errorHandling: "errorHandling";
|
|
13520
13566
|
httpClient: "httpClient";
|
|
13521
13567
|
libraries: "libraries";
|
|
13568
|
+
config: "config";
|
|
13522
13569
|
templating: "templating";
|
|
13523
13570
|
cloudSdk: "cloudSdk";
|
|
13524
13571
|
data: "data";
|
|
13525
13572
|
media: "media";
|
|
13526
13573
|
server: "server";
|
|
13574
|
+
packageManager: "packageManager";
|
|
13527
13575
|
messageQueue: "messageQueue";
|
|
13528
13576
|
}>;
|
|
13529
13577
|
toolId: z.ZodString;
|
|
@@ -13539,8 +13587,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13539
13587
|
}>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
|
|
13540
13588
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
13541
13589
|
source: z.ZodEnum<{
|
|
13542
|
-
selected: "selected";
|
|
13543
13590
|
defaulted: "defaulted";
|
|
13591
|
+
selected: "selected";
|
|
13544
13592
|
provided: "provided";
|
|
13545
13593
|
legacy: "legacy";
|
|
13546
13594
|
adjusted: "adjusted";
|
|
@@ -13563,11 +13611,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13563
13611
|
}, z.core.$strip>;
|
|
13564
13612
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
13565
13613
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
13566
|
-
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "
|
|
13614
|
+
declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
13567
13615
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
13568
13616
|
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")[];
|
|
13569
13617
|
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")[];
|
|
13570
|
-
declare const EXAMPLES_VALUES: ("
|
|
13618
|
+
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
13571
13619
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
13572
13620
|
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
13573
13621
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
@@ -13577,12 +13625,12 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations"
|
|
|
13577
13625
|
declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet" | "xendit")[];
|
|
13578
13626
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13579
13627
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13580
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
13581
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
13582
|
-
declare const PROJECT_SHAPE_VALUES: ("
|
|
13628
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
13629
|
+
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3" | "saas")[];
|
|
13630
|
+
declare const PROJECT_SHAPE_VALUES: ("frontend" | "backend" | "mobile" | "fullstack")[];
|
|
13583
13631
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
|
|
13584
13632
|
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")[];
|
|
13585
|
-
declare const EFFECT_VALUES: ("
|
|
13633
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
13586
13634
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
13587
13635
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
13588
13636
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "mocha" | "cypress")[];
|
|
@@ -13600,8 +13648,9 @@ declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launch
|
|
|
13600
13648
|
declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
|
|
13601
13649
|
declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
|
|
13602
13650
|
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4" | "vercel-analytics")[];
|
|
13651
|
+
declare const WEB_MCP_VALUES: ("none" | "enabled")[];
|
|
13603
13652
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
13604
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
13653
|
+
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
13605
13654
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
13606
13655
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
13607
13656
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -13627,7 +13676,7 @@ declare const DART_MOBILE_VALUES: ("none" | "flutter")[];
|
|
|
13627
13676
|
declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
|
|
13628
13677
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
|
|
13629
13678
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
13630
|
-
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "
|
|
13679
|
+
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")[];
|
|
13631
13680
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
13632
13681
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
13633
13682
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
@@ -13724,7 +13773,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
13724
13773
|
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")[];
|
|
13725
13774
|
declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
|
|
13726
13775
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
13727
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
13776
|
+
declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "small" | "medium" | "large")[];
|
|
13728
13777
|
//#endregion
|
|
13729
|
-
export { DatabaseSchema as $, StackPartEcosystemSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STACK_PART_SETTING_KEYS as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ServerDeploySchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, STATE_MANAGEMENT_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnColorThemeSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseColorSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, ShadcnStyleSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SWIFT_MOBILE_VALUES as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, SHADCN_STYLE_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, SearchSchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnIconLibrarySchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnFontSchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnRadiusSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, VersionChannelSchema as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, SwiftMobileSchema as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn,
|
|
13730
|
-
//# sourceMappingURL=schemas-
|
|
13778
|
+
export { DatabaseSchema as $, StackPartEcosystemSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STACK_PART_SETTING_KEYS as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, WorkspaceShapeSchema as Co, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ServerDeploySchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, STATE_MANAGEMENT_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnColorThemeSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseColorSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, ShadcnStyleSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, WebMcpSchema as So, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SWIFT_MOBILE_VALUES as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, SHADCN_STYLE_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, SearchSchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnIconLibrarySchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnFontSchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnRadiusSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, VersionChannelSchema as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, SwiftMobileSchema as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn, WORKSPACE_SHAPE_VALUES as bo, JavaApiSchema as br, ELIXIR_AUTH_VALUES as bt, API_VALUES as c, RUST_LOGGING_VALUES as ca, PYTHON_CACHING_VALUES as ci, ElixirTestingSchema as cn, TemplateSchema as co, InitResultSchema as cr, DotnetLibrariesSchema as ct, AUTH_VALUES as d, RUST_ORM_VALUES as da, PYTHON_DATA_VALUES as di, EmailSchema as dn, UI_LIBRARY_VALUES as do, JAVA_AUTH_VALUES as dr, DotnetRealtimeSchema as dt, RUNTIME_VALUES as ea, ORM_VALUES as ei, ElixirI18nSchema as en, StackPartRoleSchema as eo, GoRealtimeSchema as er, DatabaseSetupSchema as et, AddInputSchema as f, RUST_REALTIME_VALUES as fa, PYTHON_GRAPHQL_VALUES as fi, ExamplesSchema as fn, VALIDATION_VALUES as fo, JAVA_BUILD_TOOL_VALUES as fr, DotnetTestingSchema as ft, AnimationSchema as g, RealtimeSchema as ga, PYTHON_OBSERVABILITY_VALUES as gi, FORMS_VALUES as gn, VectorDbSchema as go, JAVA_ORM_VALUES as gr, ECOSYSTEM_VALUES as gt, AnalyticsSchema as h, RateLimitSchema as ha, PYTHON_MESSAGE_QUEUE_VALUES as hi, FILE_UPLOAD_VALUES as hn, ValidationSchema as ho, JAVA_LOGGING_VALUES as hr, ECOMMERCE_VALUES as ht, AI_VALUES as i, RUST_CLI_VALUES as ia, PROJECT_SHAPE_VALUES as ii, ElixirObservabilitySchema as in, StateManagementSchema as io, GoWebFrameworkSchema as ir, DotnetCachingSchema as it, CSSFrameworkSchema as j, RustWebFrameworkSchema as ja, PythonAiSchema as ji, GO_MIGRATIONS_VALUES as jn, KOTLIN_MOBILE_VALUES as jr, ELIXIR_LIBRARIES_VALUES as jt, CMSSchema as k, RustRealtimeSchema as ka, ProjectNameSchema as ki, GO_LOGGING_VALUES as kn, JobQueueSchema as kr, ELIXIR_JOBS_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_MESSAGE_QUEUE_VALUES as la, PYTHON_CLI_VALUES as li, ElixirValidationSchema as ln, TestingSchema as lo, IntegrationsSchema as lr, DotnetObservabilitySchema as lt, AiDocsSchema as m, RUST_WEB_FRAMEWORK_VALUES as ma, PYTHON_MEDIA_VALUES as mi, FILE_STORAGE_VALUES as mn, VERSION_CHANNEL_VALUES as mo, JAVA_LIBRARIES_VALUES as mr, DotnetWebFrameworkSchema as mt, AISchema as n, RUST_AUTH_VALUES as na, PACKAGE_MANAGER_VALUES as ni, ElixirJsonSchema as nn, StackPartSettingsSchema as no, GoTestingSchema as nr, DotnetApiSchema as nt, ANIMATION_VALUES as o, RUST_FRONTEND_VALUES as oa, PYTHON_API_VALUES as oi, ElixirQualitySchema as on, TEMPLATE_VALUES as oo, I18nSchema as or, DotnetFrontendSchema as ot, AddonsSchema as p, RUST_TEMPLATING_VALUES as pa, PYTHON_HTTP_CLIENT_VALUES as pi, FEATURE_FLAGS_VALUES as pn, VECTOR_DB_VALUES as po, JAVA_LANGUAGE_VALUES as pr, DotnetValidationSchema as pt, DOTNET_ORM_VALUES as q, ShadcnBaseSchema as qa, PythonServerSchema as qi, GoLoggingSchema as qn, MobileOTASchema as qr, ElixirCachingSchema as qt, AI_DOCS_VALUES as r, RUST_CACHING_VALUES as ra, PAYMENTS_VALUES as ri, ElixirLibrariesSchema as rn, StackPartSourceSchema as ro, GoValidationSchema as rr, DotnetAuthSchema as rt, APISchema as s, RUST_LIBRARIES_VALUES as sa, PYTHON_AUTH_VALUES as si, ElixirRealtimeSchema as sn, TESTING_VALUES as so, INTEGRATIONS_VALUES as sr, DotnetJobQueueSchema as st, ADDONS_VALUES as t, RUST_API_VALUES as ta, ObservabilitySchema as ti, ElixirJobsSchema as tn, StackPartSchema as to, GoTemplatingSchema as tr, DirectoryConflictSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_OBSERVABILITY_VALUES as ua, PYTHON_CLOUD_SDK_VALUES as ui, ElixirWebFrameworkSchema as un, UILibrarySchema as uo, JAVA_API_VALUES as ur, DotnetOrmSchema as ut, AuthSchema as v, RustApiSchema as va, PYTHON_PACKAGE_MANAGER_VALUES as vi, FeatureFlagsSchema as vn, WEB_DEPLOY_VALUES as vo, JAVA_WEB_FRAMEWORK_VALUES as vr, ELIXIR_API_VALUES as vt, BetterTStackConfigFileSchema as w, RustLibrariesSchema as wa, PYTHON_VALIDATION_VALUES as wi, GO_AUTH_VALUES as wn, JavaLibrariesSchema as wr, ELIXIR_DOCUMENTATION_VALUES as wt, BackendSchema as x, RustCliSchema as xa, PYTHON_SERVER_VALUES as xi, FormsSchema as xn, WebDeploySchema as xo, JavaAuthSchema as xr, ELIXIR_CACHING_VALUES as xt, BACKEND_VALUES as y, RustAuthSchema as ya, PYTHON_QUALITY_VALUES as yi, FileStorageSchema as yn, WEB_MCP_VALUES as yo, JOB_QUEUE_VALUES as yr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as yt, DOTNET_API_VALUES as z, SHADCN_RADIUS_VALUES as za, PythonHttpClientSchema as zi, GO_VALIDATION_VALUES as zn, MOBILE_OTA_VALUES as zr, EMAIL_VALUES as zt };
|
|
13779
|
+
//# sourceMappingURL=schemas-CgldOz7b.d.mts.map
|