@better-fullstack/types 1.6.0 → 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 +25 -91
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +170 -12
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +379 -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-D7GE2nDP.d.mts → schemas-B_I1Oeyt.d.mts} +292 -4
- package/dist/schemas-B_I1Oeyt.d.mts.map +1 -0
- package/dist/{schemas-AEYe9g7W.mjs → schemas-Bg3JFNO5.mjs} +64 -4
- 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-AEYe9g7W.mjs.map +0 -1
- package/dist/schemas-D7GE2nDP.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -184,6 +184,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
184
184
|
rust: "rust";
|
|
185
185
|
python: "python";
|
|
186
186
|
go: "go";
|
|
187
|
+
java: "java";
|
|
187
188
|
}>>;
|
|
188
189
|
database: z.ZodOptional<z.ZodEnum<{
|
|
189
190
|
none: "none";
|
|
@@ -647,6 +648,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
647
648
|
redis: "redis";
|
|
648
649
|
moka: "moka";
|
|
649
650
|
}>>;
|
|
651
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
652
|
+
none: "none";
|
|
653
|
+
oauth2: "oauth2";
|
|
654
|
+
}>>;
|
|
650
655
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
651
656
|
none: "none";
|
|
652
657
|
fastapi: "fastapi";
|
|
@@ -658,6 +663,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
658
663
|
none: "none";
|
|
659
664
|
sqlalchemy: "sqlalchemy";
|
|
660
665
|
sqlmodel: "sqlmodel";
|
|
666
|
+
"tortoise-orm": "tortoise-orm";
|
|
661
667
|
}>>;
|
|
662
668
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
663
669
|
none: "none";
|
|
@@ -717,6 +723,40 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
717
723
|
zerolog: "zerolog";
|
|
718
724
|
slog: "slog";
|
|
719
725
|
}>>;
|
|
726
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
727
|
+
none: "none";
|
|
728
|
+
jwt: "jwt";
|
|
729
|
+
casbin: "casbin";
|
|
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
|
+
}>>>;
|
|
720
760
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
721
761
|
none: "none";
|
|
722
762
|
"claude-md": "claude-md";
|
|
@@ -733,6 +773,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
733
773
|
rust: "rust";
|
|
734
774
|
python: "python";
|
|
735
775
|
go: "go";
|
|
776
|
+
java: "java";
|
|
736
777
|
}>;
|
|
737
778
|
database: z.ZodEnum<{
|
|
738
779
|
none: "none";
|
|
@@ -1187,6 +1228,10 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1187
1228
|
redis: "redis";
|
|
1188
1229
|
moka: "moka";
|
|
1189
1230
|
}>;
|
|
1231
|
+
rustAuth: z.ZodEnum<{
|
|
1232
|
+
none: "none";
|
|
1233
|
+
oauth2: "oauth2";
|
|
1234
|
+
}>;
|
|
1190
1235
|
pythonWebFramework: z.ZodEnum<{
|
|
1191
1236
|
none: "none";
|
|
1192
1237
|
fastapi: "fastapi";
|
|
@@ -1198,6 +1243,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1198
1243
|
none: "none";
|
|
1199
1244
|
sqlalchemy: "sqlalchemy";
|
|
1200
1245
|
sqlmodel: "sqlmodel";
|
|
1246
|
+
"tortoise-orm": "tortoise-orm";
|
|
1201
1247
|
}>;
|
|
1202
1248
|
pythonValidation: z.ZodEnum<{
|
|
1203
1249
|
none: "none";
|
|
@@ -1257,6 +1303,40 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1257
1303
|
zerolog: "zerolog";
|
|
1258
1304
|
slog: "slog";
|
|
1259
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";
|
|
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
|
+
}>>;
|
|
1260
1340
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1261
1341
|
none: "none";
|
|
1262
1342
|
"claude-md": "claude-md";
|
|
@@ -1272,6 +1352,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1272
1352
|
rust: "rust";
|
|
1273
1353
|
python: "python";
|
|
1274
1354
|
go: "go";
|
|
1355
|
+
java: "java";
|
|
1275
1356
|
}>;
|
|
1276
1357
|
database: z.ZodEnum<{
|
|
1277
1358
|
none: "none";
|
|
@@ -1724,6 +1805,10 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1724
1805
|
redis: "redis";
|
|
1725
1806
|
moka: "moka";
|
|
1726
1807
|
}>;
|
|
1808
|
+
rustAuth: z.ZodEnum<{
|
|
1809
|
+
none: "none";
|
|
1810
|
+
oauth2: "oauth2";
|
|
1811
|
+
}>;
|
|
1727
1812
|
pythonWebFramework: z.ZodEnum<{
|
|
1728
1813
|
none: "none";
|
|
1729
1814
|
fastapi: "fastapi";
|
|
@@ -1735,6 +1820,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1735
1820
|
none: "none";
|
|
1736
1821
|
sqlalchemy: "sqlalchemy";
|
|
1737
1822
|
sqlmodel: "sqlmodel";
|
|
1823
|
+
"tortoise-orm": "tortoise-orm";
|
|
1738
1824
|
}>;
|
|
1739
1825
|
pythonValidation: z.ZodEnum<{
|
|
1740
1826
|
none: "none";
|
|
@@ -1794,6 +1880,40 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1794
1880
|
zerolog: "zerolog";
|
|
1795
1881
|
slog: "slog";
|
|
1796
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";
|
|
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
|
+
}>>;
|
|
1797
1917
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1798
1918
|
none: "none";
|
|
1799
1919
|
"claude-md": "claude-md";
|
|
@@ -1812,6 +1932,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1812
1932
|
rust: "rust";
|
|
1813
1933
|
python: "python";
|
|
1814
1934
|
go: "go";
|
|
1935
|
+
java: "java";
|
|
1815
1936
|
}>;
|
|
1816
1937
|
database: z.ZodEnum<{
|
|
1817
1938
|
none: "none";
|
|
@@ -2266,6 +2387,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2266
2387
|
redis: "redis";
|
|
2267
2388
|
moka: "moka";
|
|
2268
2389
|
}>;
|
|
2390
|
+
rustAuth: z.ZodEnum<{
|
|
2391
|
+
none: "none";
|
|
2392
|
+
oauth2: "oauth2";
|
|
2393
|
+
}>;
|
|
2269
2394
|
pythonWebFramework: z.ZodEnum<{
|
|
2270
2395
|
none: "none";
|
|
2271
2396
|
fastapi: "fastapi";
|
|
@@ -2277,6 +2402,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2277
2402
|
none: "none";
|
|
2278
2403
|
sqlalchemy: "sqlalchemy";
|
|
2279
2404
|
sqlmodel: "sqlmodel";
|
|
2405
|
+
"tortoise-orm": "tortoise-orm";
|
|
2280
2406
|
}>;
|
|
2281
2407
|
pythonValidation: z.ZodEnum<{
|
|
2282
2408
|
none: "none";
|
|
@@ -2336,6 +2462,40 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2336
2462
|
zerolog: "zerolog";
|
|
2337
2463
|
slog: "slog";
|
|
2338
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";
|
|
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
|
+
}>>;
|
|
2339
2499
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2340
2500
|
none: "none";
|
|
2341
2501
|
"claude-md": "claude-md";
|
|
@@ -2350,6 +2510,35 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2350
2510
|
relativePath: z.ZodString;
|
|
2351
2511
|
error: z.ZodOptional<z.ZodString>;
|
|
2352
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
|
+
}>>;
|
|
2353
2542
|
declare function getAllJsonSchemas(): {
|
|
2354
2543
|
database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2355
2544
|
none: "none";
|
|
@@ -2516,6 +2705,35 @@ declare function getAllJsonSchemas(): {
|
|
|
2516
2705
|
t3: "t3";
|
|
2517
2706
|
uniwind: "uniwind";
|
|
2518
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
|
+
}>>;
|
|
2519
2737
|
createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2520
2738
|
projectName: z.ZodOptional<z.ZodString>;
|
|
2521
2739
|
template: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2534,6 +2752,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2534
2752
|
rust: "rust";
|
|
2535
2753
|
python: "python";
|
|
2536
2754
|
go: "go";
|
|
2755
|
+
java: "java";
|
|
2537
2756
|
}>>;
|
|
2538
2757
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2539
2758
|
none: "none";
|
|
@@ -2997,6 +3216,10 @@ declare function getAllJsonSchemas(): {
|
|
|
2997
3216
|
redis: "redis";
|
|
2998
3217
|
moka: "moka";
|
|
2999
3218
|
}>>;
|
|
3219
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
3220
|
+
none: "none";
|
|
3221
|
+
oauth2: "oauth2";
|
|
3222
|
+
}>>;
|
|
3000
3223
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
3001
3224
|
none: "none";
|
|
3002
3225
|
fastapi: "fastapi";
|
|
@@ -3008,6 +3231,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3008
3231
|
none: "none";
|
|
3009
3232
|
sqlalchemy: "sqlalchemy";
|
|
3010
3233
|
sqlmodel: "sqlmodel";
|
|
3234
|
+
"tortoise-orm": "tortoise-orm";
|
|
3011
3235
|
}>>;
|
|
3012
3236
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
3013
3237
|
none: "none";
|
|
@@ -3067,6 +3291,40 @@ declare function getAllJsonSchemas(): {
|
|
|
3067
3291
|
zerolog: "zerolog";
|
|
3068
3292
|
slog: "slog";
|
|
3069
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";
|
|
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
|
+
}>>>;
|
|
3070
3328
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3071
3329
|
none: "none";
|
|
3072
3330
|
"claude-md": "claude-md";
|
|
@@ -3083,6 +3341,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3083
3341
|
rust: "rust";
|
|
3084
3342
|
python: "python";
|
|
3085
3343
|
go: "go";
|
|
3344
|
+
java: "java";
|
|
3086
3345
|
}>;
|
|
3087
3346
|
database: z.ZodEnum<{
|
|
3088
3347
|
none: "none";
|
|
@@ -3537,6 +3796,10 @@ declare function getAllJsonSchemas(): {
|
|
|
3537
3796
|
redis: "redis";
|
|
3538
3797
|
moka: "moka";
|
|
3539
3798
|
}>;
|
|
3799
|
+
rustAuth: z.ZodEnum<{
|
|
3800
|
+
none: "none";
|
|
3801
|
+
oauth2: "oauth2";
|
|
3802
|
+
}>;
|
|
3540
3803
|
pythonWebFramework: z.ZodEnum<{
|
|
3541
3804
|
none: "none";
|
|
3542
3805
|
fastapi: "fastapi";
|
|
@@ -3548,6 +3811,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3548
3811
|
none: "none";
|
|
3549
3812
|
sqlalchemy: "sqlalchemy";
|
|
3550
3813
|
sqlmodel: "sqlmodel";
|
|
3814
|
+
"tortoise-orm": "tortoise-orm";
|
|
3551
3815
|
}>;
|
|
3552
3816
|
pythonValidation: z.ZodEnum<{
|
|
3553
3817
|
none: "none";
|
|
@@ -3607,6 +3871,40 @@ declare function getAllJsonSchemas(): {
|
|
|
3607
3871
|
zerolog: "zerolog";
|
|
3608
3872
|
slog: "slog";
|
|
3609
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";
|
|
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
|
+
}>>;
|
|
3610
3908
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3611
3909
|
none: "none";
|
|
3612
3910
|
"claude-md": "claude-md";
|
|
@@ -3622,6 +3920,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3622
3920
|
rust: "rust";
|
|
3623
3921
|
python: "python";
|
|
3624
3922
|
go: "go";
|
|
3923
|
+
java: "java";
|
|
3625
3924
|
}>;
|
|
3626
3925
|
database: z.ZodEnum<{
|
|
3627
3926
|
none: "none";
|
|
@@ -4074,6 +4373,10 @@ declare function getAllJsonSchemas(): {
|
|
|
4074
4373
|
redis: "redis";
|
|
4075
4374
|
moka: "moka";
|
|
4076
4375
|
}>;
|
|
4376
|
+
rustAuth: z.ZodEnum<{
|
|
4377
|
+
none: "none";
|
|
4378
|
+
oauth2: "oauth2";
|
|
4379
|
+
}>;
|
|
4077
4380
|
pythonWebFramework: z.ZodEnum<{
|
|
4078
4381
|
none: "none";
|
|
4079
4382
|
fastapi: "fastapi";
|
|
@@ -4085,6 +4388,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4085
4388
|
none: "none";
|
|
4086
4389
|
sqlalchemy: "sqlalchemy";
|
|
4087
4390
|
sqlmodel: "sqlmodel";
|
|
4391
|
+
"tortoise-orm": "tortoise-orm";
|
|
4088
4392
|
}>;
|
|
4089
4393
|
pythonValidation: z.ZodEnum<{
|
|
4090
4394
|
none: "none";
|
|
@@ -4144,6 +4448,40 @@ declare function getAllJsonSchemas(): {
|
|
|
4144
4448
|
zerolog: "zerolog";
|
|
4145
4449
|
slog: "slog";
|
|
4146
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";
|
|
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
|
+
}>>;
|
|
4147
4485
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4148
4486
|
none: "none";
|
|
4149
4487
|
"claude-md": "claude-md";
|
|
@@ -4162,6 +4500,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4162
4500
|
rust: "rust";
|
|
4163
4501
|
python: "python";
|
|
4164
4502
|
go: "go";
|
|
4503
|
+
java: "java";
|
|
4165
4504
|
}>;
|
|
4166
4505
|
database: z.ZodEnum<{
|
|
4167
4506
|
none: "none";
|
|
@@ -4616,6 +4955,10 @@ declare function getAllJsonSchemas(): {
|
|
|
4616
4955
|
redis: "redis";
|
|
4617
4956
|
moka: "moka";
|
|
4618
4957
|
}>;
|
|
4958
|
+
rustAuth: z.ZodEnum<{
|
|
4959
|
+
none: "none";
|
|
4960
|
+
oauth2: "oauth2";
|
|
4961
|
+
}>;
|
|
4619
4962
|
pythonWebFramework: z.ZodEnum<{
|
|
4620
4963
|
none: "none";
|
|
4621
4964
|
fastapi: "fastapi";
|
|
@@ -4627,6 +4970,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4627
4970
|
none: "none";
|
|
4628
4971
|
sqlalchemy: "sqlalchemy";
|
|
4629
4972
|
sqlmodel: "sqlmodel";
|
|
4973
|
+
"tortoise-orm": "tortoise-orm";
|
|
4630
4974
|
}>;
|
|
4631
4975
|
pythonValidation: z.ZodEnum<{
|
|
4632
4976
|
none: "none";
|
|
@@ -4686,6 +5030,40 @@ declare function getAllJsonSchemas(): {
|
|
|
4686
5030
|
zerolog: "zerolog";
|
|
4687
5031
|
slog: "slog";
|
|
4688
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";
|
|
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
|
+
}>>;
|
|
4689
5067
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4690
5068
|
none: "none";
|
|
4691
5069
|
"claude-md": "claude-md";
|
|
@@ -4702,5 +5080,5 @@ declare function getAllJsonSchemas(): {
|
|
|
4702
5080
|
}, z.core.$strip>>;
|
|
4703
5081
|
};
|
|
4704
5082
|
//#endregion
|
|
4705
|
-
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 };
|
|
4706
5084
|
//# sourceMappingURL=json-schema.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"sourcesContent":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"sourcesContent":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBArCjB,0BAAA,CAAA,GAA0B,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAI1B,+BAAA,CAAA,GAA+B,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAI/B,uBAAA,CAAA,GAAuB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIvB,6BAAA,CAAA,GAA6B,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;iBAI7B,0BAAA,CAAA,GAA0B,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;iBAI1B,oBAAA,CAAA,GAAoB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;iBAIpB,qBAAA,CAAA,GAAqB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;iBAIrB,0BAAA,CAAA,GAA0B,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;iBAI1B,iCAAA,CAAA,GAAiC,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;iBAKjC,iBAAA,CAAA"}
|
package/dist/json-schema.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as FrontendSchema, F as DirectoryConflictSchema,
|
|
1
|
+
import { $ as FrontendSchema, Ct as JavaBuildToolSchema, Dt as JavaWebFrameworkSchema, Et as JavaTestingLibrariesSchema, F as DirectoryConflictSchema, Gt as PackageManagerSchema, Kt as PaymentsSchema, Mt as ORMSchema, N as DatabaseSchema, P as DatabaseSetupSchema, Rn as ServerDeploySchema, St as JavaAuthSchema, Tt as JavaOrmSchema, U as ExamplesSchema, Yn as TemplateSchema, _ as AuthSchema, f as AddonsSchema, gn as RuntimeSchema, ir as WebDeploySchema, k as CreateInputSchema, mt as InitResultSchema, qt as ProjectConfigSchema, s as APISchema, wt as JavaLibrariesSchema, x as BetterTStackConfigSchema, y as BackendSchema } from "./schemas-Bg3JFNO5.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
4
|
//#region src/json-schema.ts
|
|
@@ -62,6 +62,24 @@ function getBetterTStackConfigJsonSchema() {
|
|
|
62
62
|
function getInitResultJsonSchema() {
|
|
63
63
|
return z.toJSONSchema(InitResultSchema);
|
|
64
64
|
}
|
|
65
|
+
function getJavaWebFrameworkJsonSchema() {
|
|
66
|
+
return z.toJSONSchema(JavaWebFrameworkSchema);
|
|
67
|
+
}
|
|
68
|
+
function getJavaBuildToolJsonSchema() {
|
|
69
|
+
return z.toJSONSchema(JavaBuildToolSchema);
|
|
70
|
+
}
|
|
71
|
+
function getJavaOrmJsonSchema() {
|
|
72
|
+
return z.toJSONSchema(JavaOrmSchema);
|
|
73
|
+
}
|
|
74
|
+
function getJavaAuthJsonSchema() {
|
|
75
|
+
return z.toJSONSchema(JavaAuthSchema);
|
|
76
|
+
}
|
|
77
|
+
function getJavaLibrariesJsonSchema() {
|
|
78
|
+
return z.toJSONSchema(JavaLibrariesSchema);
|
|
79
|
+
}
|
|
80
|
+
function getJavaTestingLibrariesJsonSchema() {
|
|
81
|
+
return z.toJSONSchema(JavaTestingLibrariesSchema);
|
|
82
|
+
}
|
|
65
83
|
function getAllJsonSchemas() {
|
|
66
84
|
return {
|
|
67
85
|
database: getDatabaseJsonSchema(),
|
|
@@ -80,6 +98,12 @@ function getAllJsonSchemas() {
|
|
|
80
98
|
serverDeploy: getServerDeployJsonSchema(),
|
|
81
99
|
directoryConflict: getDirectoryConflictJsonSchema(),
|
|
82
100
|
template: getTemplateJsonSchema(),
|
|
101
|
+
javaWebFramework: getJavaWebFrameworkJsonSchema(),
|
|
102
|
+
javaBuildTool: getJavaBuildToolJsonSchema(),
|
|
103
|
+
javaOrm: getJavaOrmJsonSchema(),
|
|
104
|
+
javaAuth: getJavaAuthJsonSchema(),
|
|
105
|
+
javaLibraries: getJavaLibrariesJsonSchema(),
|
|
106
|
+
javaTestingLibraries: getJavaTestingLibrariesJsonSchema(),
|
|
83
107
|
createInput: getCreateInputJsonSchema(),
|
|
84
108
|
projectConfig: getProjectConfigJsonSchema(),
|
|
85
109
|
betterTStackConfig: getBetterTStackConfigJsonSchema(),
|
|
@@ -88,5 +112,5 @@ function getAllJsonSchemas() {
|
|
|
88
112
|
}
|
|
89
113
|
|
|
90
114
|
//#endregion
|
|
91
|
-
export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
|
|
115
|
+
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 };
|
|
92
116
|
//# sourceMappingURL=json-schema.mjs.map
|