@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
package/dist/json-schema.d.mts
CHANGED
|
@@ -115,6 +115,7 @@ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
|
|
|
115
115
|
orpc: "orpc";
|
|
116
116
|
"ts-rest": "ts-rest";
|
|
117
117
|
garph: "garph";
|
|
118
|
+
"graphql-yoga": "graphql-yoga";
|
|
118
119
|
}>>;
|
|
119
120
|
declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
120
121
|
none: "none";
|
|
@@ -141,6 +142,7 @@ declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z
|
|
|
141
142
|
fly: "fly";
|
|
142
143
|
railway: "railway";
|
|
143
144
|
sst: "sst";
|
|
145
|
+
vercel: "vercel";
|
|
144
146
|
}>>;
|
|
145
147
|
declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
146
148
|
none: "none";
|
|
@@ -149,6 +151,7 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
149
151
|
fly: "fly";
|
|
150
152
|
railway: "railway";
|
|
151
153
|
sst: "sst";
|
|
154
|
+
vercel: "vercel";
|
|
152
155
|
}>>;
|
|
153
156
|
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
154
157
|
merge: "merge";
|
|
@@ -321,6 +324,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
321
324
|
orpc: "orpc";
|
|
322
325
|
"ts-rest": "ts-rest";
|
|
323
326
|
garph: "garph";
|
|
327
|
+
"graphql-yoga": "graphql-yoga";
|
|
324
328
|
}>>;
|
|
325
329
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
326
330
|
none: "none";
|
|
@@ -329,6 +333,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
329
333
|
fly: "fly";
|
|
330
334
|
railway: "railway";
|
|
331
335
|
sst: "sst";
|
|
336
|
+
vercel: "vercel";
|
|
332
337
|
}>>;
|
|
333
338
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
334
339
|
none: "none";
|
|
@@ -337,6 +342,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
337
342
|
fly: "fly";
|
|
338
343
|
railway: "railway";
|
|
339
344
|
sst: "sst";
|
|
345
|
+
vercel: "vercel";
|
|
340
346
|
}>>;
|
|
341
347
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
342
348
|
merge: "merge";
|
|
@@ -573,6 +579,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
573
579
|
none: "none";
|
|
574
580
|
"upstash-redis": "upstash-redis";
|
|
575
581
|
}>>;
|
|
582
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
583
|
+
none: "none";
|
|
584
|
+
i18next: "i18next";
|
|
585
|
+
"next-intl": "next-intl";
|
|
586
|
+
}>>;
|
|
576
587
|
search: z.ZodOptional<z.ZodEnum<{
|
|
577
588
|
none: "none";
|
|
578
589
|
meilisearch: "meilisearch";
|
|
@@ -589,6 +600,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
589
600
|
none: "none";
|
|
590
601
|
axum: "axum";
|
|
591
602
|
"actix-web": "actix-web";
|
|
603
|
+
rocket: "rocket";
|
|
592
604
|
}>>;
|
|
593
605
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
594
606
|
none: "none";
|
|
@@ -599,6 +611,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
599
611
|
none: "none";
|
|
600
612
|
"sea-orm": "sea-orm";
|
|
601
613
|
sqlx: "sqlx";
|
|
614
|
+
diesel: "diesel";
|
|
602
615
|
}>>;
|
|
603
616
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
604
617
|
none: "none";
|
|
@@ -624,11 +637,22 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
624
637
|
tracing: "tracing";
|
|
625
638
|
"env-logger": "env-logger";
|
|
626
639
|
}>>;
|
|
640
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
641
|
+
none: "none";
|
|
642
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
643
|
+
eyre: "eyre";
|
|
644
|
+
}>>;
|
|
645
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
646
|
+
none: "none";
|
|
647
|
+
redis: "redis";
|
|
648
|
+
moka: "moka";
|
|
649
|
+
}>>;
|
|
627
650
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
628
651
|
none: "none";
|
|
629
652
|
fastapi: "fastapi";
|
|
630
653
|
django: "django";
|
|
631
654
|
flask: "flask";
|
|
655
|
+
litestar: "litestar";
|
|
632
656
|
}>>;
|
|
633
657
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
634
658
|
none: "none";
|
|
@@ -648,10 +672,19 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
648
672
|
"anthropic-sdk": "anthropic-sdk";
|
|
649
673
|
crewai: "crewai";
|
|
650
674
|
}>>>;
|
|
675
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
676
|
+
none: "none";
|
|
677
|
+
authlib: "authlib";
|
|
678
|
+
jwt: "jwt";
|
|
679
|
+
}>>;
|
|
651
680
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
652
681
|
none: "none";
|
|
653
682
|
celery: "celery";
|
|
654
683
|
}>>;
|
|
684
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
685
|
+
none: "none";
|
|
686
|
+
strawberry: "strawberry";
|
|
687
|
+
}>>;
|
|
655
688
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
656
689
|
none: "none";
|
|
657
690
|
ruff: "ruff";
|
|
@@ -661,11 +694,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
661
694
|
gin: "gin";
|
|
662
695
|
echo: "echo";
|
|
663
696
|
fiber: "fiber";
|
|
697
|
+
chi: "chi";
|
|
664
698
|
}>>;
|
|
665
699
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
666
700
|
none: "none";
|
|
667
701
|
gorm: "gorm";
|
|
668
702
|
sqlc: "sqlc";
|
|
703
|
+
ent: "ent";
|
|
669
704
|
}>>;
|
|
670
705
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
671
706
|
none: "none";
|
|
@@ -679,6 +714,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
679
714
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
680
715
|
none: "none";
|
|
681
716
|
zap: "zap";
|
|
717
|
+
zerolog: "zerolog";
|
|
718
|
+
slog: "slog";
|
|
682
719
|
}>>;
|
|
683
720
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
684
721
|
none: "none";
|
|
@@ -836,6 +873,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
836
873
|
orpc: "orpc";
|
|
837
874
|
"ts-rest": "ts-rest";
|
|
838
875
|
garph: "garph";
|
|
876
|
+
"graphql-yoga": "graphql-yoga";
|
|
839
877
|
}>;
|
|
840
878
|
webDeploy: z.ZodEnum<{
|
|
841
879
|
none: "none";
|
|
@@ -844,6 +882,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
844
882
|
fly: "fly";
|
|
845
883
|
railway: "railway";
|
|
846
884
|
sst: "sst";
|
|
885
|
+
vercel: "vercel";
|
|
847
886
|
}>;
|
|
848
887
|
serverDeploy: z.ZodEnum<{
|
|
849
888
|
none: "none";
|
|
@@ -852,6 +891,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
852
891
|
fly: "fly";
|
|
853
892
|
railway: "railway";
|
|
854
893
|
sst: "sst";
|
|
894
|
+
vercel: "vercel";
|
|
855
895
|
}>;
|
|
856
896
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
857
897
|
none: "none";
|
|
@@ -1079,6 +1119,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1079
1119
|
none: "none";
|
|
1080
1120
|
"upstash-redis": "upstash-redis";
|
|
1081
1121
|
}>;
|
|
1122
|
+
i18n: z.ZodEnum<{
|
|
1123
|
+
none: "none";
|
|
1124
|
+
i18next: "i18next";
|
|
1125
|
+
"next-intl": "next-intl";
|
|
1126
|
+
}>;
|
|
1082
1127
|
search: z.ZodEnum<{
|
|
1083
1128
|
none: "none";
|
|
1084
1129
|
meilisearch: "meilisearch";
|
|
@@ -1095,6 +1140,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1095
1140
|
none: "none";
|
|
1096
1141
|
axum: "axum";
|
|
1097
1142
|
"actix-web": "actix-web";
|
|
1143
|
+
rocket: "rocket";
|
|
1098
1144
|
}>;
|
|
1099
1145
|
rustFrontend: z.ZodEnum<{
|
|
1100
1146
|
none: "none";
|
|
@@ -1105,6 +1151,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1105
1151
|
none: "none";
|
|
1106
1152
|
"sea-orm": "sea-orm";
|
|
1107
1153
|
sqlx: "sqlx";
|
|
1154
|
+
diesel: "diesel";
|
|
1108
1155
|
}>;
|
|
1109
1156
|
rustApi: z.ZodEnum<{
|
|
1110
1157
|
none: "none";
|
|
@@ -1130,11 +1177,22 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1130
1177
|
tracing: "tracing";
|
|
1131
1178
|
"env-logger": "env-logger";
|
|
1132
1179
|
}>;
|
|
1180
|
+
rustErrorHandling: z.ZodEnum<{
|
|
1181
|
+
none: "none";
|
|
1182
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1183
|
+
eyre: "eyre";
|
|
1184
|
+
}>;
|
|
1185
|
+
rustCaching: z.ZodEnum<{
|
|
1186
|
+
none: "none";
|
|
1187
|
+
redis: "redis";
|
|
1188
|
+
moka: "moka";
|
|
1189
|
+
}>;
|
|
1133
1190
|
pythonWebFramework: z.ZodEnum<{
|
|
1134
1191
|
none: "none";
|
|
1135
1192
|
fastapi: "fastapi";
|
|
1136
1193
|
django: "django";
|
|
1137
1194
|
flask: "flask";
|
|
1195
|
+
litestar: "litestar";
|
|
1138
1196
|
}>;
|
|
1139
1197
|
pythonOrm: z.ZodEnum<{
|
|
1140
1198
|
none: "none";
|
|
@@ -1154,10 +1212,19 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1154
1212
|
"anthropic-sdk": "anthropic-sdk";
|
|
1155
1213
|
crewai: "crewai";
|
|
1156
1214
|
}>>;
|
|
1215
|
+
pythonAuth: z.ZodEnum<{
|
|
1216
|
+
none: "none";
|
|
1217
|
+
authlib: "authlib";
|
|
1218
|
+
jwt: "jwt";
|
|
1219
|
+
}>;
|
|
1157
1220
|
pythonTaskQueue: z.ZodEnum<{
|
|
1158
1221
|
none: "none";
|
|
1159
1222
|
celery: "celery";
|
|
1160
1223
|
}>;
|
|
1224
|
+
pythonGraphql: z.ZodEnum<{
|
|
1225
|
+
none: "none";
|
|
1226
|
+
strawberry: "strawberry";
|
|
1227
|
+
}>;
|
|
1161
1228
|
pythonQuality: z.ZodEnum<{
|
|
1162
1229
|
none: "none";
|
|
1163
1230
|
ruff: "ruff";
|
|
@@ -1167,11 +1234,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1167
1234
|
gin: "gin";
|
|
1168
1235
|
echo: "echo";
|
|
1169
1236
|
fiber: "fiber";
|
|
1237
|
+
chi: "chi";
|
|
1170
1238
|
}>;
|
|
1171
1239
|
goOrm: z.ZodEnum<{
|
|
1172
1240
|
none: "none";
|
|
1173
1241
|
gorm: "gorm";
|
|
1174
1242
|
sqlc: "sqlc";
|
|
1243
|
+
ent: "ent";
|
|
1175
1244
|
}>;
|
|
1176
1245
|
goApi: z.ZodEnum<{
|
|
1177
1246
|
none: "none";
|
|
@@ -1185,6 +1254,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1185
1254
|
goLogging: z.ZodEnum<{
|
|
1186
1255
|
none: "none";
|
|
1187
1256
|
zap: "zap";
|
|
1257
|
+
zerolog: "zerolog";
|
|
1258
|
+
slog: "slog";
|
|
1188
1259
|
}>;
|
|
1189
1260
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1190
1261
|
none: "none";
|
|
@@ -1339,6 +1410,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1339
1410
|
orpc: "orpc";
|
|
1340
1411
|
"ts-rest": "ts-rest";
|
|
1341
1412
|
garph: "garph";
|
|
1413
|
+
"graphql-yoga": "graphql-yoga";
|
|
1342
1414
|
}>;
|
|
1343
1415
|
webDeploy: z.ZodEnum<{
|
|
1344
1416
|
none: "none";
|
|
@@ -1347,6 +1419,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1347
1419
|
fly: "fly";
|
|
1348
1420
|
railway: "railway";
|
|
1349
1421
|
sst: "sst";
|
|
1422
|
+
vercel: "vercel";
|
|
1350
1423
|
}>;
|
|
1351
1424
|
serverDeploy: z.ZodEnum<{
|
|
1352
1425
|
none: "none";
|
|
@@ -1355,6 +1428,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1355
1428
|
fly: "fly";
|
|
1356
1429
|
railway: "railway";
|
|
1357
1430
|
sst: "sst";
|
|
1431
|
+
vercel: "vercel";
|
|
1358
1432
|
}>;
|
|
1359
1433
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1360
1434
|
none: "none";
|
|
@@ -1582,6 +1656,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1582
1656
|
none: "none";
|
|
1583
1657
|
"upstash-redis": "upstash-redis";
|
|
1584
1658
|
}>;
|
|
1659
|
+
i18n: z.ZodEnum<{
|
|
1660
|
+
none: "none";
|
|
1661
|
+
i18next: "i18next";
|
|
1662
|
+
"next-intl": "next-intl";
|
|
1663
|
+
}>;
|
|
1585
1664
|
search: z.ZodEnum<{
|
|
1586
1665
|
none: "none";
|
|
1587
1666
|
meilisearch: "meilisearch";
|
|
@@ -1598,6 +1677,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1598
1677
|
none: "none";
|
|
1599
1678
|
axum: "axum";
|
|
1600
1679
|
"actix-web": "actix-web";
|
|
1680
|
+
rocket: "rocket";
|
|
1601
1681
|
}>;
|
|
1602
1682
|
rustFrontend: z.ZodEnum<{
|
|
1603
1683
|
none: "none";
|
|
@@ -1608,6 +1688,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1608
1688
|
none: "none";
|
|
1609
1689
|
"sea-orm": "sea-orm";
|
|
1610
1690
|
sqlx: "sqlx";
|
|
1691
|
+
diesel: "diesel";
|
|
1611
1692
|
}>;
|
|
1612
1693
|
rustApi: z.ZodEnum<{
|
|
1613
1694
|
none: "none";
|
|
@@ -1633,11 +1714,22 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1633
1714
|
tracing: "tracing";
|
|
1634
1715
|
"env-logger": "env-logger";
|
|
1635
1716
|
}>;
|
|
1717
|
+
rustErrorHandling: z.ZodEnum<{
|
|
1718
|
+
none: "none";
|
|
1719
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1720
|
+
eyre: "eyre";
|
|
1721
|
+
}>;
|
|
1722
|
+
rustCaching: z.ZodEnum<{
|
|
1723
|
+
none: "none";
|
|
1724
|
+
redis: "redis";
|
|
1725
|
+
moka: "moka";
|
|
1726
|
+
}>;
|
|
1636
1727
|
pythonWebFramework: z.ZodEnum<{
|
|
1637
1728
|
none: "none";
|
|
1638
1729
|
fastapi: "fastapi";
|
|
1639
1730
|
django: "django";
|
|
1640
1731
|
flask: "flask";
|
|
1732
|
+
litestar: "litestar";
|
|
1641
1733
|
}>;
|
|
1642
1734
|
pythonOrm: z.ZodEnum<{
|
|
1643
1735
|
none: "none";
|
|
@@ -1657,10 +1749,19 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1657
1749
|
"anthropic-sdk": "anthropic-sdk";
|
|
1658
1750
|
crewai: "crewai";
|
|
1659
1751
|
}>>;
|
|
1752
|
+
pythonAuth: z.ZodEnum<{
|
|
1753
|
+
none: "none";
|
|
1754
|
+
authlib: "authlib";
|
|
1755
|
+
jwt: "jwt";
|
|
1756
|
+
}>;
|
|
1660
1757
|
pythonTaskQueue: z.ZodEnum<{
|
|
1661
1758
|
none: "none";
|
|
1662
1759
|
celery: "celery";
|
|
1663
1760
|
}>;
|
|
1761
|
+
pythonGraphql: z.ZodEnum<{
|
|
1762
|
+
none: "none";
|
|
1763
|
+
strawberry: "strawberry";
|
|
1764
|
+
}>;
|
|
1664
1765
|
pythonQuality: z.ZodEnum<{
|
|
1665
1766
|
none: "none";
|
|
1666
1767
|
ruff: "ruff";
|
|
@@ -1670,11 +1771,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1670
1771
|
gin: "gin";
|
|
1671
1772
|
echo: "echo";
|
|
1672
1773
|
fiber: "fiber";
|
|
1774
|
+
chi: "chi";
|
|
1673
1775
|
}>;
|
|
1674
1776
|
goOrm: z.ZodEnum<{
|
|
1675
1777
|
none: "none";
|
|
1676
1778
|
gorm: "gorm";
|
|
1677
1779
|
sqlc: "sqlc";
|
|
1780
|
+
ent: "ent";
|
|
1678
1781
|
}>;
|
|
1679
1782
|
goApi: z.ZodEnum<{
|
|
1680
1783
|
none: "none";
|
|
@@ -1688,6 +1791,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1688
1791
|
goLogging: z.ZodEnum<{
|
|
1689
1792
|
none: "none";
|
|
1690
1793
|
zap: "zap";
|
|
1794
|
+
zerolog: "zerolog";
|
|
1795
|
+
slog: "slog";
|
|
1691
1796
|
}>;
|
|
1692
1797
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1693
1798
|
none: "none";
|
|
@@ -1847,6 +1952,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1847
1952
|
orpc: "orpc";
|
|
1848
1953
|
"ts-rest": "ts-rest";
|
|
1849
1954
|
garph: "garph";
|
|
1955
|
+
"graphql-yoga": "graphql-yoga";
|
|
1850
1956
|
}>;
|
|
1851
1957
|
webDeploy: z.ZodEnum<{
|
|
1852
1958
|
none: "none";
|
|
@@ -1855,6 +1961,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1855
1961
|
fly: "fly";
|
|
1856
1962
|
railway: "railway";
|
|
1857
1963
|
sst: "sst";
|
|
1964
|
+
vercel: "vercel";
|
|
1858
1965
|
}>;
|
|
1859
1966
|
serverDeploy: z.ZodEnum<{
|
|
1860
1967
|
none: "none";
|
|
@@ -1863,6 +1970,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1863
1970
|
fly: "fly";
|
|
1864
1971
|
railway: "railway";
|
|
1865
1972
|
sst: "sst";
|
|
1973
|
+
vercel: "vercel";
|
|
1866
1974
|
}>;
|
|
1867
1975
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1868
1976
|
none: "none";
|
|
@@ -2090,6 +2198,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2090
2198
|
none: "none";
|
|
2091
2199
|
"upstash-redis": "upstash-redis";
|
|
2092
2200
|
}>;
|
|
2201
|
+
i18n: z.ZodEnum<{
|
|
2202
|
+
none: "none";
|
|
2203
|
+
i18next: "i18next";
|
|
2204
|
+
"next-intl": "next-intl";
|
|
2205
|
+
}>;
|
|
2093
2206
|
search: z.ZodEnum<{
|
|
2094
2207
|
none: "none";
|
|
2095
2208
|
meilisearch: "meilisearch";
|
|
@@ -2106,6 +2219,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2106
2219
|
none: "none";
|
|
2107
2220
|
axum: "axum";
|
|
2108
2221
|
"actix-web": "actix-web";
|
|
2222
|
+
rocket: "rocket";
|
|
2109
2223
|
}>;
|
|
2110
2224
|
rustFrontend: z.ZodEnum<{
|
|
2111
2225
|
none: "none";
|
|
@@ -2116,6 +2230,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2116
2230
|
none: "none";
|
|
2117
2231
|
"sea-orm": "sea-orm";
|
|
2118
2232
|
sqlx: "sqlx";
|
|
2233
|
+
diesel: "diesel";
|
|
2119
2234
|
}>;
|
|
2120
2235
|
rustApi: z.ZodEnum<{
|
|
2121
2236
|
none: "none";
|
|
@@ -2141,11 +2256,22 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2141
2256
|
tracing: "tracing";
|
|
2142
2257
|
"env-logger": "env-logger";
|
|
2143
2258
|
}>;
|
|
2259
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2260
|
+
none: "none";
|
|
2261
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2262
|
+
eyre: "eyre";
|
|
2263
|
+
}>;
|
|
2264
|
+
rustCaching: z.ZodEnum<{
|
|
2265
|
+
none: "none";
|
|
2266
|
+
redis: "redis";
|
|
2267
|
+
moka: "moka";
|
|
2268
|
+
}>;
|
|
2144
2269
|
pythonWebFramework: z.ZodEnum<{
|
|
2145
2270
|
none: "none";
|
|
2146
2271
|
fastapi: "fastapi";
|
|
2147
2272
|
django: "django";
|
|
2148
2273
|
flask: "flask";
|
|
2274
|
+
litestar: "litestar";
|
|
2149
2275
|
}>;
|
|
2150
2276
|
pythonOrm: z.ZodEnum<{
|
|
2151
2277
|
none: "none";
|
|
@@ -2165,10 +2291,19 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2165
2291
|
"anthropic-sdk": "anthropic-sdk";
|
|
2166
2292
|
crewai: "crewai";
|
|
2167
2293
|
}>>;
|
|
2294
|
+
pythonAuth: z.ZodEnum<{
|
|
2295
|
+
none: "none";
|
|
2296
|
+
authlib: "authlib";
|
|
2297
|
+
jwt: "jwt";
|
|
2298
|
+
}>;
|
|
2168
2299
|
pythonTaskQueue: z.ZodEnum<{
|
|
2169
2300
|
none: "none";
|
|
2170
2301
|
celery: "celery";
|
|
2171
2302
|
}>;
|
|
2303
|
+
pythonGraphql: z.ZodEnum<{
|
|
2304
|
+
none: "none";
|
|
2305
|
+
strawberry: "strawberry";
|
|
2306
|
+
}>;
|
|
2172
2307
|
pythonQuality: z.ZodEnum<{
|
|
2173
2308
|
none: "none";
|
|
2174
2309
|
ruff: "ruff";
|
|
@@ -2178,11 +2313,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2178
2313
|
gin: "gin";
|
|
2179
2314
|
echo: "echo";
|
|
2180
2315
|
fiber: "fiber";
|
|
2316
|
+
chi: "chi";
|
|
2181
2317
|
}>;
|
|
2182
2318
|
goOrm: z.ZodEnum<{
|
|
2183
2319
|
none: "none";
|
|
2184
2320
|
gorm: "gorm";
|
|
2185
2321
|
sqlc: "sqlc";
|
|
2322
|
+
ent: "ent";
|
|
2186
2323
|
}>;
|
|
2187
2324
|
goApi: z.ZodEnum<{
|
|
2188
2325
|
none: "none";
|
|
@@ -2196,6 +2333,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2196
2333
|
goLogging: z.ZodEnum<{
|
|
2197
2334
|
none: "none";
|
|
2198
2335
|
zap: "zap";
|
|
2336
|
+
zerolog: "zerolog";
|
|
2337
|
+
slog: "slog";
|
|
2199
2338
|
}>;
|
|
2200
2339
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2201
2340
|
none: "none";
|
|
@@ -2326,6 +2465,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2326
2465
|
orpc: "orpc";
|
|
2327
2466
|
"ts-rest": "ts-rest";
|
|
2328
2467
|
garph: "garph";
|
|
2468
|
+
"graphql-yoga": "graphql-yoga";
|
|
2329
2469
|
}>>;
|
|
2330
2470
|
auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2331
2471
|
none: "none";
|
|
@@ -2352,6 +2492,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2352
2492
|
fly: "fly";
|
|
2353
2493
|
railway: "railway";
|
|
2354
2494
|
sst: "sst";
|
|
2495
|
+
vercel: "vercel";
|
|
2355
2496
|
}>>;
|
|
2356
2497
|
serverDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2357
2498
|
none: "none";
|
|
@@ -2360,6 +2501,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2360
2501
|
fly: "fly";
|
|
2361
2502
|
railway: "railway";
|
|
2362
2503
|
sst: "sst";
|
|
2504
|
+
vercel: "vercel";
|
|
2363
2505
|
}>>;
|
|
2364
2506
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2365
2507
|
merge: "merge";
|
|
@@ -2532,6 +2674,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2532
2674
|
orpc: "orpc";
|
|
2533
2675
|
"ts-rest": "ts-rest";
|
|
2534
2676
|
garph: "garph";
|
|
2677
|
+
"graphql-yoga": "graphql-yoga";
|
|
2535
2678
|
}>>;
|
|
2536
2679
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2537
2680
|
none: "none";
|
|
@@ -2540,6 +2683,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2540
2683
|
fly: "fly";
|
|
2541
2684
|
railway: "railway";
|
|
2542
2685
|
sst: "sst";
|
|
2686
|
+
vercel: "vercel";
|
|
2543
2687
|
}>>;
|
|
2544
2688
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2545
2689
|
none: "none";
|
|
@@ -2548,6 +2692,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2548
2692
|
fly: "fly";
|
|
2549
2693
|
railway: "railway";
|
|
2550
2694
|
sst: "sst";
|
|
2695
|
+
vercel: "vercel";
|
|
2551
2696
|
}>>;
|
|
2552
2697
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
2553
2698
|
merge: "merge";
|
|
@@ -2784,6 +2929,11 @@ declare function getAllJsonSchemas(): {
|
|
|
2784
2929
|
none: "none";
|
|
2785
2930
|
"upstash-redis": "upstash-redis";
|
|
2786
2931
|
}>>;
|
|
2932
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2933
|
+
none: "none";
|
|
2934
|
+
i18next: "i18next";
|
|
2935
|
+
"next-intl": "next-intl";
|
|
2936
|
+
}>>;
|
|
2787
2937
|
search: z.ZodOptional<z.ZodEnum<{
|
|
2788
2938
|
none: "none";
|
|
2789
2939
|
meilisearch: "meilisearch";
|
|
@@ -2800,6 +2950,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2800
2950
|
none: "none";
|
|
2801
2951
|
axum: "axum";
|
|
2802
2952
|
"actix-web": "actix-web";
|
|
2953
|
+
rocket: "rocket";
|
|
2803
2954
|
}>>;
|
|
2804
2955
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
2805
2956
|
none: "none";
|
|
@@ -2810,6 +2961,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2810
2961
|
none: "none";
|
|
2811
2962
|
"sea-orm": "sea-orm";
|
|
2812
2963
|
sqlx: "sqlx";
|
|
2964
|
+
diesel: "diesel";
|
|
2813
2965
|
}>>;
|
|
2814
2966
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
2815
2967
|
none: "none";
|
|
@@ -2835,11 +2987,22 @@ declare function getAllJsonSchemas(): {
|
|
|
2835
2987
|
tracing: "tracing";
|
|
2836
2988
|
"env-logger": "env-logger";
|
|
2837
2989
|
}>>;
|
|
2990
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
2991
|
+
none: "none";
|
|
2992
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2993
|
+
eyre: "eyre";
|
|
2994
|
+
}>>;
|
|
2995
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
2996
|
+
none: "none";
|
|
2997
|
+
redis: "redis";
|
|
2998
|
+
moka: "moka";
|
|
2999
|
+
}>>;
|
|
2838
3000
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2839
3001
|
none: "none";
|
|
2840
3002
|
fastapi: "fastapi";
|
|
2841
3003
|
django: "django";
|
|
2842
3004
|
flask: "flask";
|
|
3005
|
+
litestar: "litestar";
|
|
2843
3006
|
}>>;
|
|
2844
3007
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
2845
3008
|
none: "none";
|
|
@@ -2859,10 +3022,19 @@ declare function getAllJsonSchemas(): {
|
|
|
2859
3022
|
"anthropic-sdk": "anthropic-sdk";
|
|
2860
3023
|
crewai: "crewai";
|
|
2861
3024
|
}>>>;
|
|
3025
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
3026
|
+
none: "none";
|
|
3027
|
+
authlib: "authlib";
|
|
3028
|
+
jwt: "jwt";
|
|
3029
|
+
}>>;
|
|
2862
3030
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
2863
3031
|
none: "none";
|
|
2864
3032
|
celery: "celery";
|
|
2865
3033
|
}>>;
|
|
3034
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
3035
|
+
none: "none";
|
|
3036
|
+
strawberry: "strawberry";
|
|
3037
|
+
}>>;
|
|
2866
3038
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
2867
3039
|
none: "none";
|
|
2868
3040
|
ruff: "ruff";
|
|
@@ -2872,11 +3044,13 @@ declare function getAllJsonSchemas(): {
|
|
|
2872
3044
|
gin: "gin";
|
|
2873
3045
|
echo: "echo";
|
|
2874
3046
|
fiber: "fiber";
|
|
3047
|
+
chi: "chi";
|
|
2875
3048
|
}>>;
|
|
2876
3049
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2877
3050
|
none: "none";
|
|
2878
3051
|
gorm: "gorm";
|
|
2879
3052
|
sqlc: "sqlc";
|
|
3053
|
+
ent: "ent";
|
|
2880
3054
|
}>>;
|
|
2881
3055
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
2882
3056
|
none: "none";
|
|
@@ -2890,6 +3064,8 @@ declare function getAllJsonSchemas(): {
|
|
|
2890
3064
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
2891
3065
|
none: "none";
|
|
2892
3066
|
zap: "zap";
|
|
3067
|
+
zerolog: "zerolog";
|
|
3068
|
+
slog: "slog";
|
|
2893
3069
|
}>>;
|
|
2894
3070
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2895
3071
|
none: "none";
|
|
@@ -3047,6 +3223,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3047
3223
|
orpc: "orpc";
|
|
3048
3224
|
"ts-rest": "ts-rest";
|
|
3049
3225
|
garph: "garph";
|
|
3226
|
+
"graphql-yoga": "graphql-yoga";
|
|
3050
3227
|
}>;
|
|
3051
3228
|
webDeploy: z.ZodEnum<{
|
|
3052
3229
|
none: "none";
|
|
@@ -3055,6 +3232,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3055
3232
|
fly: "fly";
|
|
3056
3233
|
railway: "railway";
|
|
3057
3234
|
sst: "sst";
|
|
3235
|
+
vercel: "vercel";
|
|
3058
3236
|
}>;
|
|
3059
3237
|
serverDeploy: z.ZodEnum<{
|
|
3060
3238
|
none: "none";
|
|
@@ -3063,6 +3241,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3063
3241
|
fly: "fly";
|
|
3064
3242
|
railway: "railway";
|
|
3065
3243
|
sst: "sst";
|
|
3244
|
+
vercel: "vercel";
|
|
3066
3245
|
}>;
|
|
3067
3246
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3068
3247
|
none: "none";
|
|
@@ -3290,6 +3469,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3290
3469
|
none: "none";
|
|
3291
3470
|
"upstash-redis": "upstash-redis";
|
|
3292
3471
|
}>;
|
|
3472
|
+
i18n: z.ZodEnum<{
|
|
3473
|
+
none: "none";
|
|
3474
|
+
i18next: "i18next";
|
|
3475
|
+
"next-intl": "next-intl";
|
|
3476
|
+
}>;
|
|
3293
3477
|
search: z.ZodEnum<{
|
|
3294
3478
|
none: "none";
|
|
3295
3479
|
meilisearch: "meilisearch";
|
|
@@ -3306,6 +3490,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3306
3490
|
none: "none";
|
|
3307
3491
|
axum: "axum";
|
|
3308
3492
|
"actix-web": "actix-web";
|
|
3493
|
+
rocket: "rocket";
|
|
3309
3494
|
}>;
|
|
3310
3495
|
rustFrontend: z.ZodEnum<{
|
|
3311
3496
|
none: "none";
|
|
@@ -3316,6 +3501,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3316
3501
|
none: "none";
|
|
3317
3502
|
"sea-orm": "sea-orm";
|
|
3318
3503
|
sqlx: "sqlx";
|
|
3504
|
+
diesel: "diesel";
|
|
3319
3505
|
}>;
|
|
3320
3506
|
rustApi: z.ZodEnum<{
|
|
3321
3507
|
none: "none";
|
|
@@ -3341,11 +3527,22 @@ declare function getAllJsonSchemas(): {
|
|
|
3341
3527
|
tracing: "tracing";
|
|
3342
3528
|
"env-logger": "env-logger";
|
|
3343
3529
|
}>;
|
|
3530
|
+
rustErrorHandling: z.ZodEnum<{
|
|
3531
|
+
none: "none";
|
|
3532
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3533
|
+
eyre: "eyre";
|
|
3534
|
+
}>;
|
|
3535
|
+
rustCaching: z.ZodEnum<{
|
|
3536
|
+
none: "none";
|
|
3537
|
+
redis: "redis";
|
|
3538
|
+
moka: "moka";
|
|
3539
|
+
}>;
|
|
3344
3540
|
pythonWebFramework: z.ZodEnum<{
|
|
3345
3541
|
none: "none";
|
|
3346
3542
|
fastapi: "fastapi";
|
|
3347
3543
|
django: "django";
|
|
3348
3544
|
flask: "flask";
|
|
3545
|
+
litestar: "litestar";
|
|
3349
3546
|
}>;
|
|
3350
3547
|
pythonOrm: z.ZodEnum<{
|
|
3351
3548
|
none: "none";
|
|
@@ -3365,10 +3562,19 @@ declare function getAllJsonSchemas(): {
|
|
|
3365
3562
|
"anthropic-sdk": "anthropic-sdk";
|
|
3366
3563
|
crewai: "crewai";
|
|
3367
3564
|
}>>;
|
|
3565
|
+
pythonAuth: z.ZodEnum<{
|
|
3566
|
+
none: "none";
|
|
3567
|
+
authlib: "authlib";
|
|
3568
|
+
jwt: "jwt";
|
|
3569
|
+
}>;
|
|
3368
3570
|
pythonTaskQueue: z.ZodEnum<{
|
|
3369
3571
|
none: "none";
|
|
3370
3572
|
celery: "celery";
|
|
3371
3573
|
}>;
|
|
3574
|
+
pythonGraphql: z.ZodEnum<{
|
|
3575
|
+
none: "none";
|
|
3576
|
+
strawberry: "strawberry";
|
|
3577
|
+
}>;
|
|
3372
3578
|
pythonQuality: z.ZodEnum<{
|
|
3373
3579
|
none: "none";
|
|
3374
3580
|
ruff: "ruff";
|
|
@@ -3378,11 +3584,13 @@ declare function getAllJsonSchemas(): {
|
|
|
3378
3584
|
gin: "gin";
|
|
3379
3585
|
echo: "echo";
|
|
3380
3586
|
fiber: "fiber";
|
|
3587
|
+
chi: "chi";
|
|
3381
3588
|
}>;
|
|
3382
3589
|
goOrm: z.ZodEnum<{
|
|
3383
3590
|
none: "none";
|
|
3384
3591
|
gorm: "gorm";
|
|
3385
3592
|
sqlc: "sqlc";
|
|
3593
|
+
ent: "ent";
|
|
3386
3594
|
}>;
|
|
3387
3595
|
goApi: z.ZodEnum<{
|
|
3388
3596
|
none: "none";
|
|
@@ -3396,6 +3604,8 @@ declare function getAllJsonSchemas(): {
|
|
|
3396
3604
|
goLogging: z.ZodEnum<{
|
|
3397
3605
|
none: "none";
|
|
3398
3606
|
zap: "zap";
|
|
3607
|
+
zerolog: "zerolog";
|
|
3608
|
+
slog: "slog";
|
|
3399
3609
|
}>;
|
|
3400
3610
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3401
3611
|
none: "none";
|
|
@@ -3550,6 +3760,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3550
3760
|
orpc: "orpc";
|
|
3551
3761
|
"ts-rest": "ts-rest";
|
|
3552
3762
|
garph: "garph";
|
|
3763
|
+
"graphql-yoga": "graphql-yoga";
|
|
3553
3764
|
}>;
|
|
3554
3765
|
webDeploy: z.ZodEnum<{
|
|
3555
3766
|
none: "none";
|
|
@@ -3558,6 +3769,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3558
3769
|
fly: "fly";
|
|
3559
3770
|
railway: "railway";
|
|
3560
3771
|
sst: "sst";
|
|
3772
|
+
vercel: "vercel";
|
|
3561
3773
|
}>;
|
|
3562
3774
|
serverDeploy: z.ZodEnum<{
|
|
3563
3775
|
none: "none";
|
|
@@ -3566,6 +3778,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3566
3778
|
fly: "fly";
|
|
3567
3779
|
railway: "railway";
|
|
3568
3780
|
sst: "sst";
|
|
3781
|
+
vercel: "vercel";
|
|
3569
3782
|
}>;
|
|
3570
3783
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3571
3784
|
none: "none";
|
|
@@ -3793,6 +4006,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3793
4006
|
none: "none";
|
|
3794
4007
|
"upstash-redis": "upstash-redis";
|
|
3795
4008
|
}>;
|
|
4009
|
+
i18n: z.ZodEnum<{
|
|
4010
|
+
none: "none";
|
|
4011
|
+
i18next: "i18next";
|
|
4012
|
+
"next-intl": "next-intl";
|
|
4013
|
+
}>;
|
|
3796
4014
|
search: z.ZodEnum<{
|
|
3797
4015
|
none: "none";
|
|
3798
4016
|
meilisearch: "meilisearch";
|
|
@@ -3809,6 +4027,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3809
4027
|
none: "none";
|
|
3810
4028
|
axum: "axum";
|
|
3811
4029
|
"actix-web": "actix-web";
|
|
4030
|
+
rocket: "rocket";
|
|
3812
4031
|
}>;
|
|
3813
4032
|
rustFrontend: z.ZodEnum<{
|
|
3814
4033
|
none: "none";
|
|
@@ -3819,6 +4038,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3819
4038
|
none: "none";
|
|
3820
4039
|
"sea-orm": "sea-orm";
|
|
3821
4040
|
sqlx: "sqlx";
|
|
4041
|
+
diesel: "diesel";
|
|
3822
4042
|
}>;
|
|
3823
4043
|
rustApi: z.ZodEnum<{
|
|
3824
4044
|
none: "none";
|
|
@@ -3844,11 +4064,22 @@ declare function getAllJsonSchemas(): {
|
|
|
3844
4064
|
tracing: "tracing";
|
|
3845
4065
|
"env-logger": "env-logger";
|
|
3846
4066
|
}>;
|
|
4067
|
+
rustErrorHandling: z.ZodEnum<{
|
|
4068
|
+
none: "none";
|
|
4069
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
4070
|
+
eyre: "eyre";
|
|
4071
|
+
}>;
|
|
4072
|
+
rustCaching: z.ZodEnum<{
|
|
4073
|
+
none: "none";
|
|
4074
|
+
redis: "redis";
|
|
4075
|
+
moka: "moka";
|
|
4076
|
+
}>;
|
|
3847
4077
|
pythonWebFramework: z.ZodEnum<{
|
|
3848
4078
|
none: "none";
|
|
3849
4079
|
fastapi: "fastapi";
|
|
3850
4080
|
django: "django";
|
|
3851
4081
|
flask: "flask";
|
|
4082
|
+
litestar: "litestar";
|
|
3852
4083
|
}>;
|
|
3853
4084
|
pythonOrm: z.ZodEnum<{
|
|
3854
4085
|
none: "none";
|
|
@@ -3868,10 +4099,19 @@ declare function getAllJsonSchemas(): {
|
|
|
3868
4099
|
"anthropic-sdk": "anthropic-sdk";
|
|
3869
4100
|
crewai: "crewai";
|
|
3870
4101
|
}>>;
|
|
4102
|
+
pythonAuth: z.ZodEnum<{
|
|
4103
|
+
none: "none";
|
|
4104
|
+
authlib: "authlib";
|
|
4105
|
+
jwt: "jwt";
|
|
4106
|
+
}>;
|
|
3871
4107
|
pythonTaskQueue: z.ZodEnum<{
|
|
3872
4108
|
none: "none";
|
|
3873
4109
|
celery: "celery";
|
|
3874
4110
|
}>;
|
|
4111
|
+
pythonGraphql: z.ZodEnum<{
|
|
4112
|
+
none: "none";
|
|
4113
|
+
strawberry: "strawberry";
|
|
4114
|
+
}>;
|
|
3875
4115
|
pythonQuality: z.ZodEnum<{
|
|
3876
4116
|
none: "none";
|
|
3877
4117
|
ruff: "ruff";
|
|
@@ -3881,11 +4121,13 @@ declare function getAllJsonSchemas(): {
|
|
|
3881
4121
|
gin: "gin";
|
|
3882
4122
|
echo: "echo";
|
|
3883
4123
|
fiber: "fiber";
|
|
4124
|
+
chi: "chi";
|
|
3884
4125
|
}>;
|
|
3885
4126
|
goOrm: z.ZodEnum<{
|
|
3886
4127
|
none: "none";
|
|
3887
4128
|
gorm: "gorm";
|
|
3888
4129
|
sqlc: "sqlc";
|
|
4130
|
+
ent: "ent";
|
|
3889
4131
|
}>;
|
|
3890
4132
|
goApi: z.ZodEnum<{
|
|
3891
4133
|
none: "none";
|
|
@@ -3899,6 +4141,8 @@ declare function getAllJsonSchemas(): {
|
|
|
3899
4141
|
goLogging: z.ZodEnum<{
|
|
3900
4142
|
none: "none";
|
|
3901
4143
|
zap: "zap";
|
|
4144
|
+
zerolog: "zerolog";
|
|
4145
|
+
slog: "slog";
|
|
3902
4146
|
}>;
|
|
3903
4147
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3904
4148
|
none: "none";
|
|
@@ -4058,6 +4302,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4058
4302
|
orpc: "orpc";
|
|
4059
4303
|
"ts-rest": "ts-rest";
|
|
4060
4304
|
garph: "garph";
|
|
4305
|
+
"graphql-yoga": "graphql-yoga";
|
|
4061
4306
|
}>;
|
|
4062
4307
|
webDeploy: z.ZodEnum<{
|
|
4063
4308
|
none: "none";
|
|
@@ -4066,6 +4311,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4066
4311
|
fly: "fly";
|
|
4067
4312
|
railway: "railway";
|
|
4068
4313
|
sst: "sst";
|
|
4314
|
+
vercel: "vercel";
|
|
4069
4315
|
}>;
|
|
4070
4316
|
serverDeploy: z.ZodEnum<{
|
|
4071
4317
|
none: "none";
|
|
@@ -4074,6 +4320,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4074
4320
|
fly: "fly";
|
|
4075
4321
|
railway: "railway";
|
|
4076
4322
|
sst: "sst";
|
|
4323
|
+
vercel: "vercel";
|
|
4077
4324
|
}>;
|
|
4078
4325
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
4079
4326
|
none: "none";
|
|
@@ -4301,6 +4548,11 @@ declare function getAllJsonSchemas(): {
|
|
|
4301
4548
|
none: "none";
|
|
4302
4549
|
"upstash-redis": "upstash-redis";
|
|
4303
4550
|
}>;
|
|
4551
|
+
i18n: z.ZodEnum<{
|
|
4552
|
+
none: "none";
|
|
4553
|
+
i18next: "i18next";
|
|
4554
|
+
"next-intl": "next-intl";
|
|
4555
|
+
}>;
|
|
4304
4556
|
search: z.ZodEnum<{
|
|
4305
4557
|
none: "none";
|
|
4306
4558
|
meilisearch: "meilisearch";
|
|
@@ -4317,6 +4569,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4317
4569
|
none: "none";
|
|
4318
4570
|
axum: "axum";
|
|
4319
4571
|
"actix-web": "actix-web";
|
|
4572
|
+
rocket: "rocket";
|
|
4320
4573
|
}>;
|
|
4321
4574
|
rustFrontend: z.ZodEnum<{
|
|
4322
4575
|
none: "none";
|
|
@@ -4327,6 +4580,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4327
4580
|
none: "none";
|
|
4328
4581
|
"sea-orm": "sea-orm";
|
|
4329
4582
|
sqlx: "sqlx";
|
|
4583
|
+
diesel: "diesel";
|
|
4330
4584
|
}>;
|
|
4331
4585
|
rustApi: z.ZodEnum<{
|
|
4332
4586
|
none: "none";
|
|
@@ -4352,11 +4606,22 @@ declare function getAllJsonSchemas(): {
|
|
|
4352
4606
|
tracing: "tracing";
|
|
4353
4607
|
"env-logger": "env-logger";
|
|
4354
4608
|
}>;
|
|
4609
|
+
rustErrorHandling: z.ZodEnum<{
|
|
4610
|
+
none: "none";
|
|
4611
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
4612
|
+
eyre: "eyre";
|
|
4613
|
+
}>;
|
|
4614
|
+
rustCaching: z.ZodEnum<{
|
|
4615
|
+
none: "none";
|
|
4616
|
+
redis: "redis";
|
|
4617
|
+
moka: "moka";
|
|
4618
|
+
}>;
|
|
4355
4619
|
pythonWebFramework: z.ZodEnum<{
|
|
4356
4620
|
none: "none";
|
|
4357
4621
|
fastapi: "fastapi";
|
|
4358
4622
|
django: "django";
|
|
4359
4623
|
flask: "flask";
|
|
4624
|
+
litestar: "litestar";
|
|
4360
4625
|
}>;
|
|
4361
4626
|
pythonOrm: z.ZodEnum<{
|
|
4362
4627
|
none: "none";
|
|
@@ -4376,10 +4641,19 @@ declare function getAllJsonSchemas(): {
|
|
|
4376
4641
|
"anthropic-sdk": "anthropic-sdk";
|
|
4377
4642
|
crewai: "crewai";
|
|
4378
4643
|
}>>;
|
|
4644
|
+
pythonAuth: z.ZodEnum<{
|
|
4645
|
+
none: "none";
|
|
4646
|
+
authlib: "authlib";
|
|
4647
|
+
jwt: "jwt";
|
|
4648
|
+
}>;
|
|
4379
4649
|
pythonTaskQueue: z.ZodEnum<{
|
|
4380
4650
|
none: "none";
|
|
4381
4651
|
celery: "celery";
|
|
4382
4652
|
}>;
|
|
4653
|
+
pythonGraphql: z.ZodEnum<{
|
|
4654
|
+
none: "none";
|
|
4655
|
+
strawberry: "strawberry";
|
|
4656
|
+
}>;
|
|
4383
4657
|
pythonQuality: z.ZodEnum<{
|
|
4384
4658
|
none: "none";
|
|
4385
4659
|
ruff: "ruff";
|
|
@@ -4389,11 +4663,13 @@ declare function getAllJsonSchemas(): {
|
|
|
4389
4663
|
gin: "gin";
|
|
4390
4664
|
echo: "echo";
|
|
4391
4665
|
fiber: "fiber";
|
|
4666
|
+
chi: "chi";
|
|
4392
4667
|
}>;
|
|
4393
4668
|
goOrm: z.ZodEnum<{
|
|
4394
4669
|
none: "none";
|
|
4395
4670
|
gorm: "gorm";
|
|
4396
4671
|
sqlc: "sqlc";
|
|
4672
|
+
ent: "ent";
|
|
4397
4673
|
}>;
|
|
4398
4674
|
goApi: z.ZodEnum<{
|
|
4399
4675
|
none: "none";
|
|
@@ -4407,6 +4683,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4407
4683
|
goLogging: z.ZodEnum<{
|
|
4408
4684
|
none: "none";
|
|
4409
4685
|
zap: "zap";
|
|
4686
|
+
zerolog: "zerolog";
|
|
4687
|
+
slog: "slog";
|
|
4410
4688
|
}>;
|
|
4411
4689
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4412
4690
|
none: "none";
|