@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.
@@ -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";
@@ -369,6 +370,10 @@ declare const RustCachingSchema: z.ZodEnum<{
369
370
  redis: "redis";
370
371
  moka: "moka";
371
372
  }>;
373
+ declare const RustAuthSchema: z.ZodEnum<{
374
+ none: "none";
375
+ oauth2: "oauth2";
376
+ }>;
372
377
  declare const PythonWebFrameworkSchema: z.ZodEnum<{
373
378
  none: "none";
374
379
  fastapi: "fastapi";
@@ -380,6 +385,7 @@ declare const PythonOrmSchema: z.ZodEnum<{
380
385
  none: "none";
381
386
  sqlalchemy: "sqlalchemy";
382
387
  sqlmodel: "sqlmodel";
388
+ "tortoise-orm": "tortoise-orm";
383
389
  }>;
384
390
  declare const PythonValidationSchema: z.ZodEnum<{
385
391
  none: "none";
@@ -439,6 +445,51 @@ declare const GoLoggingSchema: z.ZodEnum<{
439
445
  zerolog: "zerolog";
440
446
  slog: "slog";
441
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
+ liquibase: "liquibase";
476
+ "springdoc-openapi": "springdoc-openapi";
477
+ lombok: "lombok";
478
+ mapstruct: "mapstruct";
479
+ caffeine: "caffeine";
480
+ }>;
481
+ declare const JavaTestingLibrariesSchema: z.ZodEnum<{
482
+ none: "none";
483
+ junit5: "junit5";
484
+ mockito: "mockito";
485
+ testcontainers: "testcontainers";
486
+ assertj: "assertj";
487
+ "rest-assured": "rest-assured";
488
+ wiremock: "wiremock";
489
+ awaitility: "awaitility";
490
+ archunit: "archunit";
491
+ jqwik: "jqwik";
492
+ }>;
442
493
  declare const AiDocsSchema: z.ZodEnum<{
443
494
  none: "none";
444
495
  "claude-md": "claude-md";
@@ -566,6 +617,7 @@ declare const CreateInputSchema: z.ZodObject<{
566
617
  rust: "rust";
567
618
  python: "python";
568
619
  go: "go";
620
+ java: "java";
569
621
  }>>;
570
622
  database: z.ZodOptional<z.ZodEnum<{
571
623
  none: "none";
@@ -1029,6 +1081,10 @@ declare const CreateInputSchema: z.ZodObject<{
1029
1081
  redis: "redis";
1030
1082
  moka: "moka";
1031
1083
  }>>;
1084
+ rustAuth: z.ZodOptional<z.ZodEnum<{
1085
+ none: "none";
1086
+ oauth2: "oauth2";
1087
+ }>>;
1032
1088
  pythonWebFramework: z.ZodOptional<z.ZodEnum<{
1033
1089
  none: "none";
1034
1090
  fastapi: "fastapi";
@@ -1040,6 +1096,7 @@ declare const CreateInputSchema: z.ZodObject<{
1040
1096
  none: "none";
1041
1097
  sqlalchemy: "sqlalchemy";
1042
1098
  sqlmodel: "sqlmodel";
1099
+ "tortoise-orm": "tortoise-orm";
1043
1100
  }>>;
1044
1101
  pythonValidation: z.ZodOptional<z.ZodEnum<{
1045
1102
  none: "none";
@@ -1099,6 +1156,51 @@ declare const CreateInputSchema: z.ZodObject<{
1099
1156
  zerolog: "zerolog";
1100
1157
  slog: "slog";
1101
1158
  }>>;
1159
+ goAuth: z.ZodOptional<z.ZodEnum<{
1160
+ none: "none";
1161
+ jwt: "jwt";
1162
+ casbin: "casbin";
1163
+ }>>;
1164
+ javaWebFramework: z.ZodOptional<z.ZodEnum<{
1165
+ none: "none";
1166
+ "spring-boot": "spring-boot";
1167
+ }>>;
1168
+ javaBuildTool: z.ZodOptional<z.ZodEnum<{
1169
+ none: "none";
1170
+ maven: "maven";
1171
+ gradle: "gradle";
1172
+ }>>;
1173
+ javaOrm: z.ZodOptional<z.ZodEnum<{
1174
+ none: "none";
1175
+ "spring-data-jpa": "spring-data-jpa";
1176
+ }>>;
1177
+ javaAuth: z.ZodOptional<z.ZodEnum<{
1178
+ none: "none";
1179
+ "spring-security": "spring-security";
1180
+ }>>;
1181
+ javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1182
+ none: "none";
1183
+ "spring-actuator": "spring-actuator";
1184
+ "spring-validation": "spring-validation";
1185
+ flyway: "flyway";
1186
+ liquibase: "liquibase";
1187
+ "springdoc-openapi": "springdoc-openapi";
1188
+ lombok: "lombok";
1189
+ mapstruct: "mapstruct";
1190
+ caffeine: "caffeine";
1191
+ }>>>;
1192
+ javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1193
+ none: "none";
1194
+ junit5: "junit5";
1195
+ mockito: "mockito";
1196
+ testcontainers: "testcontainers";
1197
+ assertj: "assertj";
1198
+ "rest-assured": "rest-assured";
1199
+ wiremock: "wiremock";
1200
+ awaitility: "awaitility";
1201
+ archunit: "archunit";
1202
+ jqwik: "jqwik";
1203
+ }>>>;
1102
1204
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1103
1205
  none: "none";
1104
1206
  "claude-md": "claude-md";
@@ -1177,6 +1279,7 @@ declare const CLIInputSchema: z.ZodObject<{
1177
1279
  rust: "rust";
1178
1280
  python: "python";
1179
1281
  go: "go";
1282
+ java: "java";
1180
1283
  }>>;
1181
1284
  database: z.ZodOptional<z.ZodEnum<{
1182
1285
  none: "none";
@@ -1640,6 +1743,10 @@ declare const CLIInputSchema: z.ZodObject<{
1640
1743
  redis: "redis";
1641
1744
  moka: "moka";
1642
1745
  }>>;
1746
+ rustAuth: z.ZodOptional<z.ZodEnum<{
1747
+ none: "none";
1748
+ oauth2: "oauth2";
1749
+ }>>;
1643
1750
  pythonWebFramework: z.ZodOptional<z.ZodEnum<{
1644
1751
  none: "none";
1645
1752
  fastapi: "fastapi";
@@ -1651,6 +1758,7 @@ declare const CLIInputSchema: z.ZodObject<{
1651
1758
  none: "none";
1652
1759
  sqlalchemy: "sqlalchemy";
1653
1760
  sqlmodel: "sqlmodel";
1761
+ "tortoise-orm": "tortoise-orm";
1654
1762
  }>>;
1655
1763
  pythonValidation: z.ZodOptional<z.ZodEnum<{
1656
1764
  none: "none";
@@ -1710,6 +1818,51 @@ declare const CLIInputSchema: z.ZodObject<{
1710
1818
  zerolog: "zerolog";
1711
1819
  slog: "slog";
1712
1820
  }>>;
1821
+ goAuth: z.ZodOptional<z.ZodEnum<{
1822
+ none: "none";
1823
+ jwt: "jwt";
1824
+ casbin: "casbin";
1825
+ }>>;
1826
+ javaWebFramework: z.ZodOptional<z.ZodEnum<{
1827
+ none: "none";
1828
+ "spring-boot": "spring-boot";
1829
+ }>>;
1830
+ javaBuildTool: z.ZodOptional<z.ZodEnum<{
1831
+ none: "none";
1832
+ maven: "maven";
1833
+ gradle: "gradle";
1834
+ }>>;
1835
+ javaOrm: z.ZodOptional<z.ZodEnum<{
1836
+ none: "none";
1837
+ "spring-data-jpa": "spring-data-jpa";
1838
+ }>>;
1839
+ javaAuth: z.ZodOptional<z.ZodEnum<{
1840
+ none: "none";
1841
+ "spring-security": "spring-security";
1842
+ }>>;
1843
+ javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1844
+ none: "none";
1845
+ "spring-actuator": "spring-actuator";
1846
+ "spring-validation": "spring-validation";
1847
+ flyway: "flyway";
1848
+ liquibase: "liquibase";
1849
+ "springdoc-openapi": "springdoc-openapi";
1850
+ lombok: "lombok";
1851
+ mapstruct: "mapstruct";
1852
+ caffeine: "caffeine";
1853
+ }>>>;
1854
+ javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1855
+ none: "none";
1856
+ junit5: "junit5";
1857
+ mockito: "mockito";
1858
+ testcontainers: "testcontainers";
1859
+ assertj: "assertj";
1860
+ "rest-assured": "rest-assured";
1861
+ wiremock: "wiremock";
1862
+ awaitility: "awaitility";
1863
+ archunit: "archunit";
1864
+ jqwik: "jqwik";
1865
+ }>>>;
1713
1866
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1714
1867
  none: "none";
1715
1868
  "claude-md": "claude-md";
@@ -1727,6 +1880,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
1727
1880
  rust: "rust";
1728
1881
  python: "python";
1729
1882
  go: "go";
1883
+ java: "java";
1730
1884
  }>;
1731
1885
  database: z.ZodEnum<{
1732
1886
  none: "none";
@@ -2181,6 +2335,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
2181
2335
  redis: "redis";
2182
2336
  moka: "moka";
2183
2337
  }>;
2338
+ rustAuth: z.ZodEnum<{
2339
+ none: "none";
2340
+ oauth2: "oauth2";
2341
+ }>;
2184
2342
  pythonWebFramework: z.ZodEnum<{
2185
2343
  none: "none";
2186
2344
  fastapi: "fastapi";
@@ -2192,6 +2350,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
2192
2350
  none: "none";
2193
2351
  sqlalchemy: "sqlalchemy";
2194
2352
  sqlmodel: "sqlmodel";
2353
+ "tortoise-orm": "tortoise-orm";
2195
2354
  }>;
2196
2355
  pythonValidation: z.ZodEnum<{
2197
2356
  none: "none";
@@ -2251,6 +2410,51 @@ declare const ProjectConfigSchema: z.ZodObject<{
2251
2410
  zerolog: "zerolog";
2252
2411
  slog: "slog";
2253
2412
  }>;
2413
+ goAuth: z.ZodEnum<{
2414
+ none: "none";
2415
+ jwt: "jwt";
2416
+ casbin: "casbin";
2417
+ }>;
2418
+ javaWebFramework: z.ZodEnum<{
2419
+ none: "none";
2420
+ "spring-boot": "spring-boot";
2421
+ }>;
2422
+ javaBuildTool: z.ZodEnum<{
2423
+ none: "none";
2424
+ maven: "maven";
2425
+ gradle: "gradle";
2426
+ }>;
2427
+ javaOrm: z.ZodEnum<{
2428
+ none: "none";
2429
+ "spring-data-jpa": "spring-data-jpa";
2430
+ }>;
2431
+ javaAuth: z.ZodEnum<{
2432
+ none: "none";
2433
+ "spring-security": "spring-security";
2434
+ }>;
2435
+ javaLibraries: z.ZodArray<z.ZodEnum<{
2436
+ none: "none";
2437
+ "spring-actuator": "spring-actuator";
2438
+ "spring-validation": "spring-validation";
2439
+ flyway: "flyway";
2440
+ liquibase: "liquibase";
2441
+ "springdoc-openapi": "springdoc-openapi";
2442
+ lombok: "lombok";
2443
+ mapstruct: "mapstruct";
2444
+ caffeine: "caffeine";
2445
+ }>>;
2446
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
2447
+ none: "none";
2448
+ junit5: "junit5";
2449
+ mockito: "mockito";
2450
+ testcontainers: "testcontainers";
2451
+ assertj: "assertj";
2452
+ "rest-assured": "rest-assured";
2453
+ wiremock: "wiremock";
2454
+ awaitility: "awaitility";
2455
+ archunit: "archunit";
2456
+ jqwik: "jqwik";
2457
+ }>>;
2254
2458
  aiDocs: z.ZodArray<z.ZodEnum<{
2255
2459
  none: "none";
2256
2460
  "claude-md": "claude-md";
@@ -2266,6 +2470,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2266
2470
  rust: "rust";
2267
2471
  python: "python";
2268
2472
  go: "go";
2473
+ java: "java";
2269
2474
  }>;
2270
2475
  database: z.ZodEnum<{
2271
2476
  none: "none";
@@ -2718,6 +2923,10 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2718
2923
  redis: "redis";
2719
2924
  moka: "moka";
2720
2925
  }>;
2926
+ rustAuth: z.ZodEnum<{
2927
+ none: "none";
2928
+ oauth2: "oauth2";
2929
+ }>;
2721
2930
  pythonWebFramework: z.ZodEnum<{
2722
2931
  none: "none";
2723
2932
  fastapi: "fastapi";
@@ -2729,6 +2938,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2729
2938
  none: "none";
2730
2939
  sqlalchemy: "sqlalchemy";
2731
2940
  sqlmodel: "sqlmodel";
2941
+ "tortoise-orm": "tortoise-orm";
2732
2942
  }>;
2733
2943
  pythonValidation: z.ZodEnum<{
2734
2944
  none: "none";
@@ -2788,6 +2998,51 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
2788
2998
  zerolog: "zerolog";
2789
2999
  slog: "slog";
2790
3000
  }>;
3001
+ goAuth: z.ZodEnum<{
3002
+ none: "none";
3003
+ jwt: "jwt";
3004
+ casbin: "casbin";
3005
+ }>;
3006
+ javaWebFramework: z.ZodEnum<{
3007
+ none: "none";
3008
+ "spring-boot": "spring-boot";
3009
+ }>;
3010
+ javaBuildTool: z.ZodEnum<{
3011
+ none: "none";
3012
+ maven: "maven";
3013
+ gradle: "gradle";
3014
+ }>;
3015
+ javaOrm: z.ZodEnum<{
3016
+ none: "none";
3017
+ "spring-data-jpa": "spring-data-jpa";
3018
+ }>;
3019
+ javaAuth: z.ZodEnum<{
3020
+ none: "none";
3021
+ "spring-security": "spring-security";
3022
+ }>;
3023
+ javaLibraries: z.ZodArray<z.ZodEnum<{
3024
+ none: "none";
3025
+ "spring-actuator": "spring-actuator";
3026
+ "spring-validation": "spring-validation";
3027
+ flyway: "flyway";
3028
+ liquibase: "liquibase";
3029
+ "springdoc-openapi": "springdoc-openapi";
3030
+ lombok: "lombok";
3031
+ mapstruct: "mapstruct";
3032
+ caffeine: "caffeine";
3033
+ }>>;
3034
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
3035
+ none: "none";
3036
+ junit5: "junit5";
3037
+ mockito: "mockito";
3038
+ testcontainers: "testcontainers";
3039
+ assertj: "assertj";
3040
+ "rest-assured": "rest-assured";
3041
+ wiremock: "wiremock";
3042
+ awaitility: "awaitility";
3043
+ archunit: "archunit";
3044
+ jqwik: "jqwik";
3045
+ }>>;
2791
3046
  aiDocs: z.ZodArray<z.ZodEnum<{
2792
3047
  none: "none";
2793
3048
  "claude-md": "claude-md";
@@ -2804,6 +3059,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
2804
3059
  rust: "rust";
2805
3060
  python: "python";
2806
3061
  go: "go";
3062
+ java: "java";
2807
3063
  }>;
2808
3064
  database: z.ZodEnum<{
2809
3065
  none: "none";
@@ -3256,6 +3512,10 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3256
3512
  redis: "redis";
3257
3513
  moka: "moka";
3258
3514
  }>;
3515
+ rustAuth: z.ZodEnum<{
3516
+ none: "none";
3517
+ oauth2: "oauth2";
3518
+ }>;
3259
3519
  pythonWebFramework: z.ZodEnum<{
3260
3520
  none: "none";
3261
3521
  fastapi: "fastapi";
@@ -3267,6 +3527,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3267
3527
  none: "none";
3268
3528
  sqlalchemy: "sqlalchemy";
3269
3529
  sqlmodel: "sqlmodel";
3530
+ "tortoise-orm": "tortoise-orm";
3270
3531
  }>;
3271
3532
  pythonValidation: z.ZodEnum<{
3272
3533
  none: "none";
@@ -3326,6 +3587,51 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
3326
3587
  zerolog: "zerolog";
3327
3588
  slog: "slog";
3328
3589
  }>;
3590
+ goAuth: z.ZodEnum<{
3591
+ none: "none";
3592
+ jwt: "jwt";
3593
+ casbin: "casbin";
3594
+ }>;
3595
+ javaWebFramework: z.ZodEnum<{
3596
+ none: "none";
3597
+ "spring-boot": "spring-boot";
3598
+ }>;
3599
+ javaBuildTool: z.ZodEnum<{
3600
+ none: "none";
3601
+ maven: "maven";
3602
+ gradle: "gradle";
3603
+ }>;
3604
+ javaOrm: z.ZodEnum<{
3605
+ none: "none";
3606
+ "spring-data-jpa": "spring-data-jpa";
3607
+ }>;
3608
+ javaAuth: z.ZodEnum<{
3609
+ none: "none";
3610
+ "spring-security": "spring-security";
3611
+ }>;
3612
+ javaLibraries: z.ZodArray<z.ZodEnum<{
3613
+ none: "none";
3614
+ "spring-actuator": "spring-actuator";
3615
+ "spring-validation": "spring-validation";
3616
+ flyway: "flyway";
3617
+ liquibase: "liquibase";
3618
+ "springdoc-openapi": "springdoc-openapi";
3619
+ lombok: "lombok";
3620
+ mapstruct: "mapstruct";
3621
+ caffeine: "caffeine";
3622
+ }>>;
3623
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
3624
+ none: "none";
3625
+ junit5: "junit5";
3626
+ mockito: "mockito";
3627
+ testcontainers: "testcontainers";
3628
+ assertj: "assertj";
3629
+ "rest-assured": "rest-assured";
3630
+ wiremock: "wiremock";
3631
+ awaitility: "awaitility";
3632
+ archunit: "archunit";
3633
+ jqwik: "jqwik";
3634
+ }>>;
3329
3635
  aiDocs: z.ZodArray<z.ZodEnum<{
3330
3636
  none: "none";
3331
3637
  "claude-md": "claude-md";
@@ -3344,6 +3650,7 @@ declare const InitResultSchema: z.ZodObject<{
3344
3650
  rust: "rust";
3345
3651
  python: "python";
3346
3652
  go: "go";
3653
+ java: "java";
3347
3654
  }>;
3348
3655
  database: z.ZodEnum<{
3349
3656
  none: "none";
@@ -3798,6 +4105,10 @@ declare const InitResultSchema: z.ZodObject<{
3798
4105
  redis: "redis";
3799
4106
  moka: "moka";
3800
4107
  }>;
4108
+ rustAuth: z.ZodEnum<{
4109
+ none: "none";
4110
+ oauth2: "oauth2";
4111
+ }>;
3801
4112
  pythonWebFramework: z.ZodEnum<{
3802
4113
  none: "none";
3803
4114
  fastapi: "fastapi";
@@ -3809,6 +4120,7 @@ declare const InitResultSchema: z.ZodObject<{
3809
4120
  none: "none";
3810
4121
  sqlalchemy: "sqlalchemy";
3811
4122
  sqlmodel: "sqlmodel";
4123
+ "tortoise-orm": "tortoise-orm";
3812
4124
  }>;
3813
4125
  pythonValidation: z.ZodEnum<{
3814
4126
  none: "none";
@@ -3868,6 +4180,51 @@ declare const InitResultSchema: z.ZodObject<{
3868
4180
  zerolog: "zerolog";
3869
4181
  slog: "slog";
3870
4182
  }>;
4183
+ goAuth: z.ZodEnum<{
4184
+ none: "none";
4185
+ jwt: "jwt";
4186
+ casbin: "casbin";
4187
+ }>;
4188
+ javaWebFramework: z.ZodEnum<{
4189
+ none: "none";
4190
+ "spring-boot": "spring-boot";
4191
+ }>;
4192
+ javaBuildTool: z.ZodEnum<{
4193
+ none: "none";
4194
+ maven: "maven";
4195
+ gradle: "gradle";
4196
+ }>;
4197
+ javaOrm: z.ZodEnum<{
4198
+ none: "none";
4199
+ "spring-data-jpa": "spring-data-jpa";
4200
+ }>;
4201
+ javaAuth: z.ZodEnum<{
4202
+ none: "none";
4203
+ "spring-security": "spring-security";
4204
+ }>;
4205
+ javaLibraries: z.ZodArray<z.ZodEnum<{
4206
+ none: "none";
4207
+ "spring-actuator": "spring-actuator";
4208
+ "spring-validation": "spring-validation";
4209
+ flyway: "flyway";
4210
+ liquibase: "liquibase";
4211
+ "springdoc-openapi": "springdoc-openapi";
4212
+ lombok: "lombok";
4213
+ mapstruct: "mapstruct";
4214
+ caffeine: "caffeine";
4215
+ }>>;
4216
+ javaTestingLibraries: z.ZodArray<z.ZodEnum<{
4217
+ none: "none";
4218
+ junit5: "junit5";
4219
+ mockito: "mockito";
4220
+ testcontainers: "testcontainers";
4221
+ assertj: "assertj";
4222
+ "rest-assured": "rest-assured";
4223
+ wiremock: "wiremock";
4224
+ awaitility: "awaitility";
4225
+ archunit: "archunit";
4226
+ jqwik: "jqwik";
4227
+ }>>;
3871
4228
  aiDocs: z.ZodArray<z.ZodEnum<{
3872
4229
  none: "none";
3873
4230
  "claude-md": "claude-md";
@@ -3922,7 +4279,7 @@ declare const CACHING_VALUES: ("none" | "upstash-redis")[];
3922
4279
  declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
3923
4280
  declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
3924
4281
  declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
3925
- declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go")[];
4282
+ declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go" | "java")[];
3926
4283
  declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
3927
4284
  declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
3928
4285
  declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
@@ -3932,8 +4289,9 @@ declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "validator" | "jsonwebt
3932
4289
  declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
3933
4290
  declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
3934
4291
  declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
4292
+ declare const RUST_AUTH_VALUES: ("none" | "oauth2")[];
3935
4293
  declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar")[];
3936
- declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel")[];
4294
+ declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm")[];
3937
4295
  declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
3938
4296
  declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
3939
4297
  declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt")[];
@@ -3945,6 +4303,13 @@ declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
3945
4303
  declare const GO_API_VALUES: ("none" | "grpc-go")[];
3946
4304
  declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
3947
4305
  declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog")[];
4306
+ declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin")[];
4307
+ declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot")[];
4308
+ declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
4309
+ declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa")[];
4310
+ declare const JAVA_AUTH_VALUES: ("none" | "spring-security")[];
4311
+ declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway" | "liquibase" | "springdoc-openapi" | "lombok" | "mapstruct" | "caffeine")[];
4312
+ declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
3948
4313
  declare const AI_DOCS_VALUES: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
3949
4314
  declare const SHADCN_BASE_VALUES: ("radix" | "base")[];
3950
4315
  declare const SHADCN_STYLE_VALUES: ("vega" | "nova" | "maia" | "lyra" | "mira")[];
@@ -3954,5 +4319,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
3954
4319
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
3955
4320
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
3956
4321
  //#endregion
3957
- export { FrontendSchema as $, RUST_WEB_FRAMEWORK_VALUES as $t, DATABASE_SETUP_VALUES as A, StateManagementSchema as An, PYTHON_WEB_FRAMEWORK_VALUES as At, EcosystemSchema as B, VersionChannelSchema as Bn, PythonTaskQueueSchema as Bt, CLIInputSchema as C, ShadcnBaseColorSchema as Cn, PYTHON_AI_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, ShadcnIconLibrarySchema as Dn, PYTHON_QUALITY_VALUES as Dt, CSSFrameworkSchema as E, ShadcnFontSchema as En, PYTHON_ORM_VALUES as Et, DirectoryConflictSchema as F, UILibrarySchema as Fn, PythonAiSchema as Ft, FILE_STORAGE_VALUES as G, RUST_API_VALUES as Gt, EmailSchema as H, WebDeploySchema as Hn, PythonWebFrameworkSchema as Ht, ECOSYSTEM_VALUES as I, UI_LIBRARY_VALUES as In, PythonAuthSchema as It, FRONTEND_VALUES as J, RUST_ERROR_HANDLING_VALUES as Jt, FILE_UPLOAD_VALUES as K, RUST_CACHING_VALUES as Kt, EFFECT_VALUES as L, VALIDATION_VALUES as Ln, PythonGraphqlSchema as Lt, DIRECTORY_CONFLICT_VALUES as M, TESTING_VALUES as Mn, PaymentsSchema as Mt, DatabaseSchema as N, TemplateSchema as Nn, ProjectConfigSchema as Nt, CachingSchema as O, ShadcnRadiusSchema as On, PYTHON_TASK_QUEUE_VALUES as Ot, DatabaseSetupSchema as P, TestingSchema as Pn, ProjectNameSchema as Pt, FormsSchema as Q, RUST_ORM_VALUES as Qt, EMAIL_VALUES as R, VERSION_CHANNEL_VALUES as Rn, PythonOrmSchema as Rt, CACHING_VALUES as S, ServerDeploySchema as Sn, PAYMENTS_VALUES as St, CMS_VALUES as T, ShadcnColorThemeSchema as Tn, PYTHON_GRAPHQL_VALUES as Tt, ExamplesSchema as U, REALTIME_VALUES as Ut, EffectSchema as V, WEB_DEPLOY_VALUES as Vn, PythonValidationSchema as Vt, FEATURE_FLAGS_VALUES as W, RUNTIME_VALUES as Wt, FileStorageSchema as X, RUST_LIBRARIES_VALUES as Xt, FeatureFlagsSchema as Y, RUST_FRONTEND_VALUES as Yt, FileUploadSchema as Z, RUST_LOGGING_VALUES as Zt, AuthSchema as _, SHADCN_ICON_LIBRARY_VALUES as _n, OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, RustErrorHandlingSchema as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, STATE_MANAGEMENT_VALUES as bn, ObservabilitySchema as bt, API_VALUES as c, RustLoggingSchema as cn, GoOrmSchema as ct, AddInputSchema as d, SEARCH_VALUES as dn, I18nSchema as dt, RealtimeSchema as en, GO_API_VALUES as et, AddonsSchema as f, SERVER_DEPLOY_VALUES as fn, InitResultSchema as ft, AstroIntegrationSchema as g, SHADCN_FONT_VALUES as gn, LoggingSchema as gt, AnimationSchema as h, SHADCN_COLOR_THEME_VALUES as hn, LOGGING_VALUES as ht, AI_VALUES as i, RustCliSchema as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, TEMPLATE_VALUES as jn, PackageManagerSchema as jt, CreateInputSchema as k, ShadcnStyleSchema as kn, PYTHON_VALIDATION_VALUES as kt, ASTRO_INTEGRATION_VALUES as l, RustOrmSchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, SHADCN_BASE_VALUES as mn, JobQueueSchema as mt, AISchema as n, RustApiSchema as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, RustFrontendSchema as on, GoCliSchema as ot, AiDocsSchema as p, SHADCN_BASE_COLOR_VALUES as pn, JOB_QUEUE_VALUES as pt, FORMS_VALUES as q, RUST_CLI_VALUES as qt, AI_DOCS_VALUES as r, RustCachingSchema as rn, GO_ORM_VALUES as rt, APISchema as s, RustLibrariesSchema as sn, GoLoggingSchema as st, ADDONS_VALUES as t, RuntimeSchema as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, RustWebFrameworkSchema as un, I18N_VALUES as ut, BACKEND_VALUES as v, SHADCN_RADIUS_VALUES as vn, ORMSchema as vt, CMSSchema as w, ShadcnBaseSchema as wn, PYTHON_AUTH_VALUES as wt, BetterTStackConfigSchema as x, SearchSchema as xn, PACKAGE_MANAGER_VALUES as xt, BackendSchema as y, SHADCN_STYLE_VALUES as yn, ORM_VALUES as yt, EXAMPLES_VALUES as z, ValidationSchema as zn, PythonQualitySchema as zt };
3958
- //# sourceMappingURL=schemas-D7GE2nDP.d.mts.map
4322
+ 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 };
4323
+ //# sourceMappingURL=schemas-7gZRZ72r.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas-7gZRZ72r.d.mts","names":[],"sources":["../src/schemas.ts"],"sourcesContent":[],"mappings":"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;;;;;;;;;;;;;;;cAId,qBAAmB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0FnB,0BAAwB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuFxB,8BAA4B,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAW5B,kBAAgB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAWhB;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA"}