@better-fullstack/types 1.6.0 → 1.6.2

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.
@@ -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,51 @@ 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
+ liquibase: "liquibase";
754
+ "springdoc-openapi": "springdoc-openapi";
755
+ lombok: "lombok";
756
+ mapstruct: "mapstruct";
757
+ caffeine: "caffeine";
758
+ }>>>;
759
+ javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
760
+ none: "none";
761
+ junit5: "junit5";
762
+ mockito: "mockito";
763
+ testcontainers: "testcontainers";
764
+ assertj: "assertj";
765
+ "rest-assured": "rest-assured";
766
+ wiremock: "wiremock";
767
+ awaitility: "awaitility";
768
+ archunit: "archunit";
769
+ jqwik: "jqwik";
770
+ }>>>;
720
771
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
721
772
  none: "none";
722
773
  "claude-md": "claude-md";
@@ -733,6 +784,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
733
784
  rust: "rust";
734
785
  python: "python";
735
786
  go: "go";
787
+ java: "java";
736
788
  }>;
737
789
  database: z.ZodEnum<{
738
790
  none: "none";
@@ -1187,6 +1239,10 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1187
1239
  redis: "redis";
1188
1240
  moka: "moka";
1189
1241
  }>;
1242
+ rustAuth: z.ZodEnum<{
1243
+ none: "none";
1244
+ oauth2: "oauth2";
1245
+ }>;
1190
1246
  pythonWebFramework: z.ZodEnum<{
1191
1247
  none: "none";
1192
1248
  fastapi: "fastapi";
@@ -1198,6 +1254,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1198
1254
  none: "none";
1199
1255
  sqlalchemy: "sqlalchemy";
1200
1256
  sqlmodel: "sqlmodel";
1257
+ "tortoise-orm": "tortoise-orm";
1201
1258
  }>;
1202
1259
  pythonValidation: z.ZodEnum<{
1203
1260
  none: "none";
@@ -1257,6 +1314,51 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
1257
1314
  zerolog: "zerolog";
1258
1315
  slog: "slog";
1259
1316
  }>;
1317
+ goAuth: z.ZodEnum<{
1318
+ none: "none";
1319
+ jwt: "jwt";
1320
+ casbin: "casbin";
1321
+ }>;
1322
+ javaWebFramework: z.ZodEnum<{
1323
+ none: "none";
1324
+ "spring-boot": "spring-boot";
1325
+ }>;
1326
+ javaBuildTool: z.ZodEnum<{
1327
+ none: "none";
1328
+ maven: "maven";
1329
+ gradle: "gradle";
1330
+ }>;
1331
+ javaOrm: z.ZodEnum<{
1332
+ none: "none";
1333
+ "spring-data-jpa": "spring-data-jpa";
1334
+ }>;
1335
+ javaAuth: z.ZodEnum<{
1336
+ none: "none";
1337
+ "spring-security": "spring-security";
1338
+ }>;
1339
+ javaLibraries: z.ZodArray<z.ZodEnum<{
1340
+ none: "none";
1341
+ "spring-actuator": "spring-actuator";
1342
+ "spring-validation": "spring-validation";
1343
+ flyway: "flyway";
1344
+ liquibase: "liquibase";
1345
+ "springdoc-openapi": "springdoc-openapi";
1346
+ lombok: "lombok";
1347
+ mapstruct: "mapstruct";
1348
+ caffeine: "caffeine";
1349
+ }>>;
1350
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
1351
+ none: "none";
1352
+ junit5: "junit5";
1353
+ mockito: "mockito";
1354
+ testcontainers: "testcontainers";
1355
+ assertj: "assertj";
1356
+ "rest-assured": "rest-assured";
1357
+ wiremock: "wiremock";
1358
+ awaitility: "awaitility";
1359
+ archunit: "archunit";
1360
+ jqwik: "jqwik";
1361
+ }>>;
1260
1362
  aiDocs: z.ZodArray<z.ZodEnum<{
1261
1363
  none: "none";
1262
1364
  "claude-md": "claude-md";
@@ -1272,6 +1374,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1272
1374
  rust: "rust";
1273
1375
  python: "python";
1274
1376
  go: "go";
1377
+ java: "java";
1275
1378
  }>;
