@better-fullstack/types 2.4.0 → 2.5.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.
Files changed (40) hide show
  1. package/dist/{defaults-DdEGPWbd.d.mts → defaults-RqRyHpap.d.mts} +2 -2
  2. package/dist/defaults-RqRyHpap.d.mts.map +1 -0
  3. package/dist/defaults.d.mts +3 -3
  4. package/dist/index.d.mts +6 -6
  5. package/dist/index.d.mts.map +1 -1
  6. package/dist/index.mjs +50 -4
  7. package/dist/index.mjs.map +1 -1
  8. package/dist/json-schema.d.mts +342 -20
  9. package/dist/json-schema.d.mts.map +1 -1
  10. package/dist/json-schema.mjs +1 -1
  11. package/dist/{schemas-CNrFm0ld.mjs → schemas-CtieNRfz.mjs} +55 -3
  12. package/dist/schemas-CtieNRfz.mjs.map +1 -0
  13. package/dist/{schemas-BMTIauzB.d.mts → schemas-GnlaSaAD.d.mts} +347 -22
  14. package/dist/schemas-GnlaSaAD.d.mts.map +1 -0
  15. package/dist/schemas.d.mts +2 -2
  16. package/dist/schemas.mjs +2 -2
  17. package/dist/{stack-graph-BqmxkJKS.mjs → stack-graph-CXTiPofQ.mjs} +97 -20
  18. package/dist/stack-graph-CXTiPofQ.mjs.map +1 -0
  19. package/dist/{stack-graph-DWpdF4s0.d.mts → stack-graph-D8YLovR0.d.mts} +3 -3
  20. package/dist/stack-graph-D8YLovR0.d.mts.map +1 -0
  21. package/dist/stack-graph.d.mts +3 -3
  22. package/dist/stack-graph.mjs +2 -2
  23. package/dist/{stack-translation-CIt0ziI4.mjs → stack-translation-B-zArJLM.mjs} +202 -23
  24. package/dist/stack-translation-B-zArJLM.mjs.map +1 -0
  25. package/dist/{stack-translation-DyfJJgeD.d.mts → stack-translation-BV7cLYdZ.d.mts} +16 -6
  26. package/dist/stack-translation-BV7cLYdZ.d.mts.map +1 -0
  27. package/dist/stack-translation.d.mts +4 -4
  28. package/dist/stack-translation.mjs +3 -3
  29. package/dist/{types-BUQyhJDc.d.mts → types-BdHthWR-.d.mts} +8 -3
  30. package/dist/types-BdHthWR-.d.mts.map +1 -0
  31. package/dist/types.d.mts +3 -3
  32. package/package.json +1 -1
  33. package/dist/defaults-DdEGPWbd.d.mts.map +0 -1
  34. package/dist/schemas-BMTIauzB.d.mts.map +0 -1
  35. package/dist/schemas-CNrFm0ld.mjs.map +0 -1
  36. package/dist/stack-graph-BqmxkJKS.mjs.map +0 -1
  37. package/dist/stack-graph-DWpdF4s0.d.mts.map +0 -1
  38. package/dist/stack-translation-CIt0ziI4.mjs.map +0 -1
  39. package/dist/stack-translation-DyfJJgeD.d.mts.map +0 -1
  40. package/dist/types-BUQyhJDc.d.mts.map +0 -1
@@ -20,7 +20,7 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
20
20
  java: "java";
21
21
  elixir: "elixir";
22
22
  dotnet: "dotnet";
23
- }>, z.ZodLiteral<"universal">]>;
23
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
24
24
  declare const StackPartRoleSchema: z.ZodEnum<{
25
25
  effect: "effect";
26
26
  ai: "ai";
@@ -172,7 +172,7 @@ declare const StackPartSchema: z.ZodObject<{
172
172
  java: "java";
173
173
  elixir: "elixir";
174
174
  dotnet: "dotnet";
175
- }>, z.ZodLiteral<"universal">]>;
175
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
176
176
  ownerPartId: z.ZodOptional<z.ZodString>;
