@better-fullstack/types 1.5.4 → 1.6.1
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-COKMyZ0E.d.mts +8 -0
- package/dist/defaults-COKMyZ0E.d.mts.map +1 -0
- package/dist/defaults-aGwVXJh5.mjs +90 -0
- package/dist/defaults-aGwVXJh5.mjs.map +1 -0
- package/dist/defaults.d.mts +4 -0
- package/dist/defaults.mjs +3 -0
- package/dist/index.d.mts +31 -87
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +251 -24
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +657 -1
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +26 -2
- package/dist/json-schema.mjs.map +1 -1
- package/dist/{schemas-C0f82atI.d.mts → schemas-B_I1Oeyt.d.mts} +546 -13
- package/dist/schemas-B_I1Oeyt.d.mts.map +1 -0
- package/dist/{schemas-PlcPX3a0.mjs → schemas-Bg3JFNO5.mjs} +119 -5
- package/dist/schemas-Bg3JFNO5.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/types-D-yrwQnb.d.mts +95 -0
- package/dist/types-D-yrwQnb.d.mts.map +1 -0
- package/dist/types.d.mts +3 -0
- package/dist/types.mjs +1 -0
- package/package.json +9 -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";
|
|
@@ -181,6 +184,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
181
184
|
rust: "rust";
|
|
182
185
|
python: "python";
|
|
183
186
|
go: "go";
|
|
187
|
+
java: "java";
|
|
184
188
|
}>>;
|
|
185
189
|
database: z.ZodOptional<z.ZodEnum<{
|
|
186
190
|
none: "none";
|
|
@@ -321,6 +325,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
321
325
|
orpc: "orpc";
|
|
322
326
|
"ts-rest": "ts-rest";
|
|
323
327
|
garph: "garph";
|
|
328
|
+
"graphql-yoga": "graphql-yoga";
|
|
324
329
|
}>>;
|
|
325
330
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
326
331
|
none: "none";
|
|
@@ -329,6 +334,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
329
334
|
fly: "fly";
|
|
330
335
|
railway: "railway";
|
|
331
336
|
sst: "sst";
|
|
337
|
+
vercel: "vercel";
|
|
332
338
|
}>>;
|
|
333
339
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
334
340
|
none: "none";
|
|
@@ -337,6 +343,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
337
343
|
fly: "fly";
|
|
338
344
|
railway: "railway";
|
|
339
345
|
sst: "sst";
|
|
346
|
+
vercel: "vercel";
|
|
340
347
|
}>>;
|
|
341
348
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
342
349
|
merge: "merge";
|
|
@@ -573,6 +580,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
573
580
|
none: "none";
|
|
574
581
|
"upstash-redis": "upstash-redis";
|
|
575
582
|
}>>;
|
|
583
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
584
|
+
none: "none";
|
|
585
|
+
i18next: "i18next";
|
|
586
|
+
"next-intl": "next-intl";
|
|
587
|
+
}>>;
|
|
576
588
|
search: z.ZodOptional<z.ZodEnum<{
|
|
577
589
|
none: "none";
|
|
578
590
|
meilisearch: "meilisearch";
|
|
@@ -589,6 +601,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
589
601
|
none: "none";
|
|
590
602
|
axum: "axum";
|
|
591
603
|
"actix-web": "actix-web";
|
|
604
|
+
rocket: "rocket";
|
|
592
605
|
}>>;
|
|
593
606
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
594
607
|
none: "none";
|
|
@@ -599,6 +612,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
599
612
|
none: "none";
|
|
600
613
|
"sea-orm": "sea-orm";
|
|
601
614
|
sqlx: "sqlx";
|
|
615
|
+
diesel: "diesel";
|
|
602
616
|
}>>;
|
|
603
617
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
604
618
|
none: "none";
|
|
@@ -624,16 +638,32 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
624
638
|
tracing: "tracing";
|
|
625
639
|
"env-logger": "env-logger";
|
|
626
640
|
}>>;
|
|
641
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
642
|
+
none: "none";
|
|
643
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
644
|
+
eyre: "eyre";
|
|
645
|
+
}>>;
|
|
646
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
647
|
+
none: "none";
|
|
648
|
+
redis: "redis";
|
|
649
|
+
moka: "moka";
|
|
650
|
+
}>>;
|
|
651
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
652
|
+
none: "none";
|
|
653
|
+
oauth2: "oauth2";
|
|
654
|
+
}>>;
|
|
627
655
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
628
656
|
none: "none";
|
|
629
657
|
fastapi: "fastapi";
|
|
630
658
|
django: "django";
|
|
631
659
|
flask: "flask";
|
|
660
|
+
litestar: "litestar";
|
|
632
661
|
}>>;
|
|
633
662
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
634
663
|
none: "none";
|
|
635
664
|
sqlalchemy: "sqlalchemy";
|
|
636
665
|
sqlmodel: "sqlmodel";
|
|
666
|
+
"tortoise-orm": "tortoise-orm";
|
|
637
667
|
}>>;
|
|
638
668
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
639
669
|
none: "none";
|
|
@@ -648,10 +678,19 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
648
678
|
"anthropic-sdk": "anthropic-sdk";
|
|
649
679
|
crewai: "crewai";
|
|
650
680
|
}>>>;
|
|
681
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
682
|
+
none: "none";
|
|
683
|
+
authlib: "authlib";
|
|
684
|
+
jwt: "jwt";
|
|
685
|
+
}>>;
|
|
651
686
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
652
687
|
none: "none";
|
|
653
688
|
celery: "celery";
|
|
654
689
|
}>>;
|
|
690
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
691
|
+
none: "none";
|
|
692
|
+
strawberry: "strawberry";
|
|
693
|
+
}>>;
|
|
655
694
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
656
695
|
none: "none";
|
|
657
696
|
ruff: "ruff";
|
|
@@ -661,11 +700,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
661
700
|
gin: "gin";
|
|
662
701
|
echo: "echo";
|
|
663
702
|
fiber: "fiber";
|
|
703
|
+
chi: "chi";
|
|
664
704
|
}>>;
|
|
665
705
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
666
706
|
none: "none";
|
|
667
707
|
gorm: "gorm";
|
|
668
708
|
sqlc: "sqlc";
|
|
709
|
+
ent: "ent";
|
|
669
710
|
}>>;
|
|
670
711
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
671
712
|
none: "none";
|
|
@@ -679,7 +720,43 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
679
720
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
680
721
|
none: "none";
|
|
681
722
|
zap: "zap";
|
|
723
|
+
zerolog: "zerolog";
|
|
724
|
+
slog: "slog";
|
|
725
|
+
}>>;
|
|
726
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
727
|
+
none: "none";
|
|
728
|
+
jwt: "jwt";
|
|
729
|
+
casbin: "casbin";
|
|
682
730
|
}>>;
|
|
731
|
+
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
732
|
+
none: "none";
|
|
733
|
+
"spring-boot": "spring-boot";
|
|
734
|
+
}>>;
|
|
735
|
+
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
736
|
+
none: "none";
|
|
737
|
+
maven: "maven";
|
|
738
|
+
gradle: "gradle";
|
|
739
|
+
}>>;
|
|
740
|
+
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
741
|
+
none: "none";
|
|
742
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
743
|
+
}>>;
|
|
744
|
+
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
745
|
+
none: "none";
|
|
746
|
+
"spring-security": "spring-security";
|
|
747
|
+
}>>;
|
|
748
|
+
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
749
|
+
none: "none";
|
|
750
|
+
"spring-actuator": "spring-actuator";
|
|
751
|
+
"spring-validation": "spring-validation";
|
|
752
|
+
flyway: "flyway";
|
|
753
|
+
}>>>;
|
|
754
|
+
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
755
|
+
none: "none";
|
|
756
|
+
junit5: "junit5";
|
|
757
|
+
mockito: "mockito";
|
|
758
|
+
testcontainers: "testcontainers";
|
|
759
|
+
}>>>;
|
|
683
760
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
684
761
|
none: "none";
|
|
685
762
|
"claude-md": "claude-md";
|
|
@@ -696,6 +773,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
696
773
|
rust: "rust";
|
|
697
774
|
python: "python";
|
|
698
775
|
go: "go";
|
|
776
|
+
java: "java";
|
|
699
777
|
}>;
|
|
700
778
|
database: z.ZodEnum<{
|
|
701
779
|
none: "none";
|
|
@@ -836,6 +914,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
836
914
|
orpc: "orpc";
|
|
837
915
|
"ts-rest": "ts-rest";
|
|
838
916
|
garph: "garph";
|
|
917
|
+
"graphql-yoga": "graphql-yoga";
|
|
839
918
|
}>;
|
|
840
919
|
webDeploy: z.ZodEnum<{
|
|
841
920
|
none: "none";
|
|
@@ -844,6 +923,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
844
923
|
fly: "fly";
|
|
845
924
|
railway: "railway";
|
|
846
925
|
sst: "sst";
|
|
926
|
+
vercel: "vercel";
|
|
847
927
|
}>;
|
|
848
928
|
serverDeploy: z.ZodEnum<{
|
|
849
929
|
none: "none";
|
|
@@ -852,6 +932,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
852
932
|
fly: "fly";
|
|
853
933
|
railway: "railway";
|
|
854
934
|
sst: "sst";
|
|
935
|
+
vercel: "vercel";
|
|
855
936
|
}>;
|
|
856
937
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
857
938
|
none: "none";
|
|
@@ -1079,6 +1160,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1079
1160
|
none: "none";
|
|
1080
1161
|
"upstash-redis": "upstash-redis";
|
|
1081
1162
|
}>;
|
|
1163
|
+
i18n: z.ZodEnum<{
|
|
1164
|
+
none: "none";
|
|
1165
|
+
i18next: "i18next";
|
|
1166
|
+
"next-intl": "next-intl";
|
|
1167
|
+
}>;
|
|
1082
1168
|
search: z.ZodEnum<{
|
|
1083
1169
|
none: "none";
|
|
1084
1170
|
meilisearch: "meilisearch";
|
|
@@ -1095,6 +1181,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1095
1181
|
none: "none";
|
|
1096
1182
|
axum: "axum";
|
|
1097
1183
|
"actix-web": "actix-web";
|
|
1184
|
+
rocket: "rocket";
|
|
1098
1185
|
}>;
|
|
1099
1186
|
rustFrontend: z.ZodEnum<{
|
|
1100
1187
|
none: "none";
|
|
@@ -1105,6 +1192,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1105
1192
|
none: "none";
|
|
1106
1193
|
"sea-orm": "sea-orm";
|
|
1107
1194
|
sqlx: "sqlx";
|
|
1195
|
+
diesel: "diesel";
|
|
1108
1196
|
}>;
|
|
1109
1197
|
rustApi: z.ZodEnum<{
|
|
1110
1198
|
none: "none";
|
|
@@ -1130,16 +1218,32 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1130
1218
|
tracing: "tracing";
|
|
1131
1219
|
"env-logger": "env-logger";
|
|
1132
1220
|
}>;
|
|
1221
|
+
rustErrorHandling: z.ZodEnum<{
|
|
1222
|
+
none: "none";
|
|
1223
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1224
|
+
eyre: "eyre";
|
|
1225
|
+
}>;
|
|
1226
|
+
rustCaching: z.ZodEnum<{
|
|
1227
|
+
none: "none";
|
|
1228
|
+
redis: "redis";
|
|
1229
|
+
moka: "moka";
|
|
1230
|
+
}>;
|
|
1231
|
+
rustAuth: z.ZodEnum<{
|
|
1232
|
+
none: "none";
|
|
1233
|
+
oauth2: "oauth2";
|
|
1234
|
+
}>;
|
|
1133
1235
|
pythonWebFramework: z.ZodEnum<{
|
|
1134
1236
|
none: "none";
|
|
1135
1237
|
fastapi: "fastapi";
|
|
1136
1238
|
django: "django";
|
|
1137
1239
|
flask: "flask";
|
|
1240
|
+
litestar: "litestar";
|
|
1138
1241
|
}>;
|
|
1139
1242
|
pythonOrm: z.ZodEnum<{
|
|
1140
1243
|
none: "none";
|
|
1141
1244
|
sqlalchemy: "sqlalchemy";
|
|
1142
1245
|
sqlmodel: "sqlmodel";
|
|
1246
|
+
"tortoise-orm": "tortoise-orm";
|
|
1143
1247
|
}>;
|
|
1144
1248
|
pythonValidation: z.ZodEnum<{
|
|
1145
1249
|
none: "none";
|
|
@@ -1154,10 +1258,19 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1154
1258
|
"anthropic-sdk": "anthropic-sdk";
|
|
1155
1259
|
crewai: "crewai";
|
|
1156
1260
|
}>>;
|
|
1261
|
+
pythonAuth: z.ZodEnum<{
|
|
1262
|
+
none: "none";
|
|
1263
|
+
authlib: "authlib";
|
|
1264
|
+
jwt: "jwt";
|
|
1265
|
+
}>;
|
|
1157
1266
|
pythonTaskQueue: z.ZodEnum<{
|
|
1158
1267
|
none: "none";
|
|
1159
1268
|
celery: "celery";
|
|
1160
1269
|
}>;
|
|
1270
|
+
pythonGraphql: z.ZodEnum<{
|
|
1271
|
+
none: "none";
|
|
1272
|
+
strawberry: "strawberry";
|
|
1273
|
+
}>;
|
|
1161
1274
|
pythonQuality: z.ZodEnum<{
|
|
1162
1275
|
none: "none";
|
|
1163
1276
|
ruff: "ruff";
|
|
@@ -1167,11 +1280,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1167
1280
|
gin: "gin";
|
|
1168
1281
|
echo: "echo";
|
|
1169
1282
|
fiber: "fiber";
|
|
1283
|
+
chi: "chi";
|
|
1170
1284
|
}>;
|
|
1171
1285
|
goOrm: z.ZodEnum<{
|
|
1172
1286
|
none: "none";
|
|
1173
1287
|
gorm: "gorm";
|
|
1174
1288
|
sqlc: "sqlc";
|
|
1289
|
+
ent: "ent";
|
|
1175
1290
|
}>;
|
|
1176
1291
|
goApi: z.ZodEnum<{
|
|
1177
1292
|
none: "none";
|
|
@@ -1185,7 +1300,43 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1185
1300
|
goLogging: z.ZodEnum<{
|
|
1186
1301
|
none: "none";
|
|
1187
1302
|
zap: "zap";
|
|
1303
|
+
zerolog: "zerolog";
|
|
1304
|
+
slog: "slog";
|
|
1305
|
+
}>;
|
|
1306
|
+
goAuth: z.ZodEnum<{
|
|
1307
|
+
none: "none";
|
|
1308
|
+
jwt: "jwt";
|
|
1309
|
+
casbin: "casbin";
|
|
1310
|
+
}>;
|
|
1311
|
+
javaWebFramework: z.ZodEnum<{
|
|
1312
|
+
none: "none";
|
|
1313
|
+
"spring-boot": "spring-boot";
|
|
1314
|
+
}>;
|
|
1315
|
+
javaBuildTool: z.ZodEnum<{
|
|
1316
|
+
none: "none";
|
|
1317
|
+
maven: "maven";
|
|
1318
|
+
gradle: "gradle";
|
|
1319
|
+
}>;
|
|
1320
|
+
javaOrm: z.ZodEnum<{
|
|
1321
|
+
none: "none";
|
|
1322
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
1323
|
+
}>;
|
|
1324
|
+
javaAuth: z.ZodEnum<{
|
|
1325
|
+
none: "none";
|
|
1326
|
+
"spring-security": "spring-security";
|
|
1188
1327
|
}>;
|
|
1328
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
1329
|
+
none: "none";
|
|
1330
|
+
"spring-actuator": "spring-actuator";
|
|
1331
|
+
"spring-validation": "spring-validation";
|
|
1332
|
+
flyway: "flyway";
|
|
1333
|
+
}>>;
|
|
1334
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
1335
|
+
none: "none";
|
|
1336
|
+
junit5: "junit5";
|
|
1337
|
+
mockito: "mockito";
|
|
1338
|
+
testcontainers: "testcontainers";
|
|
1339
|
+
}>>;
|
|
1189
1340
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1190
1341
|
none: "none";
|
|
1191
1342
|
"claude-md": "claude-md";
|
|
@@ -1201,6 +1352,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1201
1352
|
rust: "rust";
|
|
1202
1353
|
python: "python";
|
|
1203
1354
|
go: "go";
|
|
1355
|
+
java: "java";
|
|
1204
1356
|
}>;
|
|
1205
1357
|
database: z.ZodEnum<{
|
|
1206
1358
|
none: "none";
|
|
@@ -1339,6 +1491,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1339
1491
|
orpc: "orpc";
|
|
1340
1492
|
"ts-rest": "ts-rest";
|
|
1341
1493
|
garph: "garph";
|
|
1494
|
+
"graphql-yoga": "graphql-yoga";
|
|
1342
1495
|
}>;
|
|
1343
1496
|
webDeploy: z.ZodEnum<{
|
|
1344
1497
|
none: "none";
|
|
@@ -1347,6 +1500,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1347
1500
|
fly: "fly";
|
|
1348
1501
|
railway: "railway";
|
|
1349
1502
|
sst: "sst";
|
|
1503
|
+
vercel: "vercel";
|
|
1350
1504
|
}>;
|
|
1351
1505
|
serverDeploy: z.ZodEnum<{
|
|
1352
1506
|
none: "none";
|
|
@@ -1355,6 +1509,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1355
1509
|
fly: "fly";
|
|
1356
1510
|
railway: "railway";
|
|
1357
1511
|
sst: "sst";
|
|
1512
|
+
vercel: "vercel";
|
|
1358
1513
|
}>;
|
|
1359
1514
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1360
1515
|
none: "none";
|
|
@@ -1582,6 +1737,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1582
1737
|
none: "none";
|
|
1583
1738
|
"upstash-redis": "upstash-redis";
|
|
1584
1739
|
}>;
|
|
1740
|
+
i18n: z.ZodEnum<{
|
|
1741
|
+
none: "none";
|
|
1742
|
+
i18next: "i18next";
|
|
1743
|
+
"next-intl": "next-intl";
|
|
1744
|
+
}>;
|
|
1585
1745
|
search: z.ZodEnum<{
|
|
1586
1746
|
none: "none";
|
|
1587
1747
|
meilisearch: "meilisearch";
|
|
@@ -1598,6 +1758,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1598
1758
|
none: "none";
|
|
1599
1759
|
axum: "axum";
|
|
1600
1760
|
"actix-web": "actix-web";
|
|
1761
|
+
rocket: "rocket";
|
|
1601
1762
|
}>;
|
|
1602
1763
|
rustFrontend: z.ZodEnum<{
|
|
1603
1764
|
none: "none";
|
|
@@ -1608,6 +1769,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1608
1769
|
none: "none";
|
|
1609
1770
|
"sea-orm": "sea-orm";
|
|
1610
1771
|
sqlx: "sqlx";
|
|
1772
|
+
diesel: "diesel";
|
|
1611
1773
|
}>;
|
|
1612
1774
|
rustApi: z.ZodEnum<{
|
|
1613
1775
|
none: "none";
|
|
@@ -1633,16 +1795,32 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1633
1795
|
tracing: "tracing";
|
|
1634
1796
|
"env-logger": "env-logger";
|
|
1635
1797
|
}>;
|
|
1798
|
+
rustErrorHandling: z.ZodEnum<{
|
|
1799
|
+
none: "none";
|
|
1800
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1801
|
+
eyre: "eyre";
|
|
1802
|
+
}>;
|
|
1803
|
+
rustCaching: z.ZodEnum<{
|
|
1804
|
+
none: "none";
|
|
1805
|
+
redis: "redis";
|
|
1806
|
+
moka: "moka";
|
|
1807
|
+
}>;
|
|
1808
|
+
rustAuth: z.ZodEnum<{
|
|
1809
|
+
none: "none";
|
|
1810
|
+
oauth2: "oauth2";
|
|
1811
|
+
}>;
|
|
1636
1812
|
pythonWebFramework: z.ZodEnum<{
|
|
1637
1813
|
none: "none";
|
|
1638
1814
|
fastapi: "fastapi";
|
|
1639
1815
|
django: "django";
|
|
1640
1816
|
flask: "flask";
|
|
1817
|
+
litestar: "litestar";
|
|
1641
1818
|
}>;
|
|
1642
1819
|
pythonOrm: z.ZodEnum<{
|
|
1643
1820
|
none: "none";
|
|
1644
1821
|
sqlalchemy: "sqlalchemy";
|
|
1645
1822
|
sqlmodel: "sqlmodel";
|
|
1823
|
+
"tortoise-orm": "tortoise-orm";
|
|
1646
1824
|
}>;
|
|
1647
1825
|
pythonValidation: z.ZodEnum<{
|
|
1648
1826
|
none: "none";
|
|
@@ -1657,10 +1835,19 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1657
1835
|
"anthropic-sdk": "anthropic-sdk";
|
|
1658
1836
|
crewai: "crewai";
|
|
1659
1837
|
}>>;
|
|
1838
|
+
pythonAuth: z.ZodEnum<{
|
|
1839
|
+
none: "none";
|
|
1840
|
+
authlib: "authlib";
|
|
1841
|
+
jwt: "jwt";
|
|
1842
|
+
}>;
|
|
1660
1843
|
pythonTaskQueue: z.ZodEnum<{
|
|
1661
1844
|
none: "none";
|
|
1662
1845
|
celery: "celery";
|
|
1663
1846
|
}>;
|
|
1847
|
+
pythonGraphql: z.ZodEnum<{
|
|
1848
|
+
none: "none";
|
|
1849
|
+
strawberry: "strawberry";
|
|
1850
|
+
}>;
|
|
1664
1851
|
pythonQuality: z.ZodEnum<{
|
|
1665
1852
|
none: "none";
|
|
1666
1853
|
ruff: "ruff";
|
|
@@ -1670,11 +1857,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1670
1857
|
gin: "gin";
|
|
1671
1858
|
echo: "echo";
|
|
1672
1859
|
fiber: "fiber";
|
|
1860
|
+
chi: "chi";
|
|
1673
1861
|
}>;
|
|
1674
1862
|
goOrm: z.ZodEnum<{
|
|
1675
1863
|
none: "none";
|
|
1676
1864
|
gorm: "gorm";
|
|
1677
1865
|
sqlc: "sqlc";
|
|
1866
|
+
ent: "ent";
|
|
1678
1867
|
}>;
|
|
1679
1868
|
goApi: z.ZodEnum<{
|
|
1680
1869
|
none: "none";
|
|
@@ -1688,7 +1877,43 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1688
1877
|
goLogging: z.ZodEnum<{
|
|
1689
1878
|
none: "none";
|
|
1690
1879
|
zap: "zap";
|
|
1880
|
+
zerolog: "zerolog";
|
|
1881
|
+
slog: "slog";
|
|
1882
|
+
}>;
|
|
1883
|
+
goAuth: z.ZodEnum<{
|
|
1884
|
+
none: "none";
|
|
1885
|
+
jwt: "jwt";
|
|
1886
|
+
casbin: "casbin";
|
|
1887
|
+
}>;
|
|
1888
|
+
javaWebFramework: z.ZodEnum<{
|
|
1889
|
+
none: "none";
|
|
1890
|
+
"spring-boot": "spring-boot";
|
|
1891
|
+
}>;
|
|
1892
|
+
javaBuildTool: z.ZodEnum<{
|
|
1893
|
+
none: "none";
|
|
1894
|
+
maven: "maven";
|
|
1895
|
+
gradle: "gradle";
|
|
1896
|
+
}>;
|
|
1897
|
+
javaOrm: z.ZodEnum<{
|
|
1898
|
+
none: "none";
|
|
1899
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
1691
1900
|
}>;
|
|
1901
|
+
javaAuth: z.ZodEnum<{
|
|
1902
|
+
none: "none";
|
|
1903
|
+
"spring-security": "spring-security";
|
|
1904
|
+
}>;
|
|
1905
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
1906
|
+
none: "none";
|
|
1907
|
+
"spring-actuator": "spring-actuator";
|
|
1908
|
+
"spring-validation": "spring-validation";
|
|
1909
|
+
flyway: "flyway";
|
|
1910
|
+
}>>;
|
|
1911
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
1912
|
+
none: "none";
|
|
1913
|
+
junit5: "junit5";
|
|
1914
|
+
mockito: "mockito";
|
|
1915
|
+
testcontainers: "testcontainers";
|
|
1916
|
+
}>>;
|
|
1692
1917
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1693
1918
|
none: "none";
|
|
1694
1919
|
"claude-md": "claude-md";
|
|
@@ -1707,6 +1932,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1707
1932
|
rust: "rust";
|
|
1708
1933
|
python: "python";
|
|
1709
1934
|
go: "go";
|
|
1935
|
+
java: "java";
|
|
1710
1936
|
}>;
|
|
1711
1937
|
database: z.ZodEnum<{
|
|
1712
1938
|
none: "none";
|
|
@@ -1847,6 +2073,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1847
2073
|
orpc: "orpc";
|
|
1848
2074
|
"ts-rest": "ts-rest";
|
|
1849
2075
|
garph: "garph";
|
|
2076
|
+
"graphql-yoga": "graphql-yoga";
|
|
1850
2077
|
}>;
|
|
1851
2078
|
webDeploy: z.ZodEnum<{
|
|
1852
2079
|
none: "none";
|
|
@@ -1855,6 +2082,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1855
2082
|
fly: "fly";
|
|
1856
2083
|
railway: "railway";
|
|
1857
2084
|
sst: "sst";
|
|
2085
|
+
vercel: "vercel";
|
|
1858
2086
|
}>;
|
|
1859
2087
|
serverDeploy: z.ZodEnum<{
|
|
1860
2088
|
none: "none";
|
|
@@ -1863,6 +2091,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1863
2091
|
fly: "fly";
|
|
1864
2092
|
railway: "railway";
|
|
1865
2093
|
sst: "sst";
|
|
2094
|
+
vercel: "vercel";
|
|
1866
2095
|
}>;
|
|
1867
2096
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1868
2097
|
none: "none";
|
|
@@ -2090,6 +2319,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2090
2319
|
none: "none";
|
|
2091
2320
|
"upstash-redis": "upstash-redis";
|
|
2092
2321
|
}>;
|
|
2322
|
+
i18n: z.ZodEnum<{
|
|
2323
|
+
none: "none";
|
|
2324
|
+
i18next: "i18next";
|
|
2325
|
+
"next-intl": "next-intl";
|
|
2326
|
+
}>;
|
|
2093
2327
|
search: z.ZodEnum<{
|
|
2094
2328
|
none: "none";
|
|
2095
2329
|
meilisearch: "meilisearch";
|
|
@@ -2106,6 +2340,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2106
2340
|
none: "none";
|
|
2107
2341
|
axum: "axum";
|
|
2108
2342
|
"actix-web": "actix-web";
|
|
2343
|
+
rocket: "rocket";
|
|
2109
2344
|
}>;
|
|
2110
2345
|
rustFrontend: z.ZodEnum<{
|
|
2111
2346
|
none: "none";
|
|
@@ -2116,6 +2351,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2116
2351
|
none: "none";
|
|
2117
2352
|
"sea-orm": "sea-orm";
|
|
2118
2353
|
sqlx: "sqlx";
|
|
2354
|
+
diesel: "diesel";
|
|
2119
2355
|
}>;
|
|
2120
2356
|
rustApi: z.ZodEnum<{
|
|
2121
2357
|
none: "none";
|
|
@@ -2141,16 +2377,32 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2141
2377
|
tracing: "tracing";
|
|
2142
2378
|
"env-logger": "env-logger";
|
|
2143
2379
|
}>;
|
|
2380
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2381
|
+
none: "none";
|
|
2382
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2383
|
+
eyre: "eyre";
|
|
2384
|
+
}>;
|
|
2385
|
+
rustCaching: z.ZodEnum<{
|
|
2386
|
+
none: "none";
|
|
2387
|
+
redis: "redis";
|
|
2388
|
+
moka: "moka";
|
|
2389
|
+
}>;
|
|
2390
|
+
rustAuth: z.ZodEnum<{
|
|
2391
|
+
none: "none";
|
|
2392
|
+
oauth2: "oauth2";
|
|
2393
|
+
}>;
|
|
2144
2394
|
pythonWebFramework: z.ZodEnum<{
|
|
2145
2395
|
none: "none";
|
|
2146
2396
|
fastapi: "fastapi";
|
|
2147
2397
|
django: "django";
|
|
2148
2398
|
flask: "flask";
|
|
2399
|
+
litestar: "litestar";
|
|
2149
2400
|
}>;
|
|
2150
2401
|
pythonOrm: z.ZodEnum<{
|
|
2151
2402
|
none: "none";
|
|
2152
2403
|
sqlalchemy: "sqlalchemy";
|
|
2153
2404
|
sqlmodel: "sqlmodel";
|
|
2405
|
+
"tortoise-orm": "tortoise-orm";
|
|
2154
2406
|
}>;
|
|
2155
2407
|
pythonValidation: z.ZodEnum<{
|
|
2156
2408
|
none: "none";
|
|
@@ -2165,10 +2417,19 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2165
2417
|
"anthropic-sdk": "anthropic-sdk";
|
|
2166
2418
|
crewai: "crewai";
|
|
2167
2419
|
}>>;
|
|
2420
|
+
pythonAuth: z.ZodEnum<{
|
|
2421
|
+
none: "none";
|
|
2422
|
+
authlib: "authlib";
|
|
2423
|
+
jwt: "jwt";
|
|
2424
|
+
}>;
|
|
2168
2425
|
pythonTaskQueue: z.ZodEnum<{
|
|
2169
2426
|
none: "none";
|
|
2170
2427
|
celery: "celery";
|
|
2171
2428
|
}>;
|
|
2429
|
+
pythonGraphql: z.ZodEnum<{
|
|
2430
|
+
none: "none";
|
|
2431
|
+
strawberry: "strawberry";
|
|
2432
|
+
}>;
|
|
2172
2433
|
pythonQuality: z.ZodEnum<{
|
|
2173
2434
|
none: "none";
|
|
2174
2435
|
ruff: "ruff";
|
|
@@ -2178,11 +2439,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2178
2439
|
gin: "gin";
|
|
2179
2440
|
echo: "echo";
|
|
2180
2441
|
fiber: "fiber";
|
|
2442
|
+
chi: "chi";
|
|
2181
2443
|
}>;
|
|
2182
2444
|
goOrm: z.ZodEnum<{
|
|
2183
2445
|
none: "none";
|
|
2184
2446
|
gorm: "gorm";
|
|
2185
2447
|
sqlc: "sqlc";
|
|
2448
|
+
ent: "ent";
|
|
2186
2449
|
}>;
|
|
2187
2450
|
goApi: z.ZodEnum<{
|
|
2188
2451
|
none: "none";
|
|
@@ -2196,7 +2459,43 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2196
2459
|
goLogging: z.ZodEnum<{
|
|
2197
2460
|
none: "none";
|
|
2198
2461
|
zap: "zap";
|
|
2462
|
+
zerolog: "zerolog";
|
|
2463
|
+
slog: "slog";
|
|
2464
|
+
}>;
|
|
2465
|
+
goAuth: z.ZodEnum<{
|
|
2466
|
+
none: "none";
|
|
2467
|
+
jwt: "jwt";
|
|
2468
|
+
casbin: "casbin";
|
|
2469
|
+
}>;
|
|
2470
|
+
javaWebFramework: z.ZodEnum<{
|
|
2471
|
+
none: "none";
|
|
2472
|
+
"spring-boot": "spring-boot";
|
|
2199
2473
|
}>;
|
|
2474
|
+
javaBuildTool: z.ZodEnum<{
|
|
2475
|
+
none: "none";
|
|
2476
|
+
maven: "maven";
|
|
2477
|
+
gradle: "gradle";
|
|
2478
|
+
}>;
|
|
2479
|
+
javaOrm: z.ZodEnum<{
|
|
2480
|
+
none: "none";
|
|
2481
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
2482
|
+
}>;
|
|
2483
|
+
javaAuth: z.ZodEnum<{
|
|
2484
|
+
none: "none";
|
|
2485
|
+
"spring-security": "spring-security";
|
|
2486
|
+
}>;
|
|
2487
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2488
|
+
none: "none";
|
|
2489
|
+
"spring-actuator": "spring-actuator";
|
|
2490
|
+
"spring-validation": "spring-validation";
|
|
2491
|
+
flyway: "flyway";
|
|
2492
|
+
}>>;
|
|
2493
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
2494
|
+
none: "none";
|
|
2495
|
+
junit5: "junit5";
|
|
2496
|
+
mockito: "mockito";
|
|
2497
|
+
testcontainers: "testcontainers";
|
|
2498
|
+
}>>;
|
|
2200
2499
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2201
2500
|
none: "none";
|
|
2202
2501
|
"claude-md": "claude-md";
|
|
@@ -2211,6 +2510,35 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2211
2510
|
relativePath: z.ZodString;
|
|
2212
2511
|
error: z.ZodOptional<z.ZodString>;
|
|
2213
2512
|
}, z.core.$strip>>;
|
|
2513
|
+
declare function getJavaWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2514
|
+
none: "none";
|
|
2515
|
+
"spring-boot": "spring-boot";
|
|
2516
|
+
}>>;
|
|
2517
|
+
declare function getJavaBuildToolJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2518
|
+
none: "none";
|
|
2519
|
+
maven: "maven";
|
|
2520
|
+
gradle: "gradle";
|
|
2521
|
+
}>>;
|
|
2522
|
+
declare function getJavaOrmJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2523
|
+
none: "none";
|
|
2524
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
2525
|
+
}>>;
|
|
2526
|
+
declare function getJavaAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2527
|
+
none: "none";
|
|
2528
|
+
"spring-security": "spring-security";
|
|
2529
|
+
}>>;
|
|
2530
|
+
declare function getJavaLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2531
|
+
none: "none";
|
|
2532
|
+
"spring-actuator": "spring-actuator";
|
|
2533
|
+
"spring-validation": "spring-validation";
|
|
2534
|
+
flyway: "flyway";
|
|
2535
|
+
}>>;
|
|
2536
|
+
declare function getJavaTestingLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2537
|
+
none: "none";
|
|
2538
|
+
junit5: "junit5";
|
|
2539
|
+
mockito: "mockito";
|
|
2540
|
+
testcontainers: "testcontainers";
|
|
2541
|
+
}>>;
|
|
2214
2542
|
declare function getAllJsonSchemas(): {
|
|
2215
2543
|
database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2216
2544
|
none: "none";
|
|
@@ -2326,6 +2654,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2326
2654
|
orpc: "orpc";
|
|
2327
2655
|
"ts-rest": "ts-rest";
|
|
2328
2656
|
garph: "garph";
|
|
2657
|
+
"graphql-yoga": "graphql-yoga";
|
|
2329
2658
|
}>>;
|
|
2330
2659
|
auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2331
2660
|
none: "none";
|
|
@@ -2352,6 +2681,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2352
2681
|
fly: "fly";
|
|
2353
2682
|
railway: "railway";
|
|
2354
2683
|
sst: "sst";
|
|
2684
|
+
vercel: "vercel";
|
|
2355
2685
|
}>>;
|
|
2356
2686
|
serverDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2357
2687
|
none: "none";
|
|
@@ -2360,6 +2690,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2360
2690
|
fly: "fly";
|
|
2361
2691
|
railway: "railway";
|
|
2362
2692
|
sst: "sst";
|
|
2693
|
+
vercel: "vercel";
|
|
2363
2694
|
}>>;
|
|
2364
2695
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2365
2696
|
merge: "merge";
|
|
@@ -2374,6 +2705,35 @@ declare function getAllJsonSchemas(): {
|
|
|
2374
2705
|
t3: "t3";
|
|
2375
2706
|
uniwind: "uniwind";
|
|
2376
2707
|
}>>;
|
|
2708
|
+
javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2709
|
+
none: "none";
|
|
2710
|
+
"spring-boot": "spring-boot";
|
|
2711
|
+
}>>;
|
|
2712
|
+
javaBuildTool: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2713
|
+
none: "none";
|
|
2714
|
+
maven: "maven";
|
|
2715
|
+
gradle: "gradle";
|
|
2716
|
+
}>>;
|
|
2717
|
+
javaOrm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2718
|
+
none: "none";
|
|
2719
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
2720
|
+
}>>;
|
|
2721
|
+
javaAuth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2722
|
+
none: "none";
|
|
2723
|
+
"spring-security": "spring-security";
|
|
2724
|
+
}>>;
|
|
2725
|
+
javaLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2726
|
+
none: "none";
|
|
2727
|
+
"spring-actuator": "spring-actuator";
|
|
2728
|
+
"spring-validation": "spring-validation";
|
|
2729
|
+
flyway: "flyway";
|
|
2730
|
+
}>>;
|
|
2731
|
+
javaTestingLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2732
|
+
none: "none";
|
|
2733
|
+
junit5: "junit5";
|
|
2734
|
+
mockito: "mockito";
|
|
2735
|
+
testcontainers: "testcontainers";
|
|
2736
|
+
}>>;
|
|
2377
2737
|
createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2378
2738
|
projectName: z.ZodOptional<z.ZodString>;
|
|
2379
2739
|
template: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2392,6 +2752,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2392
2752
|
rust: "rust";
|
|
2393
2753
|
python: "python";
|
|
2394
2754
|
go: "go";
|
|
2755
|
+
java: "java";
|
|
2395
2756
|
}>>;
|
|
2396
2757
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2397
2758
|
none: "none";
|
|
@@ -2532,6 +2893,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2532
2893
|
orpc: "orpc";
|
|
2533
2894
|
"ts-rest": "ts-rest";
|
|
2534
2895
|
garph: "garph";
|
|
2896
|
+
"graphql-yoga": "graphql-yoga";
|
|
2535
2897
|
}>>;
|
|
2536
2898
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2537
2899
|
none: "none";
|
|
@@ -2540,6 +2902,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2540
2902
|
fly: "fly";
|
|
2541
2903
|
railway: "railway";
|
|
2542
2904
|
sst: "sst";
|
|
2905
|
+
vercel: "vercel";
|
|
2543
2906
|
}>>;
|
|
2544
2907
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2545
2908
|
none: "none";
|
|
@@ -2548,6 +2911,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2548
2911
|
fly: "fly";
|
|
2549
2912
|
railway: "railway";
|
|
2550
2913
|
sst: "sst";
|
|
2914
|
+
vercel: "vercel";
|
|
2551
2915
|
}>>;
|
|
2552
2916
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
2553
2917
|
merge: "merge";
|
|
@@ -2784,6 +3148,11 @@ declare function getAllJsonSchemas(): {
|
|
|
2784
3148
|
none: "none";
|
|
2785
3149
|
"upstash-redis": "upstash-redis";
|
|
2786
3150
|
}>>;
|
|
3151
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
3152
|
+
none: "none";
|
|
3153
|
+
i18next: "i18next";
|
|
3154
|
+
"next-intl": "next-intl";
|
|
3155
|
+
}>>;
|
|
2787
3156
|
search: z.ZodOptional<z.ZodEnum<{
|
|
2788
3157
|
none: "none";
|
|
2789
3158
|
meilisearch: "meilisearch";
|
|
@@ -2800,6 +3169,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2800
3169
|
none: "none";
|
|
2801
3170
|
axum: "axum";
|
|
2802
3171
|
"actix-web": "actix-web";
|
|
3172
|
+
rocket: "rocket";
|
|
2803
3173
|
}>>;
|
|
2804
3174
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
2805
3175
|
none: "none";
|
|
@@ -2810,6 +3180,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2810
3180
|
none: "none";
|
|
2811
3181
|
"sea-orm": "sea-orm";
|
|
2812
3182
|
sqlx: "sqlx";
|
|
3183
|
+
diesel: "diesel";
|
|
2813
3184
|
}>>;
|
|
2814
3185
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
2815
3186
|
none: "none";
|
|
@@ -2835,16 +3206,32 @@ declare function getAllJsonSchemas(): {
|
|
|
2835
3206
|
tracing: "tracing";
|
|
2836
3207
|
"env-logger": "env-logger";
|
|
2837
3208
|
}>>;
|
|
3209
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
3210
|
+
none: "none";
|
|
3211
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3212
|
+
eyre: "eyre";
|
|
3213
|
+
}>>;
|
|
3214
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
3215
|
+
none: "none";
|
|
3216
|
+
redis: "redis";
|
|
3217
|
+
moka: "moka";
|
|
3218
|
+
}>>;
|
|
3219
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
3220
|
+
none: "none";
|
|
3221
|
+
oauth2: "oauth2";
|
|
3222
|
+
}>>;
|
|
2838
3223
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2839
3224
|
none: "none";
|
|
2840
3225
|
fastapi: "fastapi";
|
|
2841
3226
|
django: "django";
|
|
2842
3227
|
flask: "flask";
|
|
3228
|
+
litestar: "litestar";
|
|
2843
3229
|
}>>;
|
|
2844
3230
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
2845
3231
|
none: "none";
|
|
2846
3232
|
sqlalchemy: "sqlalchemy";
|
|
2847
3233
|
sqlmodel: "sqlmodel";
|
|
3234
|
+
"tortoise-orm": "tortoise-orm";
|
|
2848
3235
|
}>>;
|
|
2849
3236
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
2850
3237
|
none: "none";
|
|
@@ -2859,10 +3246,19 @@ declare function getAllJsonSchemas(): {
|
|
|
2859
3246
|
"anthropic-sdk": "anthropic-sdk";
|
|
2860
3247
|
crewai: "crewai";
|
|
2861
3248
|
}>>>;
|
|
3249
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
3250
|
+
none: "none";
|
|
3251
|
+
authlib: "authlib";
|
|
3252
|
+
jwt: "jwt";
|
|
3253
|
+
}>>;
|
|
2862
3254
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
2863
3255
|
none: "none";
|
|
2864
3256
|
celery: "celery";
|
|
2865
3257
|
}>>;
|
|
3258
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
3259
|
+
none: "none";
|
|
3260
|
+
strawberry: "strawberry";
|
|
3261
|
+
}>>;
|
|
2866
3262
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
2867
3263
|
none: "none";
|
|
2868
3264
|
ruff: "ruff";
|
|
@@ -2872,11 +3268,13 @@ declare function getAllJsonSchemas(): {
|
|
|
2872
3268
|
gin: "gin";
|
|
2873
3269
|
echo: "echo";
|
|
2874
3270
|
fiber: "fiber";
|
|
3271
|
+
chi: "chi";
|
|
2875
3272
|
}>>;
|
|
2876
3273
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2877
3274
|
none: "none";
|
|
2878
3275
|
gorm: "gorm";
|
|
2879
3276
|
sqlc: "sqlc";
|
|
3277
|
+
ent: "ent";
|
|
2880
3278
|
}>>;
|
|
2881
3279
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
2882
3280
|
none: "none";
|
|
@@ -2890,7 +3288,43 @@ declare function getAllJsonSchemas(): {
|
|
|
2890
3288
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
2891
3289
|
none: "none";
|
|
2892
3290
|
zap: "zap";
|
|
3291
|
+
zerolog: "zerolog";
|
|
3292
|
+
slog: "slog";
|
|
3293
|
+
}>>;
|
|
3294
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
3295
|
+
none: "none";
|
|
3296
|
+
jwt: "jwt";
|
|
3297
|
+
casbin: "casbin";
|
|
3298
|
+
}>>;
|
|
3299
|
+
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
3300
|
+
none: "none";
|
|
3301
|
+
"spring-boot": "spring-boot";
|
|
3302
|
+
}>>;
|
|
3303
|
+
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
3304
|
+
none: "none";
|
|
3305
|
+
maven: "maven";
|
|
3306
|
+
gradle: "gradle";
|
|
3307
|
+
}>>;
|
|
3308
|
+
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
3309
|
+
none: "none";
|
|
3310
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
3311
|
+
}>>;
|
|
3312
|
+
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
3313
|
+
none: "none";
|
|
3314
|
+
"spring-security": "spring-security";
|
|
2893
3315
|
}>>;
|
|
3316
|
+
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3317
|
+
none: "none";
|
|
3318
|
+
"spring-actuator": "spring-actuator";
|
|
3319
|
+
"spring-validation": "spring-validation";
|
|
3320
|
+
flyway: "flyway";
|
|
3321
|
+
}>>>;
|
|
3322
|
+
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3323
|
+
none: "none";
|
|
3324
|
+
junit5: "junit5";
|
|
3325
|
+
mockito: "mockito";
|
|
3326
|
+
testcontainers: "testcontainers";
|
|
3327
|
+
}>>>;
|
|
2894
3328
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2895
3329
|
none: "none";
|
|
2896
3330
|
"claude-md": "claude-md";
|
|
@@ -2907,6 +3341,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2907
3341
|
rust: "rust";
|
|
2908
3342
|
python: "python";
|
|
2909
3343
|
go: "go";
|
|
3344
|
+
java: "java";
|
|
2910
3345
|
}>;
|
|
2911
3346
|
database: z.ZodEnum<{
|
|
2912
3347
|
none: "none";
|
|
@@ -3047,6 +3482,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3047
3482
|
orpc: "orpc";
|
|
3048
3483
|
"ts-rest": "ts-rest";
|
|
3049
3484
|
garph: "garph";
|
|
3485
|
+
"graphql-yoga": "graphql-yoga";
|
|
3050
3486
|
}>;
|
|
3051
3487
|
webDeploy: z.ZodEnum<{
|
|
3052
3488
|
none: "none";
|
|
@@ -3055,6 +3491,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3055
3491
|
fly: "fly";
|
|
3056
3492
|
railway: "railway";
|
|
3057
3493
|
sst: "sst";
|
|
3494
|
+
vercel: "vercel";
|
|
3058
3495
|
}>;
|
|
3059
3496
|
serverDeploy: z.ZodEnum<{
|
|
3060
3497
|
none: "none";
|
|
@@ -3063,6 +3500,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3063
3500
|
fly: "fly";
|
|
3064
3501
|
railway: "railway";
|
|
3065
3502
|
sst: "sst";
|
|
3503
|
+
vercel: "vercel";
|
|
3066
3504
|
}>;
|
|
3067
3505
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3068
3506
|
none: "none";
|
|
@@ -3290,6 +3728,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3290
3728
|
none: "none";
|
|
3291
3729
|
"upstash-redis": "upstash-redis";
|
|
3292
3730
|
}>;
|
|
3731
|
+
i18n: z.ZodEnum<{
|
|
3732
|
+
none: "none";
|
|
3733
|
+
i18next: "i18next";
|
|
3734
|
+
"next-intl": "next-intl";
|
|
3735
|
+
}>;
|
|
3293
3736
|
search: z.ZodEnum<{
|
|
3294
3737
|
none: "none";
|
|
3295
3738
|
meilisearch: "meilisearch";
|
|
@@ -3306,6 +3749,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3306
3749
|
none: "none";
|
|
3307
3750
|
axum: "axum";
|
|
3308
3751
|
"actix-web": "actix-web";
|
|
3752
|
+
rocket: "rocket";
|
|
3309
3753
|
}>;
|
|
3310
3754
|
rustFrontend: z.ZodEnum<{
|
|
3311
3755
|
none: "none";
|
|
@@ -3316,6 +3760,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3316
3760
|
none: "none";
|
|
3317
3761
|
"sea-orm": "sea-orm";
|
|
3318
3762
|
sqlx: "sqlx";
|
|
3763
|
+
diesel: "diesel";
|
|
3319
3764
|
}>;
|
|
3320
3765
|
rustApi: z.ZodEnum<{
|
|
3321
3766
|
none: "none";
|
|
@@ -3341,16 +3786,32 @@ declare function getAllJsonSchemas(): {
|
|
|
3341
3786
|
tracing: "tracing";
|
|
3342
3787
|
"env-logger": "env-logger";
|
|
3343
3788
|
}>;
|
|
3789
|
+
rustErrorHandling: z.ZodEnum<{
|
|
3790
|
+
none: "none";
|
|
3791
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3792
|
+
eyre: "eyre";
|
|
3793
|
+
}>;
|
|
3794
|
+
rustCaching: z.ZodEnum<{
|
|
3795
|
+
none: "none";
|
|
3796
|
+
redis: "redis";
|
|
3797
|
+
moka: "moka";
|
|
3798
|
+
}>;
|
|
3799
|
+
rustAuth: z.ZodEnum<{
|
|
3800
|
+
none: "none";
|
|
3801
|
+
oauth2: "oauth2";
|
|
3802
|
+
}>;
|
|
3344
3803
|
pythonWebFramework: z.ZodEnum<{
|
|
3345
3804
|
none: "none";
|
|
3346
3805
|
fastapi: "fastapi";
|
|
3347
3806
|
django: "django";
|
|
3348
3807
|
flask: "flask";
|
|
3808
|
+
litestar: "litestar";
|
|
3349
3809
|
}>;
|
|
3350
3810
|
pythonOrm: z.ZodEnum<{
|
|
3351
3811
|
none: "none";
|
|
3352
3812
|
sqlalchemy: "sqlalchemy";
|
|
3353
3813
|
sqlmodel: "sqlmodel";
|
|
3814
|
+
"tortoise-orm": "tortoise-orm";
|
|
3354
3815
|
}>;
|
|
3355
3816
|
pythonValidation: z.ZodEnum<{
|
|
3356
3817
|
none: "none";
|
|
@@ -3365,10 +3826,19 @@ declare function getAllJsonSchemas(): {
|
|
|
3365
3826
|
"anthropic-sdk": "anthropic-sdk";
|
|
3366
3827
|
crewai: "crewai";
|
|
3367
3828
|
}>>;
|
|
3829
|
+
pythonAuth: z.ZodEnum<{
|
|
3830
|
+
none: "none";
|
|
3831
|
+
authlib: "authlib";
|
|
3832
|
+
jwt: "jwt";
|
|
3833
|
+
}>;
|
|
3368
3834
|
pythonTaskQueue: z.ZodEnum<{
|
|
3369
3835
|
none: "none";
|
|
3370
3836
|
celery: "celery";
|
|
3371
3837
|
}>;
|
|
3838
|
+
pythonGraphql: z.ZodEnum<{
|
|
3839
|
+
none: "none";
|
|
3840
|
+
strawberry: "strawberry";
|
|
3841
|
+
}>;
|
|
3372
3842
|
pythonQuality: z.ZodEnum<{
|
|
3373
3843
|
none: "none";
|
|
3374
3844
|
ruff: "ruff";
|
|
@@ -3378,11 +3848,13 @@ declare function getAllJsonSchemas(): {
|
|
|
3378
3848
|
gin: "gin";
|
|
3379
3849
|
echo: "echo";
|
|
3380
3850
|
fiber: "fiber";
|
|
3851
|
+
chi: "chi";
|
|
3381
3852
|
}>;
|
|
3382
3853
|
goOrm: z.ZodEnum<{
|
|
3383
3854
|
none: "none";
|
|
3384
3855
|
gorm: "gorm";
|
|
3385
3856
|
sqlc: "sqlc";
|
|
3857
|
+
ent: "ent";
|
|
3386
3858
|
}>;
|
|
3387
3859
|
goApi: z.ZodEnum<{
|
|
3388
3860
|
none: "none";
|
|
@@ -3396,7 +3868,43 @@ declare function getAllJsonSchemas(): {
|
|
|
3396
3868
|
goLogging: z.ZodEnum<{
|
|
3397
3869
|
none: "none";
|
|
3398
3870
|
zap: "zap";
|
|
3871
|
+
zerolog: "zerolog";
|
|
3872
|
+
slog: "slog";
|
|
3873
|
+
}>;
|
|
3874
|
+
goAuth: z.ZodEnum<{
|
|
3875
|
+
none: "none";
|
|
3876
|
+
jwt: "jwt";
|
|
3877
|
+
casbin: "casbin";
|
|
3878
|
+
}>;
|
|
3879
|
+
javaWebFramework: z.ZodEnum<{
|
|
3880
|
+
none: "none";
|
|
3881
|
+
"spring-boot": "spring-boot";
|
|
3882
|
+
}>;
|
|
3883
|
+
javaBuildTool: z.ZodEnum<{
|
|
3884
|
+
none: "none";
|
|
3885
|
+
maven: "maven";
|
|
3886
|
+
gradle: "gradle";
|
|
3887
|
+
}>;
|
|
3888
|
+
javaOrm: z.ZodEnum<{
|
|
3889
|
+
none: "none";
|
|
3890
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
3399
3891
|
}>;
|
|
3892
|
+
javaAuth: z.ZodEnum<{
|
|
3893
|
+
none: "none";
|
|
3894
|
+
"spring-security": "spring-security";
|
|
3895
|
+
}>;
|
|
3896
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3897
|
+
none: "none";
|
|
3898
|
+
"spring-actuator": "spring-actuator";
|
|
3899
|
+
"spring-validation": "spring-validation";
|
|
3900
|
+
flyway: "flyway";
|
|
3901
|
+
}>>;
|
|
3902
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3903
|
+
none: "none";
|
|
3904
|
+
junit5: "junit5";
|
|
3905
|
+
mockito: "mockito";
|
|
3906
|
+
testcontainers: "testcontainers";
|
|
3907
|
+
}>>;
|
|
3400
3908
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3401
3909
|
none: "none";
|
|
3402
3910
|
"claude-md": "claude-md";
|
|
@@ -3412,6 +3920,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3412
3920
|
rust: "rust";
|
|
3413
3921
|
python: "python";
|
|
3414
3922
|
go: "go";
|
|
3923
|
+
java: "java";
|
|
3415
3924
|
}>;
|
|
3416
3925
|
database: z.ZodEnum<{
|
|
3417
3926
|
none: "none";
|
|
@@ -3550,6 +4059,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3550
4059
|
orpc: "orpc";
|
|
3551
4060
|
"ts-rest": "ts-rest";
|
|
3552
4061
|
garph: "garph";
|
|
4062
|
+
"graphql-yoga": "graphql-yoga";
|
|
3553
4063
|
}>;
|
|
3554
4064
|
webDeploy: z.ZodEnum<{
|
|
3555
4065
|
none: "none";
|
|
@@ -3558,6 +4068,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3558
4068
|
fly: "fly";
|
|
3559
4069
|
railway: "railway";
|
|
3560
4070
|
sst: "sst";
|
|
4071
|
+
vercel: "vercel";
|
|
3561
4072
|
}>;
|
|
3562
4073
|
serverDeploy: z.ZodEnum<{
|
|
3563
4074
|
none: "none";
|
|
@@ -3566,6 +4077,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3566
4077
|
fly: "fly";
|
|
3567
4078
|
railway: "railway";
|
|
3568
4079
|
sst: "sst";
|
|
4080
|
+
vercel: "vercel";
|
|
3569
4081
|
}>;
|
|
3570
4082
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3571
4083
|
none: "none";
|
|
@@ -3793,6 +4305,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3793
4305
|
none: "none";
|
|
3794
4306
|
"upstash-redis": "upstash-redis";
|
|
3795
4307
|
}>;
|
|
4308
|
+
i18n: z.ZodEnum<{
|
|
4309
|
+
none: "none";
|
|
4310
|
+
i18next: "i18next";
|
|
4311
|
+
"next-intl": "next-intl";
|
|
4312
|
+
}>;
|
|
3796
4313
|
search: z.ZodEnum<{
|
|
3797
4314
|
none: "none";
|
|
3798
4315
|
meilisearch: "meilisearch";
|
|
@@ -3809,6 +4326,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3809
4326
|
none: "none";
|
|
3810
4327
|
axum: "axum";
|
|
3811
4328
|
"actix-web": "actix-web";
|
|
4329
|
+
rocket: "rocket";
|
|
3812
4330
|
}>;
|
|
3813
4331
|
rustFrontend: z.ZodEnum<{
|
|
3814
4332
|
none: "none";
|
|
@@ -3819,6 +4337,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3819
4337
|
none: "none";
|
|
3820
4338
|
"sea-orm": "sea-orm";
|
|
3821
4339
|
sqlx: "sqlx";
|
|
4340
|
+
diesel: "diesel";
|
|
3822
4341
|
}>;
|
|
3823
4342
|
rustApi: z.ZodEnum<{
|
|
3824
4343
|
none: "none";
|
|
@@ -3844,16 +4363,32 @@ declare function getAllJsonSchemas(): {
|
|
|
3844
4363
|
tracing: "tracing";
|
|
3845
4364
|
"env-logger": "env-logger";
|
|
3846
4365
|
}>;
|
|
4366
|
+
rustErrorHandling: z.ZodEnum<{
|
|
4367
|
+
none: "none";
|
|
4368
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
4369
|
+
eyre: "eyre";
|
|
4370
|
+
}>;
|
|
4371
|
+
rustCaching: z.ZodEnum<{
|
|
4372
|
+
none: "none";
|
|
4373
|
+
redis: "redis";
|
|
4374
|
+
moka: "moka";
|
|
4375
|
+
}>;
|
|
4376
|
+
rustAuth: z.ZodEnum<{
|
|
4377
|
+
none: "none";
|
|
4378
|
+
oauth2: "oauth2";
|
|
4379
|
+
}>;
|
|
3847
4380
|
pythonWebFramework: z.ZodEnum<{
|
|
3848
4381
|
none: "none";
|
|
3849
4382
|
fastapi: "fastapi";
|
|
3850
4383
|
django: "django";
|
|
3851
4384
|
flask: "flask";
|
|
4385
|
+
litestar: "litestar";
|
|
3852
4386
|
}>;
|
|
3853
4387
|
pythonOrm: z.ZodEnum<{
|
|
3854
4388
|
none: "none";
|
|
3855
4389
|
sqlalchemy: "sqlalchemy";
|
|
3856
4390
|
sqlmodel: "sqlmodel";
|
|
4391
|
+
"tortoise-orm": "tortoise-orm";
|
|
3857
4392
|
}>;
|
|
3858
4393
|
pythonValidation: z.ZodEnum<{
|
|
3859
4394
|
none: "none";
|
|
@@ -3868,10 +4403,19 @@ declare function getAllJsonSchemas(): {
|
|
|
3868
4403
|
"anthropic-sdk": "anthropic-sdk";
|
|
3869
4404
|
crewai: "crewai";
|
|
3870
4405
|
}>>;
|
|
4406
|
+
pythonAuth: z.ZodEnum<{
|
|
4407
|
+
none: "none";
|
|
4408
|
+
authlib: "authlib";
|
|
4409
|
+
jwt: "jwt";
|
|
4410
|
+
}>;
|
|
3871
4411
|
pythonTaskQueue: z.ZodEnum<{
|
|
3872
4412
|
none: "none";
|
|
3873
4413
|
celery: "celery";
|
|
3874
4414
|
}>;
|
|
4415
|
+
pythonGraphql: z.ZodEnum<{
|
|
4416
|
+
none: "none";
|
|
4417
|
+
strawberry: "strawberry";
|
|
4418
|
+
}>;
|
|
3875
4419
|
pythonQuality: z.ZodEnum<{
|
|
3876
4420
|
none: "none";
|
|
3877
4421
|
ruff: "ruff";
|
|
@@ -3881,11 +4425,13 @@ declare function getAllJsonSchemas(): {
|
|
|
3881
4425
|
gin: "gin";
|
|
3882
4426
|
echo: "echo";
|
|
3883
4427
|
fiber: "fiber";
|
|
4428
|
+
chi: "chi";
|
|
3884
4429
|
}>;
|
|
3885
4430
|
goOrm: z.ZodEnum<{
|
|
3886
4431
|
none: "none";
|
|
3887
4432
|
gorm: "gorm";
|
|
3888
4433
|
sqlc: "sqlc";
|
|
4434
|
+
ent: "ent";
|
|
3889
4435
|
}>;
|
|
3890
4436
|
goApi: z.ZodEnum<{
|
|
3891
4437
|
none: "none";
|
|
@@ -3899,7 +4445,43 @@ declare function getAllJsonSchemas(): {
|
|
|
3899
4445
|
goLogging: z.ZodEnum<{
|
|
3900
4446
|
none: "none";
|
|
3901
4447
|
zap: "zap";
|
|
4448
|
+
zerolog: "zerolog";
|
|
4449
|
+
slog: "slog";
|
|
4450
|
+
}>;
|
|
4451
|
+
goAuth: z.ZodEnum<{
|
|
4452
|
+
none: "none";
|
|
4453
|
+
jwt: "jwt";
|
|
4454
|
+
casbin: "casbin";
|
|
4455
|
+
}>;
|
|
4456
|
+
javaWebFramework: z.ZodEnum<{
|
|
4457
|
+
none: "none";
|
|
4458
|
+
"spring-boot": "spring-boot";
|
|
3902
4459
|
}>;
|
|
4460
|
+
javaBuildTool: z.ZodEnum<{
|
|
4461
|
+
none: "none";
|
|
4462
|
+
maven: "maven";
|
|
4463
|
+
gradle: "gradle";
|
|
4464
|
+
}>;
|
|
4465
|
+
javaOrm: z.ZodEnum<{
|
|
4466
|
+
none: "none";
|
|
4467
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
4468
|
+
}>;
|
|
4469
|
+
javaAuth: z.ZodEnum<{
|
|
4470
|
+
none: "none";
|
|
4471
|
+
"spring-security": "spring-security";
|
|
4472
|
+
}>;
|
|
4473
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4474
|
+
none: "none";
|
|
4475
|
+
"spring-actuator": "spring-actuator";
|
|
4476
|
+
"spring-validation": "spring-validation";
|
|
4477
|
+
flyway: "flyway";
|
|
4478
|
+
}>>;
|
|
4479
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
4480
|
+
none: "none";
|
|
4481
|
+
junit5: "junit5";
|
|
4482
|
+
mockito: "mockito";
|
|
4483
|
+
testcontainers: "testcontainers";
|
|
4484
|
+
}>>;
|
|
3903
4485
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3904
4486
|
none: "none";
|
|
3905
4487
|
"claude-md": "claude-md";
|
|
@@ -3918,6 +4500,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3918
4500
|
rust: "rust";
|
|
3919
4501
|
python: "python";
|
|
3920
4502
|
go: "go";
|
|
4503
|
+
java: "java";
|
|
3921
4504
|
}>;
|
|
3922
4505
|
database: z.ZodEnum<{
|
|
3923
4506
|
none: "none";
|
|
@@ -4058,6 +4641,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4058
4641
|
orpc: "orpc";
|
|
4059
4642
|
"ts-rest": "ts-rest";
|
|
4060
4643
|
garph: "garph";
|
|
4644
|
+
"graphql-yoga": "graphql-yoga";
|
|
4061
4645
|
}>;
|
|
4062
4646
|
webDeploy: z.ZodEnum<{
|
|
4063
4647
|
none: "none";
|
|
@@ -4066,6 +4650,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4066
4650
|
fly: "fly";
|
|
4067
4651
|
railway: "railway";
|
|
4068
4652
|
sst: "sst";
|
|
4653
|
+
vercel: "vercel";
|
|
4069
4654
|
}>;
|
|
4070
4655
|
serverDeploy: z.ZodEnum<{
|
|
4071
4656
|
none: "none";
|
|
@@ -4074,6 +4659,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4074
4659
|
fly: "fly";
|
|
4075
4660
|
railway: "railway";
|
|
4076
4661
|
sst: "sst";
|
|
4662
|
+
vercel: "vercel";
|
|
4077
4663
|
}>;
|
|
4078
4664
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
4079
4665
|
none: "none";
|
|
@@ -4301,6 +4887,11 @@ declare function getAllJsonSchemas(): {
|
|
|
4301
4887
|
none: "none";
|
|
4302
4888
|
"upstash-redis": "upstash-redis";
|
|
4303
4889
|
}>;
|
|
4890
|
+
i18n: z.ZodEnum<{
|
|
4891
|
+
none: "none";
|
|
4892
|
+
i18next: "i18next";
|
|
4893
|
+
"next-intl": "next-intl";
|
|
4894
|
+
}>;
|
|
4304
4895
|
search: z.ZodEnum<{
|
|
4305
4896
|
none: "none";
|
|
4306
4897
|
meilisearch: "meilisearch";
|
|
@@ -4317,6 +4908,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4317
4908
|
none: "none";
|
|
4318
4909
|
axum: "axum";
|
|
4319
4910
|
"actix-web": "actix-web";
|
|
4911
|
+
rocket: "rocket";
|
|
4320
4912
|
}>;
|
|
4321
4913
|
rustFrontend: z.ZodEnum<{
|
|
4322
4914
|
none: "none";
|
|
@@ -4327,6 +4919,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4327
4919
|
none: "none";
|
|
4328
4920
|
"sea-orm": "sea-orm";
|
|
4329
4921
|
sqlx: "sqlx";
|
|
4922
|
+
diesel: "diesel";
|
|
4330
4923
|
}>;
|
|
4331
4924
|
rustApi: z.ZodEnum<{
|
|
4332
4925
|
none: "none";
|
|
@@ -4352,16 +4945,32 @@ declare function getAllJsonSchemas(): {
|
|
|
4352
4945
|
tracing: "tracing";
|
|
4353
4946
|
"env-logger": "env-logger";
|
|
4354
4947
|
}>;
|
|
4948
|
+
rustErrorHandling: z.ZodEnum<{
|
|
4949
|
+
none: "none";
|
|
4950
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
4951
|
+
eyre: "eyre";
|
|
4952
|
+
}>;
|
|
4953
|
+
rustCaching: z.ZodEnum<{
|
|
4954
|
+
none: "none";
|
|
4955
|
+
redis: "redis";
|
|
4956
|
+
moka: "moka";
|
|
4957
|
+
}>;
|
|
4958
|
+
rustAuth: z.ZodEnum<{
|
|
4959
|
+
none: "none";
|
|
4960
|
+
oauth2: "oauth2";
|
|
4961
|
+
}>;
|
|
4355
4962
|
pythonWebFramework: z.ZodEnum<{
|
|
4356
4963
|
none: "none";
|
|
4357
4964
|
fastapi: "fastapi";
|
|
4358
4965
|
django: "django";
|
|
4359
4966
|
flask: "flask";
|
|
4967
|
+
litestar: "litestar";
|
|
4360
4968
|
}>;
|
|
4361
4969
|
pythonOrm: z.ZodEnum<{
|
|
4362
4970
|
none: "none";
|
|
4363
4971
|
sqlalchemy: "sqlalchemy";
|
|
4364
4972
|
sqlmodel: "sqlmodel";
|
|
4973
|
+
"tortoise-orm": "tortoise-orm";
|
|
4365
4974
|
}>;
|
|
4366
4975
|
pythonValidation: z.ZodEnum<{
|
|
4367
4976
|
none: "none";
|
|
@@ -4376,10 +4985,19 @@ declare function getAllJsonSchemas(): {
|
|
|
4376
4985
|
"anthropic-sdk": "anthropic-sdk";
|
|
4377
4986
|
crewai: "crewai";
|
|
4378
4987
|
}>>;
|
|
4988
|
+
pythonAuth: z.ZodEnum<{
|
|
4989
|
+
none: "none";
|
|
4990
|
+
authlib: "authlib";
|
|
4991
|
+
jwt: "jwt";
|
|
4992
|
+
}>;
|
|
4379
4993
|
pythonTaskQueue: z.ZodEnum<{
|
|
4380
4994
|
none: "none";
|
|
4381
4995
|
celery: "celery";
|
|
4382
4996
|
}>;
|
|
4997
|
+
pythonGraphql: z.ZodEnum<{
|
|
4998
|
+
none: "none";
|
|
4999
|
+
strawberry: "strawberry";
|
|
5000
|
+
}>;
|
|
4383
5001
|
pythonQuality: z.ZodEnum<{
|
|
4384
5002
|
none: "none";
|
|
4385
5003
|
ruff: "ruff";
|
|
@@ -4389,11 +5007,13 @@ declare function getAllJsonSchemas(): {
|
|
|
4389
5007
|
gin: "gin";
|
|
4390
5008
|
echo: "echo";
|
|
4391
5009
|
fiber: "fiber";
|
|
5010
|
+
chi: "chi";
|
|
4392
5011
|
}>;
|
|
4393
5012
|
goOrm: z.ZodEnum<{
|
|
4394
5013
|
none: "none";
|
|
4395
5014
|
gorm: "gorm";
|
|
4396
5015
|
sqlc: "sqlc";
|
|
5016
|
+
ent: "ent";
|
|
4397
5017
|
}>;
|
|
4398
5018
|
goApi: z.ZodEnum<{
|
|
4399
5019
|
none: "none";
|
|
@@ -4407,7 +5027,43 @@ declare function getAllJsonSchemas(): {
|
|
|
4407
5027
|
goLogging: z.ZodEnum<{
|
|
4408
5028
|
none: "none";
|
|
4409
5029
|
zap: "zap";
|
|
5030
|
+
zerolog: "zerolog";
|
|
5031
|
+
slog: "slog";
|
|
5032
|
+
}>;
|
|
5033
|
+
goAuth: z.ZodEnum<{
|
|
5034
|
+
none: "none";
|
|
5035
|
+
jwt: "jwt";
|
|
5036
|
+
casbin: "casbin";
|
|
5037
|
+
}>;
|
|
5038
|
+
javaWebFramework: z.ZodEnum<{
|
|
5039
|
+
none: "none";
|
|
5040
|
+
"spring-boot": "spring-boot";
|
|
5041
|
+
}>;
|
|
5042
|
+
javaBuildTool: z.ZodEnum<{
|
|
5043
|
+
none: "none";
|
|
5044
|
+
maven: "maven";
|
|
5045
|
+
gradle: "gradle";
|
|
4410
5046
|
}>;
|
|
5047
|
+
javaOrm: z.ZodEnum<{
|
|
5048
|
+
none: "none";
|
|
5049
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
5050
|
+
}>;
|
|
5051
|
+
javaAuth: z.ZodEnum<{
|
|
5052
|
+
none: "none";
|
|
5053
|
+
"spring-security": "spring-security";
|
|
5054
|
+
}>;
|
|
5055
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5056
|
+
none: "none";
|
|
5057
|
+
"spring-actuator": "spring-actuator";
|
|
5058
|
+
"spring-validation": "spring-validation";
|
|
5059
|
+
flyway: "flyway";
|
|
5060
|
+
}>>;
|
|
5061
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
5062
|
+
none: "none";
|
|
5063
|
+
junit5: "junit5";
|
|
5064
|
+
mockito: "mockito";
|
|
5065
|
+
testcontainers: "testcontainers";
|
|
5066
|
+
}>>;
|
|
4411
5067
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4412
5068
|
none: "none";
|
|
4413
5069
|
"claude-md": "claude-md";
|
|
@@ -4424,5 +5080,5 @@ declare function getAllJsonSchemas(): {
|
|
|
4424
5080
|
}, z.core.$strip>>;
|
|
4425
5081
|
};
|
|
4426
5082
|
//#endregion
|
|
4427
|
-
export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
|
|
5083
|
+
export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getJavaAuthJsonSchema, getJavaBuildToolJsonSchema, getJavaLibrariesJsonSchema, getJavaOrmJsonSchema, getJavaTestingLibrariesJsonSchema, getJavaWebFrameworkJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
|
|
4428
5084
|
//# sourceMappingURL=json-schema.d.mts.map
|