1276
1379
  database: z.ZodEnum<{
1277
1380
  none: "none";
@@ -1724,6 +1827,10 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1724
1827
  redis: "redis";
1725
1828
  moka: "moka";
1726
1829
  }>;
1830
+ rustAuth: z.ZodEnum<{
1831
+ none: "none";
1832
+ oauth2: "oauth2";
1833
+ }>;
1727
1834
  pythonWebFramework: z.ZodEnum<{
1728
1835
  none: "none";
1729
1836
  fastapi: "fastapi";
@@ -1735,6 +1842,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1735
1842
  none: "none";
1736
1843
  sqlalchemy: "sqlalchemy";
1737
1844
  sqlmodel: "sqlmodel";
1845
+ "tortoise-orm": "tortoise-orm";
1738
1846
  }>;
1739
1847
  pythonValidation: z.ZodEnum<{
1740
1848
  none: "none";
@@ -1794,6 +1902,51 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
1794
1902
  zerolog: "zerolog";
1795
1903
  slog: "slog";
1796
1904
  }>;
1905
+ goAuth: z.ZodEnum<{
1906
+ none: "none";
1907
+ jwt: "jwt";
1908
+ casbin: "casbin";
1909
+ }>;
1910
+ javaWebFramework: z.ZodEnum<{
1911
+ none: "none";
1912
+ "spring-boot": "spring-boot";
1913
+ }>;
1914
+ javaBuildTool: z.ZodEnum<{
1915
+ none: "none";
1916
+ maven: "maven";
1917
+ gradle: "gradle";
1918
+ }>;
1919
+ javaOrm: z.ZodEnum<{
1920
+ none: "none";
1921
+ "spring-data-jpa": "spring-data-jpa";
1922
+ }>;
1923
+ javaAuth: z.ZodEnum<{
1924
+ none: "none";
1925
+ "spring-security": "spring-security";
1926
+ }>;
1927
+ javaLibraries: z.ZodArray<z.ZodEnum<{
1928
+ none: "none";
1929
+ "spring-actuator": "spring-actuator";
1930
+ "spring-validation": "spring-validation";
1931
+ flyway: "flyway";
1932
+ liquibase: "liquibase";
1933
+ "springdoc-openapi": "springdoc-openapi";
1934
+ lombok: "lombok";
1935
+ mapstruct: "mapstruct";
1936
+ caffeine: "caffeine";
1937
+ }>>;
1938
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
1939
+ none: "none";
1940
+ junit5: "junit5";
1941
+ mockito: "mockito";
1942
+ testcontainers: "testcontainers";
1943
+ assertj: "assertj";
1944
+ "rest-assured": "rest-assured";
1945
+ wiremock: "wiremock";
1946
+ awaitility: "awaitility";
1947
+ archunit: "archunit";
1948
+ jqwik: "jqwik";
1949
+ }>>;
1797
1950
  aiDocs: z.ZodArray<z.ZodEnum<{
1798
1951
  none: "none";
1799
1952
  "claude-md": "claude-md";
@@ -1812,6 +1965,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
1812
1965
  rust: "rust";
1813
1966
  python: "python";
1814
1967
  go: "go";
1968
+ java: "java";
1815
1969
  }>;
1816
1970
  database: z.ZodEnum<{
1817
1971
  none: "none";
@@ -2266,6 +2420,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
2266
2420
  redis: "redis";
2267
2421
  moka: "moka";
2268
2422
  }>;
2423
+ rustAuth: z.ZodEnum<{
2424
+ none: "none";
2425
+ oauth2: "oauth2";
2426
+ }>;
2269
2427
  pythonWebFramework: z.ZodEnum<{
2270
2428
  none: "none";
2271
2429
  fastapi: "fastapi";
@@ -2277,6 +2435,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
2277
2435
  none: "none";
2278
2436
  sqlalchemy: "sqlalchemy";
2279
2437
  sqlmodel: "sqlmodel";
2438
+ "tortoise-orm": "tortoise-orm";
2280
2439
  }>;