177
177
  source: z.ZodEnum<{
178
178
  selected: "selected";
@@ -663,6 +663,37 @@ declare const RustFrontendSchema: z.ZodEnum<{
663
663
  dioxus: "dioxus";
664
664
  yew: "yew";
665
665
  }>;
666
+ declare const DotnetFrontendSchema: z.ZodEnum<{
667
+ none: "none";
668
+ "blazor-webassembly": "blazor-webassembly";
669
+ "blazor-web-app": "blazor-web-app";
670
+ }>;
671
+ declare const KotlinMobileSchema: z.ZodEnum<{
672
+ none: "none";
673
+ "jetpack-compose": "jetpack-compose";
674
+ "compose-multiplatform": "compose-multiplatform";
675
+ }>;
676
+ declare const KotlinMobileLibrariesSchema: z.ZodEnum<{
677
+ none: "none";
678
+ "navigation-compose": "navigation-compose";
679
+ voyager: "voyager";
680
+ koin: "koin";
681
+ "ktor-client": "ktor-client";
682
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
683
+ datastore: "datastore";
684
+ coil: "coil";
685
+ mockk: "mockk";
686
+ turbine: "turbine";
687
+ junit5: "junit5";
688
+ }>;
689
+ declare const SwiftMobileSchema: z.ZodEnum<{
690
+ none: "none";
691
+ swiftui: "swiftui";
692
+ }>;
693
+ declare const DartMobileSchema: z.ZodEnum<{
694
+ none: "none";
695
+ flutter: "flutter";
696
+ }>;
666
697
  declare const RustOrmSchema: z.ZodEnum<{
667
698
  none: "none";
668
699
  mongodb: "mongodb";
@@ -997,6 +1028,7 @@ declare const JavaLanguageSchema: z.ZodEnum<{
997
1028
  declare const JavaWebFrameworkSchema: z.ZodEnum<{
998
1029
  none: "none";
999
1030
  "spring-boot": "spring-boot";
1031
+ ktor: "ktor";
1000
1032
  quarkus: "quarkus";
1001
1033
  micronaut: "micronaut";
1002
1034
  }>;
@@ -1070,8 +1102,8 @@ declare const JavaLibrariesSchema: z.ZodEnum<{
1070
1102
  }>;
1071
1103
  declare const JavaTestingLibrariesSchema: z.ZodEnum<{
1072
1104
  none: "none";
1073
- testcontainers: "testcontainers";
1074
1105
  junit5: "junit5";
1106
+ testcontainers: "testcontainers";
1075
1107
  mockito: "mockito";
1076
1108
  assertj: "assertj";
1077
1109
  "rest-assured": "rest-assured";
@@ -2013,6 +2045,37 @@ declare const CreateInputSchema: z.ZodObject<{
2013
2045
  dioxus: "dioxus";
2014
2046
  yew: "yew";
2015
2047
  }>>;
2048
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
2049
+ none: "none";
2050
+ "blazor-webassembly": "blazor-webassembly";
2051
+ "blazor-web-app": "blazor-web-app";
2052
+ }>>;
2053
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
2054
+ none: "none";
2055
+ "jetpack-compose": "jetpack-compose";
2056
+ "compose-multiplatform": "compose-multiplatform";
2057
+ }>>;
2058
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2059
+ none: "none";
2060
+ "navigation-compose": "navigation-compose";
2061
+ voyager: "voyager";
2062
+ koin: "koin";
2063
+ "ktor-client": "ktor-client";
2064
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
2065
+ datastore: "datastore";
2066
+ coil: "coil";
2067
+ mockk: "mockk";
2068
+ turbine: "turbine";
2069
+ junit5: "junit5";
2070
+ }>>>;
2071
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
2072
+ none: "none";
2073
+ swiftui: "swiftui";
2074
+ }>>;
2075
+ dartMobile: z.ZodOptional<z.ZodEnum<{
2076
+ none: "none";
2077
+ flutter: "flutter";
2078
+ }>>;
2016
2079
  rustOrm: z.ZodOptional<z.ZodEnum<{
2017
2080
  none: "none";
2018
2081
  mongodb: "mongodb";
@@ -2347,6 +2410,7 @@ declare const CreateInputSchema: z.ZodObject<{
2347
2410
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
2348
2411
  none: "none";
2349
2412
  "spring-boot": "spring-boot";
2413
+ ktor: "ktor";
2350
2414
  quarkus: "quarkus";
2351
2415
  micronaut: "micronaut";
2352
2416
  }>>;
@@ -2420,8 +2484,8 @@ declare const CreateInputSchema: z.ZodObject<{
2420
2484
  }>>>;
2421
2485
  javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2422
2486
  none: "none";
2423
- testcontainers: "testcontainers";
2424
2487
  junit5: "junit5";
2488
+ testcontainers: "testcontainers";
2425
2489
  mockito: "mockito";
2426
2490
  assertj: "assertj";
2427
2491
  "rest-assured": "rest-assured";
@@ -3230,6 +3294,37 @@ declare const AddInputSchema: z.ZodObject<{
3230
3294
  dioxus: "dioxus";
3231
3295
  yew: "yew";
3232
3296
  }>>;
3297
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
3298
+ none: "none";
3299
+ "blazor-webassembly": "blazor-webassembly";
3300
+ "blazor-web-app": "blazor-web-app";
3301
+ }>>;
3302
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
3303
+ none: "none";
3304
+ "jetpack-compose": "jetpack-compose";
3305
+ "compose-multiplatform": "compose-multiplatform";
3306
+ }>>;
3307
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3308
+ none: "none";
3309
+ "navigation-compose": "navigation-compose";
3310
+ voyager: "voyager";
3311
+ koin: "koin";
3312
+ "ktor-client": "ktor-client";
3313
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
3314
+ datastore: "datastore";
3315
+ coil: "coil";
3316
+ mockk: "mockk";
3317
+ turbine: "turbine";
3318
+ junit5: "junit5";
3319
+ }>>>;
3320
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
3321
+ none: "none";
3322
+ swiftui: "swiftui";
3323
+ }>>;
3324
+ dartMobile: z.ZodOptional<z.ZodEnum<{
3325
+ none: "none";
3326
+ flutter: "flutter";
3327
+ }>>;
3233
3328
  rustOrm: z.ZodOptional<z.ZodEnum<{
3234
3329
  none: "none";
3235
3330
  mongodb: "mongodb";
@@ -3564,6 +3659,7 @@ declare const AddInputSchema: z.ZodObject<{
3564
3659
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
3565
3660
  none: "none";
3566
3661
  "spring-boot": "spring-boot";
3662
+ ktor: "ktor";
3567
3663
  quarkus: "quarkus";
3568
3664
  micronaut: "micronaut";
3569
3665
  }>>;
@@ -3637,8 +3733,8 @@ declare const AddInputSchema: z.ZodObject<{
3637
3733
  }>>>;
3638
3734
  javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3639
3735
  none: "none";
3640
- testcontainers: "testcontainers";
3641
3736
  junit5: "junit5";
3737
+ testcontainers: "testcontainers";
3642
3738
  mockito: "mockito";
3643
3739
  assertj: "assertj";
3644
3740
  "rest-assured": "rest-assured";
@@ -4472,6 +4568,37 @@ declare const CLIInputSchema: z.ZodObject<{
4472
4568
  dioxus: "dioxus";
4473
4569
  yew: "yew";
4474
4570
  }>>;
4571
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
4572
+ none: "none";
4573
+ "blazor-webassembly": "blazor-webassembly";
4574
+ "blazor-web-app": "blazor-web-app";
4575
+ }>>;
4576
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
4577
+ none: "none";
4578
+ "jetpack-compose": "jetpack-compose";
4579
+ "compose-multiplatform": "compose-multiplatform";
4580
+ }>>;
4581
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4582
+ none: "none";
4583
+ "navigation-compose": "navigation-compose";
4584
+ voyager: "voyager";
4585
+ koin: "koin";
4586
+ "ktor-client": "ktor-client";
4587
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
4588
+ datastore: "datastore";
4589
+ coil: "coil";
4590
+ mockk: "mockk";
4591
+ turbine: "turbine";
4592
+ junit5: "junit5";
4593
+ }>>>;
4594
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
4595
+ none: "none";
4596
+ swiftui: "swiftui";
4597
+ }>>;
4598
+ dartMobile: z.ZodOptional<z.ZodEnum<{
4599
+ none: "none";
4600
+ flutter: "flutter";
4601
+ }>>;
4475
4602
  rustOrm: z.ZodOptional<z.ZodEnum<{
4476
4603
  none: "none";
4477
4604
  mongodb: "mongodb";
@@ -4806,6 +4933,7 @@ declare const CLIInputSchema: z.ZodObject<{
4806
4933
  javaWebFramework: z.ZodOptional<z.ZodEnum<{
4807
4934
  none: "none";
4808
4935
  "spring-boot": "spring-boot";
4936
+ ktor: "ktor";
4809
4937
  quarkus: "quarkus";
4810
4938
  micronaut: "micronaut";
4811
4939
  }>>;
@@ -4879,8 +5007,8 @@ declare const CLIInputSchema: z.ZodObject<{
4879
5007
  }>>>;
4880
5008
  javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
4881
5009
  none: "none";
4882
- testcontainers: "testcontainers";
4883
5010
  junit5: "junit5";
5011
+ testcontainers: "testcontainers";
4884
5012
  mockito: "mockito";
4885
5013
  assertj: "assertj";
4886
5014
  "rest-assured": "rest-assured";
@@ -5693,6 +5821,37 @@ declare const ProjectConfigSchema: z.ZodObject<{
5693
5821
  dioxus: "dioxus";
5694
5822
  yew: "yew";
5695
5823
  }>;
5824
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
5825
+ none: "none";
5826
+ "blazor-webassembly": "blazor-webassembly";
5827
+ "blazor-web-app": "blazor-web-app";
5828
+ }>>;
5829
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
5830
+ none: "none";
5831
+ "jetpack-compose": "jetpack-compose";
5832
+ "compose-multiplatform": "compose-multiplatform";
5833
+ }>>;
5834
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
5835
+ none: "none";
5836
+ "navigation-compose": "navigation-compose";
5837
+ voyager: "voyager";
5838
+ koin: "koin";
5839
+ "ktor-client": "ktor-client";
5840
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
5841
+ datastore: "datastore";
5842
+ coil: "coil";
5843
+ mockk: "mockk";
5844
+ turbine: "turbine";
5845
+ junit5: "junit5";
5846
+ }>>>;
5847
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
5848
+ none: "none";
5849
+ swiftui: "swiftui";
5850
+ }>>;
5851
+ dartMobile: z.ZodOptional<z.ZodEnum<{
5852
+ none: "none";
5853
+ flutter: "flutter";
5854
+ }>>;
5696
5855
  rustOrm: z.ZodEnum<{
5697
5856
  none: "none";
5698
5857
  mongodb: "mongodb";
@@ -6027,6 +6186,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
6027
6186
  javaWebFramework: z.ZodEnum<{
6028
6187
  none: "none";
6029
6188
  "spring-boot": "spring-boot";
6189
+ ktor: "ktor";
6030
6190
  quarkus: "quarkus";
6031
6191
  micronaut: "micronaut";
6032
6192
  }>;
@@ -6100,8 +6260,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
6100
6260
  }>>;
