@better-fullstack/types 1.5.3 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +15 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +84 -15
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +278 -0
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-PlcPX3a0.mjs → schemas-AEYe9g7W.mjs} +57 -3
- package/dist/schemas-AEYe9g7W.mjs.map +1 -0
- package/dist/{schemas-C0f82atI.d.mts → schemas-D7GE2nDP.d.mts} +256 -11
- package/dist/schemas-D7GE2nDP.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/package.json +1 -1
- package/dist/schemas-C0f82atI.d.mts.map +0 -1
- package/dist/schemas-PlcPX3a0.mjs.map +0 -1
|
@@ -133,6 +133,7 @@ declare const APISchema: z.ZodEnum<{
|
|
|
133
133
|
orpc: "orpc";
|
|
134
134
|
"ts-rest": "ts-rest";
|
|
135
135
|
garph: "garph";
|
|
136
|
+
"graphql-yoga": "graphql-yoga";
|
|
136
137
|
}>;
|
|
137
138
|
declare const AuthSchema: z.ZodEnum<{
|
|
138
139
|
none: "none";
|
|
@@ -159,6 +160,7 @@ declare const WebDeploySchema: z.ZodEnum<{
|
|
|
159
160
|
fly: "fly";
|
|
160
161
|
railway: "railway";
|
|
161
162
|
sst: "sst";
|
|
163
|
+
vercel: "vercel";
|
|
162
164
|
}>;
|
|
163
165
|
declare const ServerDeploySchema: z.ZodEnum<{
|
|
164
166
|
none: "none";
|
|
@@ -167,6 +169,7 @@ declare const ServerDeploySchema: z.ZodEnum<{
|
|
|
167
169
|
fly: "fly";
|
|
168
170
|
railway: "railway";
|
|
169
171
|
sst: "sst";
|
|
172
|
+
vercel: "vercel";
|
|
170
173
|
}>;
|
|
171
174
|
declare const AISchema: z.ZodEnum<{
|
|
172
175
|
none: "none";
|
|
@@ -263,6 +266,11 @@ declare const CachingSchema: z.ZodEnum<{
|
|
|
263
266
|
none: "none";
|
|
264
267
|
"upstash-redis": "upstash-redis";
|
|
265
268
|
}>;
|
|
269
|
+
declare const I18nSchema: z.ZodEnum<{
|
|
270
|
+
none: "none";
|
|
271
|
+
i18next: "i18next";
|
|
272
|
+
"next-intl": "next-intl";
|
|
273
|
+
}>;
|
|
266
274
|
declare const SearchSchema: z.ZodEnum<{
|
|
267
275
|
none: "none";
|
|
268
276
|
meilisearch: "meilisearch";
|
|
@@ -314,6 +322,7 @@ declare const RustWebFrameworkSchema: z.ZodEnum<{
|
|
|
314
322
|
none: "none";
|
|
315
323
|
axum: "axum";
|
|
316
324
|
"actix-web": "actix-web";
|
|
325
|
+
rocket: "rocket";
|
|
317
326
|
}>;
|
|
318
327
|
declare const RustFrontendSchema: z.ZodEnum<{
|
|
319
328
|
none: "none";
|
|
@@ -324,6 +333,7 @@ declare const RustOrmSchema: z.ZodEnum<{
|
|
|
324
333
|
none: "none";
|
|
325
334
|
"sea-orm": "sea-orm";
|
|
326
335
|
sqlx: "sqlx";
|
|
336
|
+
diesel: "diesel";
|
|
327
337
|
}>;
|
|
328
338
|
declare const RustApiSchema: z.ZodEnum<{
|
|
329
339
|
none: "none";
|
|
@@ -349,11 +359,22 @@ declare const RustLoggingSchema: z.ZodEnum<{
|
|
|
349
359
|
tracing: "tracing";
|
|
350
360
|
"env-logger": "env-logger";
|
|
351
361
|
}>;
|
|
362
|
+
declare const RustErrorHandlingSchema: z.ZodEnum<{
|
|
363
|
+
none: "none";
|
|
364
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
365
|
+
eyre: "eyre";
|
|
366
|
+
}>;
|
|
367
|
+
declare const RustCachingSchema: z.ZodEnum<{
|
|
368
|
+
none: "none";
|
|
369
|
+
redis: "redis";
|
|
370
|
+
moka: "moka";
|
|
371
|
+
}>;
|
|
352
372
|
declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
353
373
|
none: "none";
|
|
354
374
|
fastapi: "fastapi";
|
|
355
375
|
django: "django";
|
|
356
376
|
flask: "flask";
|
|
377
|
+
litestar: "litestar";
|
|
357
378
|
}>;
|
|
358
379
|
declare const PythonOrmSchema: z.ZodEnum<{
|
|
359
380
|
none: "none";
|
|
@@ -373,10 +394,19 @@ declare const PythonAiSchema: z.ZodEnum<{
|
|
|
373
394
|
"anthropic-sdk": "anthropic-sdk";
|
|
374
395
|
crewai: "crewai";
|
|
375
396
|
}>;
|
|
397
|
+
declare const PythonAuthSchema: z.ZodEnum<{
|
|
398
|
+
none: "none";
|
|
399
|
+
authlib: "authlib";
|
|
400
|
+
jwt: "jwt";
|
|
401
|
+
}>;
|
|
376
402
|
declare const PythonTaskQueueSchema: z.ZodEnum<{
|
|
377
403
|
none: "none";
|
|
378
404
|
celery: "celery";
|
|
379
405
|
}>;
|
|
406
|
+
declare const PythonGraphqlSchema: z.ZodEnum<{
|
|
407
|
+
none: "none";
|
|
408
|
+
strawberry: "strawberry";
|
|
409
|
+
}>;
|
|
380
410
|
declare const PythonQualitySchema: z.ZodEnum<{
|
|
381
411
|
none: "none";
|
|
382
412
|
ruff: "ruff";
|
|
@@ -386,11 +416,13 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
386
416
|
gin: "gin";
|
|
387
417
|
echo: "echo";
|
|
388
418
|
fiber: "fiber";
|
|
419
|
+
chi: "chi";
|
|
389
420
|
}>;
|
|
390
421
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
391
422
|
none: "none";
|
|
392
423
|
gorm: "gorm";
|
|
393
424
|
sqlc: "sqlc";
|
|
425
|
+
ent: "ent";
|
|
394
426
|
}>;
|
|
395
427
|
declare const GoApiSchema: z.ZodEnum<{
|
|
396
428
|
none: "none";
|
|
@@ -404,6 +436,8 @@ declare const GoCliSchema: z.ZodEnum<{
|
|
|
404
436
|
declare const GoLoggingSchema: z.ZodEnum<{
|
|
405
437
|
none: "none";
|
|
406
438
|
zap: "zap";
|
|
439
|
+
zerolog: "zerolog";
|
|
440
|
+
slog: "slog";
|
|
407
441
|
}>;
|
|
408
442
|
declare const AiDocsSchema: z.ZodEnum<{
|
|
409
443
|
none: "none";
|
|
@@ -672,6 +706,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
672
706
|
orpc: "orpc";
|
|
673
707
|
"ts-rest": "ts-rest";
|
|
674
708
|
garph: "garph";
|
|
709
|
+
"graphql-yoga": "graphql-yoga";
|
|
675
710
|
}>>;
|
|
676
711
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
677
712
|
none: "none";
|
|
@@ -680,6 +715,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
680
715
|
fly: "fly";
|
|
681
716
|
railway: "railway";
|
|
682
717
|
sst: "sst";
|
|
718
|
+
vercel: "vercel";
|
|
683
719
|
}>>;
|
|
684
720
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
685
721
|
none: "none";
|
|
@@ -688,6 +724,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
688
724
|
fly: "fly";
|
|
689
725
|
railway: "railway";
|
|
690
726
|
sst: "sst";
|
|
727
|
+
vercel: "vercel";
|
|
691
728
|
}>>;
|
|
692
729
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
693
730
|
merge: "merge";
|
|
@@ -924,6 +961,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
924
961
|
none: "none";
|
|
925
962
|
"upstash-redis": "upstash-redis";
|
|
926
963
|
}>>;
|
|
964
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
965
|
+
none: "none";
|
|
966
|
+
i18next: "i18next";
|
|
967
|
+
"next-intl": "next-intl";
|
|
968
|
+
}>>;
|
|
927
969
|
search: z.ZodOptional<z.ZodEnum<{
|
|
928
970
|
none: "none";
|
|
929
971
|
meilisearch: "meilisearch";
|
|
@@ -940,6 +982,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
940
982
|
none: "none";
|
|
941
983
|
axum: "axum";
|
|
942
984
|
"actix-web": "actix-web";
|
|
985
|
+
rocket: "rocket";
|
|
943
986
|
}>>;
|
|
944
987
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
945
988
|
none: "none";
|
|
@@ -950,6 +993,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
950
993
|
none: "none";
|
|
951
994
|
"sea-orm": "sea-orm";
|
|
952
995
|
sqlx: "sqlx";
|
|
996
|
+
diesel: "diesel";
|
|
953
997
|
}>>;
|
|
954
998
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
955
999
|
none: "none";
|
|
@@ -975,11 +1019,22 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
975
1019
|
tracing: "tracing";
|
|
976
1020
|
"env-logger": "env-logger";
|
|
977
1021
|
}>>;
|
|
1022
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
1023
|
+
none: "none";
|
|
1024
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1025
|
+
eyre: "eyre";
|
|
1026
|
+
}>>;
|
|
1027
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
1028
|
+
none: "none";
|
|
1029
|
+
redis: "redis";
|
|
1030
|
+
moka: "moka";
|
|
1031
|
+
}>>;
|
|
978
1032
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
979
1033
|
none: "none";
|
|
980
1034
|
fastapi: "fastapi";
|
|
981
1035
|
django: "django";
|
|
982
1036
|
flask: "flask";
|
|
1037
|
+
litestar: "litestar";
|
|
983
1038
|
}>>;
|
|
984
1039
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
985
1040
|
none: "none";
|
|
@@ -999,10 +1054,19 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
999
1054
|
"anthropic-sdk": "anthropic-sdk";
|
|
1000
1055
|
crewai: "crewai";
|
|
1001
1056
|
}>>>;
|
|
1057
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1058
|
+
none: "none";
|
|
1059
|
+
authlib: "authlib";
|
|
1060
|
+
jwt: "jwt";
|
|
1061
|
+
}>>;
|
|
1002
1062
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
1003
1063
|
none: "none";
|
|
1004
1064
|
celery: "celery";
|
|
1005
1065
|
}>>;
|
|
1066
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1067
|
+
none: "none";
|
|
1068
|
+
strawberry: "strawberry";
|
|
1069
|
+
}>>;
|
|
1006
1070
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
1007
1071
|
none: "none";
|
|
1008
1072
|
ruff: "ruff";
|
|
@@ -1012,11 +1076,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1012
1076
|
gin: "gin";
|
|
1013
1077
|
echo: "echo";
|
|
1014
1078
|
fiber: "fiber";
|
|
1079
|
+
chi: "chi";
|
|
1015
1080
|
}>>;
|
|
1016
1081
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1017
1082
|
none: "none";
|
|
1018
1083
|
gorm: "gorm";
|
|
1019
1084
|
sqlc: "sqlc";
|
|
1085
|
+
ent: "ent";
|
|
1020
1086
|
}>>;
|
|
1021
1087
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1022
1088
|
none: "none";
|
|
@@ -1030,6 +1096,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1030
1096
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
1031
1097
|
none: "none";
|
|
1032
1098
|
zap: "zap";
|
|
1099
|
+
zerolog: "zerolog";
|
|
1100
|
+
slog: "slog";
|
|
1033
1101
|
}>>;
|
|
1034
1102
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1035
1103
|
none: "none";
|
|
@@ -1071,6 +1139,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1071
1139
|
fly: "fly";
|
|
1072
1140
|
railway: "railway";
|
|
1073
1141
|
sst: "sst";
|
|
1142
|
+
vercel: "vercel";
|
|
1074
1143
|
}>>;
|
|
1075
1144
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1076
1145
|
none: "none";
|
|
@@ -1079,6 +1148,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1079
1148
|
fly: "fly";
|
|
1080
1149
|
railway: "railway";
|
|
1081
1150
|
sst: "sst";
|
|
1151
|
+
vercel: "vercel";
|
|
1082
1152
|
}>>;
|
|
1083
1153
|
projectDir: z.ZodOptional<z.ZodString>;
|
|
1084
1154
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1247,6 +1317,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1247
1317
|
orpc: "orpc";
|
|
1248
1318
|
"ts-rest": "ts-rest";
|
|
1249
1319
|
garph: "garph";
|
|
1320
|
+
"graphql-yoga": "graphql-yoga";
|
|
1250
1321
|
}>>;
|
|
1251
1322
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1252
1323
|
none: "none";
|
|
@@ -1255,6 +1326,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1255
1326
|
fly: "fly";
|
|
1256
1327
|
railway: "railway";
|
|
1257
1328
|
sst: "sst";
|
|
1329
|
+
vercel: "vercel";
|
|
1258
1330
|
}>>;
|
|
1259
1331
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1260
1332
|
none: "none";
|
|
@@ -1263,6 +1335,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1263
1335
|
fly: "fly";
|
|
1264
1336
|
railway: "railway";
|
|
1265
1337
|
sst: "sst";
|
|
1338
|
+
vercel: "vercel";
|
|
1266
1339
|
}>>;
|
|
1267
1340
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1268
1341
|
merge: "merge";
|
|
@@ -1499,6 +1572,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1499
1572
|
none: "none";
|
|
1500
1573
|
"upstash-redis": "upstash-redis";
|
|
1501
1574
|
}>>;
|
|
1575
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1576
|
+
none: "none";
|
|
1577
|
+
i18next: "i18next";
|
|
1578
|
+
"next-intl": "next-intl";
|
|
1579
|
+
}>>;
|
|
1502
1580
|
search: z.ZodOptional<z.ZodEnum<{
|
|
1503
1581
|
none: "none";
|
|
1504
1582
|
meilisearch: "meilisearch";
|
|
@@ -1515,6 +1593,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1515
1593
|
none: "none";
|
|
1516
1594
|
axum: "axum";
|
|
1517
1595
|
"actix-web": "actix-web";
|
|
1596
|
+
rocket: "rocket";
|
|
1518
1597
|
}>>;
|
|
1519
1598
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
1520
1599
|
none: "none";
|
|
@@ -1525,6 +1604,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1525
1604
|
none: "none";
|
|
1526
1605
|
"sea-orm": "sea-orm";
|
|
1527
1606
|
sqlx: "sqlx";
|
|
1607
|
+
diesel: "diesel";
|
|
1528
1608
|
}>>;
|
|
1529
1609
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
1530
1610
|
none: "none";
|
|
@@ -1550,11 +1630,22 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1550
1630
|
tracing: "tracing";
|
|
1551
1631
|
"env-logger": "env-logger";
|
|
1552
1632
|
}>>;
|
|
1633
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
1634
|
+
none: "none";
|
|
1635
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1636
|
+
eyre: "eyre";
|
|
1637
|
+
}>>;
|
|
1638
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
1639
|
+
none: "none";
|
|
1640
|
+
redis: "redis";
|
|
1641
|
+
moka: "moka";
|
|
1642
|
+
}>>;
|
|
1553
1643
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1554
1644
|
none: "none";
|
|
1555
1645
|
fastapi: "fastapi";
|
|
1556
1646
|
django: "django";
|
|
1557
1647
|
flask: "flask";
|
|
1648
|
+
litestar: "litestar";
|
|
1558
1649
|
}>>;
|
|
1559
1650
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1560
1651
|
none: "none";
|
|
@@ -1574,10 +1665,19 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1574
1665
|
"anthropic-sdk": "anthropic-sdk";
|
|
1575
1666
|
crewai: "crewai";
|
|
1576
1667
|
}>>>;
|
|
1668
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1669
|
+
none: "none";
|
|
1670
|
+
authlib: "authlib";
|
|
1671
|
+
jwt: "jwt";
|
|
1672
|
+
}>>;
|
|
1577
1673
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
1578
1674
|
none: "none";
|
|
1579
1675
|
celery: "celery";
|
|
1580
1676
|
}>>;
|
|
1677
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1678
|
+
none: "none";
|
|
1679
|
+
strawberry: "strawberry";
|
|
1680
|
+
}>>;
|
|
1581
1681
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
1582
1682
|
none: "none";
|
|
1583
1683
|
ruff: "ruff";
|
|
@@ -1587,11 +1687,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1587
1687
|
gin: "gin";
|
|
1588
1688
|
echo: "echo";
|
|
1589
1689
|
fiber: "fiber";
|
|
1690
|
+
chi: "chi";
|
|
1590
1691
|
}>>;
|
|
1591
1692
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1592
1693
|
none: "none";
|
|
1593
1694
|
gorm: "gorm";
|
|
1594
1695
|
sqlc: "sqlc";
|
|
1696
|
+
ent: "ent";
|
|
1595
1697
|
}>>;
|
|
1596
1698
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1597
1699
|
none: "none";
|
|
@@ -1605,6 +1707,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1605
1707
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
1606
1708
|
none: "none";
|
|
1607
1709
|
zap: "zap";
|
|
1710
|
+
zerolog: "zerolog";
|
|
1711
|
+
slog: "slog";
|
|
1608
1712
|
}>>;
|
|
1609
1713
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1610
1714
|
none: "none";
|
|
@@ -1763,6 +1867,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1763
1867
|
orpc: "orpc";
|
|
1764
1868
|
"ts-rest": "ts-rest";
|
|
1765
1869
|
garph: "garph";
|
|
1870
|
+
"graphql-yoga": "graphql-yoga";
|
|
1766
1871
|
}>;
|
|
1767
1872
|
webDeploy: z.ZodEnum<{
|
|
1768
1873
|
none: "none";
|
|
@@ -1771,6 +1876,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1771
1876
|
fly: "fly";
|
|
1772
1877
|
railway: "railway";
|
|
1773
1878
|
sst: "sst";
|
|
1879
|
+
vercel: "vercel";
|
|
1774
1880
|
}>;
|
|
1775
1881
|
serverDeploy: z.ZodEnum<{
|
|
1776
1882
|
none: "none";
|
|
@@ -1779,6 +1885,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1779
1885
|
fly: "fly";
|
|
1780
1886
|
railway: "railway";
|
|
1781
1887
|
sst: "sst";
|
|
1888
|
+
vercel: "vercel";
|
|
1782
1889
|
}>;
|
|
1783
1890
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1784
1891
|
none: "none";
|
|
@@ -2006,6 +2113,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2006
2113
|
none: "none";
|
|
2007
2114
|
"upstash-redis": "upstash-redis";
|
|
2008
2115
|
}>;
|
|
2116
|
+
i18n: z.ZodEnum<{
|
|
2117
|
+
none: "none";
|
|
2118
|
+
i18next: "i18next";
|
|
2119
|
+
"next-intl": "next-intl";
|
|
2120
|
+
}>;
|
|
2009
2121
|
search: z.ZodEnum<{
|
|
2010
2122
|
none: "none";
|
|
2011
2123
|
meilisearch: "meilisearch";
|
|
@@ -2022,6 +2134,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2022
2134
|
none: "none";
|
|
2023
2135
|
axum: "axum";
|
|
2024
2136
|
"actix-web": "actix-web";
|
|
2137
|
+
rocket: "rocket";
|
|
2025
2138
|
}>;
|
|
2026
2139
|
rustFrontend: z.ZodEnum<{
|
|
2027
2140
|
none: "none";
|
|
@@ -2032,6 +2145,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2032
2145
|
none: "none";
|
|
2033
2146
|
"sea-orm": "sea-orm";
|
|
2034
2147
|
sqlx: "sqlx";
|
|
2148
|
+
diesel: "diesel";
|
|
2035
2149
|
}>;
|
|
2036
2150
|
rustApi: z.ZodEnum<{
|
|
2037
2151
|
none: "none";
|
|
@@ -2057,11 +2171,22 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2057
2171
|
tracing: "tracing";
|
|
2058
2172
|
"env-logger": "env-logger";
|
|
2059
2173
|
}>;
|
|
2174
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2175
|
+
none: "none";
|
|
2176
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2177
|
+
eyre: "eyre";
|
|
2178
|
+
}>;
|
|
2179
|
+
rustCaching: z.ZodEnum<{
|
|
2180
|
+
none: "none";
|
|
2181
|
+
redis: "redis";
|
|
2182
|
+
moka: "moka";
|
|
2183
|
+
}>;
|
|
2060
2184
|
pythonWebFramework: z.ZodEnum<{
|
|
2061
2185
|
none: "none";
|
|
2062
2186
|
fastapi: "fastapi";
|
|
2063
2187
|
django: "django";
|
|
2064
2188
|
flask: "flask";
|
|
2189
|
+
litestar: "litestar";
|
|
2065
2190
|
}>;
|
|
2066
2191
|
pythonOrm: z.ZodEnum<{
|
|
2067
2192
|
none: "none";
|
|
@@ -2081,10 +2206,19 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2081
2206
|
"anthropic-sdk": "anthropic-sdk";
|
|
2082
2207
|
crewai: "crewai";
|
|
2083
2208
|
}>>;
|
|
2209
|
+
pythonAuth: z.ZodEnum<{
|
|
2210
|
+
none: "none";
|
|
2211
|
+
authlib: "authlib";
|
|
2212
|
+
jwt: "jwt";
|
|
2213
|
+
}>;
|
|
2084
2214
|
pythonTaskQueue: z.ZodEnum<{
|
|
2085
2215
|
none: "none";
|
|
2086
2216
|
celery: "celery";
|
|
2087
2217
|
}>;
|
|
2218
|
+
pythonGraphql: z.ZodEnum<{
|
|
2219
|
+
none: "none";
|
|
2220
|
+
strawberry: "strawberry";
|
|
2221
|
+
}>;
|
|
2088
2222
|
pythonQuality: z.ZodEnum<{
|
|
2089
2223
|
none: "none";
|
|
2090
2224
|
ruff: "ruff";
|
|
@@ -2094,11 +2228,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2094
2228
|
gin: "gin";
|
|
2095
2229
|
echo: "echo";
|
|
2096
2230
|
fiber: "fiber";
|
|
2231
|
+
chi: "chi";
|
|
2097
2232
|
}>;
|
|
2098
2233
|
goOrm: z.ZodEnum<{
|
|
2099
2234
|
none: "none";
|
|
2100
2235
|
gorm: "gorm";
|
|
2101
2236
|
sqlc: "sqlc";
|
|
2237
|
+
ent: "ent";
|
|
2102
2238
|
}>;
|
|
2103
2239
|
goApi: z.ZodEnum<{
|
|
2104
2240
|
none: "none";
|
|
@@ -2112,6 +2248,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2112
2248
|
goLogging: z.ZodEnum<{
|
|
2113
2249
|
none: "none";
|
|
2114
2250
|
zap: "zap";
|
|
2251
|
+
zerolog: "zerolog";
|
|
2252
|
+
slog: "slog";
|
|
2115
2253
|
}>;
|
|
2116
2254
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2117
2255
|
none: "none";
|
|
@@ -2266,6 +2404,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2266
2404
|
orpc: "orpc";
|
|
2267
2405
|
"ts-rest": "ts-rest";
|
|
2268
2406
|
garph: "garph";
|
|
2407
|
+
"graphql-yoga": "graphql-yoga";
|
|
2269
2408
|
}>;
|
|
2270
2409
|
webDeploy: z.ZodEnum<{
|
|
2271
2410
|
none: "none";
|
|
@@ -2274,6 +2413,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2274
2413
|
fly: "fly";
|
|
2275
2414
|
railway: "railway";
|
|
2276
2415
|
sst: "sst";
|
|
2416
|
+
vercel: "vercel";
|
|
2277
2417
|
}>;
|
|
2278
2418
|
serverDeploy: z.ZodEnum<{
|
|
2279
2419
|
none: "none";
|
|
@@ -2282,6 +2422,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2282
2422
|
fly: "fly";
|
|
2283
2423
|
railway: "railway";
|
|
2284
2424
|
sst: "sst";
|
|
2425
|
+
vercel: "vercel";
|
|
2285
2426
|
}>;
|
|
2286
2427
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2287
2428
|
none: "none";
|
|
@@ -2509,6 +2650,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2509
2650
|
none: "none";
|
|
2510
2651
|
"upstash-redis": "upstash-redis";
|
|
2511
2652
|
}>;
|
|
2653
|
+
i18n: z.ZodEnum<{
|
|
2654
|
+
none: "none";
|
|
2655
|
+
i18next: "i18next";
|
|
2656
|
+
"next-intl": "next-intl";
|
|
2657
|
+
}>;
|
|
2512
2658
|
search: z.ZodEnum<{
|
|
2513
2659
|
none: "none";
|
|
2514
2660
|
meilisearch: "meilisearch";
|
|
@@ -2525,6 +2671,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2525
2671
|
none: "none";
|
|
2526
2672
|
axum: "axum";
|
|
2527
2673
|
"actix-web": "actix-web";
|
|
2674
|
+
rocket: "rocket";
|
|
2528
2675
|
}>;
|
|
2529
2676
|
rustFrontend: z.ZodEnum<{
|
|
2530
2677
|
none: "none";
|
|
@@ -2535,6 +2682,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2535
2682
|
none: "none";
|
|
2536
2683
|
"sea-orm": "sea-orm";
|
|
2537
2684
|
sqlx: "sqlx";
|
|
2685
|
+
diesel: "diesel";
|
|
2538
2686
|
}>;
|
|
2539
2687
|
rustApi: z.ZodEnum<{
|
|
2540
2688
|
none: "none";
|
|
@@ -2560,11 +2708,22 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2560
2708
|
tracing: "tracing";
|
|
2561
2709
|
"env-logger": "env-logger";
|
|
2562
2710
|
}>;
|
|
2711
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2712
|
+
none: "none";
|
|
2713
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2714
|
+
eyre: "eyre";
|
|
2715
|
+
}>;
|
|
2716
|
+
rustCaching: z.ZodEnum<{
|
|
2717
|
+
none: "none";
|
|
2718
|
+
redis: "redis";
|
|
2719
|
+
moka: "moka";
|
|
2720
|
+
}>;
|
|
2563
2721
|
pythonWebFramework: z.ZodEnum<{
|
|
2564
2722
|
none: "none";
|
|
2565
2723
|
fastapi: "fastapi";
|
|
2566
2724
|
django: "django";
|
|
2567
2725
|
flask: "flask";
|
|
2726
|
+
litestar: "litestar";
|
|
2568
2727
|
}>;
|
|
2569
2728
|
pythonOrm: z.ZodEnum<{
|
|
2570
2729
|
none: "none";
|
|
@@ -2584,10 +2743,19 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2584
2743
|
"anthropic-sdk": "anthropic-sdk";
|
|
2585
2744
|
crewai: "crewai";
|
|
2586
2745
|
}>>;
|
|
2746
|
+
pythonAuth: z.ZodEnum<{
|
|
2747
|
+
none: "none";
|
|
2748
|
+
authlib: "authlib";
|
|
2749
|
+
jwt: "jwt";
|
|
2750
|
+
}>;
|
|
2587
2751
|
pythonTaskQueue: z.ZodEnum<{
|
|
2588
2752
|
none: "none";
|
|
2589
2753
|
celery: "celery";
|
|
2590
2754
|
}>;
|
|
2755
|
+
pythonGraphql: z.ZodEnum<{
|
|
2756
|
+
none: "none";
|
|
2757
|
+
strawberry: "strawberry";
|
|
2758
|
+
}>;
|
|
2591
2759
|
pythonQuality: z.ZodEnum<{
|
|
2592
2760
|
none: "none";
|
|
2593
2761
|
ruff: "ruff";
|
|
@@ -2597,11 +2765,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2597
2765
|
gin: "gin";
|
|
2598
2766
|
echo: "echo";
|
|
2599
2767
|
fiber: "fiber";
|
|
2768
|
+
chi: "chi";
|
|
2600
2769
|
}>;
|
|
2601
2770
|
goOrm: z.ZodEnum<{
|
|
2602
2771
|
none: "none";
|
|
2603
2772
|
gorm: "gorm";
|
|
2604
2773
|
sqlc: "sqlc";
|
|
2774
|
+
ent: "ent";
|
|
2605
2775
|
}>;
|
|
2606
2776
|
goApi: z.ZodEnum<{
|
|
2607
2777
|
none: "none";
|
|
@@ -2615,6 +2785,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2615
2785
|
goLogging: z.ZodEnum<{
|
|
2616
2786
|
none: "none";
|
|
2617
2787
|
zap: "zap";
|
|
2788
|
+
zerolog: "zerolog";
|
|
2789
|
+
slog: "slog";
|
|
2618
2790
|
}>;
|
|
2619
2791
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2620
2792
|
none: "none";
|
|
@@ -2770,6 +2942,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2770
2942
|
orpc: "orpc";
|
|
2771
2943
|
"ts-rest": "ts-rest";
|
|
2772
2944
|
garph: "garph";
|
|
2945
|
+
"graphql-yoga": "graphql-yoga";
|
|
2773
2946
|
}>;
|
|
2774
2947
|
webDeploy: z.ZodEnum<{
|
|
2775
2948
|
none: "none";
|
|
@@ -2778,6 +2951,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2778
2951
|
fly: "fly";
|
|
2779
2952
|
railway: "railway";
|
|
2780
2953
|
sst: "sst";
|
|
2954
|
+
vercel: "vercel";
|
|
2781
2955
|
}>;
|
|
2782
2956
|
serverDeploy: z.ZodEnum<{
|
|
2783
2957
|
none: "none";
|
|
@@ -2786,6 +2960,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2786
2960
|
fly: "fly";
|
|
2787
2961
|
railway: "railway";
|
|
2788
2962
|
sst: "sst";
|
|
2963
|
+
vercel: "vercel";
|
|
2789
2964
|
}>;
|
|
2790
2965
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2791
2966
|
none: "none";
|
|
@@ -3013,6 +3188,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3013
3188
|
none: "none";
|
|
3014
3189
|
"upstash-redis": "upstash-redis";
|
|
3015
3190
|
}>;
|
|
3191
|
+
i18n: z.ZodEnum<{
|
|
3192
|
+
none: "none";
|
|
3193
|
+
i18next: "i18next";
|
|
3194
|
+
"next-intl": "next-intl";
|
|
3195
|
+
}>;
|
|
3016
3196
|
search: z.ZodEnum<{
|
|
3017
3197
|
none: "none";
|
|
3018
3198
|
meilisearch: "meilisearch";
|
|
@@ -3029,6 +3209,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3029
3209
|
none: "none";
|
|
3030
3210
|
axum: "axum";
|
|
3031
3211
|
"actix-web": "actix-web";
|
|
3212
|
+
rocket: "rocket";
|
|
3032
3213
|
}>;
|
|
3033
3214
|
rustFrontend: z.ZodEnum<{
|
|
3034
3215
|
none: "none";
|
|
@@ -3039,6 +3220,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3039
3220
|
none: "none";
|
|
3040
3221
|
"sea-orm": "sea-orm";
|
|
3041
3222
|
sqlx: "sqlx";
|
|
3223
|
+
diesel: "diesel";
|
|
3042
3224
|
}>;
|
|
3043
3225
|
rustApi: z.ZodEnum<{
|
|
3044
3226
|
none: "none";
|
|
@@ -3064,11 +3246,22 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3064
3246
|
tracing: "tracing";
|
|
3065
3247
|
"env-logger": "env-logger";
|
|
3066
3248
|
}>;
|
|
3249
|
+
rustErrorHandling: z.ZodEnum<{
|
|
3250
|
+
none: "none";
|
|
3251
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3252
|
+
eyre: "eyre";
|
|
3253
|
+
}>;
|
|
3254
|
+
rustCaching: z.ZodEnum<{
|
|
3255
|
+
none: "none";
|
|
3256
|
+
redis: "redis";
|
|
3257
|
+
moka: "moka";
|
|
3258
|
+
}>;
|
|
3067
3259
|
pythonWebFramework: z.ZodEnum<{
|
|
3068
3260
|
none: "none";
|
|
3069
3261
|
fastapi: "fastapi";
|
|
3070
3262
|
django: "django";
|
|
3071
3263
|
flask: "flask";
|
|
3264
|
+
litestar: "litestar";
|
|
3072
3265
|
}>;
|
|
3073
3266
|
pythonOrm: z.ZodEnum<{
|
|
3074
3267
|
none: "none";
|
|
@@ -3088,10 +3281,19 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3088
3281
|
"anthropic-sdk": "anthropic-sdk";
|
|
3089
3282
|
crewai: "crewai";
|
|
3090
3283
|
}>>;
|
|
3284
|
+
pythonAuth: z.ZodEnum<{
|
|
3285
|
+
none: "none";
|
|
3286
|
+
authlib: "authlib";
|
|
3287
|
+
jwt: "jwt";
|
|
3288
|
+
}>;
|
|
3091
3289
|
pythonTaskQueue: z.ZodEnum<{
|
|
3092
3290
|
none: "none";
|
|
3093
3291
|
celery: "celery";
|
|
3094
3292
|
}>;
|
|
3293
|
+
pythonGraphql: z.ZodEnum<{
|
|
3294
|
+
none: "none";
|
|
3295
|
+
strawberry: "strawberry";
|
|
3296
|
+
}>;
|
|
3095
3297
|
pythonQuality: z.ZodEnum<{
|
|
3096
3298
|
none: "none";
|
|
3097
3299
|
ruff: "ruff";
|
|
@@ -3101,11 +3303,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3101
3303
|
gin: "gin";
|
|
3102
3304
|
echo: "echo";
|
|
3103
3305
|
fiber: "fiber";
|
|
3306
|
+
chi: "chi";
|
|
3104
3307
|
}>;
|
|
3105
3308
|
goOrm: z.ZodEnum<{
|
|
3106
3309
|
none: "none";
|
|
3107
3310
|
gorm: "gorm";
|
|
3108
3311
|
sqlc: "sqlc";
|
|
3312
|
+
ent: "ent";
|
|
3109
3313
|
}>;
|
|
3110
3314
|
goApi: z.ZodEnum<{
|
|
3111
3315
|
none: "none";
|
|
@@ -3119,6 +3323,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3119
3323
|
goLogging: z.ZodEnum<{
|
|
3120
3324
|
none: "none";
|
|
3121
3325
|
zap: "zap";
|
|
3326
|
+
zerolog: "zerolog";
|
|
3327
|
+
slog: "slog";
|
|
3122
3328
|
}>;
|
|
3123
3329
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3124
3330
|
none: "none";
|
|
@@ -3278,6 +3484,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3278
3484
|
orpc: "orpc";
|
|
3279
3485
|
"ts-rest": "ts-rest";
|
|
3280
3486
|
garph: "garph";
|
|
3487
|
+
"graphql-yoga": "graphql-yoga";
|
|
3281
3488
|
}>;
|
|
3282
3489
|
webDeploy: z.ZodEnum<{
|
|
3283
3490
|
none: "none";
|
|
@@ -3286,6 +3493,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3286
3493
|
fly: "fly";
|
|
3287
3494
|
railway: "railway";
|
|
3288
3495
|
sst: "sst";
|
|
3496
|
+
vercel: "vercel";
|
|
3289
3497
|
}>;
|
|
3290
3498
|
serverDeploy: z.ZodEnum<{
|
|
3291
3499
|
none: "none";
|
|
@@ -3294,6 +3502,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3294
3502
|
fly: "fly";
|
|
3295
3503
|
railway: "railway";
|
|
3296
3504
|
sst: "sst";
|
|
3505
|
+
vercel: "vercel";
|
|
3297
3506
|
}>;
|
|
3298
3507
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3299
3508
|
none: "none";
|
|
@@ -3521,6 +3730,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3521
3730
|
none: "none";
|
|
3522
3731
|
"upstash-redis": "upstash-redis";
|
|
3523
3732
|
}>;
|
|
3733
|
+
i18n: z.ZodEnum<{
|
|
3734
|
+
none: "none";
|
|
3735
|
+
i18next: "i18next";
|
|
3736
|
+
"next-intl": "next-intl";
|
|
3737
|
+
}>;
|
|
3524
3738
|
search: z.ZodEnum<{
|
|
3525
3739
|
none: "none";
|
|
3526
3740
|
meilisearch: "meilisearch";
|
|
@@ -3537,6 +3751,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3537
3751
|
none: "none";
|
|
3538
3752
|
axum: "axum";
|
|
3539
3753
|
"actix-web": "actix-web";
|
|
3754
|
+
rocket: "rocket";
|
|
3540
3755
|
}>;
|
|
3541
3756
|
rustFrontend: z.ZodEnum<{
|
|
3542
3757
|
none: "none";
|
|
@@ -3547,6 +3762,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3547
3762
|
none: "none";
|
|
3548
3763
|
"sea-orm": "sea-orm";
|
|
3549
3764
|
sqlx: "sqlx";
|
|
3765
|
+
diesel: "diesel";
|
|
3550
3766
|
}>;
|
|
3551
3767
|
rustApi: z.ZodEnum<{
|
|
3552
3768
|
none: "none";
|
|
@@ -3572,11 +3788,22 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3572
3788
|
tracing: "tracing";
|
|
3573
3789
|
"env-logger": "env-logger";
|
|
3574
3790
|
}>;
|
|
3791
|
+
rustErrorHandling: z.ZodEnum<{
|
|
3792
|
+
none: "none";
|
|
3793
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3794
|
+
eyre: "eyre";
|
|
3795
|
+
}>;
|
|
3796
|
+
rustCaching: z.ZodEnum<{
|
|
3797
|
+
none: "none";
|
|
3798
|
+
redis: "redis";
|
|
3799
|
+
moka: "moka";
|
|
3800
|
+
}>;
|
|
3575
3801
|
pythonWebFramework: z.ZodEnum<{
|
|
3576
3802
|
none: "none";
|
|
3577
3803
|
fastapi: "fastapi";
|
|
3578
3804
|
django: "django";
|
|
3579
3805
|
flask: "flask";
|
|
3806
|
+
litestar: "litestar";
|
|
3580
3807
|
}>;
|
|
3581
3808
|
pythonOrm: z.ZodEnum<{
|
|
3582
3809
|
none: "none";
|
|
@@ -3596,10 +3823,19 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3596
3823
|
"anthropic-sdk": "anthropic-sdk";
|
|
3597
3824
|
crewai: "crewai";
|
|
3598
3825
|
}>>;
|
|
3826
|
+
pythonAuth: z.ZodEnum<{
|
|
3827
|
+
none: "none";
|
|
3828
|
+
authlib: "authlib";
|
|
3829
|
+
jwt: "jwt";
|
|
3830
|
+
}>;
|
|
3599
3831
|
pythonTaskQueue: z.ZodEnum<{
|
|
3600
3832
|
none: "none";
|
|
3601
3833
|
celery: "celery";
|
|
3602
3834
|
}>;
|
|
3835
|
+
pythonGraphql: z.ZodEnum<{
|
|
3836
|
+
none: "none";
|
|
3837
|
+
strawberry: "strawberry";
|
|
3838
|
+
}>;
|
|
3603
3839
|
pythonQuality: z.ZodEnum<{
|
|
3604
3840
|
none: "none";
|
|
3605
3841
|
ruff: "ruff";
|
|
@@ -3609,11 +3845,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3609
3845
|
gin: "gin";
|
|
3610
3846
|
echo: "echo";
|
|
3611
3847
|
fiber: "fiber";
|
|
3848
|
+
chi: "chi";
|
|
3612
3849
|
}>;
|
|
3613
3850
|
goOrm: z.ZodEnum<{
|
|
3614
3851
|
none: "none";
|
|
3615
3852
|
gorm: "gorm";
|
|
3616
3853
|
sqlc: "sqlc";
|
|
3854
|
+
ent: "ent";
|
|
3617
3855
|
}>;
|
|
3618
3856
|
goApi: z.ZodEnum<{
|
|
3619
3857
|
none: "none";
|
|
@@ -3627,6 +3865,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3627
3865
|
goLogging: z.ZodEnum<{
|
|
3628
3866
|
none: "none";
|
|
3629
3867
|
zap: "zap";
|
|
3868
|
+
zerolog: "zerolog";
|
|
3869
|
+
slog: "slog";
|
|
3630
3870
|
}>;
|
|
3631
3871
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3632
3872
|
none: "none";
|
|
@@ -3652,11 +3892,11 @@ declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase"
|
|
|
3652
3892
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
3653
3893
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
3654
3894
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
3655
|
-
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
|
|
3895
|
+
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga")[];
|
|
3656
3896
|
declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
|
|
3657
3897
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
3658
|
-
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
3659
|
-
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
3898
|
+
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
3899
|
+
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
3660
3900
|
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
3661
3901
|
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
3662
3902
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
@@ -3679,27 +3919,32 @@ declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog")[];
|
|
|
3679
3919
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
3680
3920
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms")[];
|
|
3681
3921
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
3922
|
+
declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
|
|
3682
3923
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
|
|
3683
3924
|
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
|
|
3684
3925
|
declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go")[];
|
|
3685
|
-
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web")[];
|
|
3926
|
+
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
3686
3927
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
3687
|
-
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx")[];
|
|
3928
|
+
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
|
|
3688
3929
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
|
|
3689
3930
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
3690
3931
|
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
3691
3932
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
3692
|
-
declare const
|
|
3933
|
+
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
3934
|
+
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
3935
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar")[];
|
|
3693
3936
|
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel")[];
|
|
3694
3937
|
declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
|
|
3695
3938
|
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
3939
|
+
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt")[];
|
|
3696
3940
|
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery")[];
|
|
3941
|
+
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry")[];
|
|
3697
3942
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff")[];
|
|
3698
|
-
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber")[];
|
|
3699
|
-
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc")[];
|
|
3943
|
+
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
3944
|
+
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
|
|
3700
3945
|
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
3701
3946
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
|
|
3702
|
-
declare const GO_LOGGING_VALUES: ("none" | "zap")[];
|
|
3947
|
+
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog")[];
|
|
3703
3948
|
declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
3704
3949
|
declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
|
|
3705
3950
|
declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira")[];
|
|
@@ -3709,5 +3954,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
3709
3954
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
3710
3955
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
3711
3956
|
//#endregion
|
|
3712
|
-
export { FrontendSchema as $,
|
|
3713
|
-
//# sourceMappingURL=schemas-
|
|
3957
|
+
export { FrontendSchema as $, RUST_WEB_FRAMEWORK_VALUES as $t, DATABASE_SETUP_VALUES as A, StateManagementSchema as An, PYTHON_WEB_FRAMEWORK_VALUES as At, EcosystemSchema as B, VersionChannelSchema as Bn, PythonTaskQueueSchema as Bt, CLIInputSchema as C, ShadcnBaseColorSchema as Cn, PYTHON_AI_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, ShadcnIconLibrarySchema as Dn, PYTHON_QUALITY_VALUES as Dt, CSSFrameworkSchema as E, ShadcnFontSchema as En, PYTHON_ORM_VALUES as Et, DirectoryConflictSchema as F, UILibrarySchema as Fn, PythonAiSchema as Ft, FILE_STORAGE_VALUES as G, RUST_API_VALUES as Gt, EmailSchema as H, WebDeploySchema as Hn, PythonWebFrameworkSchema as Ht, ECOSYSTEM_VALUES as I, UI_LIBRARY_VALUES as In, PythonAuthSchema as It, FRONTEND_VALUES as J, RUST_ERROR_HANDLING_VALUES as Jt, FILE_UPLOAD_VALUES as K, RUST_CACHING_VALUES as Kt, EFFECT_VALUES as L, VALIDATION_VALUES as Ln, PythonGraphqlSchema as Lt, DIRECTORY_CONFLICT_VALUES as M, TESTING_VALUES as Mn, PaymentsSchema as Mt, DatabaseSchema as N, TemplateSchema as Nn, ProjectConfigSchema as Nt, CachingSchema as O, ShadcnRadiusSchema as On, PYTHON_TASK_QUEUE_VALUES as Ot, DatabaseSetupSchema as P, TestingSchema as Pn, ProjectNameSchema as Pt, FormsSchema as Q, RUST_ORM_VALUES as Qt, EMAIL_VALUES as R, VERSION_CHANNEL_VALUES as Rn, PythonOrmSchema as Rt, CACHING_VALUES as S, ServerDeploySchema as Sn, PAYMENTS_VALUES as St, CMS_VALUES as T, ShadcnColorThemeSchema as Tn, PYTHON_GRAPHQL_VALUES as Tt, ExamplesSchema as U, REALTIME_VALUES as Ut, EffectSchema as V, WEB_DEPLOY_VALUES as Vn, PythonValidationSchema as Vt, FEATURE_FLAGS_VALUES as W, RUNTIME_VALUES as Wt, FileStorageSchema as X, RUST_LIBRARIES_VALUES as Xt, FeatureFlagsSchema as Y, RUST_FRONTEND_VALUES as Yt, FileUploadSchema as Z, RUST_LOGGING_VALUES as Zt, AuthSchema as _, SHADCN_ICON_LIBRARY_VALUES as _n, OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, RustErrorHandlingSchema as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, STATE_MANAGEMENT_VALUES as bn, ObservabilitySchema as bt, API_VALUES as c, RustLoggingSchema as cn, GoOrmSchema as ct, AddInputSchema as d, SEARCH_VALUES as dn, I18nSchema as dt, RealtimeSchema as en, GO_API_VALUES as et, AddonsSchema as f, SERVER_DEPLOY_VALUES as fn, InitResultSchema as ft, AstroIntegrationSchema as g, SHADCN_FONT_VALUES as gn, LoggingSchema as gt, AnimationSchema as h, SHADCN_COLOR_THEME_VALUES as hn, LOGGING_VALUES as ht, AI_VALUES as i, RustCliSchema as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, TEMPLATE_VALUES as jn, PackageManagerSchema as jt, CreateInputSchema as k, ShadcnStyleSchema as kn, PYTHON_VALIDATION_VALUES as kt, ASTRO_INTEGRATION_VALUES as l, RustOrmSchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, SHADCN_BASE_VALUES as mn, JobQueueSchema as mt, AISchema as n, RustApiSchema as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, RustFrontendSchema as on, GoCliSchema as ot, AiDocsSchema as p, SHADCN_BASE_COLOR_VALUES as pn, JOB_QUEUE_VALUES as pt, FORMS_VALUES as q, RUST_CLI_VALUES as qt, AI_DOCS_VALUES as r, RustCachingSchema as rn, GO_ORM_VALUES as rt, APISchema as s, RustLibrariesSchema as sn, GoLoggingSchema as st, ADDONS_VALUES as t, RuntimeSchema as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, RustWebFrameworkSchema as un, I18N_VALUES as ut, BACKEND_VALUES as v, SHADCN_RADIUS_VALUES as vn, ORMSchema as vt, CMSSchema as w, ShadcnBaseSchema as wn, PYTHON_AUTH_VALUES as wt, BetterTStackConfigSchema as x, SearchSchema as xn, PACKAGE_MANAGER_VALUES as xt, BackendSchema as y, SHADCN_STYLE_VALUES as yn, ORM_VALUES as yt, EXAMPLES_VALUES as z, ValidationSchema as zn, PythonQualitySchema as zt };
|
|
3958
|
+
//# sourceMappingURL=schemas-D7GE2nDP.d.mts.map
|