2281
2440
  pythonValidation: z.ZodEnum<{
2282
2441
  none: "none";
@@ -2336,6 +2495,51 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
2336
2495
  zerolog: "zerolog";
2337
2496
  slog: "slog";
2338
2497
  }>;
2498
+ goAuth: z.ZodEnum<{
2499
+ none: "none";
2500
+ jwt: "jwt";
2501
+ casbin: "casbin";
2502
+ }>;
2503
+ javaWebFramework: z.ZodEnum<{
2504
+ none: "none";
2505
+ "spring-boot": "spring-boot";
2506
+ }>;
2507
+ javaBuildTool: z.ZodEnum<{
2508
+ none: "none";
2509
+ maven: "maven";
2510
+ gradle: "gradle";
2511
+ }>;
2512
+ javaOrm: z.ZodEnum<{
2513
+ none: "none";
2514
+ "spring-data-jpa": "spring-data-jpa";
2515
+ }>;
2516
+ javaAuth: z.ZodEnum<{
2517
+ none: "none";
2518
+ "spring-security": "spring-security";
2519
+ }>;
2520
+ javaLibraries: z.ZodArray<z.ZodEnum<{
2521
+ none: "none";
2522
+ "spring-actuator": "spring-actuator";
2523
+ "spring-validation": "spring-validation";
2524
+ flyway: "flyway";
2525
+ liquibase: "liquibase";
2526
+ "springdoc-openapi": "springdoc-openapi";
2527
+ lombok: "lombok";
2528
+ mapstruct: "mapstruct";
2529
+ caffeine: "caffeine";
2530
+ }>>;
2531
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
2532
+ none: "none";
2533
+ junit5: "junit5";
2534
+ mockito: "mockito";
2535
+ testcontainers: "testcontainers";
2536
+ assertj: "assertj";
2537
+ "rest-assured": "rest-assured";
2538
+ wiremock: "wiremock";
2539
+ awaitility: "awaitility";
2540
+ archunit: "archunit";
2541
+ jqwik: "jqwik";
2542
+ }>>;
2339
2543
  aiDocs: z.ZodArray<z.ZodEnum<{
2340
2544
  none: "none";
2341
2545
  "claude-md": "claude-md";
@@ -2350,6 +2554,46 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
2350
2554
  relativePath: z.ZodString;
2351
2555
  error: z.ZodOptional<z.ZodString>;
2352
2556
  }, z.core.$strip>>;