6101
6261
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
6102
6262
  none: "none";
6103
- testcontainers: "testcontainers";
6104
6263
  junit5: "junit5";
6264
+ testcontainers: "testcontainers";
6105
6265
  mockito: "mockito";
6106
6266
  assertj: "assertj";
6107
6267
  "rest-assured": "rest-assured";
@@ -6405,7 +6565,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
6405
6565
  java: "java";
6406
6566
  elixir: "elixir";
6407
6567
  dotnet: "dotnet";
6408
- }>, z.ZodLiteral<"universal">]>;
6568
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
6409
6569
  ownerPartId: z.ZodOptional<z.ZodString>;
6410
6570
  source: z.ZodEnum<{
6411
6571
  selected: "selected";
@@ -7002,6 +7162,37 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7002
7162
  dioxus: "dioxus";
7003
7163
  yew: "yew";
7004
7164
  }>;
7165
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
7166
+ none: "none";
7167
+ "blazor-webassembly": "blazor-webassembly";
7168
+ "blazor-web-app": "blazor-web-app";
7169
+ }>>;
7170
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
7171
+ none: "none";
7172
+ "jetpack-compose": "jetpack-compose";
7173
+ "compose-multiplatform": "compose-multiplatform";
7174
+ }>>;
7175
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
7176
+ none: "none";
7177
+ "navigation-compose": "navigation-compose";
7178
+ voyager: "voyager";
7179
+ koin: "koin";
7180
+ "ktor-client": "ktor-client";
7181
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
7182
+ datastore: "datastore";
7183
+ coil: "coil";
7184
+ mockk: "mockk";
7185
+ turbine: "turbine";
7186
+ junit5: "junit5";
7187
+ }>>>;
7188
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
7189
+ none: "none";
7190
+ swiftui: "swiftui";
7191
+ }>>;
7192
+ dartMobile: z.ZodOptional<z.ZodEnum<{
7193
+ none: "none";
7194
+ flutter: "flutter";
7195
+ }>>;
7005
7196
  rustOrm: z.ZodEnum<{
7006
7197
  none: "none";
7007
7198
  mongodb: "mongodb";
@@ -7336,6 +7527,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7336
7527
  javaWebFramework: z.ZodEnum<{
7337
7528
  none: "none";
7338
7529
  "spring-boot": "spring-boot";
7530
+ ktor: "ktor";
7339
7531
  quarkus: "quarkus";
7340
7532
  micronaut: "micronaut";
7341
7533
  }>;
@@ -7409,8 +7601,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7409
7601
  }>>;
7410
7602
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
7411
7603
  none: "none";
7412
- testcontainers: "testcontainers";
7413
7604
  junit5: "junit5";
7605
+ testcontainers: "testcontainers";
7414
7606
  mockito: "mockito";
7415
7607
  assertj: "assertj";
7416
7608
  "rest-assured": "rest-assured";
@@ -7714,7 +7906,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7714
7906
  java: "java";
7715
7907
  elixir: "elixir";
7716
7908
  dotnet: "dotnet";
7717
- }>, z.ZodLiteral<"universal">]>;
7909
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
7718
7910
  ownerPartId: z.ZodOptional<z.ZodString>;
7719
7911
  source: z.ZodEnum<{
7720
7912
  selected: "selected";
@@ -8311,6 +8503,37 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8311
8503
  dioxus: "dioxus";
8312
8504
  yew: "yew";
8313
8505
  }>;
8506
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
8507
+ none: "none";
8508
+ "blazor-webassembly": "blazor-webassembly";
8509
+ "blazor-web-app": "blazor-web-app";
8510
+ }>>;
8511
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
8512
+ none: "none";
8513
+ "jetpack-compose": "jetpack-compose";
8514
+ "compose-multiplatform": "compose-multiplatform";
8515
+ }>>;
8516
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
8517
+ none: "none";
8518
+ "navigation-compose": "navigation-compose";
8519
+ voyager: "voyager";
8520
+ koin: "koin";
8521
+ "ktor-client": "ktor-client";
8522
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
8523
+ datastore: "datastore";
8524
+ coil: "coil";
8525
+ mockk: "mockk";
8526
+ turbine: "turbine";
8527
+ junit5: "junit5";
8528
+ }>>>;
8529
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
8530
+ none: "none";
8531
+ swiftui: "swiftui";
8532
+ }>>;
8533
+ dartMobile: z.ZodOptional<z.ZodEnum<{
8534
+ none: "none";
8535
+ flutter: "flutter";
8536
+ }>>;
8314
8537
  rustOrm: z.ZodEnum<{
8315
8538
  none: "none";
8316
8539
  mongodb: "mongodb";
@@ -8645,6 +8868,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8645
8868
  javaWebFramework: z.ZodEnum<{
8646
8869
  none: "none";
8647
8870
  "spring-boot": "spring-boot";
8871
+ ktor: "ktor";
8648
8872
  quarkus: "quarkus";
8649
8873
  micronaut: "micronaut";
8650
8874
  }>;
@@ -8718,8 +8942,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8718
8942
  }>>;
8719
8943
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
8720
8944
  none: "none";
8721
- testcontainers: "testcontainers";
8722
8945
  junit5: "junit5";
8946
+ testcontainers: "testcontainers";
8723
8947
  mockito: "mockito";
8724
8948
  assertj: "assertj";
8725
8949
  "rest-assured": "rest-assured";
@@ -9023,7 +9247,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
9023
9247
  java: "java";
9024
9248
  elixir: "elixir";
9025
9249
  dotnet: "dotnet";
9026
- }>, z.ZodLiteral<"universal">]>;
9250
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
9027
9251
  ownerPartId: z.ZodOptional<z.ZodString>;
9028
9252
  source: z.ZodEnum<{
9029
9253
  selected: "selected";
@@ -9621,6 +9845,37 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9621
9845
  dioxus: "dioxus";
9622
9846
  yew: "yew";
9623
9847
  }>;
9848
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
9849
+ none: "none";
9850
+ "blazor-webassembly": "blazor-webassembly";
9851
+ "blazor-web-app": "blazor-web-app";
9852
+ }>>;
9853
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
9854
+ none: "none";
9855
+ "jetpack-compose": "jetpack-compose";
9856
+ "compose-multiplatform": "compose-multiplatform";
9857
+ }>>;
9858
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
9859
+ none: "none";
9860
+ "navigation-compose": "navigation-compose";
9861
+ voyager: "voyager";
9862
+ koin: "koin";
9863
+ "ktor-client": "ktor-client";
9864
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
9865
+ datastore: "datastore";
9866
+ coil: "coil";
9867
+ mockk: "mockk";
9868
+ turbine: "turbine";
9869
+ junit5: "junit5";
9870
+ }>>>;
9871
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
9872
+ none: "none";
9873
+ swiftui: "swiftui";
9874
+ }>>;
9875
+ dartMobile: z.ZodOptional<z.ZodEnum<{
9876
+ none: "none";
9877
+ flutter: "flutter";
9878
+ }>>;
9624
9879
  rustOrm: z.ZodEnum<{
9625
9880
  none: "none";
9626
9881
  mongodb: "mongodb";
@@ -9955,6 +10210,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9955
10210
  javaWebFramework: z.ZodEnum<{
9956
10211
  none: "none";
9957
10212
  "spring-boot": "spring-boot";
10213
+ ktor: "ktor";
9958
10214
  quarkus: "quarkus";
9959
10215
  micronaut: "micronaut";
9960
10216
  }>;
@@ -10028,8 +10284,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10028
10284
  }>>;
