@better-fullstack/types 2.6.0 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{defaults-7VECSARb.d.mts → defaults-CZeSVSu8.d.mts} +3 -3
- package/dist/defaults-CZeSVSu8.d.mts.map +1 -0
- package/dist/{defaults-Bp46Ajyg.mjs → defaults-DTS30ICD.mjs} +2 -2
- package/dist/defaults-DTS30ICD.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +1258 -11
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +289 -9
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +324 -324
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +2 -2
- package/dist/json-schema.mjs.map +1 -1
- package/dist/{schemas-CY0MaZmU.d.mts → schemas-82xJXQrZ.d.mts} +680 -598
- package/dist/schemas-82xJXQrZ.d.mts.map +1 -0
- package/dist/{schemas-CH1UszP5.mjs → schemas-cgmdgudQ.mjs} +41 -4
- package/dist/schemas-cgmdgudQ.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-DkJ944IX.d.mts → stack-graph-DG53F1Q2.d.mts} +26 -4
- package/dist/stack-graph-DG53F1Q2.d.mts.map +1 -0
- package/dist/{stack-graph-AWbdUrN3.mjs → stack-graph-Oj-P0cij.mjs} +91 -14
- package/dist/stack-graph-Oj-P0cij.mjs.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-C9yYLNwM.d.mts → stack-translation-0OwfhcBf.d.mts} +59 -9
- package/dist/stack-translation-0OwfhcBf.d.mts.map +1 -0
- package/dist/{stack-translation-Cn6zGJ5q.mjs → stack-translation-49iba9M5.mjs} +161 -30
- package/dist/stack-translation-49iba9M5.mjs.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/telemetry-C9qQ80l9.mjs +2270 -0
- package/dist/telemetry-C9qQ80l9.mjs.map +1 -0
- package/dist/telemetry-CUtrUTe9.d.mts +36 -0
- package/dist/telemetry-CUtrUTe9.d.mts.map +1 -0
- package/dist/telemetry.d.mts +2 -0
- package/dist/telemetry.mjs +6 -0
- package/dist/{types-fGT5qf7O.d.mts → types-CfEIdtDo.d.mts} +3 -3
- package/dist/types-CfEIdtDo.d.mts.map +1 -0
- package/dist/types.d.mts +2 -2
- package/package.json +5 -1
- package/dist/defaults-7VECSARb.d.mts.map +0 -1
- package/dist/defaults-Bp46Ajyg.mjs.map +0 -1
- package/dist/schemas-CH1UszP5.mjs.map +0 -1
- package/dist/schemas-CY0MaZmU.d.mts.map +0 -1
- package/dist/stack-graph-AWbdUrN3.mjs.map +0 -1
- package/dist/stack-graph-DkJ944IX.d.mts.map +0 -1
- package/dist/stack-translation-C9yYLNwM.d.mts.map +0 -1
- package/dist/stack-translation-Cn6zGJ5q.mjs.map +0 -1
- package/dist/types-fGT5qf7O.d.mts.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
|
-
//#region src/schemas.d.ts
|
|
3
|
+
//#region src/config/schemas.d.ts
|
|
4
4
|
declare const EcosystemSchema: z.ZodEnum<{
|
|
5
5
|
typescript: "typescript";
|
|
6
6
|
"react-native": "react-native";
|
|
@@ -22,51 +22,54 @@ 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
|
-
|
|
25
|
+
effect: "effect";
|
|
26
|
+
ai: "ai";
|
|
26
27
|
frontend: "frontend";
|
|
27
28
|
backend: "backend";
|
|
28
29
|
mobile: "mobile";
|
|
29
30
|
database: "database";
|
|
30
|
-
api: "api";
|
|
31
|
-
graphql: "graphql";
|
|
32
31
|
orm: "orm";
|
|
33
32
|
auth: "auth";
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
payments: "payments";
|
|
34
|
+
examples: "examples";
|
|
35
|
+
packageManager: "packageManager";
|
|
36
36
|
dbSetup: "dbSetup";
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
navigation: "navigation";
|
|
40
|
-
caching: "caching";
|
|
41
|
-
observability: "observability";
|
|
42
|
-
email: "email";
|
|
43
|
-
search: "search";
|
|
44
|
-
vectorDb: "vectorDb";
|
|
45
|
-
fileStorage: "fileStorage";
|
|
46
|
-
jobQueue: "jobQueue";
|
|
47
|
-
rateLimit: "rateLimit";
|
|
48
|
-
botProtection: "botProtection";
|
|
49
|
-
testing: "testing";
|
|
37
|
+
runtime: "runtime";
|
|
38
|
+
api: "api";
|
|
50
39
|
stateManagement: "stateManagement";
|
|
51
40
|
forms: "forms";
|
|
41
|
+
testing: "testing";
|
|
42
|
+
email: "email";
|
|
43
|
+
validation: "validation";
|
|
44
|
+
realtime: "realtime";
|
|
45
|
+
jobQueue: "jobQueue";
|
|
52
46
|
animation: "animation";
|
|
53
47
|
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";
|
|
63
48
|
logging: "logging";
|
|
49
|
+
observability: "observability";
|
|
64
50
|
featureFlags: "featureFlags";
|
|
65
51
|
integrations: "integrations";
|
|
66
52
|
ecommerce: "ecommerce";
|
|
67
53
|
analytics: "analytics";
|
|
68
54
|
cms: "cms";
|
|
55
|
+
caching: "caching";
|
|
56
|
+
rateLimit: "rateLimit";
|
|
57
|
+
botProtection: "botProtection";
|
|
69
58
|
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";
|
|
70
73
|
documentation: "documentation";
|
|
71
74
|
codeQuality: "codeQuality";
|
|
72
75
|
appPlatform: "appPlatform";
|
|
@@ -83,20 +86,17 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
83
86
|
apiGateway: "apiGateway";
|
|
84
87
|
continuousIntegration: "continuousIntegration";
|
|
85
88
|
backendUtilities: "backendUtilities";
|
|
86
|
-
examples: "examples";
|
|
87
89
|
language: "language";
|
|
88
90
|
buildTool: "buildTool";
|
|
89
91
|
cli: "cli";
|
|
90
92
|
errorHandling: "errorHandling";
|
|
91
93
|
httpClient: "httpClient";
|
|
92
94
|
libraries: "libraries";
|
|
93
|
-
config: "config";
|
|
94
95
|
templating: "templating";
|
|
95
96
|
cloudSdk: "cloudSdk";
|
|
96
97
|
data: "data";
|
|
97
98
|
media: "media";
|
|
98
99
|
server: "server";
|
|
99
|
-
packageManager: "packageManager";
|
|
100
100
|
messageQueue: "messageQueue";
|
|
101
101
|
}>;
|
|
102
102
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
@@ -109,51 +109,54 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
109
109
|
declare const StackPartSchema: z.ZodObject<{
|
|
110
110
|
id: z.ZodString;
|
|
111
111
|
role: z.ZodEnum<{
|
|
112
|
-
|
|
112
|
+
effect: "effect";
|
|
113
|
+
ai: "ai";
|
|
113
114
|
frontend: "frontend";
|
|
114
115
|
backend: "backend";
|
|
115
116
|
mobile: "mobile";
|
|
116
117
|
database: "database";
|
|
117
|
-
api: "api";
|
|
118
|
-
graphql: "graphql";
|
|
119
118
|
orm: "orm";
|
|
120
119
|
auth: "auth";
|
|
121
|
-
|
|
122
|
-
|
|
120
|
+
payments: "payments";
|
|
121
|
+
examples: "examples";
|
|
122
|
+
packageManager: "packageManager";
|
|
123
123
|
dbSetup: "dbSetup";
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
navigation: "navigation";
|
|
127
|
-
caching: "caching";
|
|
128
|
-
observability: "observability";
|
|
129
|
-
email: "email";
|
|
130
|
-
search: "search";
|
|
131
|
-
vectorDb: "vectorDb";
|
|
132
|
-
fileStorage: "fileStorage";
|
|
133
|
-
jobQueue: "jobQueue";
|
|
134
|
-
rateLimit: "rateLimit";
|
|
135
|
-
botProtection: "botProtection";
|
|
136
|
-
testing: "testing";
|
|
124
|
+
runtime: "runtime";
|
|
125
|
+
api: "api";
|
|
137
126
|
stateManagement: "stateManagement";
|
|
138
127
|
forms: "forms";
|
|
128
|
+
testing: "testing";
|
|
129
|
+
email: "email";
|
|
130
|
+
validation: "validation";
|
|
131
|
+
realtime: "realtime";
|
|
132
|
+
jobQueue: "jobQueue";
|
|
139
133
|
animation: "animation";
|
|
140
134
|
fileUpload: "fileUpload";
|
|
141
|
-
validation: "validation";
|
|
142
|
-
effect: "effect";
|
|
143
|
-
ui: "ui";
|
|
144
|
-
css: "css";
|
|
145
|
-
storage: "storage";
|
|
146
|
-
ota: "ota";
|
|
147
|
-
deepLinking: "deepLinking";
|
|
148
|
-
ai: "ai";
|
|
149
|
-
payments: "payments";
|
|
150
135
|
logging: "logging";
|
|
136
|
+
observability: "observability";
|
|
151
137
|
featureFlags: "featureFlags";
|
|
152
138
|
integrations: "integrations";
|
|
153
139
|
ecommerce: "ecommerce";
|
|
154
140
|
analytics: "analytics";
|
|
155
141
|
cms: "cms";
|
|
142
|
+
caching: "caching";
|
|
143
|
+
rateLimit: "rateLimit";
|
|
144
|
+
botProtection: "botProtection";
|
|
156
145
|
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";
|
|
157
160
|
documentation: "documentation";
|
|
158
161
|
codeQuality: "codeQuality";
|
|
159
162
|
appPlatform: "appPlatform";
|
|
@@ -170,20 +173,17 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
170
173
|
apiGateway: "apiGateway";
|
|
171
174
|
continuousIntegration: "continuousIntegration";
|
|
172
175
|
backendUtilities: "backendUtilities";
|
|
173
|
-
examples: "examples";
|
|
174
176
|
language: "language";
|
|
175
177
|
buildTool: "buildTool";
|
|
176
178
|
cli: "cli";
|
|
177
179
|
errorHandling: "errorHandling";
|
|
178
180
|
httpClient: "httpClient";
|
|
179
181
|
libraries: "libraries";
|
|
180
|
-
config: "config";
|
|
181
182
|
templating: "templating";
|
|
182
183
|
cloudSdk: "cloudSdk";
|
|
183
184
|
data: "data";
|
|
184
185
|
media: "media";
|
|
185
186
|
server: "server";
|
|
186
|
-
packageManager: "packageManager";
|
|
187
187
|
messageQueue: "messageQueue";
|
|
188
188
|
}>;
|
|
189
189
|
toolId: z.ZodString;
|
|
@@ -207,7 +207,7 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
207
207
|
}>;
|
|
208
208
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
209
209
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
210
|
-
settings: z.ZodOptional<z.
|
|
210
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
211
211
|
}, z.core.$strip>;
|
|
212
212
|
declare const DatabaseSchema: z.ZodEnum<{
|
|
213
213
|
none: "none";
|
|
@@ -229,13 +229,13 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
229
229
|
sequelize: "sequelize";
|
|
230
230
|
}>;
|
|
231
231
|
declare const BackendSchema: z.ZodEnum<{
|
|
232
|
-
effect: "effect";
|
|
233
232
|
none: "none";
|
|
234
233
|
hono: "hono";
|
|
235
234
|
express: "express";
|
|
236
235
|
fastify: "fastify";
|
|
237
236
|
elysia: "elysia";
|
|
238
237
|
fets: "fets";
|
|
238
|
+
effect: "effect";
|
|
239
239
|
nestjs: "nestjs";
|
|
240
240
|
adonisjs: "adonisjs";
|
|
241
241
|
nitro: "nitro";
|
|
@@ -326,8 +326,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
326
326
|
/** @deprecated Use tooling capability metadata and Stack Part role bindings. */
|
|
327
327
|
declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
|
|
328
328
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
329
|
-
ai: "ai";
|
|
330
329
|
none: "none";
|
|
330
|
+
ai: "ai";
|
|
331
331
|
"chat-sdk": "chat-sdk";
|
|
332
332
|
"tanstack-showcase": "tanstack-showcase";
|
|
333
333
|
}>;
|
|
@@ -435,8 +435,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
435
435
|
"ai-cli": "ai-cli";
|
|
436
436
|
}>;
|
|
437
437
|
declare const EffectSchema: z.ZodEnum<{
|
|
438
|
-
effect: "effect";
|
|
439
438
|
none: "none";
|
|
439
|
+
effect: "effect";
|
|
440
440
|
"effect-full": "effect-full";
|
|
441
441
|
}>;
|
|
442
442
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -623,9 +623,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
623
623
|
}>;
|
|
624
624
|
declare const MobileUISchema: z.ZodEnum<{
|
|
625
625
|
none: "none";
|
|
626
|
+
uniwind: "uniwind";
|
|
626
627
|
tamagui: "tamagui";
|
|
627
628
|
"gluestack-ui": "gluestack-ui";
|
|
628
|
-
uniwind: "uniwind";
|
|
629
629
|
unistyles: "unistyles";
|
|
630
630
|
}>;
|
|
631
631
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -741,12 +741,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
741
741
|
ratatui: "ratatui";
|
|
742
742
|
}>;
|
|
743
743
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
744
|
-
config: "config";
|
|
745
744
|
none: "none";
|
|
746
745
|
serde: "serde";
|
|
747
746
|
uuid: "uuid";
|
|
748
747
|
chrono: "chrono";
|
|
749
748
|
reqwest: "reqwest";
|
|
749
|
+
config: "config";
|
|
750
750
|
dashmap: "dashmap";
|
|
751
751
|
"parking-lot": "parking-lot";
|
|
752
752
|
secrecy: "secrecy";
|
|
@@ -1446,48 +1446,130 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
1446
1446
|
"geist-mono": "geist-mono";
|
|
1447
1447
|
}>;
|
|
1448
1448
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
1449
|
-
default: "default";
|
|
1450
1449
|
none: "none";
|
|
1450
|
+
default: "default";
|
|
1451
1451
|
small: "small";
|
|
1452
1452
|
medium: "medium";
|
|
1453
1453
|
large: "large";
|
|
1454
1454
|
}>;
|
|
1455
|
+
declare const SHADCN_STACK_PART_SETTING_KEYS: readonly ["shadcnBase", "shadcnStyle", "shadcnIconLibrary", "shadcnColorTheme", "shadcnBaseColor", "shadcnFont", "shadcnRadius"];
|
|
1456
|
+
declare const StackPartSettingsSchema: z.ZodObject<{
|
|
1457
|
+
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1458
|
+
none: "none";
|
|
1459
|
+
vue: "vue";
|
|
1460
|
+
svelte: "svelte";
|
|
1461
|
+
solid: "solid";
|
|
1462
|
+
react: "react";
|
|
1463
|
+
}>>;
|
|
1464
|
+
shadcnBase: z.ZodOptional<z.ZodEnum<{
|
|
1465
|
+
radix: "radix";
|
|
1466
|
+
base: "base";
|
|
1467
|
+
}>>;
|
|
1468
|
+
shadcnStyle: z.ZodOptional<z.ZodEnum<{
|
|
1469
|
+
vega: "vega";
|
|
1470
|
+
nova: "nova";
|
|
1471
|
+
maia: "maia";
|
|
1472
|
+
lyra: "lyra";
|
|
1473
|
+
mira: "mira";
|
|
1474
|
+
luma: "luma";
|
|
1475
|
+
sera: "sera";
|
|
1476
|
+
}>>;
|
|
1477
|
+
shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1478
|
+
lucide: "lucide";
|
|
1479
|
+
tabler: "tabler";
|
|
1480
|
+
hugeicons: "hugeicons";
|
|
1481
|
+
phosphor: "phosphor";
|
|
1482
|
+
remixicon: "remixicon";
|
|
1483
|
+
heroicons: "heroicons";
|
|
1484
|
+
"react-icons": "react-icons";
|
|
1485
|
+
}>>;
|
|
1486
|
+
shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
|
|
1487
|
+
neutral: "neutral";
|
|
1488
|
+
stone: "stone";
|
|
1489
|
+
zinc: "zinc";
|
|
1490
|
+
gray: "gray";
|
|
1491
|
+
amber: "amber";
|
|
1492
|
+
blue: "blue";
|
|
1493
|
+
cyan: "cyan";
|
|
1494
|
+
emerald: "emerald";
|
|
1495
|
+
fuchsia: "fuchsia";
|
|
1496
|
+
green: "green";
|
|
1497
|
+
indigo: "indigo";
|
|
1498
|
+
lime: "lime";
|
|
1499
|
+
orange: "orange";
|
|
1500
|
+
pink: "pink";
|
|
1501
|
+
purple: "purple";
|
|
1502
|
+
red: "red";
|
|
1503
|
+
rose: "rose";
|
|
1504
|
+
sky: "sky";
|
|
1505
|
+
teal: "teal";
|
|
1506
|
+
violet: "violet";
|
|
1507
|
+
yellow: "yellow";
|
|
1508
|
+
}>>;
|
|
1509
|
+
shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
|
|
1510
|
+
neutral: "neutral";
|
|
1511
|
+
stone: "stone";
|
|
1512
|
+
zinc: "zinc";
|
|
1513
|
+
gray: "gray";
|
|
1514
|
+
}>>;
|
|
1515
|
+
shadcnFont: z.ZodOptional<z.ZodEnum<{
|
|
1516
|
+
inter: "inter";
|
|
1517
|
+
geist: "geist";
|
|
1518
|
+
"noto-sans": "noto-sans";
|
|
1519
|
+
"nunito-sans": "nunito-sans";
|
|
1520
|
+
figtree: "figtree";
|
|
1521
|
+
roboto: "roboto";
|
|
1522
|
+
raleway: "raleway";
|
|
1523
|
+
"dm-sans": "dm-sans";
|
|
1524
|
+
"public-sans": "public-sans";
|
|
1525
|
+
outfit: "outfit";
|
|
1526
|
+
"jetbrains-mono": "jetbrains-mono";
|
|
1527
|
+
"geist-mono": "geist-mono";
|
|
1528
|
+
}>>;
|
|
1529
|
+
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1530
|
+
none: "none";
|
|
1531
|
+
default: "default";
|
|
1532
|
+
small: "small";
|
|
1533
|
+
medium: "medium";
|
|
1534
|
+
large: "large";
|
|
1535
|
+
}>>;
|
|
1536
|
+
}, z.core.$catchall<z.ZodUnknown>>;
|
|
1455
1537
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1456
|
-
error: "error";
|
|
1457
1538
|
merge: "merge";
|
|
1458
1539
|
overwrite: "overwrite";
|
|
1459
1540
|
increment: "increment";
|
|
1541
|
+
error: "error";
|
|
1460
1542
|
}>;
|
|
1461
1543
|
declare const TemplateSchema: z.ZodEnum<{
|
|
1462
1544
|
none: "none";
|
|
1463
|
-
uniwind: "uniwind";
|
|
1464
1545
|
mern: "mern";
|
|
1465
1546
|
pern: "pern";
|
|
1466
1547
|
t3: "t3";
|
|
1467
1548
|
saas: "saas";
|
|
1549
|
+
uniwind: "uniwind";
|
|
1468
1550
|
}>;
|
|
1469
1551
|
declare const ProjectShapeSchema: z.ZodEnum<{
|
|
1552
|
+
fullstack: "fullstack";
|
|
1470
1553
|
frontend: "frontend";
|
|
1471
1554
|
backend: "backend";
|
|
1472
1555
|
mobile: "mobile";
|
|
1473
|
-
fullstack: "fullstack";
|
|
1474
1556
|
}>;
|
|
1475
1557
|
declare const ProjectNameSchema: z.ZodString;
|
|
1476
1558
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1477
1559
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1478
1560
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1479
1561
|
none: "none";
|
|
1480
|
-
uniwind: "uniwind";
|
|
1481
1562
|
mern: "mern";
|
|
1482
1563
|
pern: "pern";
|
|
1483
1564
|
t3: "t3";
|
|
1484
1565
|
saas: "saas";
|
|
1566
|
+
uniwind: "uniwind";
|
|
1485
1567
|
}>>;
|
|
1486
1568
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
1569
|
+
fullstack: "fullstack";
|
|
1487
1570
|
frontend: "frontend";
|
|
1488
1571
|
backend: "backend";
|
|
1489
1572
|
mobile: "mobile";
|
|
1490
|
-
fullstack: "fullstack";
|
|
1491
1573
|
}>>;
|
|
1492
1574
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1493
1575
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1619,8 +1701,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1619
1701
|
capacitor: "capacitor";
|
|
1620
1702
|
}>>>;
|
|
1621
1703
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1622
|
-
ai: "ai";
|
|
1623
1704
|
none: "none";
|
|
1705
|
+
ai: "ai";
|
|
1624
1706
|
"chat-sdk": "chat-sdk";
|
|
1625
1707
|
"tanstack-showcase": "tanstack-showcase";
|
|
1626
1708
|
}>>>;
|
|
@@ -1654,13 +1736,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1654
1736
|
docker: "docker";
|
|
1655
1737
|
}>>;
|
|
1656
1738
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
1657
|
-
effect: "effect";
|
|
1658
1739
|
none: "none";
|
|
1659
1740
|
hono: "hono";
|
|
1660
1741
|
express: "express";
|
|
1661
1742
|
fastify: "fastify";
|
|
1662
1743
|
elysia: "elysia";
|
|
1663
1744
|
fets: "fets";
|
|
1745
|
+
effect: "effect";
|
|
1664
1746
|
nestjs: "nestjs";
|
|
1665
1747
|
adonisjs: "adonisjs";
|
|
1666
1748
|
nitro: "nitro";
|
|
@@ -1707,10 +1789,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1707
1789
|
vercel: "vercel";
|
|
1708
1790
|
}>>;
|
|
1709
1791
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1710
|
-
error: "error";
|
|
1711
1792
|
merge: "merge";
|
|
1712
1793
|
overwrite: "overwrite";
|
|
1713
1794
|
increment: "increment";
|
|
1795
|
+
error: "error";
|
|
1714
1796
|
}>>;
|
|
1715
1797
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1716
1798
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1739,8 +1821,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1739
1821
|
"ai-cli": "ai-cli";
|
|
1740
1822
|
}>>;
|
|
1741
1823
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1742
|
-
effect: "effect";
|
|
1743
1824
|
none: "none";
|
|
1825
|
+
effect: "effect";
|
|
1744
1826
|
"effect-full": "effect-full";
|
|
1745
1827
|
}>>;
|
|
1746
1828
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1875,8 +1957,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1875
1957
|
"geist-mono": "geist-mono";
|
|
1876
1958
|
}>>;
|
|
1877
1959
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1878
|
-
default: "default";
|
|
1879
1960
|
none: "none";
|
|
1961
|
+
default: "default";
|
|
1880
1962
|
small: "small";
|
|
1881
1963
|
medium: "medium";
|
|
1882
1964
|
large: "large";
|
|
@@ -2024,9 +2106,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2024
2106
|
}>>;
|
|
2025
2107
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2026
2108
|
none: "none";
|
|
2109
|
+
uniwind: "uniwind";
|
|
2027
2110
|
tamagui: "tamagui";
|
|
2028
2111
|
"gluestack-ui": "gluestack-ui";
|
|
2029
|
-
uniwind: "uniwind";
|
|
2030
2112
|
unistyles: "unistyles";
|
|
2031
2113
|
}>>;
|
|
2032
2114
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2142,12 +2224,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2142
2224
|
ratatui: "ratatui";
|
|
2143
2225
|
}>>;
|
|
2144
2226
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2145
|
-
config: "config";
|
|
2146
2227
|
none: "none";
|
|
2147
2228
|
serde: "serde";
|
|
2148
2229
|
uuid: "uuid";
|
|
2149
2230
|
chrono: "chrono";
|
|
2150
2231
|
reqwest: "reqwest";
|
|
2232
|
+
config: "config";
|
|
2151
2233
|
dashmap: "dashmap";
|
|
2152
2234
|
"parking-lot": "parking-lot";
|
|
2153
2235
|
secrecy: "secrecy";
|
|
@@ -2759,6 +2841,27 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2759
2841
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2760
2842
|
}, z.core.$strip>;
|
|
2761
2843
|
declare const AddInputSchema: z.ZodObject<{
|
|
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
|
+
}>>;
|
|
2762
2865
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2763
2866
|
none: "none";
|
|
2764
2867
|
"tanstack-router": "tanstack-router";
|
|
@@ -2783,13 +2886,13 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2783
2886
|
fresh: "fresh";
|
|
2784
2887
|
}>>>;
|
|
2785
2888
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
2786
|
-
effect: "effect";
|
|
2787
2889
|
none: "none";
|
|
2788
2890
|
hono: "hono";
|
|
2789
2891
|
express: "express";
|
|
2790
2892
|
fastify: "fastify";
|
|
2791
2893
|
elysia: "elysia";
|
|
2792
2894
|
fets: "fets";
|
|
2895
|
+
effect: "effect";
|
|
2793
2896
|
nestjs: "nestjs";
|
|
2794
2897
|
adonisjs: "adonisjs";
|
|
2795
2898
|
nitro: "nitro";
|
|
@@ -2797,6 +2900,17 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2797
2900
|
convex: "convex";
|
|
2798
2901
|
self: "self";
|
|
2799
2902
|
}>>;
|
|
2903
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2904
|
+
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2905
|
+
typescript: "typescript";
|
|
2906
|
+
"react-native": "react-native";
|
|
2907
|
+
rust: "rust";
|
|
2908
|
+
python: "python";
|
|
2909
|
+
go: "go";
|
|
2910
|
+
java: "java";
|
|
2911
|
+
elixir: "elixir";
|
|
2912
|
+
dotnet: "dotnet";
|
|
2913
|
+
}>>;
|
|
2800
2914
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2801
2915
|
none: "none";
|
|
2802
2916
|
sqlite: "sqlite";
|
|
@@ -2806,16 +2920,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2806
2920
|
edgedb: "edgedb";
|
|
2807
2921
|
redis: "redis";
|
|
2808
2922
|
}>>;
|
|
2809
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
2810
|
-
none: "none";
|
|
2811
|
-
trpc: "trpc";
|
|
2812
|
-
orpc: "orpc";
|
|
2813
|
-
"ts-rest": "ts-rest";
|
|
2814
|
-
garph: "garph";
|
|
2815
|
-
"graphql-yoga": "graphql-yoga";
|
|
2816
|
-
"apollo-server": "apollo-server";
|
|
2817
|
-
openapi: "openapi";
|
|
2818
|
-
}>>;
|
|
2819
2923
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
2820
2924
|
none: "none";
|
|
2821
2925
|
drizzle: "drizzle";
|
|
@@ -2840,175 +2944,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2840
2944
|
kinde: "kinde";
|
|
2841
2945
|
passport: "passport";
|
|
2842
2946
|
}>>;
|
|
2843
|
-
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2844
|
-
none: "none";
|
|
2845
|
-
bun: "bun";
|
|
2846
|
-
node: "node";
|
|
2847
|
-
workers: "workers";
|
|
2848
|
-
}>>;
|
|
2849
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2850
|
-
none: "none";
|
|
2851
|
-
turso: "turso";
|
|
2852
|
-
neon: "neon";
|
|
2853
|
-
"prisma-postgres": "prisma-postgres";
|
|
2854
|
-
planetscale: "planetscale";
|
|
2855
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
2856
|
-
supabase: "supabase";
|
|
2857
|
-
upstash: "upstash";
|
|
2858
|
-
d1: "d1";
|
|
2859
|
-
docker: "docker";
|
|
2860
|
-
}>>;
|
|
2861
|
-
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2862
|
-
none: "none";
|
|
2863
|
-
"socket-io": "socket-io";
|
|
2864
|
-
ws: "ws";
|
|
2865
|
-
partykit: "partykit";
|
|
2866
|
-
ably: "ably";
|
|
2867
|
-
pusher: "pusher";
|
|
2868
|
-
liveblocks: "liveblocks";
|
|
2869
|
-
yjs: "yjs";
|
|
2870
|
-
}>>;
|
|
2871
|
-
caching: z.ZodOptional<z.ZodEnum<{
|
|
2872
|
-
none: "none";
|
|
2873
|
-
redis: "redis";
|
|
2874
|
-
"upstash-redis": "upstash-redis";
|
|
2875
|
-
}>>;
|
|
2876
|
-
observability: z.ZodOptional<z.ZodEnum<{
|
|
2877
|
-
none: "none";
|
|
2878
|
-
opentelemetry: "opentelemetry";
|
|
2879
|
-
signoz: "signoz";
|
|
2880
|
-
sentry: "sentry";
|
|
2881
|
-
grafana: "grafana";
|
|
2882
|
-
datadog: "datadog";
|
|
2883
|
-
axiom: "axiom";
|
|
2884
|
-
betterstack: "betterstack";
|
|
2885
|
-
}>>;
|
|
2886
|
-
email: z.ZodOptional<z.ZodEnum<{
|
|
2887
|
-
none: "none";
|
|
2888
|
-
"react-email": "react-email";
|
|
2889
|
-
resend: "resend";
|
|
2890
|
-
nodemailer: "nodemailer";
|
|
2891
|
-
postmark: "postmark";
|
|
2892
|
-
sendgrid: "sendgrid";
|
|
2893
|
-
"aws-ses": "aws-ses";
|
|
2894
|
-
mailgun: "mailgun";
|
|
2895
|
-
plunk: "plunk";
|
|
2896
|
-
}>>;
|
|
2897
|
-
search: z.ZodOptional<z.ZodEnum<{
|
|
2898
|
-
none: "none";
|
|
2899
|
-
meilisearch: "meilisearch";
|
|
2900
|
-
typesense: "typesense";
|
|
2901
|
-
elasticsearch: "elasticsearch";
|
|
2902
|
-
opensearch: "opensearch";
|
|
2903
|
-
algolia: "algolia";
|
|
2904
|
-
bleve: "bleve";
|
|
2905
|
-
}>>;
|
|
2906
|
-
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2907
|
-
none: "none";
|
|
2908
|
-
pgvector: "pgvector";
|
|
2909
|
-
qdrant: "qdrant";
|
|
2910
|
-
chroma: "chroma";
|
|
2911
|
-
pinecone: "pinecone";
|
|
2912
|
-
}>>;
|
|
2913
|
-
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
2914
|
-
none: "none";
|
|
2915
|
-
s3: "s3";
|
|
2916
|
-
r2: "r2";
|
|
2917
|
-
cloudinary: "cloudinary";
|
|
2918
|
-
"supabase-storage": "supabase-storage";
|
|
2919
|
-
}>>;
|
|
2920
|
-
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2921
|
-
none: "none";
|
|
2922
|
-
bullmq: "bullmq";
|
|
2923
|
-
"trigger-dev": "trigger-dev";
|
|
2924
|
-
inngest: "inngest";
|
|
2925
|
-
temporal: "temporal";
|
|
2926
|
-
}>>;
|
|
2927
|
-
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2928
|
-
none: "none";
|
|
2929
|
-
arcjet: "arcjet";
|
|
2930
|
-
"upstash-ratelimit": "upstash-ratelimit";
|
|
2931
|
-
}>>;
|
|
2932
|
-
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
2933
|
-
none: "none";
|
|
2934
|
-
botid: "botid";
|
|
2935
|
-
turnstile: "turnstile";
|
|
2936
|
-
}>>;
|
|
2937
|
-
testing: z.ZodOptional<z.ZodEnum<{
|
|
2938
|
-
none: "none";
|
|
2939
|
-
vitest: "vitest";
|
|
2940
|
-
playwright: "playwright";
|
|
2941
|
-
"vitest-playwright": "vitest-playwright";
|
|
2942
|
-
jest: "jest";
|
|
2943
|
-
mocha: "mocha";
|
|
2944
|
-
cypress: "cypress";
|
|
2945
|
-
}>>;
|
|
2946
|
-
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2947
|
-
none: "none";
|
|
2948
|
-
zustand: "zustand";
|
|
2949
|
-
jotai: "jotai";
|
|
2950
|
-
nanostores: "nanostores";
|
|
2951
|
-
"redux-toolkit": "redux-toolkit";
|
|
2952
|
-
mobx: "mobx";
|
|
2953
|
-
xstate: "xstate";
|
|
2954
|
-
valtio: "valtio";
|
|
2955
|
-
"tanstack-store": "tanstack-store";
|
|
2956
|
-
"legend-state": "legend-state";
|
|
2957
|
-
}>>;
|
|
2958
|
-
forms: z.ZodOptional<z.ZodEnum<{
|
|
2959
|
-
none: "none";
|
|
2960
|
-
"tanstack-form": "tanstack-form";
|
|
2961
|
-
"react-hook-form": "react-hook-form";
|
|
2962
|
-
formik: "formik";
|
|
2963
|
-
"final-form": "final-form";
|
|
2964
|
-
conform: "conform";
|
|
2965
|
-
"modular-forms": "modular-forms";
|
|
2966
|
-
}>>;
|
|
2967
|
-
animation: z.ZodOptional<z.ZodEnum<{
|
|
2968
|
-
none: "none";
|
|
2969
|
-
"framer-motion": "framer-motion";
|
|
2970
|
-
gsap: "gsap";
|
|
2971
|
-
"react-spring": "react-spring";
|
|
2972
|
-
"auto-animate": "auto-animate";
|
|
2973
|
-
lottie: "lottie";
|
|
2974
|
-
}>>;
|
|
2975
|
-
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2976
|
-
none: "none";
|
|
2977
|
-
uploadthing: "uploadthing";
|
|
2978
|
-
filepond: "filepond";
|
|
2979
|
-
uppy: "uppy";
|
|
2980
|
-
}>>;
|
|
2981
|
-
validation: z.ZodOptional<z.ZodEnum<{
|
|
2982
|
-
none: "none";
|
|
2983
|
-
zod: "zod";
|
|
2984
|
-
valibot: "valibot";
|
|
2985
|
-
arktype: "arktype";
|
|
2986
|
-
typebox: "typebox";
|
|
2987
|
-
typia: "typia";
|
|
2988
|
-
runtypes: "runtypes";
|
|
2989
|
-
"effect-schema": "effect-schema";
|
|
2990
|
-
}>>;
|
|
2991
|
-
effect: z.ZodOptional<z.ZodEnum<{
|
|
2992
|
-
effect: "effect";
|
|
2993
|
-
none: "none";
|
|
2994
|
-
"effect-full": "effect-full";
|
|
2995
|
-
}>>;
|
|
2996
|
-
ai: z.ZodOptional<z.ZodEnum<{
|
|
2997
|
-
none: "none";
|
|
2998
|
-
"vercel-ai": "vercel-ai";
|
|
2999
|
-
mastra: "mastra";
|
|
3000
|
-
voltagent: "voltagent";
|
|
3001
|
-
langgraph: "langgraph";
|
|
3002
|
-
"openai-agents": "openai-agents";
|
|
3003
|
-
"openai-sdk": "openai-sdk";
|
|
3004
|
-
"anthropic-sdk": "anthropic-sdk";
|
|
3005
|
-
"google-adk": "google-adk";
|
|
3006
|
-
modelfusion: "modelfusion";
|
|
3007
|
-
langchain: "langchain";
|
|
3008
|
-
llamaindex: "llamaindex";
|
|
3009
|
-
"tanstack-ai": "tanstack-ai";
|
|
3010
|
-
"ai-cli": "ai-cli";
|
|
3011
|
-
}>>;
|
|
3012
2947
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
3013
2948
|
none: "none";
|
|
3014
2949
|
revenuecat: "revenuecat";
|
|
@@ -3023,76 +2958,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3023
2958
|
commet: "commet";
|
|
3024
2959
|
xendit: "xendit";
|
|
3025
2960
|
}>>;
|
|
3026
|
-
logging: z.ZodOptional<z.ZodEnum<{
|
|
3027
|
-
none: "none";
|
|
3028
|
-
pino: "pino";
|
|
3029
|
-
winston: "winston";
|
|
3030
|
-
evlog: "evlog";
|
|
3031
|
-
}>>;
|
|
3032
|
-
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3033
|
-
none: "none";
|
|
3034
|
-
growthbook: "growthbook";
|
|
3035
|
-
posthog: "posthog";
|
|
3036
|
-
launchdarkly: "launchdarkly";
|
|
3037
|
-
flagsmith: "flagsmith";
|
|
3038
|
-
unleash: "unleash";
|
|
3039
|
-
}>>;
|
|
3040
|
-
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3041
|
-
none: "none";
|
|
3042
|
-
nango: "nango";
|
|
3043
|
-
}>>;
|
|
3044
|
-
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3045
|
-
none: "none";
|
|
3046
|
-
medusa: "medusa";
|
|
3047
|
-
}>>;
|
|
3048
|
-
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3049
|
-
none: "none";
|
|
3050
|
-
posthog: "posthog";
|
|
3051
|
-
plausible: "plausible";
|
|
3052
|
-
umami: "umami";
|
|
3053
|
-
ga4: "ga4";
|
|
3054
|
-
"vercel-analytics": "vercel-analytics";
|
|
3055
|
-
}>>;
|
|
3056
|
-
cms: z.ZodOptional<z.ZodEnum<{
|
|
3057
|
-
none: "none";
|
|
3058
|
-
payload: "payload";
|
|
3059
|
-
sanity: "sanity";
|
|
3060
|
-
strapi: "strapi";
|
|
3061
|
-
tinacms: "tinacms";
|
|
3062
|
-
directus: "directus";
|
|
3063
|
-
keystatic: "keystatic";
|
|
3064
|
-
contentful: "contentful";
|
|
3065
|
-
}>>;
|
|
3066
|
-
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3067
|
-
none: "none";
|
|
3068
|
-
paraglide: "paraglide";
|
|
3069
|
-
i18next: "i18next";
|
|
3070
|
-
"next-intl": "next-intl";
|
|
3071
|
-
intlayer: "intlayer";
|
|
3072
|
-
}>>;
|
|
3073
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3074
|
-
ai: "ai";
|
|
3075
|
-
none: "none";
|
|
3076
|
-
"chat-sdk": "chat-sdk";
|
|
3077
|
-
"tanstack-showcase": "tanstack-showcase";
|
|
3078
|
-
}>>>;
|
|
3079
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
3080
|
-
bun: "bun";
|
|
3081
|
-
npm: "npm";
|
|
3082
|
-
pnpm: "pnpm";
|
|
3083
|
-
yarn: "yarn";
|
|
3084
|
-
}>>;
|
|
3085
|
-
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
3086
|
-
typescript: "typescript";
|
|
3087
|
-
"react-native": "react-native";
|
|
3088
|
-
rust: "rust";
|
|
3089
|
-
python: "python";
|
|
3090
|
-
go: "go";
|
|
3091
|
-
java: "java";
|
|
3092
|
-
elixir: "elixir";
|
|
3093
|
-
dotnet: "dotnet";
|
|
3094
|
-
}>>;
|
|
3095
|
-
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
3096
2961
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3097
2962
|
none: "none";
|
|
3098
2963
|
pwa: "pwa";
|
|
@@ -3137,6 +3002,18 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3137
3002
|
electron: "electron";
|
|
3138
3003
|
capacitor: "capacitor";
|
|
3139
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
|
+
}>>;
|
|
3140
3017
|
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3141
3018
|
monorepo: "monorepo";
|
|
3142
3019
|
"single-app": "single-app";
|
|
@@ -3147,6 +3024,34 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3147
3024
|
beta: "beta";
|
|
3148
3025
|
}>>;
|
|
3149
3026
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
3027
|
+
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
3028
|
+
none: "none";
|
|
3029
|
+
turso: "turso";
|
|
3030
|
+
neon: "neon";
|
|
3031
|
+
"prisma-postgres": "prisma-postgres";
|
|
3032
|
+
planetscale: "planetscale";
|
|
3033
|
+
"mongodb-atlas": "mongodb-atlas";
|
|
3034
|
+
supabase: "supabase";
|
|
3035
|
+
upstash: "upstash";
|
|
3036
|
+
d1: "d1";
|
|
3037
|
+
docker: "docker";
|
|
3038
|
+
}>>;
|
|
3039
|
+
runtime: z.ZodOptional<z.ZodEnum<{
|
|
3040
|
+
none: "none";
|
|
3041
|
+
bun: "bun";
|
|
3042
|
+
node: "node";
|
|
3043
|
+
workers: "workers";
|
|
3044
|
+
}>>;
|
|
3045
|
+
api: z.ZodOptional<z.ZodEnum<{
|
|
3046
|
+
none: "none";
|
|
3047
|
+
trpc: "trpc";
|
|
3048
|
+
orpc: "orpc";
|
|
3049
|
+
"ts-rest": "ts-rest";
|
|
3050
|
+
garph: "garph";
|
|
3051
|
+
"graphql-yoga": "graphql-yoga";
|
|
3052
|
+
"apollo-server": "apollo-server";
|
|
3053
|
+
openapi: "openapi";
|
|
3054
|
+
}>>;
|
|
3150
3055
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
3151
3056
|
none: "none";
|
|
3152
3057
|
docker: "docker";
|
|
@@ -3176,6 +3081,47 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3176
3081
|
solid: "solid";
|
|
3177
3082
|
react: "react";
|
|
3178
3083
|
}>>;
|
|
3084
|
+
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
3085
|
+
none: "none";
|
|
3086
|
+
zustand: "zustand";
|
|
3087
|
+
jotai: "jotai";
|
|
3088
|
+
nanostores: "nanostores";
|
|
3089
|
+
"redux-toolkit": "redux-toolkit";
|
|
3090
|
+
mobx: "mobx";
|
|
3091
|
+
xstate: "xstate";
|
|
3092
|
+
valtio: "valtio";
|
|
3093
|
+
"tanstack-store": "tanstack-store";
|
|
3094
|
+
"legend-state": "legend-state";
|
|
3095
|
+
}>>;
|
|
3096
|
+
forms: z.ZodOptional<z.ZodEnum<{
|
|
3097
|
+
none: "none";
|
|
3098
|
+
"tanstack-form": "tanstack-form";
|
|
3099
|
+
"react-hook-form": "react-hook-form";
|
|
3100
|
+
formik: "formik";
|
|
3101
|
+
"final-form": "final-form";
|
|
3102
|
+
conform: "conform";
|
|
3103
|
+
"modular-forms": "modular-forms";
|
|
3104
|
+
}>>;
|
|
3105
|
+
testing: z.ZodOptional<z.ZodEnum<{
|
|
3106
|
+
none: "none";
|
|
3107
|
+
vitest: "vitest";
|
|
3108
|
+
playwright: "playwright";
|
|
3109
|
+
"vitest-playwright": "vitest-playwright";
|
|
3110
|
+
jest: "jest";
|
|
3111
|
+
mocha: "mocha";
|
|
3112
|
+
cypress: "cypress";
|
|
3113
|
+
}>>;
|
|
3114
|
+
email: z.ZodOptional<z.ZodEnum<{
|
|
3115
|
+
none: "none";
|
|
3116
|
+
"react-email": "react-email";
|
|
3117
|
+
resend: "resend";
|
|
3118
|
+
nodemailer: "nodemailer";
|
|
3119
|
+
postmark: "postmark";
|
|
3120
|
+
sendgrid: "sendgrid";
|
|
3121
|
+
"aws-ses": "aws-ses";
|
|
3122
|
+
mailgun: "mailgun";
|
|
3123
|
+
plunk: "plunk";
|
|
3124
|
+
}>>;
|
|
3179
3125
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
3180
3126
|
none: "none";
|
|
3181
3127
|
tailwind: "tailwind";
|
|
@@ -3246,32 +3192,168 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3246
3192
|
violet: "violet";
|
|
3247
3193
|
yellow: "yellow";
|
|
3248
3194
|
}>>;
|
|
3249
|
-
shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
|
|
3250
|
-
neutral: "neutral";
|
|
3251
|
-
stone: "stone";
|
|
3252
|
-
zinc: "zinc";
|
|
3253
|
-
gray: "gray";
|
|
3195
|
+
shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
|
|
3196
|
+
neutral: "neutral";
|
|
3197
|
+
stone: "stone";
|
|
3198
|
+
zinc: "zinc";
|
|
3199
|
+
gray: "gray";
|
|
3200
|
+
}>>;
|
|
3201
|
+
shadcnFont: z.ZodOptional<z.ZodEnum<{
|
|
3202
|
+
inter: "inter";
|
|
3203
|
+
geist: "geist";
|
|
3204
|
+
"noto-sans": "noto-sans";
|
|
3205
|
+
"nunito-sans": "nunito-sans";
|
|
3206
|
+
figtree: "figtree";
|
|
3207
|
+
roboto: "roboto";
|
|
3208
|
+
raleway: "raleway";
|
|
3209
|
+
"dm-sans": "dm-sans";
|
|
3210
|
+
"public-sans": "public-sans";
|
|
3211
|
+
outfit: "outfit";
|
|
3212
|
+
"jetbrains-mono": "jetbrains-mono";
|
|
3213
|
+
"geist-mono": "geist-mono";
|
|
3214
|
+
}>>;
|
|
3215
|
+
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3216
|
+
none: "none";
|
|
3217
|
+
default: "default";
|
|
3218
|
+
small: "small";
|
|
3219
|
+
medium: "medium";
|
|
3220
|
+
large: "large";
|
|
3221
|
+
}>>;
|
|
3222
|
+
validation: z.ZodOptional<z.ZodEnum<{
|
|
3223
|
+
none: "none";
|
|
3224
|
+
zod: "zod";
|
|
3225
|
+
valibot: "valibot";
|
|
3226
|
+
arktype: "arktype";
|
|
3227
|
+
typebox: "typebox";
|
|
3228
|
+
typia: "typia";
|
|
3229
|
+
runtypes: "runtypes";
|
|
3230
|
+
"effect-schema": "effect-schema";
|
|
3231
|
+
}>>;
|
|
3232
|
+
realtime: z.ZodOptional<z.ZodEnum<{
|
|
3233
|
+
none: "none";
|
|
3234
|
+
"socket-io": "socket-io";
|
|
3235
|
+
ws: "ws";
|
|
3236
|
+
partykit: "partykit";
|
|
3237
|
+
ably: "ably";
|
|
3238
|
+
pusher: "pusher";
|
|
3239
|
+
liveblocks: "liveblocks";
|
|
3240
|
+
yjs: "yjs";
|
|
3241
|
+
}>>;
|
|
3242
|
+
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
3243
|
+
none: "none";
|
|
3244
|
+
bullmq: "bullmq";
|
|
3245
|
+
"trigger-dev": "trigger-dev";
|
|
3246
|
+
inngest: "inngest";
|
|
3247
|
+
temporal: "temporal";
|
|
3248
|
+
}>>;
|
|
3249
|
+
animation: z.ZodOptional<z.ZodEnum<{
|
|
3250
|
+
none: "none";
|
|
3251
|
+
"framer-motion": "framer-motion";
|
|
3252
|
+
gsap: "gsap";
|
|
3253
|
+
"react-spring": "react-spring";
|
|
3254
|
+
"auto-animate": "auto-animate";
|
|
3255
|
+
lottie: "lottie";
|
|
3256
|
+
}>>;
|
|
3257
|
+
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
3258
|
+
none: "none";
|
|
3259
|
+
uploadthing: "uploadthing";
|
|
3260
|
+
filepond: "filepond";
|
|
3261
|
+
uppy: "uppy";
|
|
3262
|
+
}>>;
|
|
3263
|
+
logging: z.ZodOptional<z.ZodEnum<{
|
|
3264
|
+
none: "none";
|
|
3265
|
+
pino: "pino";
|
|
3266
|
+
winston: "winston";
|
|
3267
|
+
evlog: "evlog";
|
|
3268
|
+
}>>;
|
|
3269
|
+
observability: z.ZodOptional<z.ZodEnum<{
|
|
3270
|
+
none: "none";
|
|
3271
|
+
opentelemetry: "opentelemetry";
|
|
3272
|
+
signoz: "signoz";
|
|
3273
|
+
sentry: "sentry";
|
|
3274
|
+
grafana: "grafana";
|
|
3275
|
+
datadog: "datadog";
|
|
3276
|
+
axiom: "axiom";
|
|
3277
|
+
betterstack: "betterstack";
|
|
3278
|
+
}>>;
|
|
3279
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
3280
|
+
none: "none";
|
|
3281
|
+
growthbook: "growthbook";
|
|
3282
|
+
posthog: "posthog";
|
|
3283
|
+
launchdarkly: "launchdarkly";
|
|
3284
|
+
flagsmith: "flagsmith";
|
|
3285
|
+
unleash: "unleash";
|
|
3286
|
+
}>>;
|
|
3287
|
+
integrations: z.ZodOptional<z.ZodEnum<{
|
|
3288
|
+
none: "none";
|
|
3289
|
+
nango: "nango";
|
|
3290
|
+
}>>;
|
|
3291
|
+
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
3292
|
+
none: "none";
|
|
3293
|
+
medusa: "medusa";
|
|
3294
|
+
}>>;
|
|
3295
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3296
|
+
none: "none";
|
|
3297
|
+
posthog: "posthog";
|
|
3298
|
+
plausible: "plausible";
|
|
3299
|
+
umami: "umami";
|
|
3300
|
+
ga4: "ga4";
|
|
3301
|
+
"vercel-analytics": "vercel-analytics";
|
|
3302
|
+
}>>;
|
|
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<{
|
|
3314
|
+
none: "none";
|
|
3315
|
+
redis: "redis";
|
|
3316
|
+
"upstash-redis": "upstash-redis";
|
|
3317
|
+
}>>;
|
|
3318
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
3319
|
+
none: "none";
|
|
3320
|
+
arcjet: "arcjet";
|
|
3321
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
3322
|
+
}>>;
|
|
3323
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
3324
|
+
none: "none";
|
|
3325
|
+
botid: "botid";
|
|
3326
|
+
turnstile: "turnstile";
|
|
3254
3327
|
}>>;
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
"
|
|
3260
|
-
|
|
3261
|
-
roboto: "roboto";
|
|
3262
|
-
raleway: "raleway";
|
|
3263
|
-
"dm-sans": "dm-sans";
|
|
3264
|
-
"public-sans": "public-sans";
|
|
3265
|
-
outfit: "outfit";
|
|
3266
|
-
"jetbrains-mono": "jetbrains-mono";
|
|
3267
|
-
"geist-mono": "geist-mono";
|
|
3328
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3329
|
+
none: "none";
|
|
3330
|
+
paraglide: "paraglide";
|
|
3331
|
+
i18next: "i18next";
|
|
3332
|
+
"next-intl": "next-intl";
|
|
3333
|
+
intlayer: "intlayer";
|
|
3268
3334
|
}>>;
|
|
3269
|
-
|
|
3270
|
-
default: "default";
|
|
3335
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
3271
3336
|
none: "none";
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3337
|
+
meilisearch: "meilisearch";
|
|
3338
|
+
typesense: "typesense";
|
|
3339
|
+
elasticsearch: "elasticsearch";
|
|
3340
|
+
opensearch: "opensearch";
|
|
3341
|
+
algolia: "algolia";
|
|
3342
|
+
bleve: "bleve";
|
|
3343
|
+
}>>;
|
|
3344
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
3345
|
+
none: "none";
|
|
3346
|
+
pgvector: "pgvector";
|
|
3347
|
+
qdrant: "qdrant";
|
|
3348
|
+
chroma: "chroma";
|
|
3349
|
+
pinecone: "pinecone";
|
|
3350
|
+
}>>;
|
|
3351
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
3352
|
+
none: "none";
|
|
3353
|
+
s3: "s3";
|
|
3354
|
+
r2: "r2";
|
|
3355
|
+
cloudinary: "cloudinary";
|
|
3356
|
+
"supabase-storage": "supabase-storage";
|
|
3275
3357
|
}>>;
|
|
3276
3358
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
3277
3359
|
none: "none";
|
|
@@ -3280,9 +3362,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3280
3362
|
}>>;
|
|
3281
3363
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
3282
3364
|
none: "none";
|
|
3365
|
+
uniwind: "uniwind";
|
|
3283
3366
|
tamagui: "tamagui";
|
|
3284
3367
|
"gluestack-ui": "gluestack-ui";
|
|
3285
|
-
uniwind: "uniwind";
|
|
3286
3368
|
unistyles: "unistyles";
|
|
3287
3369
|
}>>;
|
|
3288
3370
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3398,12 +3480,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3398
3480
|
ratatui: "ratatui";
|
|
3399
3481
|
}>>;
|
|
3400
3482
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3401
|
-
config: "config";
|
|
3402
3483
|
none: "none";
|
|
3403
3484
|
serde: "serde";
|
|
3404
3485
|
uuid: "uuid";
|
|
3405
3486
|
chrono: "chrono";
|
|
3406
3487
|
reqwest: "reqwest";
|
|
3488
|
+
config: "config";
|
|
3407
3489
|
dashmap: "dashmap";
|
|
3408
3490
|
"parking-lot": "parking-lot";
|
|
3409
3491
|
secrecy: "secrecy";
|
|
@@ -4020,17 +4102,17 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4020
4102
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4021
4103
|
template: z.ZodOptional<z.ZodEnum<{
|
|
4022
4104
|
none: "none";
|
|
4023
|
-
uniwind: "uniwind";
|
|
4024
4105
|
mern: "mern";
|
|
4025
4106
|
pern: "pern";
|
|
4026
4107
|
t3: "t3";
|
|
4027
4108
|
saas: "saas";
|
|
4109
|
+
uniwind: "uniwind";
|
|
4028
4110
|
}>>;
|
|
4029
4111
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
4112
|
+
fullstack: "fullstack";
|
|
4030
4113
|
frontend: "frontend";
|
|
4031
4114
|
backend: "backend";
|
|
4032
4115
|
mobile: "mobile";
|
|
4033
|
-
fullstack: "fullstack";
|
|
4034
4116
|
}>>;
|
|
4035
4117
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
4036
4118
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4162,8 +4244,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4162
4244
|
capacitor: "capacitor";
|
|
4163
4245
|
}>>>;
|
|
4164
4246
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4165
|
-
ai: "ai";
|
|
4166
4247
|
none: "none";
|
|
4248
|
+
ai: "ai";
|
|
4167
4249
|
"chat-sdk": "chat-sdk";
|
|
4168
4250
|
"tanstack-showcase": "tanstack-showcase";
|
|
4169
4251
|
}>>>;
|
|
@@ -4197,13 +4279,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4197
4279
|
docker: "docker";
|
|
4198
4280
|
}>>;
|
|
4199
4281
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
4200
|
-
effect: "effect";
|
|
4201
4282
|
none: "none";
|
|
4202
4283
|
hono: "hono";
|
|
4203
4284
|
express: "express";
|
|
4204
4285
|
fastify: "fastify";
|
|
4205
4286
|
elysia: "elysia";
|
|
4206
4287
|
fets: "fets";
|
|
4288
|
+
effect: "effect";
|
|
4207
4289
|
nestjs: "nestjs";
|
|
4208
4290
|
adonisjs: "adonisjs";
|
|
4209
4291
|
nitro: "nitro";
|
|
@@ -4250,10 +4332,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4250
4332
|
vercel: "vercel";
|
|
4251
4333
|
}>>;
|
|
4252
4334
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
4253
|
-
error: "error";
|
|
4254
4335
|
merge: "merge";
|
|
4255
4336
|
overwrite: "overwrite";
|
|
4256
4337
|
increment: "increment";
|
|
4338
|
+
error: "error";
|
|
4257
4339
|
}>>;
|
|
4258
4340
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
4259
4341
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4282,8 +4364,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4282
4364
|
"ai-cli": "ai-cli";
|
|
4283
4365
|
}>>;
|
|
4284
4366
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
4285
|
-
effect: "effect";
|
|
4286
4367
|
none: "none";
|
|
4368
|
+
effect: "effect";
|
|
4287
4369
|
"effect-full": "effect-full";
|
|
4288
4370
|
}>>;
|
|
4289
4371
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4418,8 +4500,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4418
4500
|
"geist-mono": "geist-mono";
|
|
4419
4501
|
}>>;
|
|
4420
4502
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4421
|
-
default: "default";
|
|
4422
4503
|
none: "none";
|
|
4504
|
+
default: "default";
|
|
4423
4505
|
small: "small";
|
|
4424
4506
|
medium: "medium";
|
|
4425
4507
|
large: "large";
|
|
@@ -4567,9 +4649,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4567
4649
|
}>>;
|
|
4568
4650
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
4569
4651
|
none: "none";
|
|
4652
|
+
uniwind: "uniwind";
|
|
4570
4653
|
tamagui: "tamagui";
|
|
4571
4654
|
"gluestack-ui": "gluestack-ui";
|
|
4572
|
-
uniwind: "uniwind";
|
|
4573
4655
|
unistyles: "unistyles";
|
|
4574
4656
|
}>>;
|
|
4575
4657
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4685,12 +4767,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4685
4767
|
ratatui: "ratatui";
|
|
4686
4768
|
}>>;
|
|
4687
4769
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4688
|
-
config: "config";
|
|
4689
4770
|
none: "none";
|
|
4690
4771
|
serde: "serde";
|
|
4691
4772
|
uuid: "uuid";
|
|
4692
4773
|
chrono: "chrono";
|
|
4693
4774
|
reqwest: "reqwest";
|
|
4775
|
+
config: "config";
|
|
4694
4776
|
dashmap: "dashmap";
|
|
4695
4777
|
"parking-lot": "parking-lot";
|
|
4696
4778
|
secrecy: "secrecy";
|
|
@@ -5336,13 +5418,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5336
5418
|
sequelize: "sequelize";
|
|
5337
5419
|
}>;
|
|
5338
5420
|
backend: z.ZodEnum<{
|
|
5339
|
-
effect: "effect";
|
|
5340
5421
|
none: "none";
|
|
5341
5422
|
hono: "hono";
|
|
5342
5423
|
express: "express";
|
|
5343
5424
|
fastify: "fastify";
|
|
5344
5425
|
elysia: "elysia";
|
|
5345
5426
|
fets: "fets";
|
|
5427
|
+
effect: "effect";
|
|
5346
5428
|
nestjs: "nestjs";
|
|
5347
5429
|
adonisjs: "adonisjs";
|
|
5348
5430
|
nitro: "nitro";
|
|
@@ -5424,8 +5506,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5424
5506
|
capacitor: "capacitor";
|
|
5425
5507
|
}>>;
|
|
5426
5508
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5427
|
-
ai: "ai";
|
|
5428
5509
|
none: "none";
|
|
5510
|
+
ai: "ai";
|
|
5429
5511
|
"chat-sdk": "chat-sdk";
|
|
5430
5512
|
"tanstack-showcase": "tanstack-showcase";
|
|
5431
5513
|
}>>;
|
|
@@ -5542,8 +5624,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5542
5624
|
"ai-cli": "ai-cli";
|
|
5543
5625
|
}>;
|
|
5544
5626
|
effect: z.ZodEnum<{
|
|
5545
|
-
effect: "effect";
|
|
5546
5627
|
none: "none";
|
|
5628
|
+
effect: "effect";
|
|
5547
5629
|
"effect-full": "effect-full";
|
|
5548
5630
|
}>;
|
|
5549
5631
|
stateManagement: z.ZodEnum<{
|
|
@@ -5678,8 +5760,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5678
5760
|
"geist-mono": "geist-mono";
|
|
5679
5761
|
}>>;
|
|
5680
5762
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5681
|
-
default: "default";
|
|
5682
5763
|
none: "none";
|
|
5764
|
+
default: "default";
|
|
5683
5765
|
small: "small";
|
|
5684
5766
|
medium: "medium";
|
|
5685
5767
|
large: "large";
|
|
@@ -5827,9 +5909,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5827
5909
|
}>;
|
|
5828
5910
|
mobileUI: z.ZodEnum<{
|
|
5829
5911
|
none: "none";
|
|
5912
|
+
uniwind: "uniwind";
|
|
5830
5913
|
tamagui: "tamagui";
|
|
5831
5914
|
"gluestack-ui": "gluestack-ui";
|
|
5832
|
-
uniwind: "uniwind";
|
|
5833
5915
|
unistyles: "unistyles";
|
|
5834
5916
|
}>;
|
|
5835
5917
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5945,12 +6027,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5945
6027
|
ratatui: "ratatui";
|
|
5946
6028
|
}>;
|
|
5947
6029
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5948
|
-
config: "config";
|
|
5949
6030
|
none: "none";
|
|
5950
6031
|
serde: "serde";
|
|
5951
6032
|
uuid: "uuid";
|
|
5952
6033
|
chrono: "chrono";
|
|
5953
6034
|
reqwest: "reqwest";
|
|
6035
|
+
config: "config";
|
|
5954
6036
|
dashmap: "dashmap";
|
|
5955
6037
|
"parking-lot": "parking-lot";
|
|
5956
6038
|
secrecy: "secrecy";
|
|
@@ -6562,51 +6644,54 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6562
6644
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6563
6645
|
id: z.ZodString;
|
|
6564
6646
|
role: z.ZodEnum<{
|
|
6565
|
-
|
|
6647
|
+
effect: "effect";
|
|
6648
|
+
ai: "ai";
|
|
6566
6649
|
frontend: "frontend";
|
|
6567
6650
|
backend: "backend";
|
|
6568
6651
|
mobile: "mobile";
|
|
6569
6652
|
database: "database";
|
|
6570
|
-
api: "api";
|
|
6571
|
-
graphql: "graphql";
|
|
6572
6653
|
orm: "orm";
|
|
6573
6654
|
auth: "auth";
|
|
6574
|
-
|
|
6575
|
-
|
|
6655
|
+
payments: "payments";
|
|
6656
|
+
examples: "examples";
|
|
6657
|
+
packageManager: "packageManager";
|
|
6576
6658
|
dbSetup: "dbSetup";
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
navigation: "navigation";
|
|
6580
|
-
caching: "caching";
|
|
6581
|
-
observability: "observability";
|
|
6582
|
-
email: "email";
|
|
6583
|
-
search: "search";
|
|
6584
|
-
vectorDb: "vectorDb";
|
|
6585
|
-
fileStorage: "fileStorage";
|
|
6586
|
-
jobQueue: "jobQueue";
|
|
6587
|
-
rateLimit: "rateLimit";
|
|
6588
|
-
botProtection: "botProtection";
|
|
6589
|
-
testing: "testing";
|
|
6659
|
+
runtime: "runtime";
|
|
6660
|
+
api: "api";
|
|
6590
6661
|
stateManagement: "stateManagement";
|
|
6591
6662
|
forms: "forms";
|
|
6663
|
+
testing: "testing";
|
|
6664
|
+
email: "email";
|
|
6665
|
+
validation: "validation";
|
|
6666
|
+
realtime: "realtime";
|
|
6667
|
+
jobQueue: "jobQueue";
|
|
6592
6668
|
animation: "animation";
|
|
6593
6669
|
fileUpload: "fileUpload";
|
|
6594
|
-
validation: "validation";
|
|
6595
|
-
effect: "effect";
|
|
6596
|
-
ui: "ui";
|
|
6597
|
-
css: "css";
|
|
6598
|
-
storage: "storage";
|
|
6599
|
-
ota: "ota";
|
|
6600
|
-
deepLinking: "deepLinking";
|
|
6601
|
-
ai: "ai";
|
|
6602
|
-
payments: "payments";
|
|
6603
6670
|
logging: "logging";
|
|
6671
|
+
observability: "observability";
|
|
6604
6672
|
featureFlags: "featureFlags";
|
|
6605
6673
|
integrations: "integrations";
|
|
6606
6674
|
ecommerce: "ecommerce";
|
|
6607
6675
|
analytics: "analytics";
|
|
6608
6676
|
cms: "cms";
|
|
6677
|
+
caching: "caching";
|
|
6678
|
+
rateLimit: "rateLimit";
|
|
6679
|
+
botProtection: "botProtection";
|
|
6609
6680
|
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";
|
|
6610
6695
|
documentation: "documentation";
|
|
6611
6696
|
codeQuality: "codeQuality";
|
|
6612
6697
|
appPlatform: "appPlatform";
|
|
@@ -6623,20 +6708,17 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6623
6708
|
apiGateway: "apiGateway";
|
|
6624
6709
|
continuousIntegration: "continuousIntegration";
|
|
6625
6710
|
backendUtilities: "backendUtilities";
|
|
6626
|
-
examples: "examples";
|
|
6627
6711
|
language: "language";
|
|
6628
6712
|
buildTool: "buildTool";
|
|
6629
6713
|
cli: "cli";
|
|
6630
6714
|
errorHandling: "errorHandling";
|
|
6631
6715
|
httpClient: "httpClient";
|
|
6632
6716
|
libraries: "libraries";
|
|
6633
|
-
config: "config";
|
|
6634
6717
|
templating: "templating";
|
|
6635
6718
|
cloudSdk: "cloudSdk";
|
|
6636
6719
|
data: "data";
|
|
6637
6720
|
media: "media";
|
|
6638
6721
|
server: "server";
|
|
6639
|
-
packageManager: "packageManager";
|
|
6640
6722
|
messageQueue: "messageQueue";
|
|
6641
6723
|
}>;
|
|
6642
6724
|
toolId: z.ZodString;
|
|
@@ -6660,7 +6742,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6660
6742
|
}>;
|
|
6661
6743
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
6662
6744
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
6663
|
-
settings: z.ZodOptional<z.
|
|
6745
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
6664
6746
|
}, z.core.$strip>>>;
|
|
6665
6747
|
}, z.core.$strip>;
|
|
6666
6748
|
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
@@ -6698,13 +6780,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6698
6780
|
sequelize: "sequelize";
|
|
6699
6781
|
}>;
|
|
6700
6782
|
backend: z.ZodEnum<{
|
|
6701
|
-
effect: "effect";
|
|
6702
6783
|
none: "none";
|
|
6703
6784
|
hono: "hono";
|
|
6704
6785
|
express: "express";
|
|
6705
6786
|
fastify: "fastify";
|
|
6706
6787
|
elysia: "elysia";
|
|
6707
6788
|
fets: "fets";
|
|
6789
|
+
effect: "effect";
|
|
6708
6790
|
nestjs: "nestjs";
|
|
6709
6791
|
adonisjs: "adonisjs";
|
|
6710
6792
|
nitro: "nitro";
|
|
@@ -6786,8 +6868,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6786
6868
|
capacitor: "capacitor";
|
|
6787
6869
|
}>>;
|
|
6788
6870
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6789
|
-
ai: "ai";
|
|
6790
6871
|
none: "none";
|
|
6872
|
+
ai: "ai";
|
|
6791
6873
|
"chat-sdk": "chat-sdk";
|
|
6792
6874
|
"tanstack-showcase": "tanstack-showcase";
|
|
6793
6875
|
}>>;
|
|
@@ -6902,8 +6984,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6902
6984
|
"ai-cli": "ai-cli";
|
|
6903
6985
|
}>;
|
|
6904
6986
|
effect: z.ZodEnum<{
|
|
6905
|
-
effect: "effect";
|
|
6906
6987
|
none: "none";
|
|
6988
|
+
effect: "effect";
|
|
6907
6989
|
"effect-full": "effect-full";
|
|
6908
6990
|
}>;
|
|
6909
6991
|
stateManagement: z.ZodEnum<{
|
|
@@ -7038,8 +7120,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7038
7120
|
"geist-mono": "geist-mono";
|
|
7039
7121
|
}>>;
|
|
7040
7122
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7041
|
-
default: "default";
|
|
7042
7123
|
none: "none";
|
|
7124
|
+
default: "default";
|
|
7043
7125
|
small: "small";
|
|
7044
7126
|
medium: "medium";
|
|
7045
7127
|
large: "large";
|
|
@@ -7187,9 +7269,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7187
7269
|
}>;
|
|
7188
7270
|
mobileUI: z.ZodEnum<{
|
|
7189
7271
|
none: "none";
|
|
7272
|
+
uniwind: "uniwind";
|
|
7190
7273
|
tamagui: "tamagui";
|
|
7191
7274
|
"gluestack-ui": "gluestack-ui";
|
|
7192
|
-
uniwind: "uniwind";
|
|
7193
7275
|
unistyles: "unistyles";
|
|
7194
7276
|
}>;
|
|
7195
7277
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7305,12 +7387,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7305
7387
|
ratatui: "ratatui";
|
|
7306
7388
|
}>;
|
|
7307
7389
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7308
|
-
config: "config";
|
|
7309
7390
|
none: "none";
|
|
7310
7391
|
serde: "serde";
|
|
7311
7392
|
uuid: "uuid";
|
|
7312
7393
|
chrono: "chrono";
|
|
7313
7394
|
reqwest: "reqwest";
|
|
7395
|
+
config: "config";
|
|
7314
7396
|
dashmap: "dashmap";
|
|
7315
7397
|
"parking-lot": "parking-lot";
|
|
7316
7398
|
secrecy: "secrecy";
|
|
@@ -7922,51 +8004,54 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7922
8004
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7923
8005
|
id: z.ZodString;
|
|
7924
8006
|
role: z.ZodEnum<{
|
|
7925
|
-
|
|
8007
|
+
effect: "effect";
|
|
8008
|
+
ai: "ai";
|
|
7926
8009
|
frontend: "frontend";
|
|
7927
8010
|
backend: "backend";
|
|
7928
8011
|
mobile: "mobile";
|
|
7929
8012
|
database: "database";
|
|
7930
|
-
api: "api";
|
|
7931
|
-
graphql: "graphql";
|
|
7932
8013
|
orm: "orm";
|
|
7933
8014
|
auth: "auth";
|
|
7934
|
-
|
|
7935
|
-
|
|
8015
|
+
payments: "payments";
|
|
8016
|
+
examples: "examples";
|
|
8017
|
+
packageManager: "packageManager";
|
|
7936
8018
|
dbSetup: "dbSetup";
|
|
7937
|
-
|
|
7938
|
-
|
|
7939
|
-
navigation: "navigation";
|
|
7940
|
-
caching: "caching";
|
|
7941
|
-
observability: "observability";
|
|
7942
|
-
email: "email";
|
|
7943
|
-
search: "search";
|
|
7944
|
-
vectorDb: "vectorDb";
|
|
7945
|
-
fileStorage: "fileStorage";
|
|
7946
|
-
jobQueue: "jobQueue";
|
|
7947
|
-
rateLimit: "rateLimit";
|
|
7948
|
-
botProtection: "botProtection";
|
|
7949
|
-
testing: "testing";
|
|
8019
|
+
runtime: "runtime";
|
|
8020
|
+
api: "api";
|
|
7950
8021
|
stateManagement: "stateManagement";
|
|
7951
8022
|
forms: "forms";
|
|
8023
|
+
testing: "testing";
|
|
8024
|
+
email: "email";
|
|
8025
|
+
validation: "validation";
|
|
8026
|
+
realtime: "realtime";
|
|
8027
|
+
jobQueue: "jobQueue";
|
|
7952
8028
|
animation: "animation";
|
|
7953
8029
|
fileUpload: "fileUpload";
|
|
7954
|
-
validation: "validation";
|
|
7955
|
-
effect: "effect";
|
|
7956
|
-
ui: "ui";
|
|
7957
|
-
css: "css";
|
|
7958
|
-
storage: "storage";
|
|
7959
|
-
ota: "ota";
|
|
7960
|
-
deepLinking: "deepLinking";
|
|
7961
|
-
ai: "ai";
|
|
7962
|
-
payments: "payments";
|
|
7963
8030
|
logging: "logging";
|
|
8031
|
+
observability: "observability";
|
|
7964
8032
|
featureFlags: "featureFlags";
|
|
7965
8033
|
integrations: "integrations";
|
|
7966
8034
|
ecommerce: "ecommerce";
|
|
7967
8035
|
analytics: "analytics";
|
|
7968
8036
|
cms: "cms";
|
|
8037
|
+
caching: "caching";
|
|
8038
|
+
rateLimit: "rateLimit";
|
|
8039
|
+
botProtection: "botProtection";
|
|
7969
8040
|
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";
|
|
7970
8055
|
documentation: "documentation";
|
|
7971
8056
|
codeQuality: "codeQuality";
|
|
7972
8057
|
appPlatform: "appPlatform";
|
|
@@ -7983,20 +8068,17 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7983
8068
|
apiGateway: "apiGateway";
|
|
7984
8069
|
continuousIntegration: "continuousIntegration";
|
|
7985
8070
|
backendUtilities: "backendUtilities";
|
|
7986
|
-
examples: "examples";
|
|
7987
8071
|
language: "language";
|
|
7988
8072
|
buildTool: "buildTool";
|
|
7989
8073
|
cli: "cli";
|
|
7990
8074
|
errorHandling: "errorHandling";
|
|
7991
8075
|
httpClient: "httpClient";
|
|
7992
8076
|
libraries: "libraries";
|
|
7993
|
-
config: "config";
|
|
7994
8077
|
templating: "templating";
|
|
7995
8078
|
cloudSdk: "cloudSdk";
|
|
7996
8079
|
data: "data";
|
|
7997
8080
|
media: "media";
|
|
7998
8081
|
server: "server";
|
|
7999
|
-
packageManager: "packageManager";
|
|
8000
8082
|
messageQueue: "messageQueue";
|
|
8001
8083
|
}>;
|
|
8002
8084
|
toolId: z.ZodString;
|
|
@@ -8020,7 +8102,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
8020
8102
|
}>;
|
|
8021
8103
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
8022
8104
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
8023
|
-
settings: z.ZodOptional<z.
|
|
8105
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
8024
8106
|
}, z.core.$strip>>>;
|
|
8025
8107
|
}, z.core.$strip>;
|
|
8026
8108
|
declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
@@ -8058,13 +8140,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8058
8140
|
sequelize: "sequelize";
|
|
8059
8141
|
}>;
|
|
8060
8142
|
backend: z.ZodEnum<{
|
|
8061
|
-
effect: "effect";
|
|
8062
8143
|
none: "none";
|
|
8063
8144
|
hono: "hono";
|
|
8064
8145
|
express: "express";
|
|
8065
8146
|
fastify: "fastify";
|
|
8066
8147
|
elysia: "elysia";
|
|
8067
8148
|
fets: "fets";
|
|
8149
|
+
effect: "effect";
|
|
8068
8150
|
nestjs: "nestjs";
|
|
8069
8151
|
adonisjs: "adonisjs";
|
|
8070
8152
|
nitro: "nitro";
|
|
@@ -8146,8 +8228,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8146
8228
|
capacitor: "capacitor";
|
|
8147
8229
|
}>>;
|
|
8148
8230
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8149
|
-
ai: "ai";
|
|
8150
8231
|
none: "none";
|
|
8232
|
+
ai: "ai";
|
|
8151
8233
|
"chat-sdk": "chat-sdk";
|
|
8152
8234
|
"tanstack-showcase": "tanstack-showcase";
|
|
8153
8235
|
}>>;
|
|
@@ -8262,8 +8344,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8262
8344
|
"ai-cli": "ai-cli";
|
|
8263
8345
|
}>;
|
|
8264
8346
|
effect: z.ZodEnum<{
|
|
8265
|
-
effect: "effect";
|
|
8266
8347
|
none: "none";
|
|
8348
|
+
effect: "effect";
|
|
8267
8349
|
"effect-full": "effect-full";
|
|
8268
8350
|
}>;
|
|
8269
8351
|
stateManagement: z.ZodEnum<{
|
|
@@ -8398,8 +8480,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8398
8480
|
"geist-mono": "geist-mono";
|
|
8399
8481
|
}>>;
|
|
8400
8482
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8401
|
-
default: "default";
|
|
8402
8483
|
none: "none";
|
|
8484
|
+
default: "default";
|
|
8403
8485
|
small: "small";
|
|
8404
8486
|
medium: "medium";
|
|
8405
8487
|
large: "large";
|
|
@@ -8547,9 +8629,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8547
8629
|
}>;
|
|
8548
8630
|
mobileUI: z.ZodEnum<{
|
|
8549
8631
|
none: "none";
|
|
8632
|
+
uniwind: "uniwind";
|
|
8550
8633
|
tamagui: "tamagui";
|
|
8551
8634
|
"gluestack-ui": "gluestack-ui";
|
|
8552
|
-
uniwind: "uniwind";
|
|
8553
8635
|
unistyles: "unistyles";
|
|
8554
8636
|
}>;
|
|
8555
8637
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8665,12 +8747,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8665
8747
|
ratatui: "ratatui";
|
|
8666
8748
|
}>;
|
|
8667
8749
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8668
|
-
config: "config";
|
|
8669
8750
|
none: "none";
|
|
8670
8751
|
serde: "serde";
|
|
8671
8752
|
uuid: "uuid";
|
|
8672
8753
|
chrono: "chrono";
|
|
8673
8754
|
reqwest: "reqwest";
|
|
8755
|
+
config: "config";
|
|
8674
8756
|
dashmap: "dashmap";
|
|
8675
8757
|
"parking-lot": "parking-lot";
|
|
8676
8758
|
secrecy: "secrecy";
|
|
@@ -9282,51 +9364,54 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9282
9364
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9283
9365
|
id: z.ZodString;
|
|
9284
9366
|
role: z.ZodEnum<{
|
|
9285
|
-
|
|
9367
|
+
effect: "effect";
|
|
9368
|
+
ai: "ai";
|
|
9286
9369
|
frontend: "frontend";
|
|
9287
9370
|
backend: "backend";
|
|
9288
9371
|
mobile: "mobile";
|
|
9289
9372
|
database: "database";
|
|
9290
|
-
api: "api";
|
|
9291
|
-
graphql: "graphql";
|
|
9292
9373
|
orm: "orm";
|
|
9293
9374
|
auth: "auth";
|
|
9294
|
-
|
|
9295
|
-
|
|
9296
|
-
|
|
9297
|
-
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
caching: "caching";
|
|
9301
|
-
observability: "observability";
|
|
9302
|
-
email: "email";
|
|
9303
|
-
search: "search";
|
|
9304
|
-
vectorDb: "vectorDb";
|
|
9305
|
-
fileStorage: "fileStorage";
|
|
9306
|
-
jobQueue: "jobQueue";
|
|
9307
|
-
rateLimit: "rateLimit";
|
|
9308
|
-
botProtection: "botProtection";
|
|
9309
|
-
testing: "testing";
|
|
9375
|
+
payments: "payments";
|
|
9376
|
+
examples: "examples";
|
|
9377
|
+
packageManager: "packageManager";
|
|
9378
|
+
dbSetup: "dbSetup";
|
|
9379
|
+
runtime: "runtime";
|
|
9380
|
+
api: "api";
|
|
9310
9381
|
stateManagement: "stateManagement";
|
|
9311
9382
|
forms: "forms";
|
|
9383
|
+
testing: "testing";
|
|
9384
|
+
email: "email";
|
|
9385
|
+
validation: "validation";
|
|
9386
|
+
realtime: "realtime";
|
|
9387
|
+
jobQueue: "jobQueue";
|
|
9312
9388
|
animation: "animation";
|
|
9313
9389
|
fileUpload: "fileUpload";
|
|
9314
|
-
validation: "validation";
|
|
9315
|
-
effect: "effect";
|
|
9316
|
-
ui: "ui";
|
|
9317
|
-
css: "css";
|
|
9318
|
-
storage: "storage";
|
|
9319
|
-
ota: "ota";
|
|
9320
|
-
deepLinking: "deepLinking";
|
|
9321
|
-
ai: "ai";
|
|
9322
|
-
payments: "payments";
|
|
9323
9390
|
logging: "logging";
|
|
9391
|
+
observability: "observability";
|
|
9324
9392
|
featureFlags: "featureFlags";
|
|
9325
9393
|
integrations: "integrations";
|
|
9326
9394
|
ecommerce: "ecommerce";
|
|
9327
9395
|
analytics: "analytics";
|
|
9328
9396
|
cms: "cms";
|
|
9397
|
+
caching: "caching";
|
|
9398
|
+
rateLimit: "rateLimit";
|
|
9399
|
+
botProtection: "botProtection";
|
|
9329
9400
|
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";
|
|
9330
9415
|
documentation: "documentation";
|
|
9331
9416
|
codeQuality: "codeQuality";
|
|
9332
9417
|
appPlatform: "appPlatform";
|
|
@@ -9343,20 +9428,17 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9343
9428
|
apiGateway: "apiGateway";
|
|
9344
9429
|
continuousIntegration: "continuousIntegration";
|
|
9345
9430
|
backendUtilities: "backendUtilities";
|
|
9346
|
-
examples: "examples";
|
|
9347
9431
|
language: "language";
|
|
9348
9432
|
buildTool: "buildTool";
|
|
9349
9433
|
cli: "cli";
|
|
9350
9434
|
errorHandling: "errorHandling";
|
|
9351
9435
|
httpClient: "httpClient";
|
|
9352
9436
|
libraries: "libraries";
|
|
9353
|
-
config: "config";
|
|
9354
9437
|
templating: "templating";
|
|
9355
9438
|
cloudSdk: "cloudSdk";
|
|
9356
9439
|
data: "data";
|
|
9357
9440
|
media: "media";
|
|
9358
9441
|
server: "server";
|
|
9359
|
-
packageManager: "packageManager";
|
|
9360
9442
|
messageQueue: "messageQueue";
|
|
9361
9443
|
}>;
|
|
9362
9444
|
toolId: z.ZodString;
|
|
@@ -9380,7 +9462,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9380
9462
|
}>;
|
|
9381
9463
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
9382
9464
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
9383
|
-
settings: z.ZodOptional<z.
|
|
9465
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
9384
9466
|
}, z.core.$strip>>>;
|
|
9385
9467
|
}, z.core.$strip>;
|
|
9386
9468
|
declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
@@ -9419,13 +9501,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9419
9501
|
sequelize: "sequelize";
|
|
9420
9502
|
}>;
|
|
9421
9503
|
backend: z.ZodEnum<{
|
|
9422
|
-
effect: "effect";
|
|
9423
9504
|
none: "none";
|
|
9424
9505
|
hono: "hono";
|
|
9425
9506
|
express: "express";
|
|
9426
9507
|
fastify: "fastify";
|
|
9427
9508
|
elysia: "elysia";
|
|
9428
9509
|
fets: "fets";
|
|
9510
|
+
effect: "effect";
|
|
9429
9511
|
nestjs: "nestjs";
|
|
9430
9512
|
adonisjs: "adonisjs";
|
|
9431
9513
|
nitro: "nitro";
|
|
@@ -9507,8 +9589,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9507
9589
|
capacitor: "capacitor";
|
|
9508
9590
|
}>>;
|
|
9509
9591
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9510
|
-
ai: "ai";
|
|
9511
9592
|
none: "none";
|
|
9593
|
+
ai: "ai";
|
|
9512
9594
|
"chat-sdk": "chat-sdk";
|
|
9513
9595
|
"tanstack-showcase": "tanstack-showcase";
|
|
9514
9596
|
}>>;
|
|
@@ -9623,8 +9705,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9623
9705
|
"ai-cli": "ai-cli";
|
|
9624
9706
|
}>;
|
|
9625
9707
|
effect: z.ZodEnum<{
|
|
9626
|
-
effect: "effect";
|
|
9627
9708
|
none: "none";
|
|
9709
|
+
effect: "effect";
|
|
9628
9710
|
"effect-full": "effect-full";
|
|
9629
9711
|
}>;
|
|
9630
9712
|
stateManagement: z.ZodEnum<{
|
|
@@ -9759,8 +9841,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9759
9841
|
"geist-mono": "geist-mono";
|
|
9760
9842
|
}>>;
|
|
9761
9843
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9762
|
-
default: "default";
|
|
9763
9844
|
none: "none";
|
|
9845
|
+
default: "default";
|
|
9764
9846
|
small: "small";
|
|
9765
9847
|
medium: "medium";
|
|
9766
9848
|
large: "large";
|
|
@@ -9908,9 +9990,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9908
9990
|
}>;
|
|
9909
9991
|
mobileUI: z.ZodEnum<{
|
|
9910
9992
|
none: "none";
|
|
9993
|
+
uniwind: "uniwind";
|
|
9911
9994
|
tamagui: "tamagui";
|
|
9912
9995
|
"gluestack-ui": "gluestack-ui";
|
|
9913
|
-
uniwind: "uniwind";
|
|
9914
9996
|
unistyles: "unistyles";
|
|
9915
9997
|
}>;
|
|
9916
9998
|
mobileStorage: z.ZodEnum<{
|
|
@@ -10026,12 +10108,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10026
10108
|
ratatui: "ratatui";
|
|
10027
10109
|
}>;
|
|
10028
10110
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10029
|
-
config: "config";
|
|
10030
10111
|
none: "none";
|
|
10031
10112
|
serde: "serde";
|
|
10032
10113
|
uuid: "uuid";
|
|
10033
10114
|
chrono: "chrono";
|
|
10034
10115
|
reqwest: "reqwest";
|
|
10116
|
+
config: "config";
|
|
10035
10117
|
dashmap: "dashmap";
|
|
10036
10118
|
"parking-lot": "parking-lot";
|
|
10037
10119
|
secrecy: "secrecy";
|
|
@@ -10643,51 +10725,54 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10643
10725
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10644
10726
|
id: z.ZodString;
|
|
10645
10727
|
role: z.ZodEnum<{
|
|
10646
|
-
|
|
10728
|
+
effect: "effect";
|
|
10729
|
+
ai: "ai";
|
|
10647
10730
|
frontend: "frontend";
|
|
10648
10731
|
backend: "backend";
|
|
10649
10732
|
mobile: "mobile";
|
|
10650
10733
|
database: "database";
|
|
10651
|
-
api: "api";
|
|
10652
|
-
graphql: "graphql";
|
|
10653
10734
|
orm: "orm";
|
|
10654
10735
|
auth: "auth";
|
|
10655
|
-
|
|
10656
|
-
|
|
10736
|
+
payments: "payments";
|
|
10737
|
+
examples: "examples";
|
|
10738
|
+
packageManager: "packageManager";
|
|
10657
10739
|
dbSetup: "dbSetup";
|
|
10658
|
-
|
|
10659
|
-
|
|
10660
|
-
navigation: "navigation";
|
|
10661
|
-
caching: "caching";
|
|
10662
|
-
observability: "observability";
|
|
10663
|
-
email: "email";
|
|
10664
|
-
search: "search";
|
|
10665
|
-
vectorDb: "vectorDb";
|
|
10666
|
-
fileStorage: "fileStorage";
|
|
10667
|
-
jobQueue: "jobQueue";
|
|
10668
|
-
rateLimit: "rateLimit";
|
|
10669
|
-
botProtection: "botProtection";
|
|
10670
|
-
testing: "testing";
|
|
10740
|
+
runtime: "runtime";
|
|
10741
|
+
api: "api";
|
|
10671
10742
|
stateManagement: "stateManagement";
|
|
10672
10743
|
forms: "forms";
|
|
10744
|
+
testing: "testing";
|
|
10745
|
+
email: "email";
|
|
10746
|
+
validation: "validation";
|
|
10747
|
+
realtime: "realtime";
|
|
10748
|
+
jobQueue: "jobQueue";
|
|
10673
10749
|
animation: "animation";
|
|
10674
10750
|
fileUpload: "fileUpload";
|
|
10675
|
-
validation: "validation";
|
|
10676
|
-
effect: "effect";
|
|
10677
|
-
ui: "ui";
|
|
10678
|
-
css: "css";
|
|
10679
|
-
storage: "storage";
|
|
10680
|
-
ota: "ota";
|
|
10681
|
-
deepLinking: "deepLinking";
|
|
10682
|
-
ai: "ai";
|
|
10683
|
-
payments: "payments";
|
|
10684
10751
|
logging: "logging";
|
|
10752
|
+
observability: "observability";
|
|
10685
10753
|
featureFlags: "featureFlags";
|
|
10686
10754
|
integrations: "integrations";
|
|
10687
10755
|
ecommerce: "ecommerce";
|
|
10688
10756
|
analytics: "analytics";
|
|
10689
10757
|
cms: "cms";
|
|
10758
|
+
caching: "caching";
|
|
10759
|
+
rateLimit: "rateLimit";
|
|
10760
|
+
botProtection: "botProtection";
|
|
10690
10761
|
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";
|
|
10691
10776
|
documentation: "documentation";
|
|
10692
10777
|
codeQuality: "codeQuality";
|
|
10693
10778
|
appPlatform: "appPlatform";
|
|
@@ -10704,20 +10789,17 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10704
10789
|
apiGateway: "apiGateway";
|
|
10705
10790
|
continuousIntegration: "continuousIntegration";
|
|
10706
10791
|
backendUtilities: "backendUtilities";
|
|
10707
|
-
examples: "examples";
|
|
10708
10792
|
language: "language";
|
|
10709
10793
|
buildTool: "buildTool";
|
|
10710
10794
|
cli: "cli";
|
|
10711
10795
|
errorHandling: "errorHandling";
|
|
10712
10796
|
httpClient: "httpClient";
|
|
10713
10797
|
libraries: "libraries";
|
|
10714
|
-
config: "config";
|
|
10715
10798
|
templating: "templating";
|
|
10716
10799
|
cloudSdk: "cloudSdk";
|
|
10717
10800
|
data: "data";
|
|
10718
10801
|
media: "media";
|
|
10719
10802
|
server: "server";
|
|
10720
|
-
packageManager: "packageManager";
|
|
10721
10803
|
messageQueue: "messageQueue";
|
|
10722
10804
|
}>;
|
|
10723
10805
|
toolId: z.ZodString;
|
|
@@ -10741,7 +10823,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10741
10823
|
}>;
|
|
10742
10824
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
10743
10825
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
10744
|
-
settings: z.ZodOptional<z.
|
|
10826
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
10745
10827
|
}, z.core.$strip>>>;
|
|
10746
10828
|
}, z.core.$strip>;
|
|
10747
10829
|
declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
@@ -10780,13 +10862,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10780
10862
|
sequelize: "sequelize";
|
|
10781
10863
|
}>;
|
|
10782
10864
|
backend: z.ZodEnum<{
|
|
10783
|
-
effect: "effect";
|
|
10784
10865
|
none: "none";
|
|
10785
10866
|
hono: "hono";
|
|
10786
10867
|
express: "express";
|
|
10787
10868
|
fastify: "fastify";
|
|
10788
10869
|
elysia: "elysia";
|
|
10789
10870
|
fets: "fets";
|
|
10871
|
+
effect: "effect";
|
|
10790
10872
|
nestjs: "nestjs";
|
|
10791
10873
|
adonisjs: "adonisjs";
|
|
10792
10874
|
nitro: "nitro";
|
|
@@ -10868,8 +10950,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10868
10950
|
capacitor: "capacitor";
|
|
10869
10951
|
}>>;
|
|
10870
10952
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10871
|
-
ai: "ai";
|
|
10872
10953
|
none: "none";
|
|
10954
|
+
ai: "ai";
|
|
10873
10955
|
"chat-sdk": "chat-sdk";
|
|
10874
10956
|
"tanstack-showcase": "tanstack-showcase";
|
|
10875
10957
|
}>>;
|
|
@@ -10984,8 +11066,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10984
11066
|
"ai-cli": "ai-cli";
|
|
10985
11067
|
}>;
|
|
10986
11068
|
effect: z.ZodEnum<{
|
|
10987
|
-
effect: "effect";
|
|
10988
11069
|
none: "none";
|
|
11070
|
+
effect: "effect";
|
|
10989
11071
|
"effect-full": "effect-full";
|
|
10990
11072
|
}>;
|
|
10991
11073
|
stateManagement: z.ZodEnum<{
|
|
@@ -11120,8 +11202,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11120
11202
|
"geist-mono": "geist-mono";
|
|
11121
11203
|
}>>;
|
|
11122
11204
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
11123
|
-
default: "default";
|
|
11124
11205
|
none: "none";
|
|
11206
|
+
default: "default";
|
|
11125
11207
|
small: "small";
|
|
11126
11208
|
medium: "medium";
|
|
11127
11209
|
large: "large";
|
|
@@ -11269,9 +11351,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11269
11351
|
}>;
|
|
11270
11352
|
mobileUI: z.ZodEnum<{
|
|
11271
11353
|
none: "none";
|
|
11354
|
+
uniwind: "uniwind";
|
|
11272
11355
|
tamagui: "tamagui";
|
|
11273
11356
|
"gluestack-ui": "gluestack-ui";
|
|
11274
|
-
uniwind: "uniwind";
|
|
11275
11357
|
unistyles: "unistyles";
|
|
11276
11358
|
}>;
|
|
11277
11359
|
mobileStorage: z.ZodEnum<{
|
|
@@ -11387,12 +11469,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11387
11469
|
ratatui: "ratatui";
|
|
11388
11470
|
}>;
|
|
11389
11471
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
11390
|
-
config: "config";
|
|
11391
11472
|
none: "none";
|
|
11392
11473
|
serde: "serde";
|
|
11393
11474
|
uuid: "uuid";
|
|
11394
11475
|
chrono: "chrono";
|
|
11395
11476
|
reqwest: "reqwest";
|
|
11477
|
+
config: "config";
|
|
11396
11478
|
dashmap: "dashmap";
|
|
11397
11479
|
"parking-lot": "parking-lot";
|
|
11398
11480
|
secrecy: "secrecy";
|
|
@@ -12004,51 +12086,54 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12004
12086
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12005
12087
|
id: z.ZodString;
|
|
12006
12088
|
role: z.ZodEnum<{
|
|
12007
|
-
|
|
12089
|
+
effect: "effect";
|
|
12090
|
+
ai: "ai";
|
|
12008
12091
|
frontend: "frontend";
|
|
12009
12092
|
backend: "backend";
|
|
12010
12093
|
mobile: "mobile";
|
|
12011
12094
|
database: "database";
|
|
12012
|
-
api: "api";
|
|
12013
|
-
graphql: "graphql";
|
|
12014
12095
|
orm: "orm";
|
|
12015
12096
|
auth: "auth";
|
|
12016
|
-
|
|
12017
|
-
|
|
12097
|
+
payments: "payments";
|
|
12098
|
+
examples: "examples";
|
|
12099
|
+
packageManager: "packageManager";
|
|
12018
12100
|
dbSetup: "dbSetup";
|
|
12019
|
-
|
|
12020
|
-
|
|
12021
|
-
navigation: "navigation";
|
|
12022
|
-
caching: "caching";
|
|
12023
|
-
observability: "observability";
|
|
12024
|
-
email: "email";
|
|
12025
|
-
search: "search";
|
|
12026
|
-
vectorDb: "vectorDb";
|
|
12027
|
-
fileStorage: "fileStorage";
|
|
12028
|
-
jobQueue: "jobQueue";
|
|
12029
|
-
rateLimit: "rateLimit";
|
|
12030
|
-
botProtection: "botProtection";
|
|
12031
|
-
testing: "testing";
|
|
12101
|
+
runtime: "runtime";
|
|
12102
|
+
api: "api";
|
|
12032
12103
|
stateManagement: "stateManagement";
|
|
12033
12104
|
forms: "forms";
|
|
12105
|
+
testing: "testing";
|
|
12106
|
+
email: "email";
|
|
12107
|
+
validation: "validation";
|
|
12108
|
+
realtime: "realtime";
|
|
12109
|
+
jobQueue: "jobQueue";
|
|
12034
12110
|
animation: "animation";
|
|
12035
12111
|
fileUpload: "fileUpload";
|
|
12036
|
-
validation: "validation";
|
|
12037
|
-
effect: "effect";
|
|
12038
|
-
ui: "ui";
|
|
12039
|
-
css: "css";
|
|
12040
|
-
storage: "storage";
|
|
12041
|
-
ota: "ota";
|
|
12042
|
-
deepLinking: "deepLinking";
|
|
12043
|
-
ai: "ai";
|
|
12044
|
-
payments: "payments";
|
|
12045
12112
|
logging: "logging";
|
|
12113
|
+
observability: "observability";
|
|
12046
12114
|
featureFlags: "featureFlags";
|
|
12047
12115
|
integrations: "integrations";
|
|
12048
12116
|
ecommerce: "ecommerce";
|
|
12049
12117
|
analytics: "analytics";
|
|
12050
12118
|
cms: "cms";
|
|
12119
|
+
caching: "caching";
|
|
12120
|
+
rateLimit: "rateLimit";
|
|
12121
|
+
botProtection: "botProtection";
|
|
12051
12122
|
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";
|
|
12052
12137
|
documentation: "documentation";
|
|
12053
12138
|
codeQuality: "codeQuality";
|
|
12054
12139
|
appPlatform: "appPlatform";
|
|
@@ -12065,20 +12150,17 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12065
12150
|
apiGateway: "apiGateway";
|
|
12066
12151
|
continuousIntegration: "continuousIntegration";
|
|
12067
12152
|
backendUtilities: "backendUtilities";
|
|
12068
|
-
examples: "examples";
|
|
12069
12153
|
language: "language";
|
|
12070
12154
|
buildTool: "buildTool";
|
|
12071
12155
|
cli: "cli";
|
|
12072
12156
|
errorHandling: "errorHandling";
|
|
12073
12157
|
httpClient: "httpClient";
|
|
12074
12158
|
libraries: "libraries";
|
|
12075
|
-
config: "config";
|
|
12076
12159
|
templating: "templating";
|
|
12077
12160
|
cloudSdk: "cloudSdk";
|
|
12078
12161
|
data: "data";
|
|
12079
12162
|
media: "media";
|
|
12080
12163
|
server: "server";
|
|
12081
|
-
packageManager: "packageManager";
|
|
12082
12164
|
messageQueue: "messageQueue";
|
|
12083
12165
|
}>;
|
|
12084
12166
|
toolId: z.ZodString;
|
|
@@ -12102,7 +12184,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
12102
12184
|
}>;
|
|
12103
12185
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
12104
12186
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
12105
|
-
settings: z.ZodOptional<z.
|
|
12187
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
12106
12188
|
}, z.core.$strip>>>;
|
|
12107
12189
|
}, z.core.$strip>;
|
|
12108
12190
|
declare const InitResultSchema: z.ZodObject<{
|
|
@@ -12141,13 +12223,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12141
12223
|
sequelize: "sequelize";
|
|
12142
12224
|
}>;
|
|
12143
12225
|
backend: z.ZodEnum<{
|
|
12144
|
-
effect: "effect";
|
|
12145
12226
|
none: "none";
|
|
12146
12227
|
hono: "hono";
|
|
12147
12228
|
express: "express";
|
|
12148
12229
|
fastify: "fastify";
|
|
12149
12230
|
elysia: "elysia";
|
|
12150
12231
|
fets: "fets";
|
|
12232
|
+
effect: "effect";
|
|
12151
12233
|
nestjs: "nestjs";
|
|
12152
12234
|
adonisjs: "adonisjs";
|
|
12153
12235
|
nitro: "nitro";
|
|
@@ -12229,8 +12311,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12229
12311
|
capacitor: "capacitor";
|
|
12230
12312
|
}>>;
|
|
12231
12313
|
examples: z.ZodArray<z.ZodEnum<{
|
|
12232
|
-
ai: "ai";
|
|
12233
12314
|
none: "none";
|
|
12315
|
+
ai: "ai";
|
|
12234
12316
|
"chat-sdk": "chat-sdk";
|
|
12235
12317
|
"tanstack-showcase": "tanstack-showcase";
|
|
12236
12318
|
}>>;
|
|
@@ -12347,8 +12429,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12347
12429
|
"ai-cli": "ai-cli";
|
|
12348
12430
|
}>;
|
|
12349
12431
|
effect: z.ZodEnum<{
|
|
12350
|
-
effect: "effect";
|
|
12351
12432
|
none: "none";
|
|
12433
|
+
effect: "effect";
|
|
12352
12434
|
"effect-full": "effect-full";
|
|
12353
12435
|
}>;
|
|
12354
12436
|
stateManagement: z.ZodEnum<{
|
|
@@ -12483,8 +12565,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12483
12565
|
"geist-mono": "geist-mono";
|
|
12484
12566
|
}>>;
|
|
12485
12567
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
12486
|
-
default: "default";
|
|
12487
12568
|
none: "none";
|
|
12569
|
+
default: "default";
|
|
12488
12570
|
small: "small";
|
|
12489
12571
|
medium: "medium";
|
|
12490
12572
|
large: "large";
|
|
@@ -12632,9 +12714,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12632
12714
|
}>;
|
|
12633
12715
|
mobileUI: z.ZodEnum<{
|
|
12634
12716
|
none: "none";
|
|
12717
|
+
uniwind: "uniwind";
|
|
12635
12718
|
tamagui: "tamagui";
|
|
12636
12719
|
"gluestack-ui": "gluestack-ui";
|
|
12637
|
-
uniwind: "uniwind";
|
|
12638
12720
|
unistyles: "unistyles";
|
|
12639
12721
|
}>;
|
|
12640
12722
|
mobileStorage: z.ZodEnum<{
|
|
@@ -12750,12 +12832,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12750
12832
|
ratatui: "ratatui";
|
|
12751
12833
|
}>;
|
|
12752
12834
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
12753
|
-
config: "config";
|
|
12754
12835
|
none: "none";
|
|
12755
12836
|
serde: "serde";
|
|
12756
12837
|
uuid: "uuid";
|
|
12757
12838
|
chrono: "chrono";
|
|
12758
12839
|
reqwest: "reqwest";
|
|
12840
|
+
config: "config";
|
|
12759
12841
|
dashmap: "dashmap";
|
|
12760
12842
|
"parking-lot": "parking-lot";
|
|
12761
12843
|
secrecy: "secrecy";
|
|
@@ -13367,51 +13449,54 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13367
13449
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13368
13450
|
id: z.ZodString;
|
|
13369
13451
|
role: z.ZodEnum<{
|
|
13370
|
-
|
|
13452
|
+
effect: "effect";
|
|
13453
|
+
ai: "ai";
|
|
13371
13454
|
frontend: "frontend";
|
|
13372
13455
|
backend: "backend";
|
|
13373
13456
|
mobile: "mobile";
|
|
13374
13457
|
database: "database";
|
|
13375
|
-
api: "api";
|
|
13376
|
-
graphql: "graphql";
|
|
13377
13458
|
orm: "orm";
|
|
13378
13459
|
auth: "auth";
|
|
13379
|
-
|
|
13380
|
-
|
|
13460
|
+
payments: "payments";
|
|
13461
|
+
examples: "examples";
|
|
13462
|
+
packageManager: "packageManager";
|
|
13381
13463
|
dbSetup: "dbSetup";
|
|
13382
|
-
|
|
13383
|
-
|
|
13384
|
-
navigation: "navigation";
|
|
13385
|
-
caching: "caching";
|
|
13386
|
-
observability: "observability";
|
|
13387
|
-
email: "email";
|
|
13388
|
-
search: "search";
|
|
13389
|
-
vectorDb: "vectorDb";
|
|
13390
|
-
fileStorage: "fileStorage";
|
|
13391
|
-
jobQueue: "jobQueue";
|
|
13392
|
-
rateLimit: "rateLimit";
|
|
13393
|
-
botProtection: "botProtection";
|
|
13394
|
-
testing: "testing";
|
|
13464
|
+
runtime: "runtime";
|
|
13465
|
+
api: "api";
|
|
13395
13466
|
stateManagement: "stateManagement";
|
|
13396
13467
|
forms: "forms";
|
|
13468
|
+
testing: "testing";
|
|
13469
|
+
email: "email";
|
|
13470
|
+
validation: "validation";
|
|
13471
|
+
realtime: "realtime";
|
|
13472
|
+
jobQueue: "jobQueue";
|
|
13397
13473
|
animation: "animation";
|
|
13398
13474
|
fileUpload: "fileUpload";
|
|
13399
|
-
validation: "validation";
|
|
13400
|
-
effect: "effect";
|
|
13401
|
-
ui: "ui";
|
|
13402
|
-
css: "css";
|
|
13403
|
-
storage: "storage";
|
|
13404
|
-
ota: "ota";
|
|
13405
|
-
deepLinking: "deepLinking";
|
|
13406
|
-
ai: "ai";
|
|
13407
|
-
payments: "payments";
|
|
13408
13475
|
logging: "logging";
|
|
13476
|
+
observability: "observability";
|
|
13409
13477
|
featureFlags: "featureFlags";
|
|
13410
13478
|
integrations: "integrations";
|
|
13411
13479
|
ecommerce: "ecommerce";
|
|
13412
13480
|
analytics: "analytics";
|
|
13413
13481
|
cms: "cms";
|
|
13482
|
+
caching: "caching";
|
|
13483
|
+
rateLimit: "rateLimit";
|
|
13484
|
+
botProtection: "botProtection";
|
|
13414
13485
|
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";
|
|
13415
13500
|
documentation: "documentation";
|
|
13416
13501
|
codeQuality: "codeQuality";
|
|
13417
13502
|
appPlatform: "appPlatform";
|
|
@@ -13428,20 +13513,17 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13428
13513
|
apiGateway: "apiGateway";
|
|
13429
13514
|
continuousIntegration: "continuousIntegration";
|
|
13430
13515
|
backendUtilities: "backendUtilities";
|
|
13431
|
-
examples: "examples";
|
|
13432
13516
|
language: "language";
|
|
13433
13517
|
buildTool: "buildTool";
|
|
13434
13518
|
cli: "cli";
|
|
13435
13519
|
errorHandling: "errorHandling";
|
|
13436
13520
|
httpClient: "httpClient";
|
|
13437
13521
|
libraries: "libraries";
|
|
13438
|
-
config: "config";
|
|
13439
13522
|
templating: "templating";
|
|
13440
13523
|
cloudSdk: "cloudSdk";
|
|
13441
13524
|
data: "data";
|
|
13442
13525
|
media: "media";
|
|
13443
13526
|
server: "server";
|
|
13444
|
-
packageManager: "packageManager";
|
|
13445
13527
|
messageQueue: "messageQueue";
|
|
13446
13528
|
}>;
|
|
13447
13529
|
toolId: z.ZodString;
|
|
@@ -13465,7 +13547,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13465
13547
|
}>;
|
|
13466
13548
|
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
13467
13549
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
13468
|
-
settings: z.ZodOptional<z.
|
|
13550
|
+
settings: z.ZodOptional<z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>>;
|
|
13469
13551
|
}, z.core.$strip>>>;
|
|
13470
13552
|
}, z.core.$strip>;
|
|
13471
13553
|
reproducibleCommand: z.ZodString;
|
|
@@ -13481,11 +13563,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13481
13563
|
}, z.core.$strip>;
|
|
13482
13564
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
13483
13565
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
13484
|
-
declare const BACKEND_VALUES: ("
|
|
13566
|
+
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "effect" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
13485
13567
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
13486
13568
|
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "vanilla-vite" | "vue" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
13487
13569
|
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "vite-plus" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
|
|
13488
|
-
declare const EXAMPLES_VALUES: ("
|
|
13570
|
+
declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
|
|
13489
13571
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
13490
13572
|
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
13491
13573
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
@@ -13495,12 +13577,12 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations"
|
|
|
13495
13577
|
declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet" | "xendit")[];
|
|
13496
13578
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13497
13579
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13498
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
13499
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
13500
|
-
declare const PROJECT_SHAPE_VALUES: ("
|
|
13580
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
13581
|
+
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "saas" | "uniwind")[];
|
|
13582
|
+
declare const PROJECT_SHAPE_VALUES: ("fullstack" | "frontend" | "backend" | "mobile")[];
|
|
13501
13583
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
|
|
13502
13584
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
13503
|
-
declare const EFFECT_VALUES: ("
|
|
13585
|
+
declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
|
|
13504
13586
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
13505
13587
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
13506
13588
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "mocha" | "cypress")[];
|
|
@@ -13519,7 +13601,7 @@ declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
|
|
|
13519
13601
|
declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
|
|
13520
13602
|
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4" | "vercel-analytics")[];
|
|
13521
13603
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
13522
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
13604
|
+
declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
|
|
13523
13605
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
13524
13606
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
13525
13607
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -13545,7 +13627,7 @@ declare const DART_MOBILE_VALUES: ("none" | "flutter")[];
|
|
|
13545
13627
|
declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
|
|
13546
13628
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
|
|
13547
13629
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
13548
|
-
declare const RUST_LIBRARIES_VALUES: ("
|
|
13630
|
+
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "config" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta" | "rand" | "regex" | "rayon" | "itertools" | "rstest" | "cargo-nextest" | "cargo-audit")[];
|
|
13549
13631
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
13550
13632
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
13551
13633
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
@@ -13642,7 +13724,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
13642
13724
|
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")[];
|
|
13643
13725
|
declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
|
|
13644
13726
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
13645
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
13727
|
+
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
13646
13728
|
//#endregion
|
|
13647
|
-
export { DatabaseSchema as $,
|
|
13648
|
-
//# sourceMappingURL=schemas-
|
|
13729
|
+
export { DatabaseSchema as $, StackPartEcosystemSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STACK_PART_SETTING_KEYS as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ServerDeploySchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, STATE_MANAGEMENT_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnColorThemeSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseColorSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, ShadcnStyleSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SWIFT_MOBILE_VALUES as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, SHADCN_STYLE_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, SearchSchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnIconLibrarySchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnFontSchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnRadiusSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, VersionChannelSchema as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, SwiftMobileSchema as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn, WebDeploySchema as bo, JavaApiSchema as br, ELIXIR_AUTH_VALUES as bt, API_VALUES as c, RUST_LOGGING_VALUES as ca, PYTHON_CACHING_VALUES as ci, ElixirTestingSchema as cn, TemplateSchema as co, InitResultSchema as cr, DotnetLibrariesSchema as ct, AUTH_VALUES as d, RUST_ORM_VALUES as da, PYTHON_DATA_VALUES as di, EmailSchema as dn, UI_LIBRARY_VALUES as do, JAVA_AUTH_VALUES as dr, DotnetRealtimeSchema as dt, RUNTIME_VALUES as ea, ORM_VALUES as ei, ElixirI18nSchema as en, StackPartRoleSchema as eo, GoRealtimeSchema as er, DatabaseSetupSchema as et, AddInputSchema as f, RUST_REALTIME_VALUES as fa, PYTHON_GRAPHQL_VALUES as fi, ExamplesSchema as fn, VALIDATION_VALUES as fo, JAVA_BUILD_TOOL_VALUES as fr, DotnetTestingSchema as ft, AnimationSchema as g, RealtimeSchema as ga, PYTHON_OBSERVABILITY_VALUES as gi, FORMS_VALUES as gn, VectorDbSchema as go, JAVA_ORM_VALUES as gr, ECOSYSTEM_VALUES as gt, AnalyticsSchema as h, RateLimitSchema as ha, PYTHON_MESSAGE_QUEUE_VALUES as hi, FILE_UPLOAD_VALUES as hn, ValidationSchema as ho, JAVA_LOGGING_VALUES as hr, ECOMMERCE_VALUES as ht, AI_VALUES as i, RUST_CLI_VALUES as ia, PROJECT_SHAPE_VALUES as ii, ElixirObservabilitySchema as in, StateManagementSchema as io, GoWebFrameworkSchema as ir, DotnetCachingSchema as it, CSSFrameworkSchema as j, RustWebFrameworkSchema as ja, PythonAiSchema as ji, GO_MIGRATIONS_VALUES as jn, KOTLIN_MOBILE_VALUES as jr, ELIXIR_LIBRARIES_VALUES as jt, CMSSchema as k, RustRealtimeSchema as ka, ProjectNameSchema as ki, GO_LOGGING_VALUES as kn, JobQueueSchema as kr, ELIXIR_JOBS_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_MESSAGE_QUEUE_VALUES as la, PYTHON_CLI_VALUES as li, ElixirValidationSchema as ln, TestingSchema as lo, IntegrationsSchema as lr, DotnetObservabilitySchema as lt, AiDocsSchema as m, RUST_WEB_FRAMEWORK_VALUES as ma, PYTHON_MEDIA_VALUES as mi, FILE_STORAGE_VALUES as mn, VERSION_CHANNEL_VALUES as mo, JAVA_LIBRARIES_VALUES as mr, DotnetWebFrameworkSchema as mt, AISchema as n, RUST_AUTH_VALUES as na, PACKAGE_MANAGER_VALUES as ni, ElixirJsonSchema as nn, StackPartSettingsSchema as no, GoTestingSchema as nr, DotnetApiSchema as nt, ANIMATION_VALUES as o, RUST_FRONTEND_VALUES as oa, PYTHON_API_VALUES as oi, ElixirQualitySchema as on, TEMPLATE_VALUES as oo, I18nSchema as or, DotnetFrontendSchema as ot, AddonsSchema as p, RUST_TEMPLATING_VALUES as pa, PYTHON_HTTP_CLIENT_VALUES as pi, FEATURE_FLAGS_VALUES as pn, VECTOR_DB_VALUES as po, JAVA_LANGUAGE_VALUES as pr, DotnetValidationSchema as pt, DOTNET_ORM_VALUES as q, ShadcnBaseSchema as qa, PythonServerSchema as qi, GoLoggingSchema as qn, MobileOTASchema as qr, ElixirCachingSchema as qt, AI_DOCS_VALUES as r, RUST_CACHING_VALUES as ra, PAYMENTS_VALUES as ri, ElixirLibrariesSchema as rn, StackPartSourceSchema as ro, GoValidationSchema as rr, DotnetAuthSchema as rt, APISchema as s, RUST_LIBRARIES_VALUES as sa, PYTHON_AUTH_VALUES as si, ElixirRealtimeSchema as sn, TESTING_VALUES as so, INTEGRATIONS_VALUES as sr, DotnetJobQueueSchema as st, ADDONS_VALUES as t, RUST_API_VALUES as ta, ObservabilitySchema as ti, ElixirJobsSchema as tn, StackPartSchema as to, GoTemplatingSchema as tr, DirectoryConflictSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_OBSERVABILITY_VALUES as ua, PYTHON_CLOUD_SDK_VALUES as ui, ElixirWebFrameworkSchema as un, UILibrarySchema as uo, JAVA_API_VALUES as ur, DotnetOrmSchema as ut, AuthSchema as v, RustApiSchema as va, PYTHON_PACKAGE_MANAGER_VALUES as vi, FeatureFlagsSchema as vn, WEB_DEPLOY_VALUES as vo, JAVA_WEB_FRAMEWORK_VALUES as vr, ELIXIR_API_VALUES as vt, BetterTStackConfigFileSchema as w, RustLibrariesSchema as wa, PYTHON_VALIDATION_VALUES as wi, GO_AUTH_VALUES as wn, JavaLibrariesSchema as wr, ELIXIR_DOCUMENTATION_VALUES as wt, BackendSchema as x, RustCliSchema as xa, PYTHON_SERVER_VALUES as xi, FormsSchema as xn, WorkspaceShapeSchema as xo, JavaAuthSchema as xr, ELIXIR_CACHING_VALUES as xt, BACKEND_VALUES as y, RustAuthSchema as ya, PYTHON_QUALITY_VALUES as yi, FileStorageSchema as yn, WORKSPACE_SHAPE_VALUES as yo, JOB_QUEUE_VALUES as yr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as yt, DOTNET_API_VALUES as z, SHADCN_RADIUS_VALUES as za, PythonHttpClientSchema as zi, GO_VALIDATION_VALUES as zn, MOBILE_OTA_VALUES as zr, EMAIL_VALUES as zt };
|
|
13730
|
+
//# sourceMappingURL=schemas-82xJXQrZ.d.mts.map
|