@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
|
@@ -6,6 +6,7 @@ declare const EcosystemSchema: z.ZodEnum<{
|
|
|
6
6
|
rust: "rust";
|
|
7
7
|
python: "python";
|
|
8
8
|
go: "go";
|
|
9
|
+
java: "java";
|
|
9
10
|
}>;
|
|
10
11
|
declare const DatabaseSchema: z.ZodEnum<{
|
|
11
12
|
none: "none";
|
|
@@ -133,6 +134,7 @@ declare const APISchema: z.ZodEnum<{
|
|
|
133
134
|
orpc: "orpc";
|
|
134
135
|
"ts-rest": "ts-rest";
|
|
135
136
|
garph: "garph";
|
|
137
|
+
"graphql-yoga": "graphql-yoga";
|
|
136
138
|
}>;
|
|
137
139
|
declare const AuthSchema: z.ZodEnum<{
|
|
138
140
|
none: "none";
|
|
@@ -159,6 +161,7 @@ declare const WebDeploySchema: z.ZodEnum<{
|
|
|
159
161
|
fly: "fly";
|
|
160
162
|
railway: "railway";
|
|
161
163
|
sst: "sst";
|
|
164
|
+
vercel: "vercel";
|
|
162
165
|
}>;
|
|
163
166
|
declare const ServerDeploySchema: z.ZodEnum<{
|
|
164
167
|
none: "none";
|
|
@@ -167,6 +170,7 @@ declare const ServerDeploySchema: z.ZodEnum<{
|
|
|
167
170
|
fly: "fly";
|
|
168
171
|
railway: "railway";
|
|
169
172
|
sst: "sst";
|
|
173
|
+
vercel: "vercel";
|
|
170
174
|
}>;
|
|
171
175
|
declare const AISchema: z.ZodEnum<{
|
|
172
176
|
none: "none";
|
|
@@ -263,6 +267,11 @@ declare const CachingSchema: z.ZodEnum<{
|
|
|
263
267
|
none: "none";
|
|
264
268
|
"upstash-redis": "upstash-redis";
|
|
265
269
|
}>;
|
|
270
|
+
declare const I18nSchema: z.ZodEnum<{
|
|
271
|
+
none: "none";
|
|
272
|
+
i18next: "i18next";
|
|
273
|
+
"next-intl": "next-intl";
|
|
274
|
+
}>;
|
|
266
275
|
declare const SearchSchema: z.ZodEnum<{
|
|
267
276
|
none: "none";
|
|
268
277
|
meilisearch: "meilisearch";
|
|
@@ -314,6 +323,7 @@ declare const RustWebFrameworkSchema: z.ZodEnum<{
|
|
|
314
323
|
none: "none";
|
|
315
324
|
axum: "axum";
|
|
316
325
|
"actix-web": "actix-web";
|
|
326
|
+
rocket: "rocket";
|
|
317
327
|
}>;
|
|
318
328
|
declare const RustFrontendSchema: z.ZodEnum<{
|
|
319
329
|
none: "none";
|
|
@@ -324,6 +334,7 @@ declare const RustOrmSchema: z.ZodEnum<{
|
|
|
324
334
|
none: "none";
|
|
325
335
|
"sea-orm": "sea-orm";
|
|
326
336
|
sqlx: "sqlx";
|
|
337
|
+
diesel: "diesel";
|
|
327
338
|
}>;
|
|
328
339
|
declare const RustApiSchema: z.ZodEnum<{
|
|
329
340
|
none: "none";
|
|
@@ -349,16 +360,32 @@ declare const RustLoggingSchema: z.ZodEnum<{
|
|
|
349
360
|
tracing: "tracing";
|
|
350
361
|
"env-logger": "env-logger";
|
|
351
362
|
}>;
|
|
363
|
+
declare const RustErrorHandlingSchema: z.ZodEnum<{
|
|
364
|
+
none: "none";
|
|
365
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
366
|
+
eyre: "eyre";
|
|
367
|
+
}>;
|
|
368
|
+
declare const RustCachingSchema: z.ZodEnum<{
|
|
369
|
+
none: "none";
|
|
370
|
+
redis: "redis";
|
|
371
|
+
moka: "moka";
|
|
372
|
+
}>;
|
|
373
|
+
declare const RustAuthSchema: z.ZodEnum<{
|
|
374
|
+
none: "none";
|
|
375
|
+
oauth2: "oauth2";
|
|
376
|
+
}>;
|
|
352
377
|
declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
353
378
|
none: "none";
|
|
354
379
|
fastapi: "fastapi";
|
|
355
380
|
django: "django";
|
|
356
381
|
flask: "flask";
|
|
382
|
+
litestar: "litestar";
|
|
357
383
|
}>;
|
|
358
384
|
declare const PythonOrmSchema: z.ZodEnum<{
|
|
359
385
|
none: "none";
|
|
360
386
|
sqlalchemy: "sqlalchemy";
|
|
361
387
|
sqlmodel: "sqlmodel";
|
|
388
|
+
"tortoise-orm": "tortoise-orm";
|
|
362
389
|
}>;
|
|
363
390
|
declare const PythonValidationSchema: z.ZodEnum<{
|
|
364
391
|
none: "none";
|
|
@@ -373,10 +400,19 @@ declare const PythonAiSchema: z.ZodEnum<{
|
|
|
373
400
|
"anthropic-sdk": "anthropic-sdk";
|
|
374
401
|
crewai: "crewai";
|
|
375
402
|
}>;
|
|
403
|
+
declare const PythonAuthSchema: z.ZodEnum<{
|
|
404
|
+
none: "none";
|
|
405
|
+
authlib: "authlib";
|
|
406
|
+
jwt: "jwt";
|
|
407
|
+
}>;
|
|
376
408
|
declare const PythonTaskQueueSchema: z.ZodEnum<{
|
|
377
409
|
none: "none";
|
|
378
410
|
celery: "celery";
|
|
379
411
|
}>;
|
|
412
|
+
declare const PythonGraphqlSchema: z.ZodEnum<{
|
|
413
|
+
none: "none";
|
|
414
|
+
strawberry: "strawberry";
|
|
415
|
+
}>;
|
|
380
416
|
declare const PythonQualitySchema: z.ZodEnum<{
|
|
381
417
|
none: "none";
|
|
382
418
|
ruff: "ruff";
|
|
@@ -386,11 +422,13 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
386
422
|
gin: "gin";
|
|
387
423
|
echo: "echo";
|
|
388
424
|
fiber: "fiber";
|
|
425
|
+
chi: "chi";
|
|
389
426
|
}>;
|
|
390
427
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
391
428
|
none: "none";
|
|
392
429
|
gorm: "gorm";
|
|
393
430
|
sqlc: "sqlc";
|
|
431
|
+
ent: "ent";
|
|
394
432
|
}>;
|
|
395
433
|
declare const GoApiSchema: z.ZodEnum<{
|
|
396
434
|
none: "none";
|
|
@@ -404,6 +442,42 @@ declare const GoCliSchema: z.ZodEnum<{
|
|
|
404
442
|
declare const GoLoggingSchema: z.ZodEnum<{
|
|
405
443
|
none: "none";
|
|
406
444
|
zap: "zap";
|
|
445
|
+
zerolog: "zerolog";
|
|
446
|
+
slog: "slog";
|
|
447
|
+
}>;
|
|
448
|
+
declare const GoAuthSchema: z.ZodEnum<{
|
|
449
|
+
none: "none";
|
|
450
|
+
jwt: "jwt";
|
|
451
|
+
casbin: "casbin";
|
|
452
|
+
}>;
|
|
453
|
+
declare const JavaWebFrameworkSchema: z.ZodEnum<{
|
|
454
|
+
none: "none";
|
|
455
|
+
"spring-boot": "spring-boot";
|
|
456
|
+
}>;
|
|
457
|
+
declare const JavaBuildToolSchema: z.ZodEnum<{
|
|
458
|
+
none: "none";
|
|
459
|
+
maven: "maven";
|
|
460
|
+
gradle: "gradle";
|
|
461
|
+
}>;
|
|
462
|
+
declare const JavaOrmSchema: z.ZodEnum<{
|
|
463
|
+
none: "none";
|
|
464
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
465
|
+
}>;
|
|
466
|
+
declare const JavaAuthSchema: z.ZodEnum<{
|
|
467
|
+
none: "none";
|
|
468
|
+
"spring-security": "spring-security";
|
|
469
|
+
}>;
|
|
470
|
+
declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
471
|
+
none: "none";
|
|
472
|
+
"spring-actuator": "spring-actuator";
|
|
473
|
+
"spring-validation": "spring-validation";
|
|
474
|
+
flyway: "flyway";
|
|
475
|
+
}>;
|
|
476
|
+
declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
477
|
+
none: "none";
|
|
478
|
+
junit5: "junit5";
|
|
479
|
+
mockito: "mockito";
|
|
480
|
+
testcontainers: "testcontainers";
|
|
407
481
|
}>;
|
|
408
482
|
declare const AiDocsSchema: z.ZodEnum<{
|
|
409
483
|
none: "none";
|
|
@@ -532,6 +606,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
532
606
|
rust: "rust";
|
|
533
607
|
python: "python";
|
|
534
608
|
go: "go";
|
|
609
|
+
java: "java";
|
|
535
610
|
}>>;
|
|
536
611
|
database: z.ZodOptional<z.ZodEnum<{
|
|
537
612
|
none: "none";
|
|
@@ -672,6 +747,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
672
747
|
orpc: "orpc";
|
|
673
748
|
"ts-rest": "ts-rest";
|
|
674
749
|
garph: "garph";
|
|
750
|
+
"graphql-yoga": "graphql-yoga";
|
|
675
751
|
}>>;
|
|
676
752
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
677
753
|
none: "none";
|
|
@@ -680,6 +756,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
680
756
|
fly: "fly";
|
|
681
757
|
railway: "railway";
|
|
682
758
|
sst: "sst";
|
|
759
|
+
vercel: "vercel";
|
|
683
760
|
}>>;
|
|
684
761
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
685
762
|
none: "none";
|
|
@@ -688,6 +765,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
688
765
|
fly: "fly";
|
|
689
766
|
railway: "railway";
|
|
690
767
|
sst: "sst";
|
|
768
|
+
vercel: "vercel";
|
|
691
769
|
}>>;
|
|
692
770
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
693
771
|
merge: "merge";
|
|
@@ -924,6 +1002,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
924
1002
|
none: "none";
|
|
925
1003
|
"upstash-redis": "upstash-redis";
|
|
926
1004
|
}>>;
|
|
1005
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1006
|
+
none: "none";
|
|
1007
|
+
i18next: "i18next";
|
|
1008
|
+
"next-intl": "next-intl";
|
|
1009
|
+
}>>;
|
|
927
1010
|
search: z.ZodOptional<z.ZodEnum<{
|
|
928
1011
|
none: "none";
|
|
929
1012
|
meilisearch: "meilisearch";
|
|
@@ -940,6 +1023,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
940
1023
|
none: "none";
|
|
941
1024
|
axum: "axum";
|
|
942
1025
|
"actix-web": "actix-web";
|
|
1026
|
+
rocket: "rocket";
|
|
943
1027
|
}>>;
|
|
944
1028
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
945
1029
|
none: "none";
|
|
@@ -950,6 +1034,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
950
1034
|
none: "none";
|
|
951
1035
|
"sea-orm": "sea-orm";
|
|
952
1036
|
sqlx: "sqlx";
|
|
1037
|
+
diesel: "diesel";
|
|
953
1038
|
}>>;
|
|
954
1039
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
955
1040
|
none: "none";
|
|
@@ -975,16 +1060,32 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
975
1060
|
tracing: "tracing";
|
|
976
1061
|
"env-logger": "env-logger";
|
|
977
1062
|
}>>;
|
|
1063
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
1064
|
+
none: "none";
|
|
1065
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1066
|
+
eyre: "eyre";
|
|
1067
|
+
}>>;
|
|
1068
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
1069
|
+
none: "none";
|
|
1070
|
+
redis: "redis";
|
|
1071
|
+
moka: "moka";
|
|
1072
|
+
}>>;
|
|
1073
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
1074
|
+
none: "none";
|
|
1075
|
+
oauth2: "oauth2";
|
|
1076
|
+
}>>;
|
|
978
1077
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
979
1078
|
none: "none";
|
|
980
1079
|
fastapi: "fastapi";
|
|
981
1080
|
django: "django";
|
|
982
1081
|
flask: "flask";
|
|
1082
|
+
litestar: "litestar";
|
|
983
1083
|
}>>;
|
|
984
1084
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
985
1085
|
none: "none";
|
|
986
1086
|
sqlalchemy: "sqlalchemy";
|
|
987
1087
|
sqlmodel: "sqlmodel";
|
|
1088
|
+
"tortoise-orm": "tortoise-orm";
|
|
988
1089
|
}>>;
|
|
989
1090
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
990
1091
|
none: "none";
|
|
@@ -999,10 +1100,19 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
999
1100
|
"anthropic-sdk": "anthropic-sdk";
|
|
1000
1101
|
crewai: "crewai";
|
|
1001
1102
|
}>>>;
|
|
1103
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1104
|
+
none: "none";
|
|
1105
|
+
authlib: "authlib";
|
|
1106
|
+
jwt: "jwt";
|
|
1107
|
+
}>>;
|
|
1002
1108
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
1003
1109
|
none: "none";
|
|
1004
1110
|
celery: "celery";
|
|
1005
1111
|
}>>;
|
|
1112
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1113
|
+
none: "none";
|
|
1114
|
+
strawberry: "strawberry";
|
|
1115
|
+
}>>;
|
|
1006
1116
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
1007
1117
|
none: "none";
|
|
1008
1118
|
ruff: "ruff";
|
|
@@ -1012,11 +1122,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1012
1122
|
gin: "gin";
|
|
1013
1123
|
echo: "echo";
|
|
1014
1124
|
fiber: "fiber";
|
|
1125
|
+
chi: "chi";
|
|
1015
1126
|
}>>;
|
|
1016
1127
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1017
1128
|
none: "none";
|
|
1018
1129
|
gorm: "gorm";
|
|
1019
1130
|
sqlc: "sqlc";
|
|
1131
|
+
ent: "ent";
|
|
1020
1132
|
}>>;
|
|
1021
1133
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1022
1134
|
none: "none";
|
|
@@ -1030,7 +1142,43 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1030
1142
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
1031
1143
|
none: "none";
|
|
1032
1144
|
zap: "zap";
|
|
1145
|
+
zerolog: "zerolog";
|
|
1146
|
+
slog: "slog";
|
|
1147
|
+
}>>;
|
|
1148
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
1149
|
+
none: "none";
|
|
1150
|
+
jwt: "jwt";
|
|
1151
|
+
casbin: "casbin";
|
|
1152
|
+
}>>;
|
|
1153
|
+
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1154
|
+
none: "none";
|
|
1155
|
+
"spring-boot": "spring-boot";
|
|
1156
|
+
}>>;
|
|
1157
|
+
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
1158
|
+
none: "none";
|
|
1159
|
+
maven: "maven";
|
|
1160
|
+
gradle: "gradle";
|
|
1161
|
+
}>>;
|
|
1162
|
+
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
1163
|
+
none: "none";
|
|
1164
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
1033
1165
|
}>>;
|
|
1166
|
+
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
1167
|
+
none: "none";
|
|
1168
|
+
"spring-security": "spring-security";
|
|
1169
|
+
}>>;
|
|
1170
|
+
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1171
|
+
none: "none";
|
|
1172
|
+
"spring-actuator": "spring-actuator";
|
|
1173
|
+
"spring-validation": "spring-validation";
|
|
1174
|
+
flyway: "flyway";
|
|
1175
|
+
}>>>;
|
|
1176
|
+
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1177
|
+
none: "none";
|
|
1178
|
+
junit5: "junit5";
|
|
1179
|
+
mockito: "mockito";
|
|
1180
|
+
testcontainers: "testcontainers";
|
|
1181
|
+
}>>>;
|
|
1034
1182
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1035
1183
|
none: "none";
|
|
1036
1184
|
"claude-md": "claude-md";
|
|
@@ -1071,6 +1219,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1071
1219
|
fly: "fly";
|
|
1072
1220
|
railway: "railway";
|
|
1073
1221
|
sst: "sst";
|
|
1222
|
+
vercel: "vercel";
|
|
1074
1223
|
}>>;
|
|
1075
1224
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1076
1225
|
none: "none";
|
|
@@ -1079,6 +1228,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1079
1228
|
fly: "fly";
|
|
1080
1229
|
railway: "railway";
|
|
1081
1230
|
sst: "sst";
|
|
1231
|
+
vercel: "vercel";
|
|
1082
1232
|
}>>;
|
|
1083
1233
|
projectDir: z.ZodOptional<z.ZodString>;
|
|
1084
1234
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1107,6 +1257,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1107
1257
|
rust: "rust";
|
|
1108
1258
|
python: "python";
|
|
1109
1259
|
go: "go";
|
|
1260
|
+
java: "java";
|
|
1110
1261
|
}>>;
|
|
1111
1262
|
database: z.ZodOptional<z.ZodEnum<{
|
|
1112
1263
|
none: "none";
|
|
@@ -1247,6 +1398,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1247
1398
|
orpc: "orpc";
|
|
1248
1399
|
"ts-rest": "ts-rest";
|
|
1249
1400
|
garph: "garph";
|
|
1401
|
+
"graphql-yoga": "graphql-yoga";
|
|
1250
1402
|
}>>;
|
|
1251
1403
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1252
1404
|
none: "none";
|
|
@@ -1255,6 +1407,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1255
1407
|
fly: "fly";
|
|
1256
1408
|
railway: "railway";
|
|
1257
1409
|
sst: "sst";
|
|
1410
|
+
vercel: "vercel";
|
|
1258
1411
|
}>>;
|
|
1259
1412
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1260
1413
|
none: "none";
|
|
@@ -1263,6 +1416,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1263
1416
|
fly: "fly";
|
|
1264
1417
|
railway: "railway";
|
|
1265
1418
|
sst: "sst";
|
|
1419
|
+
vercel: "vercel";
|
|
1266
1420
|
}>>;
|
|
1267
1421
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1268
1422
|
merge: "merge";
|
|
@@ -1499,6 +1653,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1499
1653
|
none: "none";
|
|
1500
1654
|
"upstash-redis": "upstash-redis";
|
|
1501
1655
|
}>>;
|
|
1656
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1657
|
+
none: "none";
|
|
1658
|
+
i18next: "i18next";
|
|
1659
|
+
"next-intl": "next-intl";
|
|
1660
|
+
}>>;
|
|
1502
1661
|
search: z.ZodOptional<z.ZodEnum<{
|
|
1503
1662
|
none: "none";
|
|
1504
1663
|
meilisearch: "meilisearch";
|
|
@@ -1515,6 +1674,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1515
1674
|
none: "none";
|
|
1516
1675
|
axum: "axum";
|
|
1517
1676
|
"actix-web": "actix-web";
|
|
1677
|
+
rocket: "rocket";
|
|
1518
1678
|
}>>;
|
|
1519
1679
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
1520
1680
|
none: "none";
|
|
@@ -1525,6 +1685,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1525
1685
|
none: "none";
|
|
1526
1686
|
"sea-orm": "sea-orm";
|
|
1527
1687
|
sqlx: "sqlx";
|
|
1688
|
+
diesel: "diesel";
|
|
1528
1689
|
}>>;
|
|
1529
1690
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
1530
1691
|
none: "none";
|
|
@@ -1550,16 +1711,32 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1550
1711
|
tracing: "tracing";
|
|
1551
1712
|
"env-logger": "env-logger";
|
|
1552
1713
|
}>>;
|
|
1714
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
1715
|
+
none: "none";
|
|
1716
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
1717
|
+
eyre: "eyre";
|
|
1718
|
+
}>>;
|
|
1719
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
1720
|
+
none: "none";
|
|
1721
|
+
redis: "redis";
|
|
1722
|
+
moka: "moka";
|
|
1723
|
+
}>>;
|
|
1724
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
1725
|
+
none: "none";
|
|
1726
|
+
oauth2: "oauth2";
|
|
1727
|
+
}>>;
|
|
1553
1728
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1554
1729
|
none: "none";
|
|
1555
1730
|
fastapi: "fastapi";
|
|
1556
1731
|
django: "django";
|
|
1557
1732
|
flask: "flask";
|
|
1733
|
+
litestar: "litestar";
|
|
1558
1734
|
}>>;
|
|
1559
1735
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1560
1736
|
none: "none";
|
|
1561
1737
|
sqlalchemy: "sqlalchemy";
|
|
1562
1738
|
sqlmodel: "sqlmodel";
|
|
1739
|
+
"tortoise-orm": "tortoise-orm";
|
|
1563
1740
|
}>>;
|
|
1564
1741
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
1565
1742
|
none: "none";
|
|
@@ -1574,10 +1751,19 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1574
1751
|
"anthropic-sdk": "anthropic-sdk";
|
|
1575
1752
|
crewai: "crewai";
|
|
1576
1753
|
}>>>;
|
|
1754
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1755
|
+
none: "none";
|
|
1756
|
+
authlib: "authlib";
|
|
1757
|
+
jwt: "jwt";
|
|
1758
|
+
}>>;
|
|
1577
1759
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
1578
1760
|
none: "none";
|
|
1579
1761
|
celery: "celery";
|
|
1580
1762
|
}>>;
|
|
1763
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1764
|
+
none: "none";
|
|
1765
|
+
strawberry: "strawberry";
|
|
1766
|
+
}>>;
|
|
1581
1767
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
1582
1768
|
none: "none";
|
|
1583
1769
|
ruff: "ruff";
|
|
@@ -1587,11 +1773,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1587
1773
|
gin: "gin";
|
|
1588
1774
|
echo: "echo";
|
|
1589
1775
|
fiber: "fiber";
|
|
1776
|
+
chi: "chi";
|
|
1590
1777
|
}>>;
|
|
1591
1778
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1592
1779
|
none: "none";
|
|
1593
1780
|
gorm: "gorm";
|
|
1594
1781
|
sqlc: "sqlc";
|
|
1782
|
+
ent: "ent";
|
|
1595
1783
|
}>>;
|
|
1596
1784
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1597
1785
|
none: "none";
|
|
@@ -1605,7 +1793,43 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1605
1793
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
1606
1794
|
none: "none";
|
|
1607
1795
|
zap: "zap";
|
|
1796
|
+
zerolog: "zerolog";
|
|
1797
|
+
slog: "slog";
|
|
1798
|
+
}>>;
|
|
1799
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
1800
|
+
none: "none";
|
|
1801
|
+
jwt: "jwt";
|
|
1802
|
+
casbin: "casbin";
|
|
1608
1803
|
}>>;
|
|
1804
|
+
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1805
|
+
none: "none";
|
|
1806
|
+
"spring-boot": "spring-boot";
|
|
1807
|
+
}>>;
|
|
1808
|
+
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
1809
|
+
none: "none";
|
|
1810
|
+
maven: "maven";
|
|
1811
|
+
gradle: "gradle";
|
|
1812
|
+
}>>;
|
|
1813
|
+
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
1814
|
+
none: "none";
|
|
1815
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
1816
|
+
}>>;
|
|
1817
|
+
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
1818
|
+
none: "none";
|
|
1819
|
+
"spring-security": "spring-security";
|
|
1820
|
+
}>>;
|
|
1821
|
+
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1822
|
+
none: "none";
|
|
1823
|
+
"spring-actuator": "spring-actuator";
|
|
1824
|
+
"spring-validation": "spring-validation";
|
|
1825
|
+
flyway: "flyway";
|
|
1826
|
+
}>>>;
|
|
1827
|
+
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1828
|
+
none: "none";
|
|
1829
|
+
junit5: "junit5";
|
|
1830
|
+
mockito: "mockito";
|
|
1831
|
+
testcontainers: "testcontainers";
|
|
1832
|
+
}>>>;
|
|
1609
1833
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1610
1834
|
none: "none";
|
|
1611
1835
|
"claude-md": "claude-md";
|
|
@@ -1623,6 +1847,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1623
1847
|
rust: "rust";
|
|
1624
1848
|
python: "python";
|
|
1625
1849
|
go: "go";
|
|
1850
|
+
java: "java";
|
|
1626
1851
|
}>;
|
|
1627
1852
|
database: z.ZodEnum<{
|
|
1628
1853
|
none: "none";
|
|
@@ -1763,6 +1988,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1763
1988
|
orpc: "orpc";
|
|
1764
1989
|
"ts-rest": "ts-rest";
|
|
1765
1990
|
garph: "garph";
|
|
1991
|
+
"graphql-yoga": "graphql-yoga";
|
|
1766
1992
|
}>;
|
|
1767
1993
|
webDeploy: z.ZodEnum<{
|
|
1768
1994
|
none: "none";
|
|
@@ -1771,6 +1997,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1771
1997
|
fly: "fly";
|
|
1772
1998
|
railway: "railway";
|
|
1773
1999
|
sst: "sst";
|
|
2000
|
+
vercel: "vercel";
|
|
1774
2001
|
}>;
|
|
1775
2002
|
serverDeploy: z.ZodEnum<{
|
|
1776
2003
|
none: "none";
|
|
@@ -1779,6 +2006,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1779
2006
|
fly: "fly";
|
|
1780
2007
|
railway: "railway";
|
|
1781
2008
|
sst: "sst";
|
|
2009
|
+
vercel: "vercel";
|
|
1782
2010
|
}>;
|
|
1783
2011
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1784
2012
|
none: "none";
|
|
@@ -2006,6 +2234,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2006
2234
|
none: "none";
|
|
2007
2235
|
"upstash-redis": "upstash-redis";
|
|
2008
2236
|
}>;
|
|
2237
|
+
i18n: z.ZodEnum<{
|
|
2238
|
+
none: "none";
|
|
2239
|
+
i18next: "i18next";
|
|
2240
|
+
"next-intl": "next-intl";
|
|
2241
|
+
}>;
|
|
2009
2242
|
search: z.ZodEnum<{
|
|
2010
2243
|
none: "none";
|
|
2011
2244
|
meilisearch: "meilisearch";
|
|
@@ -2022,6 +2255,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2022
2255
|
none: "none";
|
|
2023
2256
|
axum: "axum";
|
|
2024
2257
|
"actix-web": "actix-web";
|
|
2258
|
+
rocket: "rocket";
|
|
2025
2259
|
}>;
|
|
2026
2260
|
rustFrontend: z.ZodEnum<{
|
|
2027
2261
|
none: "none";
|
|
@@ -2032,6 +2266,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2032
2266
|
none: "none";
|
|
2033
2267
|
"sea-orm": "sea-orm";
|
|
2034
2268
|
sqlx: "sqlx";
|
|
2269
|
+
diesel: "diesel";
|
|
2035
2270
|
}>;
|
|
2036
2271
|
rustApi: z.ZodEnum<{
|
|
2037
2272
|
none: "none";
|
|
@@ -2057,16 +2292,32 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2057
2292
|
tracing: "tracing";
|
|
2058
2293
|
"env-logger": "env-logger";
|
|
2059
2294
|
}>;
|
|
2295
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2296
|
+
none: "none";
|
|
2297
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2298
|
+
eyre: "eyre";
|
|
2299
|
+
}>;
|
|
2300
|
+
rustCaching: z.ZodEnum<{
|
|
2301
|
+
none: "none";
|
|
2302
|
+
redis: "redis";
|
|
2303
|
+
moka: "moka";
|
|
2304
|
+
}>;
|
|
2305
|
+
rustAuth: z.ZodEnum<{
|
|
2306
|
+
none: "none";
|
|
2307
|
+
oauth2: "oauth2";
|
|
2308
|
+
}>;
|
|
2060
2309
|
pythonWebFramework: z.ZodEnum<{
|
|
2061
2310
|
none: "none";
|
|
2062
2311
|
fastapi: "fastapi";
|
|
2063
2312
|
django: "django";
|
|
2064
2313
|
flask: "flask";
|
|
2314
|
+
litestar: "litestar";
|
|
2065
2315
|
}>;
|
|
2066
2316
|
pythonOrm: z.ZodEnum<{
|
|
2067
2317
|
none: "none";
|
|
2068
2318
|
sqlalchemy: "sqlalchemy";
|
|
2069
2319
|
sqlmodel: "sqlmodel";
|
|
2320
|
+
"tortoise-orm": "tortoise-orm";
|
|
2070
2321
|
}>;
|
|
2071
2322
|
pythonValidation: z.ZodEnum<{
|
|
2072
2323
|
none: "none";
|
|
@@ -2081,10 +2332,19 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2081
2332
|
"anthropic-sdk": "anthropic-sdk";
|
|
2082
2333
|
crewai: "crewai";
|
|
2083
2334
|
}>>;
|
|
2335
|
+
pythonAuth: z.ZodEnum<{
|
|
2336
|
+
none: "none";
|
|
2337
|
+
authlib: "authlib";
|
|
2338
|
+
jwt: "jwt";
|
|
2339
|
+
}>;
|
|
2084
2340
|
pythonTaskQueue: z.ZodEnum<{
|
|
2085
2341
|
none: "none";
|
|
2086
2342
|
celery: "celery";
|
|
2087
2343
|
}>;
|
|
2344
|
+
pythonGraphql: z.ZodEnum<{
|
|
2345
|
+
none: "none";
|
|
2346
|
+
strawberry: "strawberry";
|
|
2347
|
+
}>;
|
|
2088
2348
|
pythonQuality: z.ZodEnum<{
|
|
2089
2349
|
none: "none";
|
|
2090
2350
|
ruff: "ruff";
|
|
@@ -2094,11 +2354,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2094
2354
|
gin: "gin";
|
|
2095
2355
|
echo: "echo";
|
|
2096
2356
|
fiber: "fiber";
|
|
2357
|
+
chi: "chi";
|
|
2097
2358
|
}>;
|
|
2098
2359
|
goOrm: z.ZodEnum<{
|
|
2099
2360
|
none: "none";
|
|
2100
2361
|
gorm: "gorm";
|
|
2101
2362
|
sqlc: "sqlc";
|
|
2363
|
+
ent: "ent";
|
|
2102
2364
|
}>;
|
|
2103
2365
|
goApi: z.ZodEnum<{
|
|
2104
2366
|
none: "none";
|
|
@@ -2112,7 +2374,43 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2112
2374
|
goLogging: z.ZodEnum<{
|
|
2113
2375
|
none: "none";
|
|
2114
2376
|
zap: "zap";
|
|
2377
|
+
zerolog: "zerolog";
|
|
2378
|
+
slog: "slog";
|
|
2115
2379
|
}>;
|
|
2380
|
+
goAuth: z.ZodEnum<{
|
|
2381
|
+
none: "none";
|
|
2382
|
+
jwt: "jwt";
|
|
2383
|
+
casbin: "casbin";
|
|
2384
|
+
}>;
|
|
2385
|
+
javaWebFramework: z.ZodEnum<{
|
|
2386
|
+
none: "none";
|
|
2387
|
+
"spring-boot": "spring-boot";
|
|
2388
|
+
}>;
|
|
2389
|
+
javaBuildTool: z.ZodEnum<{
|
|
2390
|
+
none: "none";
|
|
2391
|
+
maven: "maven";
|
|
2392
|
+
gradle: "gradle";
|
|
2393
|
+
}>;
|
|
2394
|
+
javaOrm: z.ZodEnum<{
|
|
2395
|
+
none: "none";
|
|
2396
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
2397
|
+
}>;
|
|
2398
|
+
javaAuth: z.ZodEnum<{
|
|
2399
|
+
none: "none";
|
|
2400
|
+
"spring-security": "spring-security";
|
|
2401
|
+
}>;
|
|
2402
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2403
|
+
none: "none";
|
|
2404
|
+
"spring-actuator": "spring-actuator";
|
|
2405
|
+
"spring-validation": "spring-validation";
|
|
2406
|
+
flyway: "flyway";
|
|
2407
|
+
}>>;
|
|
2408
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
2409
|
+
none: "none";
|
|
2410
|
+
junit5: "junit5";
|
|
2411
|
+
mockito: "mockito";
|
|
2412
|
+
testcontainers: "testcontainers";
|
|
2413
|
+
}>>;
|
|
2116
2414
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2117
2415
|
none: "none";
|
|
2118
2416
|
"claude-md": "claude-md";
|
|
@@ -2128,6 +2426,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2128
2426
|
rust: "rust";
|
|
2129
2427
|
python: "python";
|
|
2130
2428
|
go: "go";
|
|
2429
|
+
java: "java";
|
|
2131
2430
|
}>;
|
|
2132
2431
|
database: z.ZodEnum<{
|
|
2133
2432
|
none: "none";
|
|
@@ -2266,6 +2565,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2266
2565
|
orpc: "orpc";
|
|
2267
2566
|
"ts-rest": "ts-rest";
|
|
2268
2567
|
garph: "garph";
|
|
2568
|
+
"graphql-yoga": "graphql-yoga";
|
|
2269
2569
|
}>;
|
|
2270
2570
|
webDeploy: z.ZodEnum<{
|
|
2271
2571
|
none: "none";
|
|
@@ -2274,6 +2574,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2274
2574
|
fly: "fly";
|
|
2275
2575
|
railway: "railway";
|
|
2276
2576
|
sst: "sst";
|
|
2577
|
+
vercel: "vercel";
|
|
2277
2578
|
}>;
|
|
2278
2579
|
serverDeploy: z.ZodEnum<{
|
|
2279
2580
|
none: "none";
|
|
@@ -2282,6 +2583,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2282
2583
|
fly: "fly";
|
|
2283
2584
|
railway: "railway";
|
|
2284
2585
|
sst: "sst";
|
|
2586
|
+
vercel: "vercel";
|
|
2285
2587
|
}>;
|
|
2286
2588
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2287
2589
|
none: "none";
|
|
@@ -2509,6 +2811,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2509
2811
|
none: "none";
|
|
2510
2812
|
"upstash-redis": "upstash-redis";
|
|
2511
2813
|
}>;
|
|
2814
|
+
i18n: z.ZodEnum<{
|
|
2815
|
+
none: "none";
|
|
2816
|
+
i18next: "i18next";
|
|
2817
|
+
"next-intl": "next-intl";
|
|
2818
|
+
}>;
|
|
2512
2819
|
search: z.ZodEnum<{
|
|
2513
2820
|
none: "none";
|
|
2514
2821
|
meilisearch: "meilisearch";
|
|
@@ -2525,6 +2832,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2525
2832
|
none: "none";
|
|
2526
2833
|
axum: "axum";
|
|
2527
2834
|
"actix-web": "actix-web";
|
|
2835
|
+
rocket: "rocket";
|
|
2528
2836
|
}>;
|
|
2529
2837
|
rustFrontend: z.ZodEnum<{
|
|
2530
2838
|
none: "none";
|
|
@@ -2535,6 +2843,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2535
2843
|
none: "none";
|
|
2536
2844
|
"sea-orm": "sea-orm";
|
|
2537
2845
|
sqlx: "sqlx";
|
|
2846
|
+
diesel: "diesel";
|
|
2538
2847
|
}>;
|
|
2539
2848
|
rustApi: z.ZodEnum<{
|
|
2540
2849
|
none: "none";
|
|
@@ -2560,16 +2869,32 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2560
2869
|
tracing: "tracing";
|
|
2561
2870
|
"env-logger": "env-logger";
|
|
2562
2871
|
}>;
|
|
2872
|
+
rustErrorHandling: z.ZodEnum<{
|
|
2873
|
+
none: "none";
|
|
2874
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
2875
|
+
eyre: "eyre";
|
|
2876
|
+
}>;
|
|
2877
|
+
rustCaching: z.ZodEnum<{
|
|
2878
|
+
none: "none";
|
|
2879
|
+
redis: "redis";
|
|
2880
|
+
moka: "moka";
|
|
2881
|
+
}>;
|
|
2882
|
+
rustAuth: z.ZodEnum<{
|
|
2883
|
+
none: "none";
|
|
2884
|
+
oauth2: "oauth2";
|
|
2885
|
+
}>;
|
|
2563
2886
|
pythonWebFramework: z.ZodEnum<{
|
|
2564
2887
|
none: "none";
|
|
2565
2888
|
fastapi: "fastapi";
|
|
2566
2889
|
django: "django";
|
|
2567
2890
|
flask: "flask";
|
|
2891
|
+
litestar: "litestar";
|
|
2568
2892
|
}>;
|
|
2569
2893
|
pythonOrm: z.ZodEnum<{
|
|
2570
2894
|
none: "none";
|
|
2571
2895
|
sqlalchemy: "sqlalchemy";
|
|
2572
2896
|
sqlmodel: "sqlmodel";
|
|
2897
|
+
"tortoise-orm": "tortoise-orm";
|
|
2573
2898
|
}>;
|
|
2574
2899
|
pythonValidation: z.ZodEnum<{
|
|
2575
2900
|
none: "none";
|
|
@@ -2584,10 +2909,19 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2584
2909
|
"anthropic-sdk": "anthropic-sdk";
|
|
2585
2910
|
crewai: "crewai";
|
|
2586
2911
|
}>>;
|
|
2912
|
+
pythonAuth: z.ZodEnum<{
|
|
2913
|
+
none: "none";
|
|
2914
|
+
authlib: "authlib";
|
|
2915
|
+
jwt: "jwt";
|
|
2916
|
+
}>;
|
|
2587
2917
|
pythonTaskQueue: z.ZodEnum<{
|
|
2588
2918
|
none: "none";
|
|
2589
2919
|
celery: "celery";
|
|
2590
2920
|
}>;
|
|
2921
|
+
pythonGraphql: z.ZodEnum<{
|
|
2922
|
+
none: "none";
|
|
2923
|
+
strawberry: "strawberry";
|
|
2924
|
+
}>;
|
|
2591
2925
|
pythonQuality: z.ZodEnum<{
|
|
2592
2926
|
none: "none";
|
|
2593
2927
|
ruff: "ruff";
|
|
@@ -2597,11 +2931,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2597
2931
|
gin: "gin";
|
|
2598
2932
|
echo: "echo";
|
|
2599
2933
|
fiber: "fiber";
|
|
2934
|
+
chi: "chi";
|
|
2600
2935
|
}>;
|
|
2601
2936
|
goOrm: z.ZodEnum<{
|
|
2602
2937
|
none: "none";
|
|
2603
2938
|
gorm: "gorm";
|
|
2604
2939
|
sqlc: "sqlc";
|
|
2940
|
+
ent: "ent";
|
|
2605
2941
|
}>;
|
|
2606
2942
|
goApi: z.ZodEnum<{
|
|
2607
2943
|
none: "none";
|
|
@@ -2615,7 +2951,43 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2615
2951
|
goLogging: z.ZodEnum<{
|
|
2616
2952
|
none: "none";
|
|
2617
2953
|
zap: "zap";
|
|
2954
|
+
zerolog: "zerolog";
|
|
2955
|
+
slog: "slog";
|
|
2956
|
+
}>;
|
|
2957
|
+
goAuth: z.ZodEnum<{
|
|
2958
|
+
none: "none";
|
|
2959
|
+
jwt: "jwt";
|
|
2960
|
+
casbin: "casbin";
|
|
2961
|
+
}>;
|
|
2962
|
+
javaWebFramework: z.ZodEnum<{
|
|
2963
|
+
none: "none";
|
|
2964
|
+
"spring-boot": "spring-boot";
|
|
2965
|
+
}>;
|
|
2966
|
+
javaBuildTool: z.ZodEnum<{
|
|
2967
|
+
none: "none";
|
|
2968
|
+
maven: "maven";
|
|
2969
|
+
gradle: "gradle";
|
|
2970
|
+
}>;
|
|
2971
|
+
javaOrm: z.ZodEnum<{
|
|
2972
|
+
none: "none";
|
|
2973
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
2974
|
+
}>;
|
|
2975
|
+
javaAuth: z.ZodEnum<{
|
|
2976
|
+
none: "none";
|
|
2977
|
+
"spring-security": "spring-security";
|
|
2618
2978
|
}>;
|
|
2979
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2980
|
+
none: "none";
|
|
2981
|
+
"spring-actuator": "spring-actuator";
|
|
2982
|
+
"spring-validation": "spring-validation";
|
|
2983
|
+
flyway: "flyway";
|
|
2984
|
+
}>>;
|
|
2985
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
2986
|
+
none: "none";
|
|
2987
|
+
junit5: "junit5";
|
|
2988
|
+
mockito: "mockito";
|
|
2989
|
+
testcontainers: "testcontainers";
|
|
2990
|
+
}>>;
|
|
2619
2991
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2620
2992
|
none: "none";
|
|
2621
2993
|
"claude-md": "claude-md";
|
|
@@ -2632,6 +3004,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2632
3004
|
rust: "rust";
|
|
2633
3005
|
python: "python";
|
|
2634
3006
|
go: "go";
|
|
3007
|
+
java: "java";
|
|
2635
3008
|
}>;
|
|
2636
3009
|
database: z.ZodEnum<{
|
|
2637
3010
|
none: "none";
|
|
@@ -2770,6 +3143,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2770
3143
|
orpc: "orpc";
|
|
2771
3144
|
"ts-rest": "ts-rest";
|
|
2772
3145
|
garph: "garph";
|
|
3146
|
+
"graphql-yoga": "graphql-yoga";
|
|
2773
3147
|
}>;
|
|
2774
3148
|
webDeploy: z.ZodEnum<{
|
|
2775
3149
|
none: "none";
|
|
@@ -2778,6 +3152,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2778
3152
|
fly: "fly";
|
|
2779
3153
|
railway: "railway";
|
|
2780
3154
|
sst: "sst";
|
|
3155
|
+
vercel: "vercel";
|
|
2781
3156
|
}>;
|
|
2782
3157
|
serverDeploy: z.ZodEnum<{
|
|
2783
3158
|
none: "none";
|
|
@@ -2786,6 +3161,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2786
3161
|
fly: "fly";
|
|
2787
3162
|
railway: "railway";
|
|
2788
3163
|
sst: "sst";
|
|
3164
|
+
vercel: "vercel";
|
|
2789
3165
|
}>;
|
|
2790
3166
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2791
3167
|
none: "none";
|
|
@@ -3013,6 +3389,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3013
3389
|
none: "none";
|
|
3014
3390
|
"upstash-redis": "upstash-redis";
|
|
3015
3391
|
}>;
|
|
3392
|
+
i18n: z.ZodEnum<{
|
|
3393
|
+
none: "none";
|
|
3394
|
+
i18next: "i18next";
|
|
3395
|
+
"next-intl": "next-intl";
|
|
3396
|
+
}>;
|
|
3016
3397
|
search: z.ZodEnum<{
|
|
3017
3398
|
none: "none";
|
|
3018
3399
|
meilisearch: "meilisearch";
|
|
@@ -3029,6 +3410,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3029
3410
|
none: "none";
|
|
3030
3411
|
axum: "axum";
|
|
3031
3412
|
"actix-web": "actix-web";
|
|
3413
|
+
rocket: "rocket";
|
|
3032
3414
|
}>;
|
|
3033
3415
|
rustFrontend: z.ZodEnum<{
|
|
3034
3416
|
none: "none";
|
|
@@ -3039,6 +3421,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3039
3421
|
none: "none";
|
|
3040
3422
|
"sea-orm": "sea-orm";
|
|
3041
3423
|
sqlx: "sqlx";
|
|
3424
|
+
diesel: "diesel";
|
|
3042
3425
|
}>;
|
|
3043
3426
|
rustApi: z.ZodEnum<{
|
|
3044
3427
|
none: "none";
|
|
@@ -3064,16 +3447,32 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3064
3447
|
tracing: "tracing";
|
|
3065
3448
|
"env-logger": "env-logger";
|
|
3066
3449
|
}>;
|
|
3450
|
+
rustErrorHandling: z.ZodEnum<{
|
|
3451
|
+
none: "none";
|
|
3452
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
3453
|
+
eyre: "eyre";
|
|
3454
|
+
}>;
|
|
3455
|
+
rustCaching: z.ZodEnum<{
|
|
3456
|
+
none: "none";
|
|
3457
|
+
redis: "redis";
|
|
3458
|
+
moka: "moka";
|
|
3459
|
+
}>;
|
|
3460
|
+
rustAuth: z.ZodEnum<{
|
|
3461
|
+
none: "none";
|
|
3462
|
+
oauth2: "oauth2";
|
|
3463
|
+
}>;
|
|
3067
3464
|
pythonWebFramework: z.ZodEnum<{
|
|
3068
3465
|
none: "none";
|
|
3069
3466
|
fastapi: "fastapi";
|
|
3070
3467
|
django: "django";
|
|
3071
3468
|
flask: "flask";
|
|
3469
|
+
litestar: "litestar";
|
|
3072
3470
|
}>;
|
|
3073
3471
|
pythonOrm: z.ZodEnum<{
|
|
3074
3472
|
none: "none";
|
|
3075
3473
|
sqlalchemy: "sqlalchemy";
|
|
3076
3474
|
sqlmodel: "sqlmodel";
|
|
3475
|
+
"tortoise-orm": "tortoise-orm";
|
|
3077
3476
|
}>;
|
|
3078
3477
|
pythonValidation: z.ZodEnum<{
|
|
3079
3478
|
none: "none";
|
|
@@ -3088,10 +3487,19 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3088
3487
|
"anthropic-sdk": "anthropic-sdk";
|
|
3089
3488
|
crewai: "crewai";
|
|
3090
3489
|
}>>;
|
|
3490
|
+
pythonAuth: z.ZodEnum<{
|
|
3491
|
+
none: "none";
|
|
3492
|
+
authlib: "authlib";
|
|
3493
|
+
jwt: "jwt";
|
|
3494
|
+
}>;
|
|
3091
3495
|
pythonTaskQueue: z.ZodEnum<{
|
|
3092
3496
|
none: "none";
|
|
3093
3497
|
celery: "celery";
|
|
3094
3498
|
}>;
|
|
3499
|
+
pythonGraphql: z.ZodEnum<{
|
|
3500
|
+
none: "none";
|
|
3501
|
+
strawberry: "strawberry";
|
|
3502
|
+
}>;
|
|
3095
3503
|
pythonQuality: z.ZodEnum<{
|
|
3096
3504
|
none: "none";
|
|
3097
3505
|
ruff: "ruff";
|
|
@@ -3101,11 +3509,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3101
3509
|
gin: "gin";
|
|
3102
3510
|
echo: "echo";
|
|
3103
3511
|
fiber: "fiber";
|
|
3512
|
+
chi: "chi";
|
|
3104
3513
|
}>;
|
|
3105
3514
|
goOrm: z.ZodEnum<{
|
|
3106
3515
|
none: "none";
|
|
3107
3516
|
gorm: "gorm";
|
|
3108
3517
|
sqlc: "sqlc";
|
|
3518
|
+
ent: "ent";
|
|
3109
3519
|
}>;
|
|
3110
3520
|
goApi: z.ZodEnum<{
|
|
3111
3521
|
none: "none";
|
|
@@ -3119,7 +3529,43 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
3119
3529
|
goLogging: z.ZodEnum<{
|
|
3120
3530
|
none: "none";
|
|
3121
3531
|
zap: "zap";
|
|
3532
|
+
zerolog: "zerolog";
|
|
3533
|
+
slog: "slog";
|
|
3534
|
+
}>;
|
|
3535
|
+
goAuth: z.ZodEnum<{
|
|
3536
|
+
none: "none";
|
|
3537
|
+
jwt: "jwt";
|
|
3538
|
+
casbin: "casbin";
|
|
3539
|
+
}>;
|
|
3540
|
+
javaWebFramework: z.ZodEnum<{
|
|
3541
|
+
none: "none";
|
|
3542
|
+
"spring-boot": "spring-boot";
|
|
3543
|
+
}>;
|
|
3544
|
+
javaBuildTool: z.ZodEnum<{
|
|
3545
|
+
none: "none";
|
|
3546
|
+
maven: "maven";
|
|
3547
|
+
gradle: "gradle";
|
|
3122
3548
|
}>;
|
|
3549
|
+
javaOrm: z.ZodEnum<{
|
|
3550
|
+
none: "none";
|
|
3551
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
3552
|
+
}>;
|
|
3553
|
+
javaAuth: z.ZodEnum<{
|
|
3554
|
+
none: "none";
|
|
3555
|
+
"spring-security": "spring-security";
|
|
3556
|
+
}>;
|
|
3557
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3558
|
+
none: "none";
|
|
3559
|
+
"spring-actuator": "spring-actuator";
|
|
3560
|
+
"spring-validation": "spring-validation";
|
|
3561
|
+
flyway: "flyway";
|
|
3562
|
+
}>>;
|
|
3563
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3564
|
+
none: "none";
|
|
3565
|
+
junit5: "junit5";
|
|
3566
|
+
mockito: "mockito";
|
|
3567
|
+
testcontainers: "testcontainers";
|
|
3568
|
+
}>>;
|
|
3123
3569
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3124
3570
|
none: "none";
|
|
3125
3571
|
"claude-md": "claude-md";
|
|
@@ -3138,6 +3584,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3138
3584
|
rust: "rust";
|
|
3139
3585
|
python: "python";
|
|
3140
3586
|
go: "go";
|
|
3587
|
+
java: "java";
|
|
3141
3588
|
}>;
|
|
3142
3589
|
database: z.ZodEnum<{
|
|
3143
3590
|
none: "none";
|
|
@@ -3278,6 +3725,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3278
3725
|
orpc: "orpc";
|
|
3279
3726
|
"ts-rest": "ts-rest";
|
|
3280
3727
|
garph: "garph";
|
|
3728
|
+
"graphql-yoga": "graphql-yoga";
|
|
3281
3729
|
}>;
|
|
3282
3730
|
webDeploy: z.ZodEnum<{
|
|
3283
3731
|
none: "none";
|
|
@@ -3286,6 +3734,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3286
3734
|
fly: "fly";
|
|
3287
3735
|
railway: "railway";
|
|
3288
3736
|
sst: "sst";
|
|
3737
|
+
vercel: "vercel";
|
|
3289
3738
|
}>;
|
|
3290
3739
|
serverDeploy: z.ZodEnum<{
|
|
3291
3740
|
none: "none";
|
|
@@ -3294,6 +3743,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3294
3743
|
fly: "fly";
|
|
3295
3744
|
railway: "railway";
|
|
3296
3745
|
sst: "sst";
|
|
3746
|
+
vercel: "vercel";
|
|
3297
3747
|
}>;
|
|
3298
3748
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3299
3749
|
none: "none";
|
|
@@ -3521,6 +3971,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3521
3971
|
none: "none";
|
|
3522
3972
|
"upstash-redis": "upstash-redis";
|
|
3523
3973
|
}>;
|
|
3974
|
+
i18n: z.ZodEnum<{
|
|
3975
|
+
none: "none";
|
|
3976
|
+
i18next: "i18next";
|
|
3977
|
+
"next-intl": "next-intl";
|
|
3978
|
+
}>;
|
|
3524
3979
|
search: z.ZodEnum<{
|
|
3525
3980
|
none: "none";
|
|
3526
3981
|
meilisearch: "meilisearch";
|
|
@@ -3537,6 +3992,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3537
3992
|
none: "none";
|
|
3538
3993
|
axum: "axum";
|
|
3539
3994
|
"actix-web": "actix-web";
|
|
3995
|
+
rocket: "rocket";
|
|
3540
3996
|
}>;
|
|
3541
3997
|
rustFrontend: z.ZodEnum<{
|
|
3542
3998
|
none: "none";
|
|
@@ -3547,6 +4003,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3547
4003
|
none: "none";
|
|
3548
4004
|
"sea-orm": "sea-orm";
|
|
3549
4005
|
sqlx: "sqlx";
|
|
4006
|
+
diesel: "diesel";
|
|
3550
4007
|
}>;
|
|
3551
4008
|
rustApi: z.ZodEnum<{
|
|
3552
4009
|
none: "none";
|
|
@@ -3572,16 +4029,32 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3572
4029
|
tracing: "tracing";
|
|
3573
4030
|
"env-logger": "env-logger";
|
|
3574
4031
|
}>;
|
|
4032
|
+
rustErrorHandling: z.ZodEnum<{
|
|
4033
|
+
none: "none";
|
|
4034
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
4035
|
+
eyre: "eyre";
|
|
4036
|
+
}>;
|
|
4037
|
+
rustCaching: z.ZodEnum<{
|
|
4038
|
+
none: "none";
|
|
4039
|
+
redis: "redis";
|
|
4040
|
+
moka: "moka";
|
|
4041
|
+
}>;
|
|
4042
|
+
rustAuth: z.ZodEnum<{
|
|
4043
|
+
none: "none";
|
|
4044
|
+
oauth2: "oauth2";
|
|
4045
|
+
}>;
|
|
3575
4046
|
pythonWebFramework: z.ZodEnum<{
|
|
3576
4047
|
none: "none";
|
|
3577
4048
|
fastapi: "fastapi";
|
|
3578
4049
|
django: "django";
|
|
3579
4050
|
flask: "flask";
|
|
4051
|
+
litestar: "litestar";
|
|
3580
4052
|
}>;
|
|
3581
4053
|
pythonOrm: z.ZodEnum<{
|
|
3582
4054
|
none: "none";
|
|
3583
4055
|
sqlalchemy: "sqlalchemy";
|
|
3584
4056
|
sqlmodel: "sqlmodel";
|
|
4057
|
+
"tortoise-orm": "tortoise-orm";
|
|
3585
4058
|
}>;
|
|
3586
4059
|
pythonValidation: z.ZodEnum<{
|
|
3587
4060
|
none: "none";
|
|
@@ -3596,10 +4069,19 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3596
4069
|
"anthropic-sdk": "anthropic-sdk";
|
|
3597
4070
|
crewai: "crewai";
|
|
3598
4071
|
}>>;
|
|
4072
|
+
pythonAuth: z.ZodEnum<{
|
|
4073
|
+
none: "none";
|
|
4074
|
+
authlib: "authlib";
|
|
4075
|
+
jwt: "jwt";
|
|
4076
|
+
}>;
|
|
3599
4077
|
pythonTaskQueue: z.ZodEnum<{
|
|
3600
4078
|
none: "none";
|
|
3601
4079
|
celery: "celery";
|
|
3602
4080
|
}>;
|
|
4081
|
+
pythonGraphql: z.ZodEnum<{
|
|
4082
|
+
none: "none";
|
|
4083
|
+
strawberry: "strawberry";
|
|
4084
|
+
}>;
|
|
3603
4085
|
pythonQuality: z.ZodEnum<{
|
|
3604
4086
|
none: "none";
|
|
3605
4087
|
ruff: "ruff";
|
|
@@ -3609,11 +4091,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3609
4091
|
gin: "gin";
|
|
3610
4092
|
echo: "echo";
|
|
3611
4093
|
fiber: "fiber";
|
|
4094
|
+
chi: "chi";
|
|
3612
4095
|
}>;
|
|
3613
4096
|
goOrm: z.ZodEnum<{
|
|
3614
4097
|
none: "none";
|
|
3615
4098
|
gorm: "gorm";
|
|
3616
4099
|
sqlc: "sqlc";
|
|
4100
|
+
ent: "ent";
|
|
3617
4101
|
}>;
|
|
3618
4102
|
goApi: z.ZodEnum<{
|
|
3619
4103
|
none: "none";
|
|
@@ -3627,7 +4111,43 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3627
4111
|
goLogging: z.ZodEnum<{
|
|
3628
4112
|
none: "none";
|
|
3629
4113
|
zap: "zap";
|
|
4114
|
+
zerolog: "zerolog";
|
|
4115
|
+
slog: "slog";
|
|
3630
4116
|
}>;
|
|
4117
|
+
goAuth: z.ZodEnum<{
|
|
4118
|
+
none: "none";
|
|
4119
|
+
jwt: "jwt";
|
|
4120
|
+
casbin: "casbin";
|
|
4121
|
+
}>;
|
|
4122
|
+
javaWebFramework: z.ZodEnum<{
|
|
4123
|
+
none: "none";
|
|
4124
|
+
"spring-boot": "spring-boot";
|
|
4125
|
+
}>;
|
|
4126
|
+
javaBuildTool: z.ZodEnum<{
|
|
4127
|
+
none: "none";
|
|
4128
|
+
maven: "maven";
|
|
4129
|
+
gradle: "gradle";
|
|
4130
|
+
}>;
|
|
4131
|
+
javaOrm: z.ZodEnum<{
|
|
4132
|
+
none: "none";
|
|
4133
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
4134
|
+
}>;
|
|
4135
|
+
javaAuth: z.ZodEnum<{
|
|
4136
|
+
none: "none";
|
|
4137
|
+
"spring-security": "spring-security";
|
|
4138
|
+
}>;
|
|
4139
|
+
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4140
|
+
none: "none";
|
|
4141
|
+
"spring-actuator": "spring-actuator";
|
|
4142
|
+
"spring-validation": "spring-validation";
|
|
4143
|
+
flyway: "flyway";
|
|
4144
|
+
}>>;
|
|
4145
|
+
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
4146
|
+
none: "none";
|
|
4147
|
+
junit5: "junit5";
|
|
4148
|
+
mockito: "mockito";
|
|
4149
|
+
testcontainers: "testcontainers";
|
|
4150
|
+
}>>;
|
|
3631
4151
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3632
4152
|
none: "none";
|
|
3633
4153
|
"claude-md": "claude-md";
|
|
@@ -3652,11 +4172,11 @@ declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase"
|
|
|
3652
4172
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
3653
4173
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
3654
4174
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
3655
|
-
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
|
|
4175
|
+
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga")[];
|
|
3656
4176
|
declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
|
|
3657
4177
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
3658
|
-
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
3659
|
-
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
4178
|
+
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
4179
|
+
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
3660
4180
|
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
3661
4181
|
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
3662
4182
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
@@ -3679,27 +4199,40 @@ declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog")[];
|
|
|
3679
4199
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
3680
4200
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms")[];
|
|
3681
4201
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
4202
|
+
declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
|
|
3682
4203
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
|
|
3683
4204
|
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
|
|
3684
|
-
declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go")[];
|
|
3685
|
-
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web")[];
|
|
4205
|
+
declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go" | "java")[];
|
|
4206
|
+
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
3686
4207
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
3687
|
-
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx")[];
|
|
4208
|
+
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
|
|
3688
4209
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
|
|
3689
4210
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
3690
4211
|
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
3691
4212
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
3692
|
-
declare const
|
|
3693
|
-
declare const
|
|
4213
|
+
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
4214
|
+
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
4215
|
+
declare const RUST_AUTH_VALUES: ("none" | "oauth2")[];
|
|
4216
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar")[];
|
|
4217
|
+
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm")[];
|
|
3694
4218
|
declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
|
|
3695
4219
|
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
4220
|
+
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt")[];
|
|
3696
4221
|
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery")[];
|
|
4222
|
+
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry")[];
|
|
3697
4223
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff")[];
|
|
3698
|
-
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber")[];
|
|
3699
|
-
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc")[];
|
|
4224
|
+
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
4225
|
+
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
|
|
3700
4226
|
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
3701
4227
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
|
|
3702
|
-
declare const GO_LOGGING_VALUES: ("none" | "zap")[];
|
|
4228
|
+
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog")[];
|
|
4229
|
+
declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin")[];
|
|
4230
|
+
declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot")[];
|
|
4231
|
+
declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
|
|
4232
|
+
declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa")[];
|
|
4233
|
+
declare const JAVA_AUTH_VALUES: ("none" | "spring-security")[];
|
|
4234
|
+
declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
|
|
4235
|
+
declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers")[];
|
|
3703
4236
|
declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
3704
4237
|
declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
|
|
3705
4238
|
declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira")[];
|
|
@@ -3709,5 +4242,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
3709
4242
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
3710
4243
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
3711
4244
|
//#endregion
|
|
3712
|
-
export { FrontendSchema as $,
|
|
3713
|
-
//# sourceMappingURL=schemas-
|
|
4245
|
+
export { FrontendSchema as $, VALIDATION_VALUES as $n, PythonQualitySchema as $t, DATABASE_SETUP_VALUES as A, SHADCN_BASE_VALUES as An, LoggingSchema as At, EcosystemSchema as B, ShadcnBaseSchema as Bn, PYTHON_ORM_VALUES as Bt, CLIInputSchema as C, RustLibrariesSchema as Cn, JavaBuildToolSchema as Ct, CSS_FRAMEWORK_VALUES as D, SEARCH_VALUES as Dn, JavaWebFrameworkSchema as Dt, CSSFrameworkSchema as E, RustWebFrameworkSchema as En, JavaTestingLibrariesSchema as Et, DirectoryConflictSchema as F, SHADCN_STYLE_VALUES as Fn, PACKAGE_MANAGER_VALUES as Ft, FILE_STORAGE_VALUES as G, ShadcnStyleSchema as Gn, PackageManagerSchema as Gt, EmailSchema as H, ShadcnFontSchema as Hn, PYTHON_TASK_QUEUE_VALUES as Ht, ECOSYSTEM_VALUES as I, STATE_MANAGEMENT_VALUES as In, PAYMENTS_VALUES as It, FRONTEND_VALUES as J, TESTING_VALUES as Jn, ProjectNameSchema as Jt, FILE_UPLOAD_VALUES as K, StateManagementSchema as Kn, PaymentsSchema as Kt, EFFECT_VALUES as L, SearchSchema as Ln, PYTHON_AI_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, SHADCN_FONT_VALUES as Mn, ORMSchema as Mt, DatabaseSchema as N, SHADCN_ICON_LIBRARY_VALUES as Nn, ORM_VALUES as Nt, CachingSchema as O, SERVER_DEPLOY_VALUES as On, JobQueueSchema as Ot, DatabaseSetupSchema as P, SHADCN_RADIUS_VALUES as Pn, ObservabilitySchema as Pt, FormsSchema as Q, UI_LIBRARY_VALUES as Qn, PythonOrmSchema as Qt, EMAIL_VALUES as R, ServerDeploySchema as Rn, PYTHON_AUTH_VALUES as Rt, CACHING_VALUES as S, RustFrontendSchema as Sn, JavaAuthSchema as St, CMS_VALUES as T, RustOrmSchema as Tn, JavaOrmSchema as Tt, ExamplesSchema as U, ShadcnIconLibrarySchema as Un, PYTHON_VALIDATION_VALUES as Ut, EffectSchema as V, ShadcnColorThemeSchema as Vn, PYTHON_QUALITY_VALUES as Vt, FEATURE_FLAGS_VALUES as W, ShadcnRadiusSchema as Wn, PYTHON_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, TestingSchema as Xn, PythonAuthSchema as Xt, FeatureFlagsSchema as Y, TemplateSchema as Yn, PythonAiSchema as Yt, FileUploadSchema as Z, UILibrarySchema as Zn, PythonGraphqlSchema as Zt, AuthSchema as _, RustApiSchema as _n, JAVA_LIBRARIES_VALUES as _t, ANALYTICS_VALUES as a, RUST_API_VALUES as an, GO_WEB_FRAMEWORK_VALUES as at, BetterTStackConfigFileSchema as b, RustCliSchema as bn, JAVA_WEB_FRAMEWORK_VALUES as bt, API_VALUES as c, RUST_CLI_VALUES as cn, GoCliSchema as ct, AddInputSchema as d, RUST_LIBRARIES_VALUES as dn, GoWebFrameworkSchema as dt, PythonTaskQueueSchema as en, VERSION_CHANNEL_VALUES as er, GO_API_VALUES as et, AddonsSchema as f, RUST_LOGGING_VALUES as fn, I18N_VALUES as ft, AstroIntegrationSchema as g, RuntimeSchema as gn, JAVA_BUILD_TOOL_VALUES as gt, AnimationSchema as h, RealtimeSchema as hn, JAVA_AUTH_VALUES as ht, AI_VALUES as i, RUNTIME_VALUES as in, WebDeploySchema as ir, GO_ORM_VALUES as it, DATABASE_VALUES as j, SHADCN_COLOR_THEME_VALUES as jn, OBSERVABILITY_VALUES as jt, CreateInputSchema as k, SHADCN_BASE_COLOR_VALUES as kn, LOGGING_VALUES as kt, ASTRO_INTEGRATION_VALUES as l, RUST_ERROR_HANDLING_VALUES as ln, GoLoggingSchema as lt, AnalyticsSchema as m, RUST_WEB_FRAMEWORK_VALUES as mn, InitResultSchema as mt, AISchema as n, PythonWebFrameworkSchema as nn, VersionChannelSchema as nr, GO_CLI_VALUES as nt, ANIMATION_VALUES as o, RUST_AUTH_VALUES as on, GoApiSchema as ot, AiDocsSchema as p, RUST_ORM_VALUES as pn, I18nSchema as pt, FORMS_VALUES as q, TEMPLATE_VALUES as qn, ProjectConfigSchema as qt, AI_DOCS_VALUES as r, REALTIME_VALUES as rn, WEB_DEPLOY_VALUES as rr, GO_LOGGING_VALUES as rt, APISchema as s, RUST_CACHING_VALUES as sn, GoAuthSchema as st, ADDONS_VALUES as t, PythonValidationSchema as tn, ValidationSchema as tr, GO_AUTH_VALUES as tt, AUTH_VALUES as u, RUST_FRONTEND_VALUES as un, GoOrmSchema as ut, BACKEND_VALUES as v, RustAuthSchema as vn, JAVA_ORM_VALUES as vt, CMSSchema as w, RustLoggingSchema as wn, JavaLibrariesSchema as wt, BetterTStackConfigSchema as x, RustErrorHandlingSchema as xn, JOB_QUEUE_VALUES as xt, BackendSchema as y, RustCachingSchema as yn, JAVA_TESTING_LIBRARIES_VALUES as yt, EXAMPLES_VALUES as z, ShadcnBaseColorSchema as zn, PYTHON_GRAPHQL_VALUES as zt };
|
|
4246
|
+
//# sourceMappingURL=schemas-B_I1Oeyt.d.mts.map
|