10029
10285
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
10030
10286
  none: "none";
10031
- testcontainers: "testcontainers";
10032
10287
  junit5: "junit5";
10288
+ testcontainers: "testcontainers";
10033
10289
  mockito: "mockito";
10034
10290
  assertj: "assertj";
10035
10291
  "rest-assured": "rest-assured";
@@ -10333,7 +10589,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10333
10589
  java: "java";
10334
10590
  elixir: "elixir";
10335
10591
  dotnet: "dotnet";
10336
- }>, z.ZodLiteral<"universal">]>;
10592
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
10337
10593
  ownerPartId: z.ZodOptional<z.ZodString>;
10338
10594
  source: z.ZodEnum<{
10339
10595
  selected: "selected";
@@ -10931,6 +11187,37 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10931
11187
  dioxus: "dioxus";
10932
11188
  yew: "yew";
10933
11189
  }>;
11190
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
11191
+ none: "none";
11192
+ "blazor-webassembly": "blazor-webassembly";
11193
+ "blazor-web-app": "blazor-web-app";
11194
+ }>>;
11195
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
11196
+ none: "none";
11197
+ "jetpack-compose": "jetpack-compose";
11198
+ "compose-multiplatform": "compose-multiplatform";
11199
+ }>>;
11200
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
11201
+ none: "none";
11202
+ "navigation-compose": "navigation-compose";
11203
+ voyager: "voyager";
11204
+ koin: "koin";
11205
+ "ktor-client": "ktor-client";
11206
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
11207
+ datastore: "datastore";
11208
+ coil: "coil";
11209
+ mockk: "mockk";
11210
+ turbine: "turbine";
11211
+ junit5: "junit5";
11212
+ }>>>;
11213
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
11214
+ none: "none";
11215
+ swiftui: "swiftui";
11216
+ }>>;
11217
+ dartMobile: z.ZodOptional<z.ZodEnum<{
11218
+ none: "none";
11219
+ flutter: "flutter";
11220
+ }>>;
10934
11221
  rustOrm: z.ZodEnum<{
10935
11222
  none: "none";
10936
11223
  mongodb: "mongodb";
@@ -11265,6 +11552,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11265
11552
  javaWebFramework: z.ZodEnum<{
11266
11553
  none: "none";
11267
11554
  "spring-boot": "spring-boot";
11555
+ ktor: "ktor";
11268
11556
  quarkus: "quarkus";
11269
11557
  micronaut: "micronaut";
11270
11558
  }>;
@@ -11338,8 +11626,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11338
11626
  }>>;
11339
11627
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
11340
11628
  none: "none";
11341
- testcontainers: "testcontainers";
11342
11629
  junit5: "junit5";
11630
+ testcontainers: "testcontainers";
11343
11631
  mockito: "mockito";
11344
11632
  assertj: "assertj";
11345
11633
  "rest-assured": "rest-assured";
@@ -11643,7 +11931,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11643
11931
  java: "java";
11644
11932
  elixir: "elixir";
11645
11933
  dotnet: "dotnet";
11646
- }>, z.ZodLiteral<"universal">]>;
11934
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
11647
11935
  ownerPartId: z.ZodOptional<z.ZodString>;
11648
11936
  source: z.ZodEnum<{
11649
11937
  selected: "selected";
@@ -12243,6 +12531,37 @@ declare const InitResultSchema: z.ZodObject<{
12243
12531
  dioxus: "dioxus";
12244
12532
  yew: "yew";
12245
12533
  }>;
12534
+ dotnetFrontend: z.ZodOptional<z.ZodEnum<{
12535
+ none: "none";
12536
+ "blazor-webassembly": "blazor-webassembly";
12537
+ "blazor-web-app": "blazor-web-app";
12538
+ }>>;
12539
+ kotlinMobile: z.ZodOptional<z.ZodEnum<{
12540
+ none: "none";
12541
+ "jetpack-compose": "jetpack-compose";
12542
+ "compose-multiplatform": "compose-multiplatform";
12543
+ }>>;
12544
+ kotlinMobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
12545
+ none: "none";
12546
+ "navigation-compose": "navigation-compose";
12547
+ voyager: "voyager";
12548
+ koin: "koin";
12549
+ "ktor-client": "ktor-client";
12550
+ "kotlinx-serialization-json": "kotlinx-serialization-json";
12551
+ datastore: "datastore";
12552
+ coil: "coil";
12553
+ mockk: "mockk";
12554
+ turbine: "turbine";
12555
+ junit5: "junit5";
12556
+ }>>>;
12557
+ swiftMobile: z.ZodOptional<z.ZodEnum<{
12558
+ none: "none";
12559
+ swiftui: "swiftui";
12560
+ }>>;
12561
+ dartMobile: z.ZodOptional<z.ZodEnum<{
12562
+ none: "none";
12563
+ flutter: "flutter";
12564
+ }>>;
12246
12565
  rustOrm: z.ZodEnum<{
12247
12566
  none: "none";
12248
12567
  mongodb: "mongodb";
@@ -12577,6 +12896,7 @@ declare const InitResultSchema: z.ZodObject<{
12577
12896
  javaWebFramework: z.ZodEnum<{
12578
12897
  none: "none";
12579
12898
  "spring-boot": "spring-boot";
12899
+ ktor: "ktor";
12580
12900
  quarkus: "quarkus";
12581
12901
  micronaut: "micronaut";
12582
12902
  }>;
@@ -12650,8 +12970,8 @@ declare const InitResultSchema: z.ZodObject<{
12650
12970
  }>>;
12651
12971
  javaTestingLibraries: z.ZodArray<z.ZodEnum<{
12652
12972
  none: "none";
12653
- testcontainers: "testcontainers";
12654
12973
  junit5: "junit5";
12974
+ testcontainers: "testcontainers";
12655
12975
  mockito: "mockito";
12656
12976
  assertj: "assertj";
12657
12977
  "rest-assured": "rest-assured";
@@ -12955,7 +13275,7 @@ declare const InitResultSchema: z.ZodObject<{
12955
13275
  java: "java";
12956
13276
  elixir: "elixir";
12957
13277
  dotnet: "dotnet";
12958
- }>, z.ZodLiteral<"universal">]>;
13278
+ }>, z.ZodLiteral<"kotlin">, z.ZodLiteral<"swift">, z.ZodLiteral<"dart">, z.ZodLiteral<"universal">]>;
12959
13279
  ownerPartId: z.ZodOptional<z.ZodString>;