2557
+ declare function getJavaWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2558
+ none: "none";
2559
+ "spring-boot": "spring-boot";
2560
+ }>>;
2561
+ declare function getJavaBuildToolJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2562
+ none: "none";
2563
+ maven: "maven";
2564
+ gradle: "gradle";
2565
+ }>>;
2566
+ declare function getJavaOrmJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2567
+ none: "none";
2568
+ "spring-data-jpa": "spring-data-jpa";
2569
+ }>>;
2570
+ declare function getJavaAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2571
+ none: "none";
2572
+ "spring-security": "spring-security";
2573
+ }>>;
2574
+ declare function getJavaLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2575
+ none: "none";
2576
+ "spring-actuator": "spring-actuator";
2577
+ "spring-validation": "spring-validation";
2578
+ flyway: "flyway";
2579
+ liquibase: "liquibase";
2580
+ "springdoc-openapi": "springdoc-openapi";
2581
+ lombok: "lombok";
2582
+ mapstruct: "mapstruct";
2583
+ caffeine: "caffeine";
2584
+ }>>;
2585
+ declare function getJavaTestingLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2586
+ none: "none";
2587
+ junit5: "junit5";
2588
+ mockito: "mockito";
2589
+ testcontainers: "testcontainers";
2590
+ assertj: "assertj";
2591
+ "rest-assured": "rest-assured";
2592
+ wiremock: "wiremock";
2593
+ awaitility: "awaitility";
2594
+ archunit: "archunit";
2595
+ jqwik: "jqwik";
2596
+ }>>;
2353
2597
  declare function getAllJsonSchemas(): {
2354
2598
  database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2355
2599
  none: "none";
@@ -2516,6 +2760,46 @@ declare function getAllJsonSchemas(): {
2516
2760
  t3: "t3";
2517
2761
  uniwind: "uniwind";
2518
2762
  }>>;
2763
+ javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2764
+ none: "none";
2765
+ "spring-boot": "spring-boot";
2766
+ }>>;
2767
+ javaBuildTool: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2768
+ none: "none";
2769
+ maven: "maven";
2770
+ gradle: "gradle";
2771
+ }>>;
2772
+ javaOrm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2773
+ none: "none";
2774
+ "spring-data-jpa": "spring-data-jpa";
2775
+ }>>;
2776
+ javaAuth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2777
+ none: "none";
2778
+ "spring-security": "spring-security";
2779
+ }>>;
2780
+ javaLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2781
+ none: "none";
2782
+ "spring-actuator": "spring-actuator";
2783
+ "spring-validation": "spring-validation";
2784
+ flyway: "flyway";
2785
+ liquibase: "liquibase";
2786
+ "springdoc-openapi": "springdoc-openapi";
2787
+ lombok: "lombok";
2788
+ mapstruct: "mapstruct";
2789
+ caffeine: "caffeine";
2790
+ }>>;
2791
+ javaTestingLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
2792
+ none: "none";
2793
+ junit5: "junit5";
2794
+ mockito: "mockito";
2795
+ testcontainers: "testcontainers";
2796
+ assertj: "assertj";
2797
+ "rest-assured": "rest-assured";
2798
+ wiremock: "wiremock";
2799
+ awaitility: "awaitility";
2800
+ archunit: "archunit";
2801
+ jqwik: "jqwik";
2802
+ }>>;
2519
2803
  createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2520
2804
  projectName: z.ZodOptional<z.ZodString>;
