@better-fullstack/types 2.1.4 → 2.1.6
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-azh56xa4.d.mts → defaults-CklPcgSP.d.mts} +2 -2
- package/dist/defaults-CklPcgSP.d.mts.map +1 -0
- package/dist/{defaults-u9UAambo.mjs → defaults-DNnZX9er.mjs} +2 -1
- package/dist/defaults-DNnZX9er.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +180 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1560 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +604 -320
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-ZxRzd5TP.mjs → schemas-BXDvWDRp.mjs} +52 -10
- package/dist/schemas-BXDvWDRp.mjs.map +1 -0
- package/dist/{schemas-C3iF9TRm.d.mts → schemas-Dby5Bb6H.d.mts} +867 -593
- package/dist/schemas-Dby5Bb6H.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-BwtoYnJg.mjs → stack-graph-BAad0vv4.mjs} +48 -10
- package/dist/stack-graph-BAad0vv4.mjs.map +1 -0
- package/dist/{stack-graph-CiXONkqh.d.mts → stack-graph-DJy-Qxta.d.mts} +2 -2
- package/dist/stack-graph-DJy-Qxta.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-DNT-iMAE.mjs → stack-translation-BWOFnbOh.mjs} +280 -33
- package/dist/stack-translation-BWOFnbOh.mjs.map +1 -0
- package/dist/{stack-translation-BNwlAM1B.d.mts → stack-translation-C6Tubleh.d.mts} +19 -11
- package/dist/stack-translation-C6Tubleh.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{types-BG-DsHQ9.d.mts → types-B-Q8xLi7.d.mts} +5 -3
- package/dist/types-B-Q8xLi7.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-azh56xa4.d.mts.map +0 -1
- package/dist/defaults-u9UAambo.mjs.map +0 -1
- package/dist/schemas-C3iF9TRm.d.mts.map +0 -1
- package/dist/schemas-ZxRzd5TP.mjs.map +0 -1
- package/dist/stack-graph-BwtoYnJg.mjs.map +0 -1
- package/dist/stack-graph-CiXONkqh.d.mts.map +0 -1
- package/dist/stack-translation-BNwlAM1B.d.mts.map +0 -1
- package/dist/stack-translation-DNT-iMAE.mjs.map +0 -1
- package/dist/types-BG-DsHQ9.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -21,6 +21,7 @@ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
|
|
|
21
21
|
sequelize: "sequelize";
|
|
22
22
|
}>>;
|
|
23
23
|
declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
24
|
+
effect: "effect";
|
|
24
25
|
none: "none";
|
|
25
26
|
hono: "hono";
|
|
26
27
|
express: "express";
|
|
@@ -141,11 +142,15 @@ declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodE
|
|
|
141
142
|
}>>;
|
|
142
143
|
declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
143
144
|
none: "none";
|
|
145
|
+
revenuecat: "revenuecat";
|
|
144
146
|
polar: "polar";
|
|
145
147
|
stripe: "stripe";
|
|
146
148
|
"lemon-squeezy": "lemon-squeezy";
|
|
147
149
|
paddle: "paddle";
|
|
148
150
|
dodo: "dodo";
|
|
151
|
+
creem: "creem";
|
|
152
|
+
autumn: "autumn";
|
|
153
|
+
commet: "commet";
|
|
149
154
|
}>>;
|
|
150
155
|
declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
151
156
|
none: "none";
|
|
@@ -170,26 +175,28 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
170
175
|
vercel: "vercel";
|
|
171
176
|
}>>;
|
|
172
177
|
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
173
|
-
error: "error";
|
|
174
178
|
merge: "merge";
|
|
175
179
|
overwrite: "overwrite";
|
|
176
180
|
increment: "increment";
|
|
181
|
+
error: "error";
|
|
177
182
|
}>>;
|
|
178
183
|
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
179
184
|
none: "none";
|
|
180
|
-
uniwind: "uniwind";
|
|
181
185
|
mern: "mern";
|
|
182
186
|
pern: "pern";
|
|
183
187
|
t3: "t3";
|
|
188
|
+
saas: "saas";
|
|
189
|
+
uniwind: "uniwind";
|
|
184
190
|
}>>;
|
|
185
191
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
186
192
|
projectName: z.ZodOptional<z.ZodString>;
|
|
187
193
|
template: z.ZodOptional<z.ZodEnum<{
|
|
188
194
|
none: "none";
|
|
189
|
-
uniwind: "uniwind";
|
|
190
195
|
mern: "mern";
|
|
191
196
|
pern: "pern";
|
|
192
197
|
t3: "t3";
|
|
198
|
+
saas: "saas";
|
|
199
|
+
uniwind: "uniwind";
|
|
193
200
|
}>>;
|
|
194
201
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
195
202
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -240,11 +247,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
240
247
|
}>>;
|
|
241
248
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
242
249
|
none: "none";
|
|
250
|
+
revenuecat: "revenuecat";
|
|
243
251
|
polar: "polar";
|
|
244
252
|
stripe: "stripe";
|
|
245
253
|
"lemon-squeezy": "lemon-squeezy";
|
|
246
254
|
paddle: "paddle";
|
|
247
255
|
dodo: "dodo";
|
|
256
|
+
creem: "creem";
|
|
257
|
+
autumn: "autumn";
|
|
258
|
+
commet: "commet";
|
|
248
259
|
}>>;
|
|
249
260
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
250
261
|
none: "none";
|
|
@@ -311,6 +322,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
311
322
|
pnpm: "pnpm";
|
|
312
323
|
yarn: "yarn";
|
|
313
324
|
}>>;
|
|
325
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
326
|
+
monorepo: "monorepo";
|
|
327
|
+
"single-app": "single-app";
|
|
328
|
+
}>>;
|
|
314
329
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
315
330
|
stable: "stable";
|
|
316
331
|
latest: "latest";
|
|
@@ -330,6 +345,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
330
345
|
docker: "docker";
|
|
331
346
|
}>>;
|
|
332
347
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
348
|
+
effect: "effect";
|
|
333
349
|
none: "none";
|
|
334
350
|
hono: "hono";
|
|
335
351
|
express: "express";
|
|
@@ -382,10 +398,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
382
398
|
vercel: "vercel";
|
|
383
399
|
}>>;
|
|
384
400
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
385
|
-
error: "error";
|
|
386
401
|
merge: "merge";
|
|
387
402
|
overwrite: "overwrite";
|
|
388
403
|
increment: "increment";
|
|
404
|
+
error: "error";
|
|
389
405
|
}>>;
|
|
390
406
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
391
407
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -464,6 +480,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
464
480
|
"postcss-only": "postcss-only";
|
|
465
481
|
}>>;
|
|
466
482
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
483
|
+
mui: "mui";
|
|
467
484
|
none: "none";
|
|
468
485
|
"shadcn-ui": "shadcn-ui";
|
|
469
486
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -474,7 +491,6 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
474
491
|
"chakra-ui": "chakra-ui";
|
|
475
492
|
nextui: "nextui";
|
|
476
493
|
mantine: "mantine";
|
|
477
|
-
mui: "mui";
|
|
478
494
|
antd: "antd";
|
|
479
495
|
"base-ui": "base-ui";
|
|
480
496
|
"ark-ui": "ark-ui";
|
|
@@ -546,8 +562,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
546
562
|
"geist-mono": "geist-mono";
|
|
547
563
|
}>>;
|
|
548
564
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
549
|
-
default: "default";
|
|
550
565
|
none: "none";
|
|
566
|
+
default: "default";
|
|
551
567
|
small: "small";
|
|
552
568
|
medium: "medium";
|
|
553
569
|
large: "large";
|
|
@@ -617,6 +633,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
617
633
|
}>>;
|
|
618
634
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
619
635
|
none: "none";
|
|
636
|
+
posthog: "posthog";
|
|
620
637
|
plausible: "plausible";
|
|
621
638
|
umami: "umami";
|
|
622
639
|
}>>;
|
|
@@ -631,6 +648,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
631
648
|
}>>;
|
|
632
649
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
633
650
|
none: "none";
|
|
651
|
+
redis: "redis";
|
|
634
652
|
"upstash-redis": "upstash-redis";
|
|
635
653
|
}>>;
|
|
636
654
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -643,6 +661,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
643
661
|
paraglide: "paraglide";
|
|
644
662
|
i18next: "i18next";
|
|
645
663
|
"next-intl": "next-intl";
|
|
664
|
+
intlayer: "intlayer";
|
|
646
665
|
}>>;
|
|
647
666
|
search: z.ZodOptional<z.ZodEnum<{
|
|
648
667
|
none: "none";
|
|
@@ -651,6 +670,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
651
670
|
elasticsearch: "elasticsearch";
|
|
652
671
|
opensearch: "opensearch";
|
|
653
672
|
algolia: "algolia";
|
|
673
|
+
bleve: "bleve";
|
|
654
674
|
}>>;
|
|
655
675
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
656
676
|
none: "none";
|
|
@@ -664,6 +684,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
664
684
|
s3: "s3";
|
|
665
685
|
r2: "r2";
|
|
666
686
|
cloudinary: "cloudinary";
|
|
687
|
+
"supabase-storage": "supabase-storage";
|
|
667
688
|
}>>;
|
|
668
689
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
669
690
|
none: "none";
|
|
@@ -672,9 +693,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
672
693
|
}>>;
|
|
673
694
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
674
695
|
none: "none";
|
|
696
|
+
uniwind: "uniwind";
|
|
675
697
|
tamagui: "tamagui";
|
|
676
698
|
"gluestack-ui": "gluestack-ui";
|
|
677
|
-
uniwind: "uniwind";
|
|
678
699
|
unistyles: "unistyles";
|
|
679
700
|
}>>;
|
|
680
701
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -704,6 +725,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
704
725
|
axum: "axum";
|
|
705
726
|
"actix-web": "actix-web";
|
|
706
727
|
rocket: "rocket";
|
|
728
|
+
poem: "poem";
|
|
729
|
+
loco: "loco";
|
|
707
730
|
}>>;
|
|
708
731
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
709
732
|
none: "none";
|
|
@@ -727,12 +750,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
727
750
|
ratatui: "ratatui";
|
|
728
751
|
}>>;
|
|
729
752
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
730
|
-
config: "config";
|
|
731
753
|
none: "none";
|
|
732
754
|
serde: "serde";
|
|
733
755
|
uuid: "uuid";
|
|
734
756
|
chrono: "chrono";
|
|
735
757
|
reqwest: "reqwest";
|
|
758
|
+
config: "config";
|
|
736
759
|
dashmap: "dashmap";
|
|
737
760
|
"parking-lot": "parking-lot";
|
|
738
761
|
secrecy: "secrecy";
|
|
@@ -876,10 +899,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
876
899
|
echo: "echo";
|
|
877
900
|
fiber: "fiber";
|
|
878
901
|
chi: "chi";
|
|
902
|
+
stdlib: "stdlib";
|
|
879
903
|
}>>;
|
|
880
904
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
881
|
-
none: "none";
|
|
882
905
|
gorm: "gorm";
|
|
906
|
+
none: "none";
|
|
907
|
+
bun: "bun";
|
|
883
908
|
sqlc: "sqlc";
|
|
884
909
|
ent: "ent";
|
|
885
910
|
}>>;
|
|
@@ -936,10 +961,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
936
961
|
none: "none";
|
|
937
962
|
opentelemetry: "opentelemetry";
|
|
938
963
|
}>>;
|
|
964
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
965
|
+
java: "java";
|
|
966
|
+
kotlin: "kotlin";
|
|
967
|
+
}>>;
|
|
939
968
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
940
969
|
none: "none";
|
|
941
970
|
"spring-boot": "spring-boot";
|
|
942
971
|
quarkus: "quarkus";
|
|
972
|
+
micronaut: "micronaut";
|
|
943
973
|
}>>;
|
|
944
974
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
945
975
|
none: "none";
|
|
@@ -960,10 +990,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
960
990
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
961
991
|
none: "none";
|
|
962
992
|
"spring-graphql": "spring-graphql";
|
|
993
|
+
"openapi-generator": "openapi-generator";
|
|
994
|
+
grpc: "grpc";
|
|
963
995
|
}>>;
|
|
964
996
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
965
997
|
none: "none";
|
|
966
998
|
logback: "logback";
|
|
999
|
+
log4j2: "log4j2";
|
|
967
1000
|
}>>;
|
|
968
1001
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
969
1002
|
none: "none";
|
|
@@ -1080,9 +1113,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
1080
1113
|
}>>;
|
|
1081
1114
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
1082
1115
|
none: "none";
|
|
1116
|
+
grpc: "grpc";
|
|
1083
1117
|
rest: "rest";
|
|
1084
1118
|
absinthe: "absinthe";
|
|
1085
|
-
grpc: "grpc";
|
|
1086
1119
|
}>>;
|
|
1087
1120
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1088
1121
|
none: "none";
|
|
@@ -1192,6 +1225,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1192
1225
|
sequelize: "sequelize";
|
|
1193
1226
|
}>;
|
|
1194
1227
|
backend: z.ZodEnum<{
|
|
1228
|
+
effect: "effect";
|
|
1195
1229
|
none: "none";
|
|
1196
1230
|
hono: "hono";
|
|
1197
1231
|
express: "express";
|
|
@@ -1284,11 +1318,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1284
1318
|
}>;
|
|
1285
1319
|
payments: z.ZodEnum<{
|
|
1286
1320
|
none: "none";
|
|
1321
|
+
revenuecat: "revenuecat";
|
|
1287
1322
|
polar: "polar";
|
|
1288
1323
|
stripe: "stripe";
|
|
1289
1324
|
"lemon-squeezy": "lemon-squeezy";
|
|
1290
1325
|
paddle: "paddle";
|
|
1291
1326
|
dodo: "dodo";
|
|
1327
|
+
creem: "creem";
|
|
1328
|
+
autumn: "autumn";
|
|
1329
|
+
commet: "commet";
|
|
1292
1330
|
}>;
|
|
1293
1331
|
git: z.ZodBoolean;
|
|
1294
1332
|
packageManager: z.ZodEnum<{
|
|
@@ -1297,6 +1335,10 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1297
1335
|
pnpm: "pnpm";
|
|
1298
1336
|
yarn: "yarn";
|
|
1299
1337
|
}>;
|
|
1338
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
1339
|
+
monorepo: "monorepo";
|
|
1340
|
+
"single-app": "single-app";
|
|
1341
|
+
}>>;
|
|
1300
1342
|
versionChannel: z.ZodEnum<{
|
|
1301
1343
|
stable: "stable";
|
|
1302
1344
|
latest: "latest";
|
|
@@ -1421,6 +1463,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1421
1463
|
"postcss-only": "postcss-only";
|
|
1422
1464
|
}>;
|
|
1423
1465
|
uiLibrary: z.ZodEnum<{
|
|
1466
|
+
mui: "mui";
|
|
1424
1467
|
none: "none";
|
|
1425
1468
|
"shadcn-ui": "shadcn-ui";
|
|
1426
1469
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1431,7 +1474,6 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1431
1474
|
"chakra-ui": "chakra-ui";
|
|
1432
1475
|
nextui: "nextui";
|
|
1433
1476
|
mantine: "mantine";
|
|
1434
|
-
mui: "mui";
|
|
1435
1477
|
antd: "antd";
|
|
1436
1478
|
"base-ui": "base-ui";
|
|
1437
1479
|
"ark-ui": "ark-ui";
|
|
@@ -1503,8 +1545,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1503
1545
|
"geist-mono": "geist-mono";
|
|
1504
1546
|
}>>;
|
|
1505
1547
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1506
|
-
default: "default";
|
|
1507
1548
|
none: "none";
|
|
1549
|
+
default: "default";
|
|
1508
1550
|
small: "small";
|
|
1509
1551
|
medium: "medium";
|
|
1510
1552
|
large: "large";
|
|
@@ -1574,6 +1616,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1574
1616
|
}>;
|
|
1575
1617
|
analytics: z.ZodEnum<{
|
|
1576
1618
|
none: "none";
|
|
1619
|
+
posthog: "posthog";
|
|
1577
1620
|
plausible: "plausible";
|
|
1578
1621
|
umami: "umami";
|
|
1579
1622
|
}>;
|
|
@@ -1588,6 +1631,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1588
1631
|
}>;
|
|
1589
1632
|
caching: z.ZodEnum<{
|
|
1590
1633
|
none: "none";
|
|
1634
|
+
redis: "redis";
|
|
1591
1635
|
"upstash-redis": "upstash-redis";
|
|
1592
1636
|
}>;
|
|
1593
1637
|
rateLimit: z.ZodEnum<{
|
|
@@ -1600,6 +1644,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1600
1644
|
paraglide: "paraglide";
|
|
1601
1645
|
i18next: "i18next";
|
|
1602
1646
|
"next-intl": "next-intl";
|
|
1647
|
+
intlayer: "intlayer";
|
|
1603
1648
|
}>;
|
|
1604
1649
|
search: z.ZodEnum<{
|
|
1605
1650
|
none: "none";
|
|
@@ -1608,6 +1653,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1608
1653
|
elasticsearch: "elasticsearch";
|
|
1609
1654
|
opensearch: "opensearch";
|
|
1610
1655
|
algolia: "algolia";
|
|
1656
|
+
bleve: "bleve";
|
|
1611
1657
|
}>;
|
|
1612
1658
|
vectorDb: z.ZodEnum<{
|
|
1613
1659
|
none: "none";
|
|
@@ -1621,6 +1667,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1621
1667
|
s3: "s3";
|
|
1622
1668
|
r2: "r2";
|
|
1623
1669
|
cloudinary: "cloudinary";
|
|
1670
|
+
"supabase-storage": "supabase-storage";
|
|
1624
1671
|
}>;
|
|
1625
1672
|
mobileNavigation: z.ZodEnum<{
|
|
1626
1673
|
none: "none";
|
|
@@ -1629,9 +1676,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1629
1676
|
}>;
|
|
1630
1677
|
mobileUI: z.ZodEnum<{
|
|
1631
1678
|
none: "none";
|
|
1679
|
+
uniwind: "uniwind";
|
|
1632
1680
|
tamagui: "tamagui";
|
|
1633
1681
|
"gluestack-ui": "gluestack-ui";
|
|
1634
|
-
uniwind: "uniwind";
|
|
1635
1682
|
unistyles: "unistyles";
|
|
1636
1683
|
}>;
|
|
1637
1684
|
mobileStorage: z.ZodEnum<{
|
|
@@ -1661,6 +1708,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1661
1708
|
axum: "axum";
|
|
1662
1709
|
"actix-web": "actix-web";
|
|
1663
1710
|
rocket: "rocket";
|
|
1711
|
+
poem: "poem";
|
|
1712
|
+
loco: "loco";
|
|
1664
1713
|
}>;
|
|
1665
1714
|
rustFrontend: z.ZodEnum<{
|
|
1666
1715
|
none: "none";
|
|
@@ -1684,12 +1733,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1684
1733
|
ratatui: "ratatui";
|
|
1685
1734
|
}>;
|
|
1686
1735
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
1687
|
-
config: "config";
|
|
1688
1736
|
none: "none";
|
|
1689
1737
|
serde: "serde";
|
|
1690
1738
|
uuid: "uuid";
|
|
1691
1739
|
chrono: "chrono";
|
|
1692
1740
|
reqwest: "reqwest";
|
|
1741
|
+
config: "config";
|
|
1693
1742
|
dashmap: "dashmap";
|
|
1694
1743
|
"parking-lot": "parking-lot";
|
|
1695
1744
|
secrecy: "secrecy";
|
|
@@ -1833,10 +1882,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1833
1882
|
echo: "echo";
|
|
1834
1883
|
fiber: "fiber";
|
|
1835
1884
|
chi: "chi";
|
|
1885
|
+
stdlib: "stdlib";
|
|
1836
1886
|
}>;
|
|
1837
1887
|
goOrm: z.ZodEnum<{
|
|
1838
|
-
none: "none";
|
|
1839
1888
|
gorm: "gorm";
|
|
1889
|
+
none: "none";
|
|
1890
|
+
bun: "bun";
|
|
1840
1891
|
sqlc: "sqlc";
|
|
1841
1892
|
ent: "ent";
|
|
1842
1893
|
}>;
|
|
@@ -1893,10 +1944,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1893
1944
|
none: "none";
|
|
1894
1945
|
opentelemetry: "opentelemetry";
|
|
1895
1946
|
}>;
|
|
1947
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
1948
|
+
java: "java";
|
|
1949
|
+
kotlin: "kotlin";
|
|
1950
|
+
}>>;
|
|
1896
1951
|
javaWebFramework: z.ZodEnum<{
|
|
1897
1952
|
none: "none";
|
|
1898
1953
|
"spring-boot": "spring-boot";
|
|
1899
1954
|
quarkus: "quarkus";
|
|
1955
|
+
micronaut: "micronaut";
|
|
1900
1956
|
}>;
|
|
1901
1957
|
javaBuildTool: z.ZodEnum<{
|
|
1902
1958
|
none: "none";
|
|
@@ -1917,10 +1973,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1917
1973
|
javaApi: z.ZodEnum<{
|
|
1918
1974
|
none: "none";
|
|
1919
1975
|
"spring-graphql": "spring-graphql";
|
|
1976
|
+
"openapi-generator": "openapi-generator";
|
|
1977
|
+
grpc: "grpc";
|
|
1920
1978
|
}>;
|
|
1921
1979
|
javaLogging: z.ZodEnum<{
|
|
1922
1980
|
none: "none";
|
|
1923
1981
|
logback: "logback";
|
|
1982
|
+
log4j2: "log4j2";
|
|
1924
1983
|
}>;
|
|
1925
1984
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
1926
1985
|
none: "none";
|
|
@@ -2037,9 +2096,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2037
2096
|
}>;
|
|
2038
2097
|
elixirApi: z.ZodEnum<{
|
|
2039
2098
|
none: "none";
|
|
2099
|
+
grpc: "grpc";
|
|
2040
2100
|
rest: "rest";
|
|
2041
2101
|
absinthe: "absinthe";
|
|
2042
|
-
grpc: "grpc";
|
|
2043
2102
|
}>;
|
|
2044
2103
|
elixirRealtime: z.ZodEnum<{
|
|
2045
2104
|
none: "none";
|
|
@@ -2116,59 +2175,60 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2116
2175
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2117
2176
|
id: z.ZodString;
|
|
2118
2177
|
role: z.ZodEnum<{
|
|
2119
|
-
|
|
2120
|
-
frontend: "frontend";
|
|
2178
|
+
runtime: "runtime";
|
|
2121
2179
|
backend: "backend";
|
|
2122
|
-
mobile: "mobile";
|
|
2123
2180
|
database: "database";
|
|
2124
|
-
api: "api";
|
|
2125
|
-
graphql: "graphql";
|
|
2126
2181
|
orm: "orm";
|
|
2127
|
-
auth: "auth";
|
|
2128
|
-
runtime: "runtime";
|
|
2129
|
-
deploy: "deploy";
|
|
2130
2182
|
dbSetup: "dbSetup";
|
|
2183
|
+
auth: "auth";
|
|
2184
|
+
payments: "payments";
|
|
2185
|
+
email: "email";
|
|
2186
|
+
fileUpload: "fileUpload";
|
|
2187
|
+
logging: "logging";
|
|
2188
|
+
observability: "observability";
|
|
2189
|
+
featureFlags: "featureFlags";
|
|
2190
|
+
analytics: "analytics";
|
|
2191
|
+
stateManagement: "stateManagement";
|
|
2192
|
+
forms: "forms";
|
|
2193
|
+
validation: "validation";
|
|
2194
|
+
testing: "testing";
|
|
2131
2195
|
realtime: "realtime";
|
|
2132
|
-
|
|
2196
|
+
jobQueue: "jobQueue";
|
|
2133
2197
|
caching: "caching";
|
|
2134
|
-
|
|
2135
|
-
|
|
2198
|
+
rateLimit: "rateLimit";
|
|
2199
|
+
animation: "animation";
|
|
2200
|
+
cms: "cms";
|
|
2201
|
+
i18n: "i18n";
|
|
2136
2202
|
search: "search";
|
|
2137
2203
|
vectorDb: "vectorDb";
|
|
2138
2204
|
fileStorage: "fileStorage";
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
animation: "animation";
|
|
2145
|
-
fileUpload: "fileUpload";
|
|
2146
|
-
validation: "validation";
|
|
2205
|
+
codeQuality: "codeQuality";
|
|
2206
|
+
documentation: "documentation";
|
|
2207
|
+
examples: "examples";
|
|
2208
|
+
api: "api";
|
|
2209
|
+
ai: "ai";
|
|
2147
2210
|
effect: "effect";
|
|
2148
|
-
ui: "ui";
|
|
2149
2211
|
css: "css";
|
|
2212
|
+
ui: "ui";
|
|
2213
|
+
push: "push";
|
|
2214
|
+
frontend: "frontend";
|
|
2215
|
+
config: "config";
|
|
2216
|
+
mobile: "mobile";
|
|
2217
|
+
graphql: "graphql";
|
|
2218
|
+
deploy: "deploy";
|
|
2219
|
+
navigation: "navigation";
|
|
2150
2220
|
storage: "storage";
|
|
2151
2221
|
ota: "ota";
|
|
2152
2222
|
deepLinking: "deepLinking";
|
|
2153
|
-
ai: "ai";
|
|
2154
|
-
payments: "payments";
|
|
2155
|
-
logging: "logging";
|
|
2156
|
-
featureFlags: "featureFlags";
|
|
2157
|
-
analytics: "analytics";
|
|
2158
|
-
cms: "cms";
|
|
2159
|
-
i18n: "i18n";
|
|
2160
|
-
documentation: "documentation";
|
|
2161
|
-
codeQuality: "codeQuality";
|
|
2162
2223
|
appPlatform: "appPlatform";
|
|
2163
2224
|
dataFetching: "dataFetching";
|
|
2164
2225
|
workspaceTooling: "workspaceTooling";
|
|
2165
|
-
|
|
2226
|
+
language: "language";
|
|
2166
2227
|
buildTool: "buildTool";
|
|
2167
2228
|
cli: "cli";
|
|
2168
2229
|
errorHandling: "errorHandling";
|
|
2169
2230
|
httpClient: "httpClient";
|
|
2170
2231
|
libraries: "libraries";
|
|
2171
|
-
config: "config";
|
|
2172
2232
|
templating: "templating";
|
|
2173
2233
|
}>;
|
|
2174
2234
|
toolId: z.ZodString;
|
|
@@ -2230,6 +2290,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2230
2290
|
sequelize: "sequelize";
|
|
2231
2291
|
}>;
|
|
2232
2292
|
backend: z.ZodEnum<{
|
|
2293
|
+
effect: "effect";
|
|
2233
2294
|
none: "none";
|
|
2234
2295
|
hono: "hono";
|
|
2235
2296
|
express: "express";
|
|
@@ -2322,11 +2383,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2322
2383
|
}>;
|
|
2323
2384
|
payments: z.ZodEnum<{
|
|
2324
2385
|
none: "none";
|
|
2386
|
+
revenuecat: "revenuecat";
|
|
2325
2387
|
polar: "polar";
|
|
2326
2388
|
stripe: "stripe";
|
|
2327
2389
|
"lemon-squeezy": "lemon-squeezy";
|
|
2328
2390
|
paddle: "paddle";
|
|
2329
2391
|
dodo: "dodo";
|
|
2392
|
+
creem: "creem";
|
|
2393
|
+
autumn: "autumn";
|
|
2394
|
+
commet: "commet";
|
|
2330
2395
|
}>;
|
|
2331
2396
|
packageManager: z.ZodEnum<{
|
|
2332
2397
|
bun: "bun";
|
|
@@ -2334,6 +2399,10 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2334
2399
|
pnpm: "pnpm";
|
|
2335
2400
|
yarn: "yarn";
|
|
2336
2401
|
}>;
|
|
2402
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
2403
|
+
monorepo: "monorepo";
|
|
2404
|
+
"single-app": "single-app";
|
|
2405
|
+
}>>;
|
|
2337
2406
|
versionChannel: z.ZodEnum<{
|
|
2338
2407
|
stable: "stable";
|
|
2339
2408
|
latest: "latest";
|
|
@@ -2457,6 +2526,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2457
2526
|
"postcss-only": "postcss-only";
|
|
2458
2527
|
}>;
|
|
2459
2528
|
uiLibrary: z.ZodEnum<{
|
|
2529
|
+
mui: "mui";
|
|
2460
2530
|
none: "none";
|
|
2461
2531
|
"shadcn-ui": "shadcn-ui";
|
|
2462
2532
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2467,7 +2537,6 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2467
2537
|
"chakra-ui": "chakra-ui";
|
|
2468
2538
|
nextui: "nextui";
|
|
2469
2539
|
mantine: "mantine";
|
|
2470
|
-
mui: "mui";
|
|
2471
2540
|
antd: "antd";
|
|
2472
2541
|
"base-ui": "base-ui";
|
|
2473
2542
|
"ark-ui": "ark-ui";
|
|
@@ -2539,8 +2608,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2539
2608
|
"geist-mono": "geist-mono";
|
|
2540
2609
|
}>>;
|
|
2541
2610
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2542
|
-
default: "default";
|
|
2543
2611
|
none: "none";
|
|
2612
|
+
default: "default";
|
|
2544
2613
|
small: "small";
|
|
2545
2614
|
medium: "medium";
|
|
2546
2615
|
large: "large";
|
|
@@ -2610,6 +2679,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2610
2679
|
}>;
|
|
2611
2680
|
analytics: z.ZodEnum<{
|
|
2612
2681
|
none: "none";
|
|
2682
|
+
posthog: "posthog";
|
|
2613
2683
|
plausible: "plausible";
|
|
2614
2684
|
umami: "umami";
|
|
2615
2685
|
}>;
|
|
@@ -2624,6 +2694,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2624
2694
|
}>;
|
|
2625
2695
|
caching: z.ZodEnum<{
|
|
2626
2696
|
none: "none";
|
|
2697
|
+
redis: "redis";
|
|
2627
2698
|
"upstash-redis": "upstash-redis";
|
|
2628
2699
|
}>;
|
|
2629
2700
|
rateLimit: z.ZodEnum<{
|
|
@@ -2636,6 +2707,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2636
2707
|
paraglide: "paraglide";
|
|
2637
2708
|
i18next: "i18next";
|
|
2638
2709
|
"next-intl": "next-intl";
|
|
2710
|
+
intlayer: "intlayer";
|
|
2639
2711
|
}>;
|
|
2640
2712
|
search: z.ZodEnum<{
|
|
2641
2713
|
none: "none";
|
|
@@ -2644,6 +2716,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2644
2716
|
elasticsearch: "elasticsearch";
|
|
2645
2717
|
opensearch: "opensearch";
|
|
2646
2718
|
algolia: "algolia";
|
|
2719
|
+
bleve: "bleve";
|
|
2647
2720
|
}>;
|
|
2648
2721
|
vectorDb: z.ZodEnum<{
|
|
2649
2722
|
none: "none";
|
|
@@ -2657,6 +2730,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2657
2730
|
s3: "s3";
|
|
2658
2731
|
r2: "r2";
|
|
2659
2732
|
cloudinary: "cloudinary";
|
|
2733
|
+
"supabase-storage": "supabase-storage";
|
|
2660
2734
|
}>;
|
|
2661
2735
|
mobileNavigation: z.ZodEnum<{
|
|
2662
2736
|
none: "none";
|
|
@@ -2665,9 +2739,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2665
2739
|
}>;
|
|
2666
2740
|
mobileUI: z.ZodEnum<{
|
|
2667
2741
|
none: "none";
|
|
2742
|
+
uniwind: "uniwind";
|
|
2668
2743
|
tamagui: "tamagui";
|
|
2669
2744
|
"gluestack-ui": "gluestack-ui";
|
|
2670
|
-
uniwind: "uniwind";
|
|
2671
2745
|
unistyles: "unistyles";
|
|
2672
2746
|
}>;
|
|
2673
2747
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2697,6 +2771,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2697
2771
|
axum: "axum";
|
|
2698
2772
|
"actix-web": "actix-web";
|
|
2699
2773
|
rocket: "rocket";
|
|
2774
|
+
poem: "poem";
|
|
2775
|
+
loco: "loco";
|
|
2700
2776
|
}>;
|
|
2701
2777
|
rustFrontend: z.ZodEnum<{
|
|
2702
2778
|
none: "none";
|
|
@@ -2720,12 +2796,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2720
2796
|
ratatui: "ratatui";
|
|
2721
2797
|
}>;
|
|
2722
2798
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
2723
|
-
config: "config";
|
|
2724
2799
|
none: "none";
|
|
2725
2800
|
serde: "serde";
|
|
2726
2801
|
uuid: "uuid";
|
|
2727
2802
|
chrono: "chrono";
|
|
2728
2803
|
reqwest: "reqwest";
|
|
2804
|
+
config: "config";
|
|
2729
2805
|
dashmap: "dashmap";
|
|
2730
2806
|
"parking-lot": "parking-lot";
|
|
2731
2807
|
secrecy: "secrecy";
|
|
@@ -2869,10 +2945,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2869
2945
|
echo: "echo";
|
|
2870
2946
|
fiber: "fiber";
|
|
2871
2947
|
chi: "chi";
|
|
2948
|
+
stdlib: "stdlib";
|
|
2872
2949
|
}>;
|
|
2873
2950
|
goOrm: z.ZodEnum<{
|
|
2874
|
-
none: "none";
|
|
2875
2951
|
gorm: "gorm";
|
|
2952
|
+
none: "none";
|
|
2953
|
+
bun: "bun";
|
|
2876
2954
|
sqlc: "sqlc";
|
|
2877
2955
|
ent: "ent";
|
|
2878
2956
|
}>;
|
|
@@ -2929,10 +3007,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2929
3007
|
none: "none";
|
|
2930
3008
|
opentelemetry: "opentelemetry";
|
|
2931
3009
|
}>;
|
|
3010
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
3011
|
+
java: "java";
|
|
3012
|
+
kotlin: "kotlin";
|
|
3013
|
+
}>>;
|
|
2932
3014
|
javaWebFramework: z.ZodEnum<{
|
|
2933
3015
|
none: "none";
|
|
2934
3016
|
"spring-boot": "spring-boot";
|
|
2935
3017
|
quarkus: "quarkus";
|
|
3018
|
+
micronaut: "micronaut";
|
|
2936
3019
|
}>;
|
|
2937
3020
|
javaBuildTool: z.ZodEnum<{
|
|
2938
3021
|
none: "none";
|
|
@@ -2953,10 +3036,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2953
3036
|
javaApi: z.ZodEnum<{
|
|
2954
3037
|
none: "none";
|
|
2955
3038
|
"spring-graphql": "spring-graphql";
|
|
3039
|
+
"openapi-generator": "openapi-generator";
|
|
3040
|
+
grpc: "grpc";
|
|
2956
3041
|
}>;
|
|
2957
3042
|
javaLogging: z.ZodEnum<{
|
|
2958
3043
|
none: "none";
|
|
2959
3044
|
logback: "logback";
|
|
3045
|
+
log4j2: "log4j2";
|
|
2960
3046
|
}>;
|
|
2961
3047
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2962
3048
|
none: "none";
|
|
@@ -3073,9 +3159,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3073
3159
|
}>;
|
|
3074
3160
|
elixirApi: z.ZodEnum<{
|
|
3075
3161
|
none: "none";
|
|
3162
|
+
grpc: "grpc";
|
|
3076
3163
|
rest: "rest";
|
|
3077
3164
|
absinthe: "absinthe";
|
|
3078
|
-
grpc: "grpc";
|
|
3079
3165
|
}>;
|
|
3080
3166
|
elixirRealtime: z.ZodEnum<{
|
|
3081
3167
|
none: "none";
|
|
@@ -3152,59 +3238,60 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3152
3238
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3153
3239
|
id: z.ZodString;
|
|
3154
3240
|
role: z.ZodEnum<{
|
|
3155
|
-
|
|
3156
|
-
frontend: "frontend";
|
|
3241
|
+
runtime: "runtime";
|
|
3157
3242
|
backend: "backend";
|
|
3158
|
-
mobile: "mobile";
|
|
3159
3243
|
database: "database";
|
|
3160
|
-
api: "api";
|
|
3161
|
-
graphql: "graphql";
|
|
3162
3244
|
orm: "orm";
|
|
3163
|
-
auth: "auth";
|
|
3164
|
-
runtime: "runtime";
|
|
3165
|
-
deploy: "deploy";
|
|
3166
3245
|
dbSetup: "dbSetup";
|
|
3246
|
+
auth: "auth";
|
|
3247
|
+
payments: "payments";
|
|
3248
|
+
email: "email";
|
|
3249
|
+
fileUpload: "fileUpload";
|
|
3250
|
+
logging: "logging";
|
|
3251
|
+
observability: "observability";
|
|
3252
|
+
featureFlags: "featureFlags";
|
|
3253
|
+
analytics: "analytics";
|
|
3254
|
+
stateManagement: "stateManagement";
|
|
3255
|
+
forms: "forms";
|
|
3256
|
+
validation: "validation";
|
|
3257
|
+
testing: "testing";
|
|
3167
3258
|
realtime: "realtime";
|
|
3168
|
-
|
|
3259
|
+
jobQueue: "jobQueue";
|
|
3169
3260
|
caching: "caching";
|
|
3170
|
-
|
|
3171
|
-
|
|
3261
|
+
rateLimit: "rateLimit";
|
|
3262
|
+
animation: "animation";
|
|
3263
|
+
cms: "cms";
|
|
3264
|
+
i18n: "i18n";
|
|
3172
3265
|
search: "search";
|
|
3173
3266
|
vectorDb: "vectorDb";
|
|
3174
3267
|
fileStorage: "fileStorage";
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
animation: "animation";
|
|
3181
|
-
fileUpload: "fileUpload";
|
|
3182
|
-
validation: "validation";
|
|
3268
|
+
codeQuality: "codeQuality";
|
|
3269
|
+
documentation: "documentation";
|
|
3270
|
+
examples: "examples";
|
|
3271
|
+
api: "api";
|
|
3272
|
+
ai: "ai";
|
|
3183
3273
|
effect: "effect";
|
|
3184
|
-
ui: "ui";
|
|
3185
3274
|
css: "css";
|
|
3275
|
+
ui: "ui";
|
|
3276
|
+
push: "push";
|
|
3277
|
+
frontend: "frontend";
|
|
3278
|
+
config: "config";
|
|
3279
|
+
mobile: "mobile";
|
|
3280
|
+
graphql: "graphql";
|
|
3281
|
+
deploy: "deploy";
|
|
3282
|
+
navigation: "navigation";
|
|
3186
3283
|
storage: "storage";
|
|
3187
3284
|
ota: "ota";
|
|
3188
3285
|
deepLinking: "deepLinking";
|
|
3189
|
-
ai: "ai";
|
|
3190
|
-
payments: "payments";
|
|
3191
|
-
logging: "logging";
|
|
3192
|
-
featureFlags: "featureFlags";
|
|
3193
|
-
analytics: "analytics";
|
|
3194
|
-
cms: "cms";
|
|
3195
|
-
i18n: "i18n";
|
|
3196
|
-
documentation: "documentation";
|
|
3197
|
-
codeQuality: "codeQuality";
|
|
3198
3286
|
appPlatform: "appPlatform";
|
|
3199
3287
|
dataFetching: "dataFetching";
|
|
3200
3288
|
workspaceTooling: "workspaceTooling";
|
|
3201
|
-
|
|
3289
|
+
language: "language";
|
|
3202
3290
|
buildTool: "buildTool";
|
|
3203
3291
|
cli: "cli";
|
|
3204
3292
|
errorHandling: "errorHandling";
|
|
3205
3293
|
httpClient: "httpClient";
|
|
3206
3294
|
libraries: "libraries";
|
|
3207
|
-
config: "config";
|
|
3208
3295
|
templating: "templating";
|
|
3209
3296
|
}>;
|
|
3210
3297
|
toolId: z.ZodString;
|
|
@@ -3266,6 +3353,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3266
3353
|
sequelize: "sequelize";
|
|
3267
3354
|
}>;
|
|
3268
3355
|
backend: z.ZodEnum<{
|
|
3356
|
+
effect: "effect";
|
|
3269
3357
|
none: "none";
|
|
3270
3358
|
hono: "hono";
|
|
3271
3359
|
express: "express";
|
|
@@ -3358,11 +3446,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3358
3446
|
}>;
|
|
3359
3447
|
payments: z.ZodEnum<{
|
|
3360
3448
|
none: "none";
|
|
3449
|
+
revenuecat: "revenuecat";
|
|
3361
3450
|
polar: "polar";
|
|
3362
3451
|
stripe: "stripe";
|
|
3363
3452
|
"lemon-squeezy": "lemon-squeezy";
|
|
3364
3453
|
paddle: "paddle";
|
|
3365
3454
|
dodo: "dodo";
|
|
3455
|
+
creem: "creem";
|
|
3456
|
+
autumn: "autumn";
|
|
3457
|
+
commet: "commet";
|
|
3366
3458
|
}>;
|
|
3367
3459
|
packageManager: z.ZodEnum<{
|
|
3368
3460
|
bun: "bun";
|
|
@@ -3370,6 +3462,10 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3370
3462
|
pnpm: "pnpm";
|
|
3371
3463
|
yarn: "yarn";
|
|
3372
3464
|
}>;
|
|
3465
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3466
|
+
monorepo: "monorepo";
|
|
3467
|
+
"single-app": "single-app";
|
|
3468
|
+
}>>;
|
|
3373
3469
|
versionChannel: z.ZodEnum<{
|
|
3374
3470
|
stable: "stable";
|
|
3375
3471
|
latest: "latest";
|
|
@@ -3493,6 +3589,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3493
3589
|
"postcss-only": "postcss-only";
|
|
3494
3590
|
}>;
|
|
3495
3591
|
uiLibrary: z.ZodEnum<{
|
|
3592
|
+
mui: "mui";
|
|
3496
3593
|
none: "none";
|
|
3497
3594
|
"shadcn-ui": "shadcn-ui";
|
|
3498
3595
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3503,7 +3600,6 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3503
3600
|
"chakra-ui": "chakra-ui";
|
|
3504
3601
|
nextui: "nextui";
|
|
3505
3602
|
mantine: "mantine";
|
|
3506
|
-
mui: "mui";
|
|
3507
3603
|
antd: "antd";
|
|
3508
3604
|
"base-ui": "base-ui";
|
|
3509
3605
|
"ark-ui": "ark-ui";
|
|
@@ -3575,8 +3671,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3575
3671
|
"geist-mono": "geist-mono";
|
|
3576
3672
|
}>>;
|
|
3577
3673
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3578
|
-
default: "default";
|
|
3579
3674
|
none: "none";
|
|
3675
|
+
default: "default";
|
|
3580
3676
|
small: "small";
|
|
3581
3677
|
medium: "medium";
|
|
3582
3678
|
large: "large";
|
|
@@ -3646,6 +3742,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3646
3742
|
}>;
|
|
3647
3743
|
analytics: z.ZodEnum<{
|
|
3648
3744
|
none: "none";
|
|
3745
|
+
posthog: "posthog";
|
|
3649
3746
|
plausible: "plausible";
|
|
3650
3747
|
umami: "umami";
|
|
3651
3748
|
}>;
|
|
@@ -3660,6 +3757,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3660
3757
|
}>;
|
|
3661
3758
|
caching: z.ZodEnum<{
|
|
3662
3759
|
none: "none";
|
|
3760
|
+
redis: "redis";
|
|
3663
3761
|
"upstash-redis": "upstash-redis";
|
|
3664
3762
|
}>;
|
|
3665
3763
|
rateLimit: z.ZodEnum<{
|
|
@@ -3672,6 +3770,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3672
3770
|
paraglide: "paraglide";
|
|
3673
3771
|
i18next: "i18next";
|
|
3674
3772
|
"next-intl": "next-intl";
|
|
3773
|
+
intlayer: "intlayer";
|
|
3675
3774
|
}>;
|
|
3676
3775
|
search: z.ZodEnum<{
|
|
3677
3776
|
none: "none";
|
|
@@ -3680,6 +3779,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3680
3779
|
elasticsearch: "elasticsearch";
|
|
3681
3780
|
opensearch: "opensearch";
|
|
3682
3781
|
algolia: "algolia";
|
|
3782
|
+
bleve: "bleve";
|
|
3683
3783
|
}>;
|
|
3684
3784
|
vectorDb: z.ZodEnum<{
|
|
3685
3785
|
none: "none";
|
|
@@ -3693,6 +3793,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3693
3793
|
s3: "s3";
|
|
3694
3794
|
r2: "r2";
|
|
3695
3795
|
cloudinary: "cloudinary";
|
|
3796
|
+
"supabase-storage": "supabase-storage";
|
|
3696
3797
|
}>;
|
|
3697
3798
|
mobileNavigation: z.ZodEnum<{
|
|
3698
3799
|
none: "none";
|
|
@@ -3701,9 +3802,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3701
3802
|
}>;
|
|
3702
3803
|
mobileUI: z.ZodEnum<{
|
|
3703
3804
|
none: "none";
|
|
3805
|
+
uniwind: "uniwind";
|
|
3704
3806
|
tamagui: "tamagui";
|
|
3705
3807
|
"gluestack-ui": "gluestack-ui";
|
|
3706
|
-
uniwind: "uniwind";
|
|
3707
3808
|
unistyles: "unistyles";
|
|
3708
3809
|
}>;
|
|
3709
3810
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3733,6 +3834,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3733
3834
|
axum: "axum";
|
|
3734
3835
|
"actix-web": "actix-web";
|
|
3735
3836
|
rocket: "rocket";
|
|
3837
|
+
poem: "poem";
|
|
3838
|
+
loco: "loco";
|
|
3736
3839
|
}>;
|
|
3737
3840
|
rustFrontend: z.ZodEnum<{
|
|
3738
3841
|
none: "none";
|
|
@@ -3756,12 +3859,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3756
3859
|
ratatui: "ratatui";
|
|
3757
3860
|
}>;
|
|
3758
3861
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3759
|
-
config: "config";
|
|
3760
3862
|
none: "none";
|
|
3761
3863
|
serde: "serde";
|
|
3762
3864
|
uuid: "uuid";
|
|
3763
3865
|
chrono: "chrono";
|
|
3764
3866
|
reqwest: "reqwest";
|
|
3867
|
+
config: "config";
|
|
3765
3868
|
dashmap: "dashmap";
|
|
3766
3869
|
"parking-lot": "parking-lot";
|
|
3767
3870
|
secrecy: "secrecy";
|
|
@@ -3905,10 +4008,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3905
4008
|
echo: "echo";
|
|
3906
4009
|
fiber: "fiber";
|
|
3907
4010
|
chi: "chi";
|
|
4011
|
+
stdlib: "stdlib";
|
|
3908
4012
|
}>;
|
|
3909
4013
|
goOrm: z.ZodEnum<{
|
|
3910
|
-
none: "none";
|
|
3911
4014
|
gorm: "gorm";
|
|
4015
|
+
none: "none";
|
|
4016
|
+
bun: "bun";
|
|
3912
4017
|
sqlc: "sqlc";
|
|
3913
4018
|
ent: "ent";
|
|
3914
4019
|
}>;
|
|
@@ -3965,10 +4070,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3965
4070
|
none: "none";
|
|
3966
4071
|
opentelemetry: "opentelemetry";
|
|
3967
4072
|
}>;
|
|
4073
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
4074
|
+
java: "java";
|
|
4075
|
+
kotlin: "kotlin";
|
|
4076
|
+
}>>;
|
|
3968
4077
|
javaWebFramework: z.ZodEnum<{
|
|
3969
4078
|
none: "none";
|
|
3970
4079
|
"spring-boot": "spring-boot";
|
|
3971
4080
|
quarkus: "quarkus";
|
|
4081
|
+
micronaut: "micronaut";
|
|
3972
4082
|
}>;
|
|
3973
4083
|
javaBuildTool: z.ZodEnum<{
|
|
3974
4084
|
none: "none";
|
|
@@ -3989,10 +4099,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3989
4099
|
javaApi: z.ZodEnum<{
|
|
3990
4100
|
none: "none";
|
|
3991
4101
|
"spring-graphql": "spring-graphql";
|
|
4102
|
+
"openapi-generator": "openapi-generator";
|
|
4103
|
+
grpc: "grpc";
|
|
3992
4104
|
}>;
|
|
3993
4105
|
javaLogging: z.ZodEnum<{
|
|
3994
4106
|
none: "none";
|
|
3995
4107
|
logback: "logback";
|
|
4108
|
+
log4j2: "log4j2";
|
|
3996
4109
|
}>;
|
|
3997
4110
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3998
4111
|
none: "none";
|
|
@@ -4109,9 +4222,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4109
4222
|
}>;
|
|
4110
4223
|
elixirApi: z.ZodEnum<{
|
|
4111
4224
|
none: "none";
|
|
4225
|
+
grpc: "grpc";
|
|
4112
4226
|
rest: "rest";
|
|
4113
4227
|
absinthe: "absinthe";
|
|
4114
|
-
grpc: "grpc";
|
|
4115
4228
|
}>;
|
|
4116
4229
|
elixirRealtime: z.ZodEnum<{
|
|
4117
4230
|
none: "none";
|
|
@@ -4188,59 +4301,60 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4188
4301
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4189
4302
|
id: z.ZodString;
|
|
4190
4303
|
role: z.ZodEnum<{
|
|
4191
|
-
|
|
4192
|
-
frontend: "frontend";
|
|
4304
|
+
runtime: "runtime";
|
|
4193
4305
|
backend: "backend";
|
|
4194
|
-
mobile: "mobile";
|
|
4195
4306
|
database: "database";
|
|
4196
|
-
api: "api";
|
|
4197
|
-
graphql: "graphql";
|
|
4198
4307
|
orm: "orm";
|
|
4199
|
-
auth: "auth";
|
|
4200
|
-
runtime: "runtime";
|
|
4201
|
-
deploy: "deploy";
|
|
4202
4308
|
dbSetup: "dbSetup";
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
caching: "caching";
|
|
4206
|
-
observability: "observability";
|
|
4309
|
+
auth: "auth";
|
|
4310
|
+
payments: "payments";
|
|
4207
4311
|
email: "email";
|
|
4208
|
-
search: "search";
|
|
4209
|
-
vectorDb: "vectorDb";
|
|
4210
|
-
fileStorage: "fileStorage";
|
|
4211
|
-
jobQueue: "jobQueue";
|
|
4212
|
-
rateLimit: "rateLimit";
|
|
4213
|
-
testing: "testing";
|
|
4214
|
-
stateManagement: "stateManagement";
|
|
4215
|
-
forms: "forms";
|
|
4216
|
-
animation: "animation";
|
|
4217
4312
|
fileUpload: "fileUpload";
|
|
4218
|
-
validation: "validation";
|
|
4219
|
-
effect: "effect";
|
|
4220
|
-
ui: "ui";
|
|
4221
|
-
css: "css";
|
|
4222
|
-
storage: "storage";
|
|
4223
|
-
ota: "ota";
|
|
4224
|
-
deepLinking: "deepLinking";
|
|
4225
|
-
ai: "ai";
|
|
4226
|
-
payments: "payments";
|
|
4227
4313
|
logging: "logging";
|
|
4314
|
+
observability: "observability";
|
|
4228
4315
|
featureFlags: "featureFlags";
|
|
4229
4316
|
analytics: "analytics";
|
|
4317
|
+
stateManagement: "stateManagement";
|
|
4318
|
+
forms: "forms";
|
|
4319
|
+
validation: "validation";
|
|
4320
|
+
testing: "testing";
|
|
4321
|
+
realtime: "realtime";
|
|
4322
|
+
jobQueue: "jobQueue";
|
|
4323
|
+
caching: "caching";
|
|
4324
|
+
rateLimit: "rateLimit";
|
|
4325
|
+
animation: "animation";
|
|
4230
4326
|
cms: "cms";
|
|
4231
4327
|
i18n: "i18n";
|
|
4232
|
-
|
|
4328
|
+
search: "search";
|
|
4329
|
+
vectorDb: "vectorDb";
|
|
4330
|
+
fileStorage: "fileStorage";
|
|
4233
4331
|
codeQuality: "codeQuality";
|
|
4332
|
+
documentation: "documentation";
|
|
4333
|
+
examples: "examples";
|
|
4334
|
+
api: "api";
|
|
4335
|
+
ai: "ai";
|
|
4336
|
+
effect: "effect";
|
|
4337
|
+
css: "css";
|
|
4338
|
+
ui: "ui";
|
|
4339
|
+
push: "push";
|
|
4340
|
+
frontend: "frontend";
|
|
4341
|
+
config: "config";
|
|
4342
|
+
mobile: "mobile";
|
|
4343
|
+
graphql: "graphql";
|
|
4344
|
+
deploy: "deploy";
|
|
4345
|
+
navigation: "navigation";
|
|
4346
|
+
storage: "storage";
|
|
4347
|
+
ota: "ota";
|
|
4348
|
+
deepLinking: "deepLinking";
|
|
4234
4349
|
appPlatform: "appPlatform";
|
|
4235
4350
|
dataFetching: "dataFetching";
|
|
4236
4351
|
workspaceTooling: "workspaceTooling";
|
|
4237
|
-
|
|
4352
|
+
language: "language";
|
|
4238
4353
|
buildTool: "buildTool";
|
|
4239
4354
|
cli: "cli";
|
|
4240
4355
|
errorHandling: "errorHandling";
|
|
4241
4356
|
httpClient: "httpClient";
|
|
4242
4357
|
libraries: "libraries";
|
|
4243
|
-
config: "config";
|
|
4244
4358
|
templating: "templating";
|
|
4245
4359
|
}>;
|
|
4246
4360
|
toolId: z.ZodString;
|
|
@@ -4303,6 +4417,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4303
4417
|
sequelize: "sequelize";
|
|
4304
4418
|
}>;
|
|
4305
4419
|
backend: z.ZodEnum<{
|
|
4420
|
+
effect: "effect";
|
|
4306
4421
|
none: "none";
|
|
4307
4422
|
hono: "hono";
|
|
4308
4423
|
express: "express";
|
|
@@ -4395,11 +4510,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4395
4510
|
}>;
|
|
4396
4511
|
payments: z.ZodEnum<{
|
|
4397
4512
|
none: "none";
|
|
4513
|
+
revenuecat: "revenuecat";
|
|
4398
4514
|
polar: "polar";
|
|
4399
4515
|
stripe: "stripe";
|
|
4400
4516
|
"lemon-squeezy": "lemon-squeezy";
|
|
4401
4517
|
paddle: "paddle";
|
|
4402
4518
|
dodo: "dodo";
|
|
4519
|
+
creem: "creem";
|
|
4520
|
+
autumn: "autumn";
|
|
4521
|
+
commet: "commet";
|
|
4403
4522
|
}>;
|
|
4404
4523
|
git: z.ZodBoolean;
|
|
4405
4524
|
packageManager: z.ZodEnum<{
|
|
@@ -4408,6 +4527,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4408
4527
|
pnpm: "pnpm";
|
|
4409
4528
|
yarn: "yarn";
|
|
4410
4529
|
}>;
|
|
4530
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
4531
|
+
monorepo: "monorepo";
|
|
4532
|
+
"single-app": "single-app";
|
|
4533
|
+
}>>;
|
|
4411
4534
|
versionChannel: z.ZodEnum<{
|
|
4412
4535
|
stable: "stable";
|
|
4413
4536
|
latest: "latest";
|
|
@@ -4532,6 +4655,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4532
4655
|
"postcss-only": "postcss-only";
|
|
4533
4656
|
}>;
|
|
4534
4657
|
uiLibrary: z.ZodEnum<{
|
|
4658
|
+
mui: "mui";
|
|
4535
4659
|
none: "none";
|
|
4536
4660
|
"shadcn-ui": "shadcn-ui";
|
|
4537
4661
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4542,7 +4666,6 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4542
4666
|
"chakra-ui": "chakra-ui";
|
|
4543
4667
|
nextui: "nextui";
|
|
4544
4668
|
mantine: "mantine";
|
|
4545
|
-
mui: "mui";
|
|
4546
4669
|
antd: "antd";
|
|
4547
4670
|
"base-ui": "base-ui";
|
|
4548
4671
|
"ark-ui": "ark-ui";
|
|
@@ -4614,8 +4737,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4614
4737
|
"geist-mono": "geist-mono";
|
|
4615
4738
|
}>>;
|
|
4616
4739
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4617
|
-
default: "default";
|
|
4618
4740
|
none: "none";
|
|
4741
|
+
default: "default";
|
|
4619
4742
|
small: "small";
|
|
4620
4743
|
medium: "medium";
|
|
4621
4744
|
large: "large";
|
|
@@ -4685,6 +4808,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4685
4808
|
}>;
|
|
4686
4809
|
analytics: z.ZodEnum<{
|
|
4687
4810
|
none: "none";
|
|
4811
|
+
posthog: "posthog";
|
|
4688
4812
|
plausible: "plausible";
|
|
4689
4813
|
umami: "umami";
|
|
4690
4814
|
}>;
|
|
@@ -4699,6 +4823,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4699
4823
|
}>;
|
|
4700
4824
|
caching: z.ZodEnum<{
|
|
4701
4825
|
none: "none";
|
|
4826
|
+
redis: "redis";
|
|
4702
4827
|
"upstash-redis": "upstash-redis";
|
|
4703
4828
|
}>;
|
|
4704
4829
|
rateLimit: z.ZodEnum<{
|
|
@@ -4711,6 +4836,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4711
4836
|
paraglide: "paraglide";
|
|
4712
4837
|
i18next: "i18next";
|
|
4713
4838
|
"next-intl": "next-intl";
|
|
4839
|
+
intlayer: "intlayer";
|
|
4714
4840
|
}>;
|
|
4715
4841
|
search: z.ZodEnum<{
|
|
4716
4842
|
none: "none";
|
|
@@ -4719,6 +4845,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4719
4845
|
elasticsearch: "elasticsearch";
|
|
4720
4846
|
opensearch: "opensearch";
|
|
4721
4847
|
algolia: "algolia";
|
|
4848
|
+
bleve: "bleve";
|
|
4722
4849
|
}>;
|
|
4723
4850
|
vectorDb: z.ZodEnum<{
|
|
4724
4851
|
none: "none";
|
|
@@ -4732,6 +4859,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4732
4859
|
s3: "s3";
|
|
4733
4860
|
r2: "r2";
|
|
4734
4861
|
cloudinary: "cloudinary";
|
|
4862
|
+
"supabase-storage": "supabase-storage";
|
|
4735
4863
|
}>;
|
|
4736
4864
|
mobileNavigation: z.ZodEnum<{
|
|
4737
4865
|
none: "none";
|
|
@@ -4740,9 +4868,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4740
4868
|
}>;
|
|
4741
4869
|
mobileUI: z.ZodEnum<{
|
|
4742
4870
|
none: "none";
|
|
4871
|
+
uniwind: "uniwind";
|
|
4743
4872
|
tamagui: "tamagui";
|
|
4744
4873
|
"gluestack-ui": "gluestack-ui";
|
|
4745
|
-
uniwind: "uniwind";
|
|
4746
4874
|
unistyles: "unistyles";
|
|
4747
4875
|
}>;
|
|
4748
4876
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4772,6 +4900,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4772
4900
|
axum: "axum";
|
|
4773
4901
|
"actix-web": "actix-web";
|
|
4774
4902
|
rocket: "rocket";
|
|
4903
|
+
poem: "poem";
|
|
4904
|
+
loco: "loco";
|
|
4775
4905
|
}>;
|
|
4776
4906
|
rustFrontend: z.ZodEnum<{
|
|
4777
4907
|
none: "none";
|
|
@@ -4795,12 +4925,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4795
4925
|
ratatui: "ratatui";
|
|
4796
4926
|
}>;
|
|
4797
4927
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4798
|
-
config: "config";
|
|
4799
4928
|
none: "none";
|
|
4800
4929
|
serde: "serde";
|
|
4801
4930
|
uuid: "uuid";
|
|
4802
4931
|
chrono: "chrono";
|
|
4803
4932
|
reqwest: "reqwest";
|
|
4933
|
+
config: "config";
|
|
4804
4934
|
dashmap: "dashmap";
|
|
4805
4935
|
"parking-lot": "parking-lot";
|
|
4806
4936
|
secrecy: "secrecy";
|
|
@@ -4944,10 +5074,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4944
5074
|
echo: "echo";
|
|
4945
5075
|
fiber: "fiber";
|
|
4946
5076
|
chi: "chi";
|
|
5077
|
+
stdlib: "stdlib";
|
|
4947
5078
|
}>;
|
|
4948
5079
|
goOrm: z.ZodEnum<{
|
|
4949
|
-
none: "none";
|
|
4950
5080
|
gorm: "gorm";
|
|
5081
|
+
none: "none";
|
|
5082
|
+
bun: "bun";
|
|
4951
5083
|
sqlc: "sqlc";
|
|
4952
5084
|
ent: "ent";
|
|
4953
5085
|
}>;
|
|
@@ -5004,10 +5136,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5004
5136
|
none: "none";
|
|
5005
5137
|
opentelemetry: "opentelemetry";
|
|
5006
5138
|
}>;
|
|
5139
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
5140
|
+
java: "java";
|
|
5141
|
+
kotlin: "kotlin";
|
|
5142
|
+
}>>;
|
|
5007
5143
|
javaWebFramework: z.ZodEnum<{
|
|
5008
5144
|
none: "none";
|
|
5009
5145
|
"spring-boot": "spring-boot";
|
|
5010
5146
|
quarkus: "quarkus";
|
|
5147
|
+
micronaut: "micronaut";
|
|
5011
5148
|
}>;
|
|
5012
5149
|
javaBuildTool: z.ZodEnum<{
|
|
5013
5150
|
none: "none";
|
|
@@ -5028,10 +5165,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5028
5165
|
javaApi: z.ZodEnum<{
|
|
5029
5166
|
none: "none";
|
|
5030
5167
|
"spring-graphql": "spring-graphql";
|
|
5168
|
+
"openapi-generator": "openapi-generator";
|
|
5169
|
+
grpc: "grpc";
|
|
5031
5170
|
}>;
|
|
5032
5171
|
javaLogging: z.ZodEnum<{
|
|
5033
5172
|
none: "none";
|
|
5034
5173
|
logback: "logback";
|
|
5174
|
+
log4j2: "log4j2";
|
|
5035
5175
|
}>;
|
|
5036
5176
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5037
5177
|
none: "none";
|
|
@@ -5148,9 +5288,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5148
5288
|
}>;
|
|
5149
5289
|
elixirApi: z.ZodEnum<{
|
|
5150
5290
|
none: "none";
|
|
5291
|
+
grpc: "grpc";
|
|
5151
5292
|
rest: "rest";
|
|
5152
5293
|
absinthe: "absinthe";
|
|
5153
|
-
grpc: "grpc";
|
|
5154
5294
|
}>;
|
|
5155
5295
|
elixirRealtime: z.ZodEnum<{
|
|
5156
5296
|
none: "none";
|
|
@@ -5227,59 +5367,60 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5227
5367
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5228
5368
|
id: z.ZodString;
|
|
5229
5369
|
role: z.ZodEnum<{
|
|
5230
|
-
|
|
5231
|
-
frontend: "frontend";
|
|
5370
|
+
runtime: "runtime";
|
|
5232
5371
|
backend: "backend";
|
|
5233
|
-
mobile: "mobile";
|
|
5234
5372
|
database: "database";
|
|
5235
|
-
api: "api";
|
|
5236
|
-
graphql: "graphql";
|
|
5237
5373
|
orm: "orm";
|
|
5238
|
-
auth: "auth";
|
|
5239
|
-
runtime: "runtime";
|
|
5240
|
-
deploy: "deploy";
|
|
5241
5374
|
dbSetup: "dbSetup";
|
|
5375
|
+
auth: "auth";
|
|
5376
|
+
payments: "payments";
|
|
5377
|
+
email: "email";
|
|
5378
|
+
fileUpload: "fileUpload";
|
|
5379
|
+
logging: "logging";
|
|
5380
|
+
observability: "observability";
|
|
5381
|
+
featureFlags: "featureFlags";
|
|
5382
|
+
analytics: "analytics";
|
|
5383
|
+
stateManagement: "stateManagement";
|
|
5384
|
+
forms: "forms";
|
|
5385
|
+
validation: "validation";
|
|
5386
|
+
testing: "testing";
|
|
5242
5387
|
realtime: "realtime";
|
|
5243
|
-
|
|
5388
|
+
jobQueue: "jobQueue";
|
|
5244
5389
|
caching: "caching";
|
|
5245
|
-
|
|
5246
|
-
|
|
5390
|
+
rateLimit: "rateLimit";
|
|
5391
|
+
animation: "animation";
|
|
5392
|
+
cms: "cms";
|
|
5393
|
+
i18n: "i18n";
|
|
5247
5394
|
search: "search";
|
|
5248
5395
|
vectorDb: "vectorDb";
|
|
5249
5396
|
fileStorage: "fileStorage";
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
animation: "animation";
|
|
5256
|
-
fileUpload: "fileUpload";
|
|
5257
|
-
validation: "validation";
|
|
5397
|
+
codeQuality: "codeQuality";
|
|
5398
|
+
documentation: "documentation";
|
|
5399
|
+
examples: "examples";
|
|
5400
|
+
api: "api";
|
|
5401
|
+
ai: "ai";
|
|
5258
5402
|
effect: "effect";
|
|
5259
|
-
ui: "ui";
|
|
5260
5403
|
css: "css";
|
|
5404
|
+
ui: "ui";
|
|
5405
|
+
push: "push";
|
|
5406
|
+
frontend: "frontend";
|
|
5407
|
+
config: "config";
|
|
5408
|
+
mobile: "mobile";
|
|
5409
|
+
graphql: "graphql";
|
|
5410
|
+
deploy: "deploy";
|
|
5411
|
+
navigation: "navigation";
|
|
5261
5412
|
storage: "storage";
|
|
5262
5413
|
ota: "ota";
|
|
5263
5414
|
deepLinking: "deepLinking";
|
|
5264
|
-
ai: "ai";
|
|
5265
|
-
payments: "payments";
|
|
5266
|
-
logging: "logging";
|
|
5267
|
-
featureFlags: "featureFlags";
|
|
5268
|
-
analytics: "analytics";
|
|
5269
|
-
cms: "cms";
|
|
5270
|
-
i18n: "i18n";
|
|
5271
|
-
documentation: "documentation";
|
|
5272
|
-
codeQuality: "codeQuality";
|
|
5273
5415
|
appPlatform: "appPlatform";
|
|
5274
5416
|
dataFetching: "dataFetching";
|
|
5275
5417
|
workspaceTooling: "workspaceTooling";
|
|
5276
|
-
|
|
5418
|
+
language: "language";
|
|
5277
5419
|
buildTool: "buildTool";
|
|
5278
5420
|
cli: "cli";
|
|
5279
5421
|
errorHandling: "errorHandling";
|
|
5280
5422
|
httpClient: "httpClient";
|
|
5281
5423
|
libraries: "libraries";
|
|
5282
|
-
config: "config";
|
|
5283
5424
|
templating: "templating";
|
|
5284
5425
|
}>;
|
|
5285
5426
|
toolId: z.ZodString;
|
|
@@ -5321,6 +5462,7 @@ declare function getJavaWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPa
|
|
|
5321
5462
|
none: "none";
|
|
5322
5463
|
"spring-boot": "spring-boot";
|
|
5323
5464
|
quarkus: "quarkus";
|
|
5465
|
+
micronaut: "micronaut";
|
|
5324
5466
|
}>>;
|
|
5325
5467
|
declare function getJavaBuildToolJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5326
5468
|
none: "none";
|
|
@@ -5389,9 +5531,9 @@ declare function getElixirAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5389
5531
|
}>>;
|
|
5390
5532
|
declare function getElixirApiJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5391
5533
|
none: "none";
|
|
5534
|
+
grpc: "grpc";
|
|
5392
5535
|
rest: "rest";
|
|
5393
5536
|
absinthe: "absinthe";
|
|
5394
|
-
grpc: "grpc";
|
|
5395
5537
|
}>>;
|
|
5396
5538
|
declare function getElixirRealtimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5397
5539
|
none: "none";
|
|
@@ -5475,6 +5617,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5475
5617
|
sequelize: "sequelize";
|
|
5476
5618
|
}>>;
|
|
5477
5619
|
backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5620
|
+
effect: "effect";
|
|
5478
5621
|
none: "none";
|
|
5479
5622
|
hono: "hono";
|
|
5480
5623
|
express: "express";
|
|
@@ -5595,11 +5738,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5595
5738
|
}>>;
|
|
5596
5739
|
payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5597
5740
|
none: "none";
|
|
5741
|
+
revenuecat: "revenuecat";
|
|
5598
5742
|
polar: "polar";
|
|
5599
5743
|
stripe: "stripe";
|
|
5600
5744
|
"lemon-squeezy": "lemon-squeezy";
|
|
5601
5745
|
paddle: "paddle";
|
|
5602
5746
|
dodo: "dodo";
|
|
5747
|
+
creem: "creem";
|
|
5748
|
+
autumn: "autumn";
|
|
5749
|
+
commet: "commet";
|
|
5603
5750
|
}>>;
|
|
5604
5751
|
webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5605
5752
|
none: "none";
|
|
@@ -5624,22 +5771,24 @@ declare function getAllJsonSchemas(): {
|
|
|
5624
5771
|
vercel: "vercel";
|
|
5625
5772
|
}>>;
|
|
5626
5773
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5627
|
-
error: "error";
|
|
5628
5774
|
merge: "merge";
|
|
5629
5775
|
overwrite: "overwrite";
|
|
5630
5776
|
increment: "increment";
|
|
5777
|
+
error: "error";
|
|
5631
5778
|
}>>;
|
|
5632
5779
|
template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5633
5780
|
none: "none";
|
|
5634
|
-
uniwind: "uniwind";
|
|
5635
5781
|
mern: "mern";
|
|
5636
5782
|
pern: "pern";
|
|
5637
5783
|
t3: "t3";
|
|
5784
|
+
saas: "saas";
|
|
5785
|
+
uniwind: "uniwind";
|
|
5638
5786
|
}>>;
|
|
5639
5787
|
javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5640
5788
|
none: "none";
|
|
5641
5789
|
"spring-boot": "spring-boot";
|
|
5642
5790
|
quarkus: "quarkus";
|
|
5791
|
+
micronaut: "micronaut";
|
|
5643
5792
|
}>>;
|
|
5644
5793
|
javaBuildTool: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5645
5794
|
none: "none";
|
|
@@ -5708,9 +5857,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5708
5857
|
}>>;
|
|
5709
5858
|
elixirApi: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5710
5859
|
none: "none";
|
|
5860
|
+
grpc: "grpc";
|
|
5711
5861
|
rest: "rest";
|
|
5712
5862
|
absinthe: "absinthe";
|
|
5713
|
-
grpc: "grpc";
|
|
5714
5863
|
}>>;
|
|
5715
5864
|
elixirRealtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5716
5865
|
none: "none";
|
|
@@ -5777,10 +5926,11 @@ declare function getAllJsonSchemas(): {
|
|
|
5777
5926
|
projectName: z.ZodOptional<z.ZodString>;
|
|
5778
5927
|
template: z.ZodOptional<z.ZodEnum<{
|
|
5779
5928
|
none: "none";
|
|
5780
|
-
uniwind: "uniwind";
|
|
5781
5929
|
mern: "mern";
|
|
5782
5930
|
pern: "pern";
|
|
5783
5931
|
t3: "t3";
|
|
5932
|
+
saas: "saas";
|
|
5933
|
+
uniwind: "uniwind";
|
|
5784
5934
|
}>>;
|
|
5785
5935
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
5786
5936
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5831,11 +5981,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5831
5981
|
}>>;
|
|
5832
5982
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
5833
5983
|
none: "none";
|
|
5984
|
+
revenuecat: "revenuecat";
|
|
5834
5985
|
polar: "polar";
|
|
5835
5986
|
stripe: "stripe";
|
|
5836
5987
|
"lemon-squeezy": "lemon-squeezy";
|
|
5837
5988
|
paddle: "paddle";
|
|
5838
5989
|
dodo: "dodo";
|
|
5990
|
+
creem: "creem";
|
|
5991
|
+
autumn: "autumn";
|
|
5992
|
+
commet: "commet";
|
|
5839
5993
|
}>>;
|
|
5840
5994
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5841
5995
|
none: "none";
|
|
@@ -5902,6 +6056,10 @@ declare function getAllJsonSchemas(): {
|
|
|
5902
6056
|
pnpm: "pnpm";
|
|
5903
6057
|
yarn: "yarn";
|
|
5904
6058
|
}>>;
|
|
6059
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
6060
|
+
monorepo: "monorepo";
|
|
6061
|
+
"single-app": "single-app";
|
|
6062
|
+
}>>;
|
|
5905
6063
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
5906
6064
|
stable: "stable";
|
|
5907
6065
|
latest: "latest";
|
|
@@ -5921,6 +6079,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5921
6079
|
docker: "docker";
|
|
5922
6080
|
}>>;
|
|
5923
6081
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
6082
|
+
effect: "effect";
|
|
5924
6083
|
none: "none";
|
|
5925
6084
|
hono: "hono";
|
|
5926
6085
|
express: "express";
|
|
@@ -5973,10 +6132,10 @@ declare function getAllJsonSchemas(): {
|
|
|
5973
6132
|
vercel: "vercel";
|
|
5974
6133
|
}>>;
|
|
5975
6134
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
5976
|
-
error: "error";
|
|
5977
6135
|
merge: "merge";
|
|
5978
6136
|
overwrite: "overwrite";
|
|
5979
6137
|
increment: "increment";
|
|
6138
|
+
error: "error";
|
|
5980
6139
|
}>>;
|
|
5981
6140
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
5982
6141
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6055,6 +6214,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6055
6214
|
"postcss-only": "postcss-only";
|
|
6056
6215
|
}>>;
|
|
6057
6216
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
6217
|
+
mui: "mui";
|
|
6058
6218
|
none: "none";
|
|
6059
6219
|
"shadcn-ui": "shadcn-ui";
|
|
6060
6220
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6065,7 +6225,6 @@ declare function getAllJsonSchemas(): {
|
|
|
6065
6225
|
"chakra-ui": "chakra-ui";
|
|
6066
6226
|
nextui: "nextui";
|
|
6067
6227
|
mantine: "mantine";
|
|
6068
|
-
mui: "mui";
|
|
6069
6228
|
antd: "antd";
|
|
6070
6229
|
"base-ui": "base-ui";
|
|
6071
6230
|
"ark-ui": "ark-ui";
|
|
@@ -6137,8 +6296,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6137
6296
|
"geist-mono": "geist-mono";
|
|
6138
6297
|
}>>;
|
|
6139
6298
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6140
|
-
default: "default";
|
|
6141
6299
|
none: "none";
|
|
6300
|
+
default: "default";
|
|
6142
6301
|
small: "small";
|
|
6143
6302
|
medium: "medium";
|
|
6144
6303
|
large: "large";
|
|
@@ -6208,6 +6367,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6208
6367
|
}>>;
|
|
6209
6368
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
6210
6369
|
none: "none";
|
|
6370
|
+
posthog: "posthog";
|
|
6211
6371
|
plausible: "plausible";
|
|
6212
6372
|
umami: "umami";
|
|
6213
6373
|
}>>;
|
|
@@ -6222,6 +6382,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6222
6382
|
}>>;
|
|
6223
6383
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
6224
6384
|
none: "none";
|
|
6385
|
+
redis: "redis";
|
|
6225
6386
|
"upstash-redis": "upstash-redis";
|
|
6226
6387
|
}>>;
|
|
6227
6388
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6234,6 +6395,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6234
6395
|
paraglide: "paraglide";
|
|
6235
6396
|
i18next: "i18next";
|
|
6236
6397
|
"next-intl": "next-intl";
|
|
6398
|
+
intlayer: "intlayer";
|
|
6237
6399
|
}>>;
|
|
6238
6400
|
search: z.ZodOptional<z.ZodEnum<{
|
|
6239
6401
|
none: "none";
|
|
@@ -6242,6 +6404,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6242
6404
|
elasticsearch: "elasticsearch";
|
|
6243
6405
|
opensearch: "opensearch";
|
|
6244
6406
|
algolia: "algolia";
|
|
6407
|
+
bleve: "bleve";
|
|
6245
6408
|
}>>;
|
|
6246
6409
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
6247
6410
|
none: "none";
|
|
@@ -6255,6 +6418,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6255
6418
|
s3: "s3";
|
|
6256
6419
|
r2: "r2";
|
|
6257
6420
|
cloudinary: "cloudinary";
|
|
6421
|
+
"supabase-storage": "supabase-storage";
|
|
6258
6422
|
}>>;
|
|
6259
6423
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
6260
6424
|
none: "none";
|
|
@@ -6263,9 +6427,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6263
6427
|
}>>;
|
|
6264
6428
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
6265
6429
|
none: "none";
|
|
6430
|
+
uniwind: "uniwind";
|
|
6266
6431
|
tamagui: "tamagui";
|
|
6267
6432
|
"gluestack-ui": "gluestack-ui";
|
|
6268
|
-
uniwind: "uniwind";
|
|
6269
6433
|
unistyles: "unistyles";
|
|
6270
6434
|
}>>;
|
|
6271
6435
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6295,6 +6459,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6295
6459
|
axum: "axum";
|
|
6296
6460
|
"actix-web": "actix-web";
|
|
6297
6461
|
rocket: "rocket";
|
|
6462
|
+
poem: "poem";
|
|
6463
|
+
loco: "loco";
|
|
6298
6464
|
}>>;
|
|
6299
6465
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
6300
6466
|
none: "none";
|
|
@@ -6318,12 +6484,12 @@ declare function getAllJsonSchemas(): {
|
|
|
6318
6484
|
ratatui: "ratatui";
|
|
6319
6485
|
}>>;
|
|
6320
6486
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6321
|
-
config: "config";
|
|
6322
6487
|
none: "none";
|
|
6323
6488
|
serde: "serde";
|
|
6324
6489
|
uuid: "uuid";
|
|
6325
6490
|
chrono: "chrono";
|
|
6326
6491
|
reqwest: "reqwest";
|
|
6492
|
+
config: "config";
|
|
6327
6493
|
dashmap: "dashmap";
|
|
6328
6494
|
"parking-lot": "parking-lot";
|
|
6329
6495
|
secrecy: "secrecy";
|
|
@@ -6467,10 +6633,12 @@ declare function getAllJsonSchemas(): {
|
|
|
6467
6633
|
echo: "echo";
|
|
6468
6634
|
fiber: "fiber";
|
|
6469
6635
|
chi: "chi";
|
|
6636
|
+
stdlib: "stdlib";
|
|
6470
6637
|
}>>;
|
|
6471
6638
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
6472
|
-
none: "none";
|
|
6473
6639
|
gorm: "gorm";
|
|
6640
|
+
none: "none";
|
|
6641
|
+
bun: "bun";
|
|
6474
6642
|
sqlc: "sqlc";
|
|
6475
6643
|
ent: "ent";
|
|
6476
6644
|
}>>;
|
|
@@ -6527,10 +6695,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6527
6695
|
none: "none";
|
|
6528
6696
|
opentelemetry: "opentelemetry";
|
|
6529
6697
|
}>>;
|
|
6698
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
6699
|
+
java: "java";
|
|
6700
|
+
kotlin: "kotlin";
|
|
6701
|
+
}>>;
|
|
6530
6702
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
6531
6703
|
none: "none";
|
|
6532
6704
|
"spring-boot": "spring-boot";
|
|
6533
6705
|
quarkus: "quarkus";
|
|
6706
|
+
micronaut: "micronaut";
|
|
6534
6707
|
}>>;
|
|
6535
6708
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
6536
6709
|
none: "none";
|
|
@@ -6551,10 +6724,13 @@ declare function getAllJsonSchemas(): {
|
|
|
6551
6724
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
6552
6725
|
none: "none";
|
|
6553
6726
|
"spring-graphql": "spring-graphql";
|
|
6727
|
+
"openapi-generator": "openapi-generator";
|
|
6728
|
+
grpc: "grpc";
|
|
6554
6729
|
}>>;
|
|
6555
6730
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
6556
6731
|
none: "none";
|
|
6557
6732
|
logback: "logback";
|
|
6733
|
+
log4j2: "log4j2";
|
|
6558
6734
|
}>>;
|
|
6559
6735
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6560
6736
|
none: "none";
|
|
@@ -6671,9 +6847,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6671
6847
|
}>>;
|
|
6672
6848
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
6673
6849
|
none: "none";
|
|
6850
|
+
grpc: "grpc";
|
|
6674
6851
|
rest: "rest";
|
|
6675
6852
|
absinthe: "absinthe";
|
|
6676
|
-
grpc: "grpc";
|
|
6677
6853
|
}>>;
|
|
6678
6854
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6679
6855
|
none: "none";
|
|
@@ -6783,6 +6959,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6783
6959
|
sequelize: "sequelize";
|
|
6784
6960
|
}>;
|
|
6785
6961
|
backend: z.ZodEnum<{
|
|
6962
|
+
effect: "effect";
|
|
6786
6963
|
none: "none";
|
|
6787
6964
|
hono: "hono";
|
|
6788
6965
|
express: "express";
|
|
@@ -6875,11 +7052,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6875
7052
|
}>;
|
|
6876
7053
|
payments: z.ZodEnum<{
|
|
6877
7054
|
none: "none";
|
|
7055
|
+
revenuecat: "revenuecat";
|
|
6878
7056
|
polar: "polar";
|
|
6879
7057
|
stripe: "stripe";
|
|
6880
7058
|
"lemon-squeezy": "lemon-squeezy";
|
|
6881
7059
|
paddle: "paddle";
|
|
6882
7060
|
dodo: "dodo";
|
|
7061
|
+
creem: "creem";
|
|
7062
|
+
autumn: "autumn";
|
|
7063
|
+
commet: "commet";
|
|
6883
7064
|
}>;
|
|
6884
7065
|
git: z.ZodBoolean;
|
|
6885
7066
|
packageManager: z.ZodEnum<{
|
|
@@ -6888,6 +7069,10 @@ declare function getAllJsonSchemas(): {
|
|
|
6888
7069
|
pnpm: "pnpm";
|
|
6889
7070
|
yarn: "yarn";
|
|
6890
7071
|
}>;
|
|
7072
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
7073
|
+
monorepo: "monorepo";
|
|
7074
|
+
"single-app": "single-app";
|
|
7075
|
+
}>>;
|
|
6891
7076
|
versionChannel: z.ZodEnum<{
|
|
6892
7077
|
stable: "stable";
|
|
6893
7078
|
latest: "latest";
|
|
@@ -7012,6 +7197,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7012
7197
|
"postcss-only": "postcss-only";
|
|
7013
7198
|
}>;
|
|
7014
7199
|
uiLibrary: z.ZodEnum<{
|
|
7200
|
+
mui: "mui";
|
|
7015
7201
|
none: "none";
|
|
7016
7202
|
"shadcn-ui": "shadcn-ui";
|
|
7017
7203
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -7022,7 +7208,6 @@ declare function getAllJsonSchemas(): {
|
|
|
7022
7208
|
"chakra-ui": "chakra-ui";
|
|
7023
7209
|
nextui: "nextui";
|
|
7024
7210
|
mantine: "mantine";
|
|
7025
|
-
mui: "mui";
|
|
7026
7211
|
antd: "antd";
|
|
7027
7212
|
"base-ui": "base-ui";
|
|
7028
7213
|
"ark-ui": "ark-ui";
|
|
@@ -7094,8 +7279,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7094
7279
|
"geist-mono": "geist-mono";
|
|
7095
7280
|
}>>;
|
|
7096
7281
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7097
|
-
default: "default";
|
|
7098
7282
|
none: "none";
|
|
7283
|
+
default: "default";
|
|
7099
7284
|
small: "small";
|
|
7100
7285
|
medium: "medium";
|
|
7101
7286
|
large: "large";
|
|
@@ -7165,6 +7350,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7165
7350
|
}>;
|
|
7166
7351
|
analytics: z.ZodEnum<{
|
|
7167
7352
|
none: "none";
|
|
7353
|
+
posthog: "posthog";
|
|
7168
7354
|
plausible: "plausible";
|
|
7169
7355
|
umami: "umami";
|
|
7170
7356
|
}>;
|
|
@@ -7179,6 +7365,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7179
7365
|
}>;
|
|
7180
7366
|
caching: z.ZodEnum<{
|
|
7181
7367
|
none: "none";
|
|
7368
|
+
redis: "redis";
|
|
7182
7369
|
"upstash-redis": "upstash-redis";
|
|
7183
7370
|
}>;
|
|
7184
7371
|
rateLimit: z.ZodEnum<{
|
|
@@ -7191,6 +7378,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7191
7378
|
paraglide: "paraglide";
|
|
7192
7379
|
i18next: "i18next";
|
|
7193
7380
|
"next-intl": "next-intl";
|
|
7381
|
+
intlayer: "intlayer";
|
|
7194
7382
|
}>;
|
|
7195
7383
|
search: z.ZodEnum<{
|
|
7196
7384
|
none: "none";
|
|
@@ -7199,6 +7387,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7199
7387
|
elasticsearch: "elasticsearch";
|
|
7200
7388
|
opensearch: "opensearch";
|
|
7201
7389
|
algolia: "algolia";
|
|
7390
|
+
bleve: "bleve";
|
|
7202
7391
|
}>;
|
|
7203
7392
|
vectorDb: z.ZodEnum<{
|
|
7204
7393
|
none: "none";
|
|
@@ -7212,6 +7401,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7212
7401
|
s3: "s3";
|
|
7213
7402
|
r2: "r2";
|
|
7214
7403
|
cloudinary: "cloudinary";
|
|
7404
|
+
"supabase-storage": "supabase-storage";
|
|
7215
7405
|
}>;
|
|
7216
7406
|
mobileNavigation: z.ZodEnum<{
|
|
7217
7407
|
none: "none";
|
|
@@ -7220,9 +7410,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7220
7410
|
}>;
|
|
7221
7411
|
mobileUI: z.ZodEnum<{
|
|
7222
7412
|
none: "none";
|
|
7413
|
+
uniwind: "uniwind";
|
|
7223
7414
|
tamagui: "tamagui";
|
|
7224
7415
|
"gluestack-ui": "gluestack-ui";
|
|
7225
|
-
uniwind: "uniwind";
|
|
7226
7416
|
unistyles: "unistyles";
|
|
7227
7417
|
}>;
|
|
7228
7418
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7252,6 +7442,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7252
7442
|
axum: "axum";
|
|
7253
7443
|
"actix-web": "actix-web";
|
|
7254
7444
|
rocket: "rocket";
|
|
7445
|
+
poem: "poem";
|
|
7446
|
+
loco: "loco";
|
|
7255
7447
|
}>;
|
|
7256
7448
|
rustFrontend: z.ZodEnum<{
|
|
7257
7449
|
none: "none";
|
|
@@ -7275,12 +7467,12 @@ declare function getAllJsonSchemas(): {
|
|
|
7275
7467
|
ratatui: "ratatui";
|
|
7276
7468
|
}>;
|
|
7277
7469
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7278
|
-
config: "config";
|
|
7279
7470
|
none: "none";
|
|
7280
7471
|
serde: "serde";
|
|
7281
7472
|
uuid: "uuid";
|
|
7282
7473
|
chrono: "chrono";
|
|
7283
7474
|
reqwest: "reqwest";
|
|
7475
|
+
config: "config";
|
|
7284
7476
|
dashmap: "dashmap";
|
|
7285
7477
|
"parking-lot": "parking-lot";
|
|
7286
7478
|
secrecy: "secrecy";
|
|
@@ -7424,10 +7616,12 @@ declare function getAllJsonSchemas(): {
|
|
|
7424
7616
|
echo: "echo";
|
|
7425
7617
|
fiber: "fiber";
|
|
7426
7618
|
chi: "chi";
|
|
7619
|
+
stdlib: "stdlib";
|
|
7427
7620
|
}>;
|
|
7428
7621
|
goOrm: z.ZodEnum<{
|
|
7429
|
-
none: "none";
|
|
7430
7622
|
gorm: "gorm";
|
|
7623
|
+
none: "none";
|
|
7624
|
+
bun: "bun";
|
|
7431
7625
|
sqlc: "sqlc";
|
|
7432
7626
|
ent: "ent";
|
|
7433
7627
|
}>;
|
|
@@ -7484,10 +7678,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7484
7678
|
none: "none";
|
|
7485
7679
|
opentelemetry: "opentelemetry";
|
|
7486
7680
|
}>;
|
|
7681
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
7682
|
+
java: "java";
|
|
7683
|
+
kotlin: "kotlin";
|
|
7684
|
+
}>>;
|
|
7487
7685
|
javaWebFramework: z.ZodEnum<{
|
|
7488
7686
|
none: "none";
|
|
7489
7687
|
"spring-boot": "spring-boot";
|
|
7490
7688
|
quarkus: "quarkus";
|
|
7689
|
+
micronaut: "micronaut";
|
|
7491
7690
|
}>;
|
|
7492
7691
|
javaBuildTool: z.ZodEnum<{
|
|
7493
7692
|
none: "none";
|
|
@@ -7508,10 +7707,13 @@ declare function getAllJsonSchemas(): {
|
|
|
7508
7707
|
javaApi: z.ZodEnum<{
|
|
7509
7708
|
none: "none";
|
|
7510
7709
|
"spring-graphql": "spring-graphql";
|
|
7710
|
+
"openapi-generator": "openapi-generator";
|
|
7711
|
+
grpc: "grpc";
|
|
7511
7712
|
}>;
|
|
7512
7713
|
javaLogging: z.ZodEnum<{
|
|
7513
7714
|
none: "none";
|
|
7514
7715
|
logback: "logback";
|
|
7716
|
+
log4j2: "log4j2";
|
|
7515
7717
|
}>;
|
|
7516
7718
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7517
7719
|
none: "none";
|
|
@@ -7628,9 +7830,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7628
7830
|
}>;
|
|
7629
7831
|
elixirApi: z.ZodEnum<{
|
|
7630
7832
|
none: "none";
|
|
7833
|
+
grpc: "grpc";
|
|
7631
7834
|
rest: "rest";
|
|
7632
7835
|
absinthe: "absinthe";
|
|
7633
|
-
grpc: "grpc";
|
|
7634
7836
|
}>;
|
|
7635
7837
|
elixirRealtime: z.ZodEnum<{
|
|
7636
7838
|
none: "none";
|
|
@@ -7707,59 +7909,60 @@ declare function getAllJsonSchemas(): {
|
|
|
7707
7909
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7708
7910
|
id: z.ZodString;
|
|
7709
7911
|
role: z.ZodEnum<{
|
|
7710
|
-
|
|
7711
|
-
frontend: "frontend";
|
|
7912
|
+
runtime: "runtime";
|
|
7712
7913
|
backend: "backend";
|
|
7713
|
-
mobile: "mobile";
|
|
7714
7914
|
database: "database";
|
|
7715
|
-
api: "api";
|
|
7716
|
-
graphql: "graphql";
|
|
7717
7915
|
orm: "orm";
|
|
7718
|
-
auth: "auth";
|
|
7719
|
-
runtime: "runtime";
|
|
7720
|
-
deploy: "deploy";
|
|
7721
7916
|
dbSetup: "dbSetup";
|
|
7917
|
+
auth: "auth";
|
|
7918
|
+
payments: "payments";
|
|
7919
|
+
email: "email";
|
|
7920
|
+
fileUpload: "fileUpload";
|
|
7921
|
+
logging: "logging";
|
|
7922
|
+
observability: "observability";
|
|
7923
|
+
featureFlags: "featureFlags";
|
|
7924
|
+
analytics: "analytics";
|
|
7925
|
+
stateManagement: "stateManagement";
|
|
7926
|
+
forms: "forms";
|
|
7927
|
+
validation: "validation";
|
|
7928
|
+
testing: "testing";
|
|
7722
7929
|
realtime: "realtime";
|
|
7723
|
-
|
|
7930
|
+
jobQueue: "jobQueue";
|
|
7724
7931
|
caching: "caching";
|
|
7725
|
-
|
|
7726
|
-
|
|
7932
|
+
rateLimit: "rateLimit";
|
|
7933
|
+
animation: "animation";
|
|
7934
|
+
cms: "cms";
|
|
7935
|
+
i18n: "i18n";
|
|
7727
7936
|
search: "search";
|
|
7728
7937
|
vectorDb: "vectorDb";
|
|
7729
7938
|
fileStorage: "fileStorage";
|
|
7730
|
-
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
|
|
7734
|
-
|
|
7735
|
-
animation: "animation";
|
|
7736
|
-
fileUpload: "fileUpload";
|
|
7737
|
-
validation: "validation";
|
|
7939
|
+
codeQuality: "codeQuality";
|
|
7940
|
+
documentation: "documentation";
|
|
7941
|
+
examples: "examples";
|
|
7942
|
+
api: "api";
|
|
7943
|
+
ai: "ai";
|
|
7738
7944
|
effect: "effect";
|
|
7739
|
-
ui: "ui";
|
|
7740
7945
|
css: "css";
|
|
7946
|
+
ui: "ui";
|
|
7947
|
+
push: "push";
|
|
7948
|
+
frontend: "frontend";
|
|
7949
|
+
config: "config";
|
|
7950
|
+
mobile: "mobile";
|
|
7951
|
+
graphql: "graphql";
|
|
7952
|
+
deploy: "deploy";
|
|
7953
|
+
navigation: "navigation";
|
|
7741
7954
|
storage: "storage";
|
|
7742
7955
|
ota: "ota";
|
|
7743
7956
|
deepLinking: "deepLinking";
|
|
7744
|
-
ai: "ai";
|
|
7745
|
-
payments: "payments";
|
|
7746
|
-
logging: "logging";
|
|
7747
|
-
featureFlags: "featureFlags";
|
|
7748
|
-
analytics: "analytics";
|
|
7749
|
-
cms: "cms";
|
|
7750
|
-
i18n: "i18n";
|
|
7751
|
-
documentation: "documentation";
|
|
7752
|
-
codeQuality: "codeQuality";
|
|
7753
7957
|
appPlatform: "appPlatform";
|
|
7754
7958
|
dataFetching: "dataFetching";
|
|
7755
7959
|
workspaceTooling: "workspaceTooling";
|
|
7756
|
-
|
|
7960
|
+
language: "language";
|
|
7757
7961
|
buildTool: "buildTool";
|
|
7758
7962
|
cli: "cli";
|
|
7759
7963
|
errorHandling: "errorHandling";
|
|
7760
7964
|
httpClient: "httpClient";
|
|
7761
7965
|
libraries: "libraries";
|
|
7762
|
-
config: "config";
|
|
7763
7966
|
templating: "templating";
|
|
7764
7967
|
}>;
|
|
7765
7968
|
toolId: z.ZodString;
|
|
@@ -7821,6 +8024,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7821
8024
|
sequelize: "sequelize";
|
|
7822
8025
|
}>;
|
|
7823
8026
|
backend: z.ZodEnum<{
|
|
8027
|
+
effect: "effect";
|
|
7824
8028
|
none: "none";
|
|
7825
8029
|
hono: "hono";
|
|
7826
8030
|
express: "express";
|
|
@@ -7913,11 +8117,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7913
8117
|
}>;
|
|
7914
8118
|
payments: z.ZodEnum<{
|
|
7915
8119
|
none: "none";
|
|
8120
|
+
revenuecat: "revenuecat";
|
|
7916
8121
|
polar: "polar";
|
|
7917
8122
|
stripe: "stripe";
|
|
7918
8123
|
"lemon-squeezy": "lemon-squeezy";
|
|
7919
8124
|
paddle: "paddle";
|
|
7920
8125
|
dodo: "dodo";
|
|
8126
|
+
creem: "creem";
|
|
8127
|
+
autumn: "autumn";
|
|
8128
|
+
commet: "commet";
|
|
7921
8129
|
}>;
|
|
7922
8130
|
packageManager: z.ZodEnum<{
|
|
7923
8131
|
bun: "bun";
|
|
@@ -7925,6 +8133,10 @@ declare function getAllJsonSchemas(): {
|
|
|
7925
8133
|
pnpm: "pnpm";
|
|
7926
8134
|
yarn: "yarn";
|
|
7927
8135
|
}>;
|
|
8136
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
8137
|
+
monorepo: "monorepo";
|
|
8138
|
+
"single-app": "single-app";
|
|
8139
|
+
}>>;
|
|
7928
8140
|
versionChannel: z.ZodEnum<{
|
|
7929
8141
|
stable: "stable";
|
|
7930
8142
|
latest: "latest";
|
|
@@ -8048,6 +8260,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8048
8260
|
"postcss-only": "postcss-only";
|
|
8049
8261
|
}>;
|
|
8050
8262
|
uiLibrary: z.ZodEnum<{
|
|
8263
|
+
mui: "mui";
|
|
8051
8264
|
none: "none";
|
|
8052
8265
|
"shadcn-ui": "shadcn-ui";
|
|
8053
8266
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -8058,7 +8271,6 @@ declare function getAllJsonSchemas(): {
|
|
|
8058
8271
|
"chakra-ui": "chakra-ui";
|
|
8059
8272
|
nextui: "nextui";
|
|
8060
8273
|
mantine: "mantine";
|
|
8061
|
-
mui: "mui";
|
|
8062
8274
|
antd: "antd";
|
|
8063
8275
|
"base-ui": "base-ui";
|
|
8064
8276
|
"ark-ui": "ark-ui";
|
|
@@ -8130,8 +8342,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8130
8342
|
"geist-mono": "geist-mono";
|
|
8131
8343
|
}>>;
|
|
8132
8344
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8133
|
-
default: "default";
|
|
8134
8345
|
none: "none";
|
|
8346
|
+
default: "default";
|
|
8135
8347
|
small: "small";
|
|
8136
8348
|
medium: "medium";
|
|
8137
8349
|
large: "large";
|
|
@@ -8201,6 +8413,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8201
8413
|
}>;
|
|
8202
8414
|
analytics: z.ZodEnum<{
|
|
8203
8415
|
none: "none";
|
|
8416
|
+
posthog: "posthog";
|
|
8204
8417
|
plausible: "plausible";
|
|
8205
8418
|
umami: "umami";
|
|
8206
8419
|
}>;
|
|
@@ -8215,6 +8428,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8215
8428
|
}>;
|
|
8216
8429
|
caching: z.ZodEnum<{
|
|
8217
8430
|
none: "none";
|
|
8431
|
+
redis: "redis";
|
|
8218
8432
|
"upstash-redis": "upstash-redis";
|
|
8219
8433
|
}>;
|
|
8220
8434
|
rateLimit: z.ZodEnum<{
|
|
@@ -8227,6 +8441,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8227
8441
|
paraglide: "paraglide";
|
|
8228
8442
|
i18next: "i18next";
|
|
8229
8443
|
"next-intl": "next-intl";
|
|
8444
|
+
intlayer: "intlayer";
|
|
8230
8445
|
}>;
|
|
8231
8446
|
search: z.ZodEnum<{
|
|
8232
8447
|
none: "none";
|
|
@@ -8235,6 +8450,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8235
8450
|
elasticsearch: "elasticsearch";
|
|
8236
8451
|
opensearch: "opensearch";
|
|
8237
8452
|
algolia: "algolia";
|
|
8453
|
+
bleve: "bleve";
|
|
8238
8454
|
}>;
|
|
8239
8455
|
vectorDb: z.ZodEnum<{
|
|
8240
8456
|
none: "none";
|
|
@@ -8248,6 +8464,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8248
8464
|
s3: "s3";
|
|
8249
8465
|
r2: "r2";
|
|
8250
8466
|
cloudinary: "cloudinary";
|
|
8467
|
+
"supabase-storage": "supabase-storage";
|
|
8251
8468
|
}>;
|
|
8252
8469
|
mobileNavigation: z.ZodEnum<{
|
|
8253
8470
|
none: "none";
|
|
@@ -8256,9 +8473,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8256
8473
|
}>;
|
|
8257
8474
|
mobileUI: z.ZodEnum<{
|
|
8258
8475
|
none: "none";
|
|
8476
|
+
uniwind: "uniwind";
|
|
8259
8477
|
tamagui: "tamagui";
|
|
8260
8478
|
"gluestack-ui": "gluestack-ui";
|
|
8261
|
-
uniwind: "uniwind";
|
|
8262
8479
|
unistyles: "unistyles";
|
|
8263
8480
|
}>;
|
|
8264
8481
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8288,6 +8505,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8288
8505
|
axum: "axum";
|
|
8289
8506
|
"actix-web": "actix-web";
|
|
8290
8507
|
rocket: "rocket";
|
|
8508
|
+
poem: "poem";
|
|
8509
|
+
loco: "loco";
|
|
8291
8510
|
}>;
|
|
8292
8511
|
rustFrontend: z.ZodEnum<{
|
|
8293
8512
|
none: "none";
|
|
@@ -8311,12 +8530,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8311
8530
|
ratatui: "ratatui";
|
|
8312
8531
|
}>;
|
|
8313
8532
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8314
|
-
config: "config";
|
|
8315
8533
|
none: "none";
|
|
8316
8534
|
serde: "serde";
|
|
8317
8535
|
uuid: "uuid";
|
|
8318
8536
|
chrono: "chrono";
|
|
8319
8537
|
reqwest: "reqwest";
|
|
8538
|
+
config: "config";
|
|
8320
8539
|
dashmap: "dashmap";
|
|
8321
8540
|
"parking-lot": "parking-lot";
|
|
8322
8541
|
secrecy: "secrecy";
|
|
@@ -8460,10 +8679,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8460
8679
|
echo: "echo";
|
|
8461
8680
|
fiber: "fiber";
|
|
8462
8681
|
chi: "chi";
|
|
8682
|
+
stdlib: "stdlib";
|
|
8463
8683
|
}>;
|
|
8464
8684
|
goOrm: z.ZodEnum<{
|
|
8465
|
-
none: "none";
|
|
8466
8685
|
gorm: "gorm";
|
|
8686
|
+
none: "none";
|
|
8687
|
+
bun: "bun";
|
|
8467
8688
|
sqlc: "sqlc";
|
|
8468
8689
|
ent: "ent";
|
|
8469
8690
|
}>;
|
|
@@ -8520,10 +8741,15 @@ declare function getAllJsonSchemas(): {
|
|
|
8520
8741
|
none: "none";
|
|
8521
8742
|
opentelemetry: "opentelemetry";
|
|
8522
8743
|
}>;
|
|
8744
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
8745
|
+
java: "java";
|
|
8746
|
+
kotlin: "kotlin";
|
|
8747
|
+
}>>;
|
|
8523
8748
|
javaWebFramework: z.ZodEnum<{
|
|
8524
8749
|
none: "none";
|
|
8525
8750
|
"spring-boot": "spring-boot";
|
|
8526
8751
|
quarkus: "quarkus";
|
|
8752
|
+
micronaut: "micronaut";
|
|
8527
8753
|
}>;
|
|
8528
8754
|
javaBuildTool: z.ZodEnum<{
|
|
8529
8755
|
none: "none";
|
|
@@ -8544,10 +8770,13 @@ declare function getAllJsonSchemas(): {
|
|
|
8544
8770
|
javaApi: z.ZodEnum<{
|
|
8545
8771
|
none: "none";
|
|
8546
8772
|
"spring-graphql": "spring-graphql";
|
|
8773
|
+
"openapi-generator": "openapi-generator";
|
|
8774
|
+
grpc: "grpc";
|
|
8547
8775
|
}>;
|
|
8548
8776
|
javaLogging: z.ZodEnum<{
|
|
8549
8777
|
none: "none";
|
|
8550
8778
|
logback: "logback";
|
|
8779
|
+
log4j2: "log4j2";
|
|
8551
8780
|
}>;
|
|
8552
8781
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
8553
8782
|
none: "none";
|
|
@@ -8664,9 +8893,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8664
8893
|
}>;
|
|
8665
8894
|
elixirApi: z.ZodEnum<{
|
|
8666
8895
|
none: "none";
|
|
8896
|
+
grpc: "grpc";
|
|
8667
8897
|
rest: "rest";
|
|
8668
8898
|
absinthe: "absinthe";
|
|
8669
|
-
grpc: "grpc";
|
|
8670
8899
|
}>;
|
|
8671
8900
|
elixirRealtime: z.ZodEnum<{
|
|
8672
8901
|
none: "none";
|
|
@@ -8743,59 +8972,60 @@ declare function getAllJsonSchemas(): {
|
|
|
8743
8972
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8744
8973
|
id: z.ZodString;
|
|
8745
8974
|
role: z.ZodEnum<{
|
|
8746
|
-
|
|
8747
|
-
frontend: "frontend";
|
|
8975
|
+
runtime: "runtime";
|
|
8748
8976
|
backend: "backend";
|
|
8749
|
-
mobile: "mobile";
|
|
8750
8977
|
database: "database";
|
|
8751
|
-
api: "api";
|
|
8752
|
-
graphql: "graphql";
|
|
8753
8978
|
orm: "orm";
|
|
8754
|
-
auth: "auth";
|
|
8755
|
-
runtime: "runtime";
|
|
8756
|
-
deploy: "deploy";
|
|
8757
8979
|
dbSetup: "dbSetup";
|
|
8980
|
+
auth: "auth";
|
|
8981
|
+
payments: "payments";
|
|
8982
|
+
email: "email";
|
|
8983
|
+
fileUpload: "fileUpload";
|
|
8984
|
+
logging: "logging";
|
|
8985
|
+
observability: "observability";
|
|
8986
|
+
featureFlags: "featureFlags";
|
|
8987
|
+
analytics: "analytics";
|
|
8988
|
+
stateManagement: "stateManagement";
|
|
8989
|
+
forms: "forms";
|
|
8990
|
+
validation: "validation";
|
|
8991
|
+
testing: "testing";
|
|
8758
8992
|
realtime: "realtime";
|
|
8759
|
-
|
|
8993
|
+
jobQueue: "jobQueue";
|
|
8760
8994
|
caching: "caching";
|
|
8761
|
-
|
|
8762
|
-
|
|
8995
|
+
rateLimit: "rateLimit";
|
|
8996
|
+
animation: "animation";
|
|
8997
|
+
cms: "cms";
|
|
8998
|
+
i18n: "i18n";
|
|
8763
8999
|
search: "search";
|
|
8764
9000
|
vectorDb: "vectorDb";
|
|
8765
9001
|
fileStorage: "fileStorage";
|
|
8766
|
-
|
|
8767
|
-
|
|
8768
|
-
|
|
8769
|
-
|
|
8770
|
-
|
|
8771
|
-
animation: "animation";
|
|
8772
|
-
fileUpload: "fileUpload";
|
|
8773
|
-
validation: "validation";
|
|
9002
|
+
codeQuality: "codeQuality";
|
|
9003
|
+
documentation: "documentation";
|
|
9004
|
+
examples: "examples";
|
|
9005
|
+
api: "api";
|
|
9006
|
+
ai: "ai";
|
|
8774
9007
|
effect: "effect";
|
|
8775
|
-
ui: "ui";
|
|
8776
9008
|
css: "css";
|
|
9009
|
+
ui: "ui";
|
|
9010
|
+
push: "push";
|
|
9011
|
+
frontend: "frontend";
|
|
9012
|
+
config: "config";
|
|
9013
|
+
mobile: "mobile";
|
|
9014
|
+
graphql: "graphql";
|
|
9015
|
+
deploy: "deploy";
|
|
9016
|
+
navigation: "navigation";
|
|
8777
9017
|
storage: "storage";
|
|
8778
9018
|
ota: "ota";
|
|
8779
9019
|
deepLinking: "deepLinking";
|
|
8780
|
-
ai: "ai";
|
|
8781
|
-
payments: "payments";
|
|
8782
|
-
logging: "logging";
|
|
8783
|
-
featureFlags: "featureFlags";
|
|
8784
|
-
analytics: "analytics";
|
|
8785
|
-
cms: "cms";
|
|
8786
|
-
i18n: "i18n";
|
|
8787
|
-
documentation: "documentation";
|
|
8788
|
-
codeQuality: "codeQuality";
|
|
8789
9020
|
appPlatform: "appPlatform";
|
|
8790
9021
|
dataFetching: "dataFetching";
|
|
8791
9022
|
workspaceTooling: "workspaceTooling";
|
|
8792
|
-
|
|
9023
|
+
language: "language";
|
|
8793
9024
|
buildTool: "buildTool";
|
|
8794
9025
|
cli: "cli";
|
|
8795
9026
|
errorHandling: "errorHandling";
|
|
8796
9027
|
httpClient: "httpClient";
|
|
8797
9028
|
libraries: "libraries";
|
|
8798
|
-
config: "config";
|
|
8799
9029
|
templating: "templating";
|
|
8800
9030
|
}>;
|
|
8801
9031
|
toolId: z.ZodString;
|
|
@@ -8857,6 +9087,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8857
9087
|
sequelize: "sequelize";
|
|
8858
9088
|
}>;
|
|
8859
9089
|
backend: z.ZodEnum<{
|
|
9090
|
+
effect: "effect";
|
|
8860
9091
|
none: "none";
|
|
8861
9092
|
hono: "hono";
|
|
8862
9093
|
express: "express";
|
|
@@ -8949,11 +9180,15 @@ declare function getAllJsonSchemas(): {
|
|
|
8949
9180
|
}>;
|
|
8950
9181
|
payments: z.ZodEnum<{
|
|
8951
9182
|
none: "none";
|
|
9183
|
+
revenuecat: "revenuecat";
|
|
8952
9184
|
polar: "polar";
|
|
8953
9185
|
stripe: "stripe";
|
|
8954
9186
|
"lemon-squeezy": "lemon-squeezy";
|
|
8955
9187
|
paddle: "paddle";
|
|
8956
9188
|
dodo: "dodo";
|
|
9189
|
+
creem: "creem";
|
|
9190
|
+
autumn: "autumn";
|
|
9191
|
+
commet: "commet";
|
|
8957
9192
|
}>;
|
|
8958
9193
|
packageManager: z.ZodEnum<{
|
|
8959
9194
|
bun: "bun";
|
|
@@ -8961,6 +9196,10 @@ declare function getAllJsonSchemas(): {
|
|
|
8961
9196
|
pnpm: "pnpm";
|
|
8962
9197
|
yarn: "yarn";
|
|
8963
9198
|
}>;
|
|
9199
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
9200
|
+
monorepo: "monorepo";
|
|
9201
|
+
"single-app": "single-app";
|
|
9202
|
+
}>>;
|
|
8964
9203
|
versionChannel: z.ZodEnum<{
|
|
8965
9204
|
stable: "stable";
|
|
8966
9205
|
latest: "latest";
|
|
@@ -9084,6 +9323,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9084
9323
|
"postcss-only": "postcss-only";
|
|
9085
9324
|
}>;
|
|
9086
9325
|
uiLibrary: z.ZodEnum<{
|
|
9326
|
+
mui: "mui";
|
|
9087
9327
|
none: "none";
|
|
9088
9328
|
"shadcn-ui": "shadcn-ui";
|
|
9089
9329
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -9094,7 +9334,6 @@ declare function getAllJsonSchemas(): {
|
|
|
9094
9334
|
"chakra-ui": "chakra-ui";
|
|
9095
9335
|
nextui: "nextui";
|
|
9096
9336
|
mantine: "mantine";
|
|
9097
|
-
mui: "mui";
|
|
9098
9337
|
antd: "antd";
|
|
9099
9338
|
"base-ui": "base-ui";
|
|
9100
9339
|
"ark-ui": "ark-ui";
|
|
@@ -9166,8 +9405,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9166
9405
|
"geist-mono": "geist-mono";
|
|
9167
9406
|
}>>;
|
|
9168
9407
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9169
|
-
default: "default";
|
|
9170
9408
|
none: "none";
|
|
9409
|
+
default: "default";
|
|
9171
9410
|
small: "small";
|
|
9172
9411
|
medium: "medium";
|
|
9173
9412
|
large: "large";
|
|
@@ -9237,6 +9476,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9237
9476
|
}>;
|
|
9238
9477
|
analytics: z.ZodEnum<{
|
|
9239
9478
|
none: "none";
|
|
9479
|
+
posthog: "posthog";
|
|
9240
9480
|
plausible: "plausible";
|
|
9241
9481
|
umami: "umami";
|
|
9242
9482
|
}>;
|
|
@@ -9251,6 +9491,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9251
9491
|
}>;
|
|
9252
9492
|
caching: z.ZodEnum<{
|
|
9253
9493
|
none: "none";
|
|
9494
|
+
redis: "redis";
|
|
9254
9495
|
"upstash-redis": "upstash-redis";
|
|
9255
9496
|
}>;
|
|
9256
9497
|
rateLimit: z.ZodEnum<{
|
|
@@ -9263,6 +9504,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9263
9504
|
paraglide: "paraglide";
|
|
9264
9505
|
i18next: "i18next";
|
|
9265
9506
|
"next-intl": "next-intl";
|
|
9507
|
+
intlayer: "intlayer";
|
|
9266
9508
|
}>;
|
|
9267
9509
|
search: z.ZodEnum<{
|
|
9268
9510
|
none: "none";
|
|
@@ -9271,6 +9513,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9271
9513
|
elasticsearch: "elasticsearch";
|
|
9272
9514
|
opensearch: "opensearch";
|
|
9273
9515
|
algolia: "algolia";
|
|
9516
|
+
bleve: "bleve";
|
|
9274
9517
|
}>;
|
|
9275
9518
|
vectorDb: z.ZodEnum<{
|
|
9276
9519
|
none: "none";
|
|
@@ -9284,6 +9527,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9284
9527
|
s3: "s3";
|
|
9285
9528
|
r2: "r2";
|
|
9286
9529
|
cloudinary: "cloudinary";
|
|
9530
|
+
"supabase-storage": "supabase-storage";
|
|
9287
9531
|
}>;
|
|
9288
9532
|
mobileNavigation: z.ZodEnum<{
|
|
9289
9533
|
none: "none";
|
|
@@ -9292,9 +9536,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9292
9536
|
}>;
|
|
9293
9537
|
mobileUI: z.ZodEnum<{
|
|
9294
9538
|
none: "none";
|
|
9539
|
+
uniwind: "uniwind";
|
|
9295
9540
|
tamagui: "tamagui";
|
|
9296
9541
|
"gluestack-ui": "gluestack-ui";
|
|
9297
|
-
uniwind: "uniwind";
|
|
9298
9542
|
unistyles: "unistyles";
|
|
9299
9543
|
}>;
|
|
9300
9544
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9324,6 +9568,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9324
9568
|
axum: "axum";
|
|
9325
9569
|
"actix-web": "actix-web";
|
|
9326
9570
|
rocket: "rocket";
|
|
9571
|
+
poem: "poem";
|
|
9572
|
+
loco: "loco";
|
|
9327
9573
|
}>;
|
|
9328
9574
|
rustFrontend: z.ZodEnum<{
|
|
9329
9575
|
none: "none";
|
|
@@ -9347,12 +9593,12 @@ declare function getAllJsonSchemas(): {
|
|
|
9347
9593
|
ratatui: "ratatui";
|
|
9348
9594
|
}>;
|
|
9349
9595
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9350
|
-
config: "config";
|
|
9351
9596
|
none: "none";
|
|
9352
9597
|
serde: "serde";
|
|
9353
9598
|
uuid: "uuid";
|
|
9354
9599
|
chrono: "chrono";
|
|
9355
9600
|
reqwest: "reqwest";
|
|
9601
|
+
config: "config";
|
|
9356
9602
|
dashmap: "dashmap";
|
|
9357
9603
|
"parking-lot": "parking-lot";
|
|
9358
9604
|
secrecy: "secrecy";
|
|
@@ -9496,10 +9742,12 @@ declare function getAllJsonSchemas(): {
|
|
|
9496
9742
|
echo: "echo";
|
|
9497
9743
|
fiber: "fiber";
|
|
9498
9744
|
chi: "chi";
|
|
9745
|
+
stdlib: "stdlib";
|
|
9499
9746
|
}>;
|
|
9500
9747
|
goOrm: z.ZodEnum<{
|
|
9501
|
-
none: "none";
|
|
9502
9748
|
gorm: "gorm";
|
|
9749
|
+
none: "none";
|
|
9750
|
+
bun: "bun";
|
|
9503
9751
|
sqlc: "sqlc";
|
|
9504
9752
|
ent: "ent";
|
|
9505
9753
|
}>;
|
|
@@ -9556,10 +9804,15 @@ declare function getAllJsonSchemas(): {
|
|
|
9556
9804
|
none: "none";
|
|
9557
9805
|
opentelemetry: "opentelemetry";
|
|
9558
9806
|
}>;
|
|
9807
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
9808
|
+
java: "java";
|
|
9809
|
+
kotlin: "kotlin";
|
|
9810
|
+
}>>;
|
|
9559
9811
|
javaWebFramework: z.ZodEnum<{
|
|
9560
9812
|
none: "none";
|
|
9561
9813
|
"spring-boot": "spring-boot";
|
|
9562
9814
|
quarkus: "quarkus";
|
|
9815
|
+
micronaut: "micronaut";
|
|
9563
9816
|
}>;
|
|
9564
9817
|
javaBuildTool: z.ZodEnum<{
|
|
9565
9818
|
none: "none";
|
|
@@ -9580,10 +9833,13 @@ declare function getAllJsonSchemas(): {
|
|
|
9580
9833
|
javaApi: z.ZodEnum<{
|
|
9581
9834
|
none: "none";
|
|
9582
9835
|
"spring-graphql": "spring-graphql";
|
|
9836
|
+
"openapi-generator": "openapi-generator";
|
|
9837
|
+
grpc: "grpc";
|
|
9583
9838
|
}>;
|
|
9584
9839
|
javaLogging: z.ZodEnum<{
|
|
9585
9840
|
none: "none";
|
|
9586
9841
|
logback: "logback";
|
|
9842
|
+
log4j2: "log4j2";
|
|
9587
9843
|
}>;
|
|
9588
9844
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
9589
9845
|
none: "none";
|
|
@@ -9700,9 +9956,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9700
9956
|
}>;
|
|
9701
9957
|
elixirApi: z.ZodEnum<{
|
|
9702
9958
|
none: "none";
|
|
9959
|
+
grpc: "grpc";
|
|
9703
9960
|
rest: "rest";
|
|
9704
9961
|
absinthe: "absinthe";
|
|
9705
|
-
grpc: "grpc";
|
|
9706
9962
|
}>;
|
|
9707
9963
|
elixirRealtime: z.ZodEnum<{
|
|
9708
9964
|
none: "none";
|
|
@@ -9779,59 +10035,60 @@ declare function getAllJsonSchemas(): {
|
|
|
9779
10035
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9780
10036
|
id: z.ZodString;
|
|
9781
10037
|
role: z.ZodEnum<{
|
|
9782
|
-
|
|
9783
|
-
frontend: "frontend";
|
|
10038
|
+
runtime: "runtime";
|
|
9784
10039
|
backend: "backend";
|
|
9785
|
-
mobile: "mobile";
|
|
9786
10040
|
database: "database";
|
|
9787
|
-
api: "api";
|
|
9788
|
-
graphql: "graphql";
|
|
9789
10041
|
orm: "orm";
|
|
9790
|
-
auth: "auth";
|
|
9791
|
-
runtime: "runtime";
|
|
9792
|
-
deploy: "deploy";
|
|
9793
10042
|
dbSetup: "dbSetup";
|
|
10043
|
+
auth: "auth";
|
|
10044
|
+
payments: "payments";
|
|
10045
|
+
email: "email";
|
|
10046
|
+
fileUpload: "fileUpload";
|
|
10047
|
+
logging: "logging";
|
|
10048
|
+
observability: "observability";
|
|
10049
|
+
featureFlags: "featureFlags";
|
|
10050
|
+
analytics: "analytics";
|
|
10051
|
+
stateManagement: "stateManagement";
|
|
10052
|
+
forms: "forms";
|
|
10053
|
+
validation: "validation";
|
|
10054
|
+
testing: "testing";
|
|
9794
10055
|
realtime: "realtime";
|
|
9795
|
-
|
|
10056
|
+
jobQueue: "jobQueue";
|
|
9796
10057
|
caching: "caching";
|
|
9797
|
-
|
|
9798
|
-
|
|
10058
|
+
rateLimit: "rateLimit";
|
|
10059
|
+
animation: "animation";
|
|
10060
|
+
cms: "cms";
|
|
10061
|
+
i18n: "i18n";
|
|
9799
10062
|
search: "search";
|
|
9800
10063
|
vectorDb: "vectorDb";
|
|
9801
10064
|
fileStorage: "fileStorage";
|
|
9802
|
-
|
|
9803
|
-
|
|
9804
|
-
|
|
9805
|
-
|
|
9806
|
-
|
|
9807
|
-
animation: "animation";
|
|
9808
|
-
fileUpload: "fileUpload";
|
|
9809
|
-
validation: "validation";
|
|
10065
|
+
codeQuality: "codeQuality";
|
|
10066
|
+
documentation: "documentation";
|
|
10067
|
+
examples: "examples";
|
|
10068
|
+
api: "api";
|
|
10069
|
+
ai: "ai";
|
|
9810
10070
|
effect: "effect";
|
|
9811
|
-
ui: "ui";
|
|
9812
10071
|
css: "css";
|
|
10072
|
+
ui: "ui";
|
|
10073
|
+
push: "push";
|
|
10074
|
+
frontend: "frontend";
|
|
10075
|
+
config: "config";
|
|
10076
|
+
mobile: "mobile";
|
|
10077
|
+
graphql: "graphql";
|
|
10078
|
+
deploy: "deploy";
|
|
10079
|
+
navigation: "navigation";
|
|
9813
10080
|
storage: "storage";
|
|
9814
10081
|
ota: "ota";
|
|
9815
10082
|
deepLinking: "deepLinking";
|
|
9816
|
-
ai: "ai";
|
|
9817
|
-
payments: "payments";
|
|
9818
|
-
logging: "logging";
|
|
9819
|
-
featureFlags: "featureFlags";
|
|
9820
|
-
analytics: "analytics";
|
|
9821
|
-
cms: "cms";
|
|
9822
|
-
i18n: "i18n";
|
|
9823
|
-
documentation: "documentation";
|
|
9824
|
-
codeQuality: "codeQuality";
|
|
9825
10083
|
appPlatform: "appPlatform";
|
|
9826
10084
|
dataFetching: "dataFetching";
|
|
9827
10085
|
workspaceTooling: "workspaceTooling";
|
|
9828
|
-
|
|
10086
|
+
language: "language";
|
|
9829
10087
|
buildTool: "buildTool";
|
|
9830
10088
|
cli: "cli";
|
|
9831
10089
|
errorHandling: "errorHandling";
|
|
9832
10090
|
httpClient: "httpClient";
|
|
9833
10091
|
libraries: "libraries";
|
|
9834
|
-
config: "config";
|
|
9835
10092
|
templating: "templating";
|
|
9836
10093
|
}>;
|
|
9837
10094
|
toolId: z.ZodString;
|
|
@@ -9894,6 +10151,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9894
10151
|
sequelize: "sequelize";
|
|
9895
10152
|
}>;
|
|
9896
10153
|
backend: z.ZodEnum<{
|
|
10154
|
+
effect: "effect";
|
|
9897
10155
|
none: "none";
|
|
9898
10156
|
hono: "hono";
|
|
9899
10157
|
express: "express";
|
|
@@ -9986,11 +10244,15 @@ declare function getAllJsonSchemas(): {
|
|
|
9986
10244
|
}>;
|
|
9987
10245
|
payments: z.ZodEnum<{
|
|
9988
10246
|
none: "none";
|
|
10247
|
+
revenuecat: "revenuecat";
|
|
9989
10248
|
polar: "polar";
|
|
9990
10249
|
stripe: "stripe";
|
|
9991
10250
|
"lemon-squeezy": "lemon-squeezy";
|
|
9992
10251
|
paddle: "paddle";
|
|
9993
10252
|
dodo: "dodo";
|
|
10253
|
+
creem: "creem";
|
|
10254
|
+
autumn: "autumn";
|
|
10255
|
+
commet: "commet";
|
|
9994
10256
|
}>;
|
|
9995
10257
|
git: z.ZodBoolean;
|
|
9996
10258
|
packageManager: z.ZodEnum<{
|
|
@@ -9999,6 +10261,10 @@ declare function getAllJsonSchemas(): {
|
|
|
9999
10261
|
pnpm: "pnpm";
|
|
10000
10262
|
yarn: "yarn";
|
|
10001
10263
|
}>;
|
|
10264
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
10265
|
+
monorepo: "monorepo";
|
|
10266
|
+
"single-app": "single-app";
|
|
10267
|
+
}>>;
|
|
10002
10268
|
versionChannel: z.ZodEnum<{
|
|
10003
10269
|
stable: "stable";
|
|
10004
10270
|
latest: "latest";
|
|
@@ -10123,6 +10389,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10123
10389
|
"postcss-only": "postcss-only";
|
|
10124
10390
|
}>;
|
|
10125
10391
|
uiLibrary: z.ZodEnum<{
|
|
10392
|
+
mui: "mui";
|
|
10126
10393
|
none: "none";
|
|
10127
10394
|
"shadcn-ui": "shadcn-ui";
|
|
10128
10395
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -10133,7 +10400,6 @@ declare function getAllJsonSchemas(): {
|
|
|
10133
10400
|
"chakra-ui": "chakra-ui";
|
|
10134
10401
|
nextui: "nextui";
|
|
10135
10402
|
mantine: "mantine";
|
|
10136
|
-
mui: "mui";
|
|
10137
10403
|
antd: "antd";
|
|
10138
10404
|
"base-ui": "base-ui";
|
|
10139
10405
|
"ark-ui": "ark-ui";
|
|
@@ -10205,8 +10471,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10205
10471
|
"geist-mono": "geist-mono";
|
|
10206
10472
|
}>>;
|
|
10207
10473
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10208
|
-
default: "default";
|
|
10209
10474
|
none: "none";
|
|
10475
|
+
default: "default";
|
|
10210
10476
|
small: "small";
|
|
10211
10477
|
medium: "medium";
|
|
10212
10478
|
large: "large";
|
|
@@ -10276,6 +10542,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10276
10542
|
}>;
|
|
10277
10543
|
analytics: z.ZodEnum<{
|
|
10278
10544
|
none: "none";
|
|
10545
|
+
posthog: "posthog";
|
|
10279
10546
|
plausible: "plausible";
|
|
10280
10547
|
umami: "umami";
|
|
10281
10548
|
}>;
|
|
@@ -10290,6 +10557,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10290
10557
|
}>;
|
|
10291
10558
|
caching: z.ZodEnum<{
|
|
10292
10559
|
none: "none";
|
|
10560
|
+
redis: "redis";
|
|
10293
10561
|
"upstash-redis": "upstash-redis";
|
|
10294
10562
|
}>;
|
|
10295
10563
|
rateLimit: z.ZodEnum<{
|
|
@@ -10302,6 +10570,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10302
10570
|
paraglide: "paraglide";
|
|
10303
10571
|
i18next: "i18next";
|
|
10304
10572
|
"next-intl": "next-intl";
|
|
10573
|
+
intlayer: "intlayer";
|
|
10305
10574
|
}>;
|
|
10306
10575
|
search: z.ZodEnum<{
|
|
10307
10576
|
none: "none";
|
|
@@ -10310,6 +10579,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10310
10579
|
elasticsearch: "elasticsearch";
|
|
10311
10580
|
opensearch: "opensearch";
|
|
10312
10581
|
algolia: "algolia";
|
|
10582
|
+
bleve: "bleve";
|
|
10313
10583
|
}>;
|
|
10314
10584
|
vectorDb: z.ZodEnum<{
|
|
10315
10585
|
none: "none";
|
|
@@ -10323,6 +10593,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10323
10593
|
s3: "s3";
|
|
10324
10594
|
r2: "r2";
|
|
10325
10595
|
cloudinary: "cloudinary";
|
|
10596
|
+
"supabase-storage": "supabase-storage";
|
|
10326
10597
|
}>;
|
|
10327
10598
|
mobileNavigation: z.ZodEnum<{
|
|
10328
10599
|
none: "none";
|
|
@@ -10331,9 +10602,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10331
10602
|
}>;
|
|
10332
10603
|
mobileUI: z.ZodEnum<{
|
|
10333
10604
|
none: "none";
|
|
10605
|
+
uniwind: "uniwind";
|
|
10334
10606
|
tamagui: "tamagui";
|
|
10335
10607
|
"gluestack-ui": "gluestack-ui";
|
|
10336
|
-
uniwind: "uniwind";
|
|
10337
10608
|
unistyles: "unistyles";
|
|
10338
10609
|
}>;
|
|
10339
10610
|
mobileStorage: z.ZodEnum<{
|
|
@@ -10363,6 +10634,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10363
10634
|
axum: "axum";
|
|
10364
10635
|
"actix-web": "actix-web";
|
|
10365
10636
|
rocket: "rocket";
|
|
10637
|
+
poem: "poem";
|
|
10638
|
+
loco: "loco";
|
|
10366
10639
|
}>;
|
|
10367
10640
|
rustFrontend: z.ZodEnum<{
|
|
10368
10641
|
none: "none";
|
|
@@ -10386,12 +10659,12 @@ declare function getAllJsonSchemas(): {
|
|
|
10386
10659
|
ratatui: "ratatui";
|
|
10387
10660
|
}>;
|
|
10388
10661
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10389
|
-
config: "config";
|
|
10390
10662
|
none: "none";
|
|
10391
10663
|
serde: "serde";
|
|
10392
10664
|
uuid: "uuid";
|
|
10393
10665
|
chrono: "chrono";
|
|
10394
10666
|
reqwest: "reqwest";
|
|
10667
|
+
config: "config";
|
|
10395
10668
|
dashmap: "dashmap";
|
|
10396
10669
|
"parking-lot": "parking-lot";
|
|
10397
10670
|
secrecy: "secrecy";
|
|
@@ -10535,10 +10808,12 @@ declare function getAllJsonSchemas(): {
|
|
|
10535
10808
|
echo: "echo";
|
|
10536
10809
|
fiber: "fiber";
|
|
10537
10810
|
chi: "chi";
|
|
10811
|
+
stdlib: "stdlib";
|
|
10538
10812
|
}>;
|
|
10539
10813
|
goOrm: z.ZodEnum<{
|
|
10540
|
-
none: "none";
|
|
10541
10814
|
gorm: "gorm";
|
|
10815
|
+
none: "none";
|
|
10816
|
+
bun: "bun";
|
|
10542
10817
|
sqlc: "sqlc";
|
|
10543
10818
|
ent: "ent";
|
|
10544
10819
|
}>;
|
|
@@ -10595,10 +10870,15 @@ declare function getAllJsonSchemas(): {
|
|
|
10595
10870
|
none: "none";
|
|
10596
10871
|
opentelemetry: "opentelemetry";
|
|
10597
10872
|
}>;
|
|
10873
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
10874
|
+
java: "java";
|
|
10875
|
+
kotlin: "kotlin";
|
|
10876
|
+
}>>;
|
|
10598
10877
|
javaWebFramework: z.ZodEnum<{
|
|
10599
10878
|
none: "none";
|
|
10600
10879
|
"spring-boot": "spring-boot";
|
|
10601
10880
|
quarkus: "quarkus";
|
|
10881
|
+
micronaut: "micronaut";
|
|
10602
10882
|
}>;
|
|
10603
10883
|
javaBuildTool: z.ZodEnum<{
|
|
10604
10884
|
none: "none";
|
|
@@ -10619,10 +10899,13 @@ declare function getAllJsonSchemas(): {
|
|
|
10619
10899
|
javaApi: z.ZodEnum<{
|
|
10620
10900
|
none: "none";
|
|
10621
10901
|
"spring-graphql": "spring-graphql";
|
|
10902
|
+
"openapi-generator": "openapi-generator";
|
|
10903
|
+
grpc: "grpc";
|
|
10622
10904
|
}>;
|
|
10623
10905
|
javaLogging: z.ZodEnum<{
|
|
10624
10906
|
none: "none";
|
|
10625
10907
|
logback: "logback";
|
|
10908
|
+
log4j2: "log4j2";
|
|
10626
10909
|
}>;
|
|
10627
10910
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
10628
10911
|
none: "none";
|
|
@@ -10739,9 +11022,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10739
11022
|
}>;
|
|
10740
11023
|
elixirApi: z.ZodEnum<{
|
|
10741
11024
|
none: "none";
|
|
11025
|
+
grpc: "grpc";
|
|
10742
11026
|
rest: "rest";
|
|
10743
11027
|
absinthe: "absinthe";
|
|
10744
|
-
grpc: "grpc";
|
|
10745
11028
|
}>;
|
|
10746
11029
|
elixirRealtime: z.ZodEnum<{
|
|
10747
11030
|
none: "none";
|
|
@@ -10818,59 +11101,60 @@ declare function getAllJsonSchemas(): {
|
|
|
10818
11101
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10819
11102
|
id: z.ZodString;
|
|
10820
11103
|
role: z.ZodEnum<{
|
|
10821
|
-
|
|
10822
|
-
frontend: "frontend";
|
|
11104
|
+
runtime: "runtime";
|
|
10823
11105
|
backend: "backend";
|
|
10824
|
-
mobile: "mobile";
|
|
10825
11106
|
database: "database";
|
|
10826
|
-
api: "api";
|
|
10827
|
-
graphql: "graphql";
|
|
10828
11107
|
orm: "orm";
|
|
10829
|
-
auth: "auth";
|
|
10830
|
-
runtime: "runtime";
|
|
10831
|
-
deploy: "deploy";
|
|
10832
11108
|
dbSetup: "dbSetup";
|
|
11109
|
+
auth: "auth";
|
|
11110
|
+
payments: "payments";
|
|
11111
|
+
email: "email";
|
|
11112
|
+
fileUpload: "fileUpload";
|
|
11113
|
+
logging: "logging";
|
|
11114
|
+
observability: "observability";
|
|
11115
|
+
featureFlags: "featureFlags";
|
|
11116
|
+
analytics: "analytics";
|
|
11117
|
+
stateManagement: "stateManagement";
|
|
11118
|
+
forms: "forms";
|
|
11119
|
+
validation: "validation";
|
|
11120
|
+
testing: "testing";
|
|
10833
11121
|
realtime: "realtime";
|
|
10834
|
-
|
|
11122
|
+
jobQueue: "jobQueue";
|
|
10835
11123
|
caching: "caching";
|
|
10836
|
-
|
|
10837
|
-
|
|
11124
|
+
rateLimit: "rateLimit";
|
|
11125
|
+
animation: "animation";
|
|
11126
|
+
cms: "cms";
|
|
11127
|
+
i18n: "i18n";
|
|
10838
11128
|
search: "search";
|
|
10839
11129
|
vectorDb: "vectorDb";
|
|
10840
11130
|
fileStorage: "fileStorage";
|
|
10841
|
-
|
|
10842
|
-
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
animation: "animation";
|
|
10847
|
-
fileUpload: "fileUpload";
|
|
10848
|
-
validation: "validation";
|
|
11131
|
+
codeQuality: "codeQuality";
|
|
11132
|
+
documentation: "documentation";
|
|
11133
|
+
examples: "examples";
|
|
11134
|
+
api: "api";
|
|
11135
|
+
ai: "ai";
|
|
10849
11136
|
effect: "effect";
|
|
10850
|
-
ui: "ui";
|
|
10851
11137
|
css: "css";
|
|
11138
|
+
ui: "ui";
|
|
11139
|
+
push: "push";
|
|
11140
|
+
frontend: "frontend";
|
|
11141
|
+
config: "config";
|
|
11142
|
+
mobile: "mobile";
|
|
11143
|
+
graphql: "graphql";
|
|
11144
|
+
deploy: "deploy";
|
|
11145
|
+
navigation: "navigation";
|
|
10852
11146
|
storage: "storage";
|
|
10853
11147
|
ota: "ota";
|
|
10854
11148
|
deepLinking: "deepLinking";
|
|
10855
|
-
ai: "ai";
|
|
10856
|
-
payments: "payments";
|
|
10857
|
-
logging: "logging";
|
|
10858
|
-
featureFlags: "featureFlags";
|
|
10859
|
-
analytics: "analytics";
|
|
10860
|
-
cms: "cms";
|
|
10861
|
-
i18n: "i18n";
|
|
10862
|
-
documentation: "documentation";
|
|
10863
|
-
codeQuality: "codeQuality";
|
|
10864
11149
|
appPlatform: "appPlatform";
|
|
10865
11150
|
dataFetching: "dataFetching";
|
|
10866
11151
|
workspaceTooling: "workspaceTooling";
|
|
10867
|
-
|
|
11152
|
+
language: "language";
|
|
10868
11153
|
buildTool: "buildTool";
|
|
10869
11154
|
cli: "cli";
|
|
10870
11155
|
errorHandling: "errorHandling";
|
|
10871
11156
|
httpClient: "httpClient";
|
|
10872
11157
|
libraries: "libraries";
|
|
10873
|
-
config: "config";
|
|
10874
11158
|
templating: "templating";
|
|
10875
11159
|
}>;
|
|
10876
11160
|
toolId: z.ZodString;
|