12960
13280
  source: z.ZodEnum<{
12961
13281
  selected: "selected";
@@ -13036,6 +13356,11 @@ declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary" | "supab
13036
13356
  declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet")[];
13037
13357
  declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket" | "poem" | "loco" | "warp" | "salvo")[];
13038
13358
  declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus" | "yew")[];
13359
+ declare const DOTNET_FRONTEND_VALUES: ("none" | "blazor-webassembly" | "blazor-web-app")[];
13360
+ declare const KOTLIN_MOBILE_VALUES: ("none" | "jetpack-compose" | "compose-multiplatform")[];
13361
+ declare const KOTLIN_MOBILE_LIBRARIES_VALUES: ("none" | "navigation-compose" | "voyager" | "koin" | "ktor-client" | "kotlinx-serialization-json" | "datastore" | "coil" | "mockk" | "turbine" | "junit5")[];
13362
+ declare const SWIFT_MOBILE_VALUES: ("none" | "swiftui")[];
13363
+ declare const DART_MOBILE_VALUES: ("none" | "flutter")[];
13039
13364
  declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
13040
13365
  declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
13041
13366
  declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
@@ -13088,14 +13413,14 @@ declare const GO_TEMPLATING_VALUES: ("none" | "templ")[];
13088
13413
  declare const GO_PROTO_TOOLING_VALUES: ("none" | "buf")[];
13089
13414
  declare const GO_DI_VALUES: ("none" | "fx")[];
13090
13415
  declare const JAVA_LANGUAGE_VALUES: ("java" | "kotlin")[];
13091
- declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus" | "micronaut")[];
13416
+ declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "ktor" | "quarkus" | "micronaut")[];
13092
13417
  declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
13093
13418
  declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")[];
13094
13419
  declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
13095
13420
  declare const JAVA_API_VALUES: ("none" | "spring-graphql" | "openapi-generator" | "grpc")[];
13096
13421
  declare const JAVA_LOGGING_VALUES: ("none" | "logback" | "log4j2")[];
13097
13422
  declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway" | "liquibase" | "springdoc-openapi" | "lombok" | "mapstruct" | "caffeine" | "resilience4j" | "spring-webflux" | "spring-batch" | "spring-kafka" | "spring-mail" | "spring-devtools" | "micrometer-prometheus" | "thymeleaf" | "spring-amqp" | "opentelemetry-java" | "spring-data-redis" | "spring-data-mongodb" | "spring-data-elasticsearch" | "spring-data-neo4j" | "spring-data-cassandra" | "spring-data-couchbase" | "spring-data-jdbc" | "spring-data-rest" | "spring-quartz" | "spring-pulsar" | "spring-integration" | "spring-websocket" | "spring-rsocket" | "spring-hateoas" | "spring-session-redis" | "spring-session-jdbc" | "spring-ldap" | "spring-oauth2-client" | "spring-saml2" | "spring-restclient")[];
13098
- declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "testcontainers" | "junit5" | "mockito" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
13423
+ declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "testcontainers" | "mockito" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
13099
13424
  declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
13100
13425
  declare const DOTNET_ORM_VALUES: ("none" | "ef-core" | "dapper" | "linq2db")[];
13101
13426
  declare const DOTNET_AUTH_VALUES: ("none" | "aspnet-identity" | "duende-identityserver" | "auth0-aspnet")[];
@@ -13138,5 +13463,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
13138
13463
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
13139
13464
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
13140
13465
  //#endregion