2521
2805
  template: z.ZodOptional<z.ZodEnum<{
@@ -2534,6 +2818,7 @@ declare function getAllJsonSchemas(): {
2534
2818
  rust: "rust";
2535
2819
  python: "python";
2536
2820
  go: "go";
2821
+ java: "java";
2537
2822
  }>>;
2538
2823
  database: z.ZodOptional<z.ZodEnum<{
2539
2824
  none: "none";
@@ -2997,6 +3282,10 @@ declare function getAllJsonSchemas(): {
2997
3282
  redis: "redis";
2998
3283
  moka: "moka";
2999
3284
  }>>;
3285
+ rustAuth: z.ZodOptional<z.ZodEnum<{
3286
+ none: "none";
3287
+ oauth2: "oauth2";
3288
+ }>>;
3000
3289
  pythonWebFramework: z.ZodOptional<z.ZodEnum<{
3001
3290
  none: "none";
3002
3291
  fastapi: "fastapi";
@@ -3008,6 +3297,7 @@ declare function getAllJsonSchemas(): {
3008
3297
  none: "none";
3009
3298
  sqlalchemy: "sqlalchemy";
3010
3299
  sqlmodel: "sqlmodel";
3300
+ "tortoise-orm": "tortoise-orm";
3011
3301
  }>>;
3012
3302
  pythonValidation: z.ZodOptional<z.ZodEnum<{
3013
3303
  none: "none";
@@ -3067,6 +3357,51 @@ declare function getAllJsonSchemas(): {
3067
3357
  zerolog: "zerolog";
3068
3358
  slog: "slog";
3069
3359
  }>>;
3360
+ goAuth: z.ZodOptional<z.ZodEnum<{
3361
+ none: "none";
3362
+ jwt: "jwt";
3363
+ casbin: "casbin";
3364
+ }>>;
3365
+ javaWebFramework: z.ZodOptional<z.ZodEnum<{
3366
+ none: "none";
3367
+ "spring-boot": "spring-boot";
3368
+ }>>;
3369
+ javaBuildTool: z.ZodOptional<z.ZodEnum<{
3370
+ none: "none";
3371
+ maven: "maven";
3372
+ gradle: "gradle";
3373
+ }>>;
3374
+ javaOrm: z.ZodOptional<z.ZodEnum<{
3375
+ none: "none";
3376
+ "spring-data-jpa": "spring-data-jpa";
3377
+ }>>;
3378
+ javaAuth: z.ZodOptional<z.ZodEnum<{
3379
+ none: "none";
3380
+ "spring-security": "spring-security";
3381
+ }>>;
3382
+ javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3383
+ none: "none";
3384
+ "spring-actuator": "spring-actuator";
3385
+ "spring-validation": "spring-validation";
3386
+ flyway: "flyway";
3387
+ liquibase: "liquibase";
3388
+ "springdoc-openapi": "springdoc-openapi";
3389
+ lombok: "lombok";
3390
+ mapstruct: "mapstruct";
3391
+ caffeine: "caffeine";
3392
+ }>>>;
3393
+ javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3394
+ none: "none";
3395
+ junit5: "junit5";
3396
+ mockito: "mockito";
3397
+ testcontainers: "testcontainers";
3398
+ assertj: "assertj";
3399
+ "rest-assured": "rest-assured";
3400
+ wiremock: "wiremock";
3401
+ awaitility: "awaitility";
3402
+ archunit: "archunit";
3403
+ jqwik: "jqwik";
3404
+ }>>>;
3070
3405
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3071
3406
  none: "none";
3072
3407
  "claude-md": "claude-md";
@@ -3083,6 +3418,7 @@ declare function getAllJsonSchemas(): {
3083
3418
  rust: "rust";
3084
3419
  python: "python";
3085
3420
  go: "go";
3421
+ java: "java";
3086
3422
  }>;
3087
3423
  database: z.ZodEnum<{
3088
3424
  none: "none";
@@ -3537,6 +3873,10 @@ declare function getAllJsonSchemas(): {
3537
3873
  redis: "redis";
3538
3874
  moka: "moka";
3539
3875
  }>;
3876
+ rustAuth: z.ZodEnum<{
3877
+ none: "none";
3878
+ oauth2: "oauth2";
3879
+ }>;
3540
3880
  pythonWebFramework: z.ZodEnum<{
3541
3881
  none: "none";
3542
3882
  fastapi: "fastapi";
@@ -3548,6 +3888,7 @@ declare function getAllJsonSchemas(): {
3548
3888
  none: "none";
3549
3889
  sqlalchemy: "sqlalchemy";
3550
3890
  sqlmodel: "sqlmodel";
3891
+ "tortoise-orm": "tortoise-orm";
3551
3892
  }>;
3552
3893
  pythonValidation: z.ZodEnum<{
3553
3894
  none: "none";
@@ -3607,6 +3948,51 @@ declare function getAllJsonSchemas(): {
3607
3948
  zerolog: "zerolog";
3608
3949
  slog: "slog";
3609
3950
  }>;
3951
+ goAuth: z.ZodEnum<{
3952
+ none: "none";
3953
+ jwt: "jwt";
3954
+ casbin: "casbin";
3955
+ }>;
3956
+ javaWebFramework: z.ZodEnum<{
3957
+ none: "none";
3958
+ "spring-boot": "spring-boot";
3959
+ }>;
3960
+ javaBuildTool: z.ZodEnum<{
3961
+ none: "none";
3962
+ maven: "maven";
3963
+ gradle: "gradle";
3964
+ }>;
3965
+ javaOrm: z.ZodEnum<{
3966
+ none: "none";
3967
+ "spring-data-jpa": "spring-data-jpa";
3968
+ }>;
3969
+ javaAuth: z.ZodEnum<{
3970
+ none: "none";
3971
+ "spring-security": "spring-security";
3972
+ }>;
3973
+ javaLibraries: z.ZodArray<z.ZodEnum<{
3974
+ none: "none";
3975
+ "spring-actuator": "spring-actuator";
3976
+ "spring-validation": "spring-validation";
3977
+ flyway: "flyway";
3978
+ liquibase: "liquibase";
3979
+ "springdoc-openapi": "springdoc-openapi";
3980
+ lombok: "lombok";
3981
+ mapstruct: "mapstruct";
3982
+ caffeine: "caffeine";
3983
+ }>>;
3984
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
3985
+ none: "none";
3986
+ junit5: "junit5";
3987
+ mockito: "mockito";
3988
+ testcontainers: "testcontainers";
3989
+ assertj: "assertj";
3990
+ "rest-assured": "rest-assured";
3991
+ wiremock: "wiremock";
3992
+ awaitility: "awaitility";
3993
+ archunit: "archunit";
3994
+ jqwik: "jqwik";
3995
+ }>>;
3610
3996
  aiDocs: z.ZodArray<z.ZodEnum<{
3611
3997
  none: "none";
3612
3998
  "claude-md": "claude-md";
@@ -3622,6 +4008,7 @@ declare function getAllJsonSchemas(): {
3622
4008
  rust: "rust";
3623
4009
  python: "python";
3624
4010
  go: "go";
4011
+ java: "java";
3625
4012
  }>;
3626
4013
  database: z.ZodEnum<{
3627
4014
  none: "none";
@@ -4074,6 +4461,10 @@ declare function getAllJsonSchemas(): {
4074
4461
  redis: "redis";
4075
4462
  moka: "moka";
4076
4463
  }>;
4464
+ rustAuth: z.ZodEnum<{
4465
+ none: "none";
4466
+ oauth2: "oauth2";
4467
+ }>;
4077
4468
  pythonWebFramework: z.ZodEnum<{
4078
4469
  none: "none";
4079
4470
  fastapi: "fastapi";
@@ -4085,6 +4476,7 @@ declare function getAllJsonSchemas(): {
4085
4476
  none: "none";
4086
4477
  sqlalchemy: "sqlalchemy";
4087
4478
  sqlmodel: "sqlmodel";
4479
+ "tortoise-orm": "tortoise-orm";
4088
4480
  }>;
4089
4481
  pythonValidation: z.ZodEnum<{
4090
4482
  none: "none";
@@ -4144,6 +4536,51 @@ declare function getAllJsonSchemas(): {
4144
4536
  zerolog: "zerolog";
4145
4537
  slog: "slog";
4146
4538
  }>;
4539
+ goAuth: z.ZodEnum<{
4540
+ none: "none";
4541
+ jwt: "jwt";
4542
+ casbin: "casbin";
4543
+ }>;
4544
+ javaWebFramework: z.ZodEnum<{
4545
+ none: "none";
4546
+ "spring-boot": "spring-boot";
4547
+ }>;
4548
+ javaBuildTool: z.ZodEnum<{
4549
+ none: "none";
4550
+ maven: "maven";
4551
+ gradle: "gradle";
4552
+ }>;
4553
+ javaOrm: z.ZodEnum<{
4554
+ none: "none";
4555
+ "spring-data-jpa": "spring-data-jpa";
4556
+ }>;
4557
+ javaAuth: z.ZodEnum<{
4558
+ none: "none";
4559
+ "spring-security": "spring-security";
4560
+ }>;
4561
+ javaLibraries: z.ZodArray<z.ZodEnum<{
4562
+ none: "none";
4563
+ "spring-actuator": "spring-actuator";
4564
+ "spring-validation": "spring-validation";
4565
+ flyway: "flyway";
4566
+ liquibase: "liquibase";
4567
+ "springdoc-openapi": "springdoc-openapi";
4568
+ lombok: "lombok";
4569
+ mapstruct: "mapstruct";
4570
+ caffeine: "caffeine";
4571
+ }>>;
4572
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
4573
+ none: "none";
4574
+ junit5: "junit5";
4575
+ mockito: "mockito";
4576
+ testcontainers: "testcontainers";
4577
+ assertj: "assertj";
4578
+ "rest-assured": "rest-assured";
4579
+ wiremock: "wiremock";
4580
+ awaitility: "awaitility";
4581
+ archunit: "archunit";
4582
+ jqwik: "jqwik";
4583
+ }>>;
4147
4584
  aiDocs: z.ZodArray<z.ZodEnum<{
4148
4585
  none: "none";
4149
4586
  "claude-md": "claude-md";
@@ -4162,6 +4599,7 @@ declare function getAllJsonSchemas(): {
4162
4599
  rust: "rust";
4163
4600
  python: "python";
4164
4601
  go: "go";
4602
+ java: "java";
4165
4603
  }>;
4166
4604
  database: z.ZodEnum<{
4167
4605
  none: "none";
@@ -4616,6 +5054,10 @@ declare function getAllJsonSchemas(): {
4616
5054
  redis: "redis";
4617
5055
  moka: "moka";
4618
5056
  }>;
5057
+ rustAuth: z.ZodEnum<{
5058
+ none: "none";
5059
+ oauth2: "oauth2";
5060
+ }>;
4619
5061
  pythonWebFramework: z.ZodEnum<{
4620
5062
  none: "none";
4621
5063
  fastapi: "fastapi";
@@ -4627,6 +5069,7 @@ declare function getAllJsonSchemas(): {
4627
5069
  none: "none";
4628
5070
  sqlalchemy: "sqlalchemy";
4629
5071
  sqlmodel: "sqlmodel";
5072
+ "tortoise-orm": "tortoise-orm";
4630
5073
  }>;
4631
5074
  pythonValidation: z.ZodEnum<{
4632
5075
  none: "none";
@@ -4686,6 +5129,51 @@ declare function getAllJsonSchemas(): {
4686
5129
  zerolog: "zerolog";
4687
5130
  slog: "slog";
4688
5131
  }>;
5132
+ goAuth: z.ZodEnum<{
5133
+ none: "none";
5134
+ jwt: "jwt";
5135
+ casbin: "casbin";
5136
+ }>;
5137
+ javaWebFramework: z.ZodEnum<{
5138
+ none: "none";
5139
+ "spring-boot": "spring-boot";
5140
+ }>;
5141
+ javaBuildTool: z.ZodEnum<{
5142
+ none: "none";
5143
+ maven: "maven";
5144
+ gradle: "gradle";
5145
+ }>;
5146
+ javaOrm: z.ZodEnum<{
5147
+ none: "none";
5148
+ "spring-data-jpa": "spring-data-jpa";
5149
+ }>;
5150
+ javaAuth: z.ZodEnum<{
5151
+ none: "none";
5152
+ "spring-security": "spring-security";
5153
+ }>;
5154
+ javaLibraries: z.ZodArray<z.ZodEnum<{
5155
+ none: "none";
5156
+ "spring-actuator": "spring-actuator";
5157
+ "spring-validation": "spring-validation";
5158
+ flyway: "flyway";
5159
+ liquibase: "liquibase";
5160
+ "springdoc-openapi": "springdoc-openapi";
5161
+ lombok: "lombok";
5162
+ mapstruct: "mapstruct";
5163
+ caffeine: "caffeine";
5164
+ }>>;
5165
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
5166
+ none: "none";
5167
+ junit5: "junit5";
5168
+ mockito: "mockito";
5169
+ testcontainers: "testcontainers";
5170
+ assertj: "assertj";
5171
+ "rest-assured": "rest-assured";
5172
+ wiremock: "wiremock";
5173
+ awaitility: "awaitility";
5174
+ archunit: "archunit";
5175
+ jqwik: "jqwik";
5176
+ }>>;
4689
5177
  aiDocs: z.ZodArray<z.ZodEnum<{
4690
5178
  none: "none";
4691
5179
  "claude-md": "claude-md";
@@ -4702,5 +5190,5 @@ declare function getAllJsonSchemas(): {
4702
5190
  }, z.core.$strip>>;
4703
5191
  };
4704
5192
  //#endregion
4705
- export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
5193
+ 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
5194
  //# sourceMappingURL=json-schema.d.mts.map