13141
- export { DotnetCachingSchema as $, ValidationSchema as $a, RUST_ORM_VALUES as $i, I18N_VALUES as $n, PYTHON_CLOUD_SDK_VALUES as $r, ElixirOrmSchema as $t, CSS_FRAMEWORK_VALUES as A, SearchSchema as Aa, PythonObservabilitySchema as Ai, GO_REALTIME_VALUES as An, MOBILE_PUSH_VALUES as Ar, ELIXIR_TESTING_VALUES as At, DOTNET_JOB_QUEUE_VALUES as B, StackPartRoleSchema as Ba, RATE_LIMIT_VALUES as Bi, GoDISchema as Bn, MobileTestingSchema as Br, ElixirAuthSchema as Bt, BetterTStackConfigFileSchema as C, SHADCN_BASE_VALUES as Ca, PythonCliSchema as Ci, GO_LOGGING_VALUES as Cn, JobQueueSchema as Cr, ELIXIR_JOBS_VALUES as Ct, CMSSchema as D, SHADCN_RADIUS_VALUES as Da, PythonHttpClientSchema as Di, GO_ORM_VALUES as Dn, MOBILE_LIBRARIES_VALUES as Dr, ELIXIR_ORM_VALUES as Dt, CLIInputSchema as E, SHADCN_ICON_LIBRARY_VALUES as Ea, PythonGraphqlSchema as Ei, GO_OBSERVABILITY_VALUES as En, MOBILE_DEEP_LINKING_VALUES as Er, ELIXIR_OBSERVABILITY_VALUES as Et, DIRECTORY_CONFLICT_VALUES as F, ShadcnFontSchema as Fa, PythonServerSchema as Fi, GoApiSchema as Fn, MobileLibrariesSchema as Fr, EcommerceSchema as Ft, DOTNET_TESTING_VALUES as G, TESTING_VALUES as Ga, RUST_CACHING_VALUES as Gi, GoOrmSchema as Gn, ObservabilitySchema as Gr, ElixirEmailSchema as Gt, DOTNET_OBSERVABILITY_VALUES as H, StackPartSourceSchema as Ha, RUNTIME_VALUES as Hi, GoMessageQueueSchema as Hn, OBSERVABILITY_VALUES as Hr, ElixirClusteringSchema as Ht, DOTNET_API_VALUES as I, ShadcnIconLibrarySchema as Ia, PythonTaskQueueSchema as Ii, GoAuthSchema as In, MobileNavigationSchema as Ir, EcosystemSchema as It, DatabaseSchema as J, UILibrarySchema as Ja, RUST_FRONTEND_VALUES as Ji, GoRealtimeSchema as Jn, PYTHON_AI_VALUES as Jr, ElixirI18nSchema as Jt, DOTNET_VALIDATION_VALUES as K, TemplateSchema as Ka, RUST_CLI_VALUES as Ki, GoProtoToolingSchema as Kn, PACKAGE_MANAGER_VALUES as Kr, ElixirHttpSchema as Kt, DOTNET_AUTH_VALUES as L, ShadcnRadiusSchema as La, PythonTestingSchema as Li, GoCachingSchema as Ln, MobileOTASchema as Lr, EffectSchema as Lt, CreateInputSchema as M, ShadcnBaseColorSchema as Ma, PythonPackageManagerSchema as Mi, GO_TESTING_VALUES as Mn, MOBILE_TESTING_VALUES as Mr, ELIXIR_WEB_FRAMEWORK_VALUES as Mt, DATABASE_SETUP_VALUES as N, ShadcnBaseSchema as Na, PythonQualitySchema as Ni, GO_VALIDATION_VALUES as Nn, MOBILE_UI_VALUES as Nr, EMAIL_VALUES as Nt, CMS_VALUES as O, SHADCN_STYLE_VALUES as Oa, PythonMediaSchema as Oi, GO_PROTO_TOOLING_VALUES as On, MOBILE_NAVIGATION_VALUES as Or, ELIXIR_QUALITY_VALUES as Ot, DATABASE_VALUES as P, ShadcnColorThemeSchema as Pa, PythonRealtimeSchema as Pi, GO_WEB_FRAMEWORK_VALUES as Pn, MobileDeepLinkingSchema as Pr, EXAMPLES_VALUES as Pt, DotnetAuthSchema as Q, VERSION_CHANNEL_VALUES as Qa, RUST_OBSERVABILITY_VALUES as Qi, GoWebFrameworkSchema as Qn, PYTHON_CLI_VALUES as Qr, ElixirObservabilitySchema as Qt, DOTNET_CACHING_VALUES as R, ShadcnStyleSchema as Ra, PythonValidationSchema as Ri, GoCliSchema as Rn, MobilePushSchema as Rr, ElixirApiSchema as Rt, BetterFullstackConfigSchema as S, SHADCN_BASE_COLOR_VALUES as Sa, PythonCachingSchema as Si, GO_DI_VALUES as Sn, JavaWebFrameworkSchema as Sr, ELIXIR_I18N_VALUES as St, CACHING_VALUES as T, SHADCN_FONT_VALUES as Ta, PythonDataSchema as Ti, GO_MIGRATIONS_VALUES as Tn, LoggingSchema as Tr, ELIXIR_LIBRARIES_VALUES as Tt, DOTNET_ORM_VALUES as U, StateManagementSchema as Ua, RUST_API_VALUES as Ui, GoMigrationsSchema as Un, ORMSchema as Ur, ElixirDeploySchema as Ut, DOTNET_LIBRARIES_VALUES as V, StackPartSchema as Va, REALTIME_VALUES as Vi, GoLoggingSchema as Vn, MobileUISchema as Vr, ElixirCachingSchema as Vt, DOTNET_REALTIME_VALUES as W, TEMPLATE_VALUES as Wa, RUST_AUTH_VALUES as Wi, GoObservabilitySchema as Wn, ORM_VALUES as Wr, ElixirDocumentationSchema as Wt, DirectoryConflictSchema as X, VALIDATION_VALUES as Xa, RUST_LOGGING_VALUES as Xi, GoTestingSchema as Xn, PYTHON_AUTH_VALUES as Xr, ElixirJsonSchema as Xt, DatabaseSetupSchema as Y, UI_LIBRARY_VALUES as Ya, RUST_LIBRARIES_VALUES as Yi, GoTemplatingSchema as Yn, PYTHON_API_VALUES as Yr, ElixirJobsSchema as Yt, DotnetApiSchema as Z, VECTOR_DB_VALUES as Za, RUST_MESSAGE_QUEUE_VALUES as Zi, GoValidationSchema as Zn, PYTHON_CACHING_VALUES as Zr, ElixirLibrariesSchema as Zt, AstroIntegrationSchema as _, RustRealtimeSchema as _a, ProjectConfigSchema as _i, GO_API_VALUES as _n, JavaLanguageSchema as _r, ELIXIR_DEPLOY_VALUES as _t, ANALYTICS_VALUES as a, RuntimeSchema as aa, PYTHON_OBSERVABILITY_VALUES as ai, EmailSchema as an, WorkspaceShapeSchema as ao, JAVA_AUTH_VALUES as ar, DotnetRealtimeSchema as at, BackendSchema as b, SEARCH_VALUES as ba, PythonApiSchema as bi, GO_CLI_VALUES as bn, JavaOrmSchema as br, ELIXIR_HTTP_SERVER_VALUES as bt, API_VALUES as c, RustCachingSchema as ca, PYTHON_QUALITY_VALUES as ci, FILE_STORAGE_VALUES as cn, JAVA_LIBRARIES_VALUES as cr, DotnetWebFrameworkSchema as ct, AUTH_VALUES as d, RustFrontendSchema as da, PYTHON_TASK_QUEUE_VALUES as di, FRONTEND_VALUES as dn, JAVA_TESTING_LIBRARIES_VALUES as dr, EFFECT_VALUES as dt, RUST_REALTIME_VALUES as ea, PYTHON_DATA_VALUES as ei, ElixirQualitySchema as en, VectorDbSchema as eo, I18nSchema as er, DotnetDeploySchema as et, AddInputSchema as f, RustLibrariesSchema as fa, PYTHON_TESTING_VALUES as fi, FeatureFlagsSchema as fn, JAVA_WEB_FRAMEWORK_VALUES as fr, ELIXIR_API_VALUES as ft, AnimationSchema as g, RustOrmSchema as ga, PaymentsSchema as gi, FrontendSchema as gn, JavaBuildToolSchema as gr, ELIXIR_CLUSTERING_VALUES as gt, AnalyticsSchema as h, RustObservabilitySchema as ha, PackageManagerSchema as hi, FormsSchema as hn, JavaAuthSchema as hr, ELIXIR_CACHING_VALUES as ht, AI_VALUES as i, RealtimeSchema as ia, PYTHON_MESSAGE_QUEUE_VALUES as ii, ElixirWebFrameworkSchema as in, WebDeploySchema as io, JAVA_API_VALUES as ir, DotnetOrmSchema as it, CachingSchema as j, ServerDeploySchema as ja, PythonOrmSchema as ji, GO_TEMPLATING_VALUES as jn, MOBILE_STORAGE_VALUES as jr, ELIXIR_VALIDATION_VALUES as jt, CSSFrameworkSchema as k, STATE_MANAGEMENT_VALUES as ka, PythonMessageQueueSchema as ki, GO_QUALITY_VALUES as kn, MOBILE_OTA_VALUES as kr, ELIXIR_REALTIME_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RustCliSchema as la, PYTHON_REALTIME_VALUES as li, FILE_UPLOAD_VALUES as ln, JAVA_LOGGING_VALUES as lr, ECOMMERCE_VALUES as lt, AiDocsSchema as m, RustMessageQueueSchema as ma, PYTHON_WEB_FRAMEWORK_VALUES as mi, FileUploadSchema as mn, JavaApiSchema as mr, ELIXIR_AUTH_VALUES as mt, AISchema as n, RUST_WEB_FRAMEWORK_VALUES as na, PYTHON_HTTP_CLIENT_VALUES as ni, ElixirTestingSchema as nn, WEB_DEPLOY_VALUES as no, InitResultSchema as nr, DotnetLibrariesSchema as nt, ANIMATION_VALUES as o, RustApiSchema as oa, PYTHON_ORM_VALUES as oi, ExamplesSchema as on, JAVA_BUILD_TOOL_VALUES as or, DotnetTestingSchema as ot, AddonsSchema as p, RustLoggingSchema as pa, PYTHON_VALIDATION_VALUES as pi, FileStorageSchema as pn, JOB_QUEUE_VALUES as pr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as pt, DOTNET_WEB_FRAMEWORK_VALUES as q, TestingSchema as qa, RUST_ERROR_HANDLING_VALUES as qi, GoQualitySchema as qn, PAYMENTS_VALUES as qr, ElixirHttpServerSchema as qt, AI_DOCS_VALUES as r, RateLimitSchema as ra, PYTHON_MEDIA_VALUES as ri, ElixirValidationSchema as rn, WORKSPACE_SHAPE_VALUES as ro, IntegrationsSchema as rr, DotnetObservabilitySchema as rt, APISchema as s, RustAuthSchema as sa, PYTHON_PACKAGE_MANAGER_VALUES as si, FEATURE_FLAGS_VALUES as sn, JAVA_LANGUAGE_VALUES as sr, DotnetValidationSchema as st, ADDONS_VALUES as t, RUST_TEMPLATING_VALUES as ta, PYTHON_GRAPHQL_VALUES as ti, ElixirRealtimeSchema as tn, VersionChannelSchema as to, INTEGRATIONS_VALUES as tr, DotnetJobQueueSchema as tt, ASTRO_INTEGRATION_VALUES as u, RustErrorHandlingSchema as ua, PYTHON_SERVER_VALUES as ui, FORMS_VALUES as un, JAVA_ORM_VALUES as ur, ECOSYSTEM_VALUES as ut, AuthSchema as v, RustTemplatingSchema as va, ProjectNameSchema as vi, GO_AUTH_VALUES as vn, JavaLibrariesSchema as vr, ELIXIR_DOCUMENTATION_VALUES as vt, BetterTStackConfigSchema as w, SHADCN_COLOR_THEME_VALUES as wa, PythonCloudSdkSchema as wi, GO_MESSAGE_QUEUE_VALUES as wn, LOGGING_VALUES as wr, ELIXIR_JSON_VALUES as wt, BetterFullstackConfigFileSchema as x, SERVER_DEPLOY_VALUES as xa, PythonAuthSchema as xi, GO_CONFIG_VALUES as xn, JavaTestingLibrariesSchema as xr, ELIXIR_HTTP_VALUES as xt, BACKEND_VALUES as y, RustWebFrameworkSchema as ya, PythonAiSchema as yi, GO_CACHING_VALUES as yn, JavaLoggingSchema as yr, ELIXIR_EMAIL_VALUES as yt, DOTNET_DEPLOY_VALUES as z, StackPartEcosystemSchema as za, PythonWebFrameworkSchema as zi, GoConfigSchema as zn, MobileStorageSchema as zr, ElixirApplicationFrameworkSchema as zt };
13142
- //# sourceMappingURL=schemas-BMTIauzB.d.mts.map
13466
+ export { DirectoryConflictSchema as $, SwiftMobileSchema as $a, RUST_CACHING_VALUES as $i, GoTemplatingSchema as $n, ObservabilitySchema as $r, ElixirJobsSchema as $t, CSS_FRAMEWORK_VALUES as A, SHADCN_BASE_COLOR_VALUES as Aa, PythonCachingSchema as Ai, GO_OBSERVABILITY_VALUES as An, KotlinMobileLibrariesSchema as Ar, ELIXIR_OBSERVABILITY_VALUES as At, DOTNET_DEPLOY_VALUES as B, ServerDeploySchema as Ba, PythonPackageManagerSchema as Bi, GoAuthSchema as Bn, MOBILE_TESTING_VALUES as Br, EcosystemSchema as Bt, BetterTStackConfigFileSchema as C, RustObservabilitySchema as Ca, PackageManagerSchema as Ci, GO_CACHING_VALUES as Cn, JavaLoggingSchema as Cr, ELIXIR_EMAIL_VALUES as Ct, CMSSchema as D, RustWebFrameworkSchema as Da, PythonAiSchema as Di, GO_LOGGING_VALUES as Dn, JobQueueSchema as Dr, ELIXIR_JOBS_VALUES as Dt, CLIInputSchema as E, RustTemplatingSchema as Ea, ProjectNameSchema as Ei, GO_DI_VALUES as En, JavaWebFrameworkSchema as Er, ELIXIR_I18N_VALUES as Et, DATABASE_VALUES as F, SHADCN_RADIUS_VALUES as Fa, PythonHttpClientSchema as Fi, GO_TEMPLATING_VALUES as Fn, MOBILE_LIBRARIES_VALUES as Fr, ELIXIR_VALIDATION_VALUES as Ft, DOTNET_ORM_VALUES as G, ShadcnIconLibrarySchema as Ga, PythonTestingSchema as Gi, GoLoggingSchema as Gn, MobileOTASchema as Gr, ElixirCachingSchema as Gt, DOTNET_JOB_QUEUE_VALUES as H, ShadcnBaseSchema as Ha, PythonRealtimeSchema as Hi, GoCliSchema as Hn, MobileDeepLinkingSchema as Hr, ElixirApiSchema as Ht, DIRECTORY_CONFLICT_VALUES as I, SHADCN_STYLE_VALUES as Ia, PythonMediaSchema as Ii, GO_TESTING_VALUES as In, MOBILE_NAVIGATION_VALUES as Ir, ELIXIR_WEB_FRAMEWORK_VALUES as It, DOTNET_VALIDATION_VALUES as J, StackPartEcosystemSchema as Ja, RATE_LIMIT_VALUES as Ji, GoObservabilitySchema as Jn, MobileTestingSchema as Jr, ElixirDocumentationSchema as Jt, DOTNET_REALTIME_VALUES as K, ShadcnRadiusSchema as Ka, PythonValidationSchema as Ki, GoMessageQueueSchema as Kn, MobilePushSchema as Kr, ElixirClusteringSchema as Kt, DOTNET_API_VALUES as L, STATE_MANAGEMENT_VALUES as La, PythonMessageQueueSchema as Li, GO_VALIDATION_VALUES as Ln, MOBILE_OTA_VALUES as Lr, EMAIL_VALUES as Lt, CreateInputSchema as M, SHADCN_COLOR_THEME_VALUES as Ma, PythonCloudSdkSchema as Mi, GO_PROTO_TOOLING_VALUES as Mn, LOGGING_VALUES as Mr, ELIXIR_QUALITY_VALUES as Mt, DART_MOBILE_VALUES as N, SHADCN_FONT_VALUES as Na, PythonDataSchema as Ni, GO_QUALITY_VALUES as Nn, LoggingSchema as Nr, ELIXIR_REALTIME_VALUES as Nt, CMS_VALUES as O, SEARCH_VALUES as Oa, PythonApiSchema as Oi, GO_MESSAGE_QUEUE_VALUES as On, KOTLIN_MOBILE_LIBRARIES_VALUES as Or, ELIXIR_JSON_VALUES as Ot, DATABASE_SETUP_VALUES as P, SHADCN_ICON_LIBRARY_VALUES as Pa, PythonGraphqlSchema as Pi, GO_REALTIME_VALUES as Pn, MOBILE_DEEP_LINKING_VALUES as Pr, ELIXIR_TESTING_VALUES as Pt, DatabaseSetupSchema as Q, StateManagementSchema as Qa, RUST_AUTH_VALUES as Qi, GoRealtimeSchema as Qn, ORM_VALUES as Qr, ElixirI18nSchema as Qt, DOTNET_AUTH_VALUES as R, SWIFT_MOBILE_VALUES as Ra, PythonObservabilitySchema as Ri, GO_WEB_FRAMEWORK_VALUES as Rn, MOBILE_PUSH_VALUES as Rr, EXAMPLES_VALUES as Rt, BetterFullstackConfigSchema as S, RustMessageQueueSchema as Sa, PYTHON_WEB_FRAMEWORK_VALUES as Si, GO_AUTH_VALUES as Sn, JavaLibrariesSchema as Sr, ELIXIR_DOCUMENTATION_VALUES as St, CACHING_VALUES as T, RustRealtimeSchema as Ta, ProjectConfigSchema as Ti, GO_CONFIG_VALUES as Tn, JavaTestingLibrariesSchema as Tr, ELIXIR_HTTP_VALUES as Tt, DOTNET_LIBRARIES_VALUES as U, ShadcnColorThemeSchema as Ua, PythonServerSchema as Ui, GoConfigSchema as Un, MobileLibrariesSchema as Ur, ElixirApplicationFrameworkSchema as Ut, DOTNET_FRONTEND_VALUES as V, ShadcnBaseColorSchema as Va, PythonQualitySchema as Vi, GoCachingSchema as Vn, MOBILE_UI_VALUES as Vr, EffectSchema as Vt, DOTNET_OBSERVABILITY_VALUES as W, ShadcnFontSchema as Wa, PythonTaskQueueSchema as Wi, GoDISchema as Wn, MobileNavigationSchema as Wr, ElixirAuthSchema as Wt, DartMobileSchema as X, StackPartSchema as Xa, RUNTIME_VALUES as Xi, GoProtoToolingSchema as Xn, OBSERVABILITY_VALUES as Xr, ElixirHttpSchema as Xt, DOTNET_WEB_FRAMEWORK_VALUES as Y, StackPartRoleSchema as Ya, REALTIME_VALUES as Yi, GoOrmSchema as Yn, MobileUISchema as Yr, ElixirEmailSchema as Yt, DatabaseSchema as Z, StackPartSourceSchema as Za, RUST_API_VALUES as Zi, GoQualitySchema as Zn, ORMSchema as Zr, ElixirHttpServerSchema as Zt, AstroIntegrationSchema as _, RustCliSchema as _a, PYTHON_REALTIME_VALUES as _i, FileStorageSchema as _n, JOB_QUEUE_VALUES as _r, ELIXIR_APPLICATION_FRAMEWORK_VALUES as _t, ANALYTICS_VALUES as a, RUST_MESSAGE_QUEUE_VALUES as aa, PYTHON_CACHING_VALUES as ai, ElixirRealtimeSchema as an, UI_LIBRARY_VALUES as ao, INTEGRATIONS_VALUES as ar, DotnetJobQueueSchema as at, BackendSchema as b, RustLibrariesSchema as ba, PYTHON_TESTING_VALUES as bi, FrontendSchema as bn, JavaBuildToolSchema as br, ELIXIR_CLUSTERING_VALUES as bt, API_VALUES as c, RUST_REALTIME_VALUES as ca, PYTHON_DATA_VALUES as ci, ElixirWebFrameworkSchema as cn, VERSION_CHANNEL_VALUES as co, JAVA_API_VALUES as cr, DotnetOrmSchema as ct, AUTH_VALUES as d, RateLimitSchema as da, PYTHON_MEDIA_VALUES as di, FEATURE_FLAGS_VALUES as dn, VersionChannelSchema as do, JAVA_LANGUAGE_VALUES as dr, DotnetValidationSchema as dt, RUST_CLI_VALUES as ea, PACKAGE_MANAGER_VALUES as ei, ElixirJsonSchema as en, TEMPLATE_VALUES as eo, GoTestingSchema as er, DotnetApiSchema as et, AddInputSchema as f, RealtimeSchema as fa, PYTHON_MESSAGE_QUEUE_VALUES as fi, FILE_STORAGE_VALUES as fn, WEB_DEPLOY_VALUES as fo, JAVA_LIBRARIES_VALUES as fr, DotnetWebFrameworkSchema as ft, AnimationSchema as g, RustCachingSchema as ga, PYTHON_QUALITY_VALUES as gi, FeatureFlagsSchema as gn, JAVA_WEB_FRAMEWORK_VALUES as gr, ELIXIR_API_VALUES as gt, AnalyticsSchema as h, RustAuthSchema as ha, PYTHON_PACKAGE_MANAGER_VALUES as hi, FRONTEND_VALUES as hn, WorkspaceShapeSchema as ho, JAVA_TESTING_LIBRARIES_VALUES as hr, EFFECT_VALUES as ht, AI_VALUES as i, RUST_LOGGING_VALUES as ia, PYTHON_AUTH_VALUES as ii, ElixirQualitySchema as in, UILibrarySchema as io, I18nSchema as ir, DotnetFrontendSchema as it, CachingSchema as j, SHADCN_BASE_VALUES as ja, PythonCliSchema as ji, GO_ORM_VALUES as jn, KotlinMobileSchema as jr, ELIXIR_ORM_VALUES as jt, CSSFrameworkSchema as k, SERVER_DEPLOY_VALUES as ka, PythonAuthSchema as ki, GO_MIGRATIONS_VALUES as kn, KOTLIN_MOBILE_VALUES as kr, ELIXIR_LIBRARIES_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_TEMPLATING_VALUES as la, PYTHON_GRAPHQL_VALUES as li, EmailSchema as ln, ValidationSchema as lo, JAVA_AUTH_VALUES as lr, DotnetRealtimeSchema as lt, AiDocsSchema as m, RustApiSchema as ma, PYTHON_ORM_VALUES as mi, FORMS_VALUES as mn, WebDeploySchema as mo, JAVA_ORM_VALUES as mr, ECOSYSTEM_VALUES as mt, AISchema as n, RUST_FRONTEND_VALUES as na, PYTHON_AI_VALUES as ni, ElixirObservabilitySchema as nn, TemplateSchema as no, GoWebFrameworkSchema as nr, DotnetCachingSchema as nt, ANIMATION_VALUES as o, RUST_OBSERVABILITY_VALUES as oa, PYTHON_CLI_VALUES as oi, ElixirTestingSchema as on, VALIDATION_VALUES as oo, InitResultSchema as or, DotnetLibrariesSchema as ot, AddonsSchema as p, RuntimeSchema as pa, PYTHON_OBSERVABILITY_VALUES as pi, FILE_UPLOAD_VALUES as pn, WORKSPACE_SHAPE_VALUES as po, JAVA_LOGGING_VALUES as pr, ECOMMERCE_VALUES as pt, DOTNET_TESTING_VALUES as q, ShadcnStyleSchema as qa, PythonWebFrameworkSchema as qi, GoMigrationsSchema as qn, MobileStorageSchema as qr, ElixirDeploySchema as qt, AI_DOCS_VALUES as r, RUST_LIBRARIES_VALUES as ra, PYTHON_API_VALUES as ri, ElixirOrmSchema as rn, TestingSchema as ro, I18N_VALUES as rr, DotnetDeploySchema as rt, APISchema as s, RUST_ORM_VALUES as sa, PYTHON_CLOUD_SDK_VALUES as si, ElixirValidationSchema as sn, VECTOR_DB_VALUES as so, IntegrationsSchema as sr, DotnetObservabilitySchema as st, ADDONS_VALUES as t, RUST_ERROR_HANDLING_VALUES as ta, PAYMENTS_VALUES as ti, ElixirLibrariesSchema as tn, TESTING_VALUES as to, GoValidationSchema as tr, DotnetAuthSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_WEB_FRAMEWORK_VALUES as ua, PYTHON_HTTP_CLIENT_VALUES as ui, ExamplesSchema as un, VectorDbSchema as uo, JAVA_BUILD_TOOL_VALUES as ur, DotnetTestingSchema as ut, AuthSchema as v, RustErrorHandlingSchema as va, PYTHON_SERVER_VALUES as vi, FileUploadSchema as vn, JavaApiSchema as vr, ELIXIR_AUTH_VALUES as vt, BetterTStackConfigSchema as w, RustOrmSchema as wa, PaymentsSchema as wi, GO_CLI_VALUES as wn, JavaOrmSchema as wr, ELIXIR_HTTP_SERVER_VALUES as wt, BetterFullstackConfigFileSchema as x, RustLoggingSchema as xa, PYTHON_VALIDATION_VALUES as xi, GO_API_VALUES as xn, JavaLanguageSchema as xr, ELIXIR_DEPLOY_VALUES as xt, BACKEND_VALUES as y, RustFrontendSchema as ya, PYTHON_TASK_QUEUE_VALUES as yi, FormsSchema as yn, JavaAuthSchema as yr, ELIXIR_CACHING_VALUES as yt, DOTNET_CACHING_VALUES as z, SearchSchema as za, PythonOrmSchema as zi, GoApiSchema as zn, MOBILE_STORAGE_VALUES as zr, EcommerceSchema as zt };
13467
+ //# sourceMappingURL=schemas-GnlaSaAD.d.mts.map