@better-fullstack/types 2.0.1 → 2.0.3

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 (45) hide show
  1. package/dist/{defaults-ByJzfP7_.d.mts → defaults-CGUDVwYW.d.mts} +2 -2
  2. package/dist/defaults-CGUDVwYW.d.mts.map +1 -0
  3. package/dist/{defaults-DNmNiuxG.mjs → defaults-Cy0_ttEE.mjs} +31 -1
  4. package/dist/defaults-Cy0_ttEE.mjs.map +1 -0
  5. package/dist/defaults.d.mts +3 -3
  6. package/dist/defaults.mjs +1 -1
  7. package/dist/index.d.mts +6 -6
  8. package/dist/index.d.mts.map +1 -1
  9. package/dist/index.mjs +5 -5
  10. package/dist/json-schema.d.mts +2200 -186
  11. package/dist/json-schema.d.mts.map +1 -1
  12. package/dist/json-schema.mjs +1 -1
  13. package/dist/{schemas-DnEGgQzA.mjs → schemas-D1fG1cXJ.mjs} +323 -14
  14. package/dist/schemas-D1fG1cXJ.mjs.map +1 -0
  15. package/dist/{schemas-62dqb8iS.d.mts → schemas-DVyeJ5g_.d.mts} +2039 -204
  16. package/dist/schemas-DVyeJ5g_.d.mts.map +1 -0
  17. package/dist/schemas.d.mts +2 -2
  18. package/dist/schemas.mjs +2 -2
  19. package/dist/stack-graph-DIXiAwrZ.mjs +2115 -0
  20. package/dist/stack-graph-DIXiAwrZ.mjs.map +1 -0
  21. package/dist/{stack-graph-UgPd4sup.d.mts → stack-graph-DxbVgmAd.d.mts} +19 -4
  22. package/dist/stack-graph-DxbVgmAd.d.mts.map +1 -0
  23. package/dist/stack-graph.d.mts +4 -4
  24. package/dist/stack-graph.mjs +3 -3
  25. package/dist/{stack-translation-COVG5IPm.mjs → stack-translation-9PxvYAJB.mjs} +4084 -3024
  26. package/dist/stack-translation-9PxvYAJB.mjs.map +1 -0
  27. package/dist/{stack-translation-CYNMQUUu.d.mts → stack-translation-DQfT1jwM.d.mts} +117 -35
  28. package/dist/stack-translation-DQfT1jwM.d.mts.map +1 -0
  29. package/dist/stack-translation.d.mts +4 -4
  30. package/dist/stack-translation.mjs +3 -3
  31. package/dist/types-j0tqBnAt.d.mts +153 -0
  32. package/dist/types-j0tqBnAt.d.mts.map +1 -0
  33. package/dist/types.d.mts +3 -3
  34. package/package.json +1 -1
  35. package/dist/defaults-ByJzfP7_.d.mts.map +0 -1
  36. package/dist/defaults-DNmNiuxG.mjs.map +0 -1
  37. package/dist/schemas-62dqb8iS.d.mts.map +0 -1
  38. package/dist/schemas-DnEGgQzA.mjs.map +0 -1
  39. package/dist/stack-graph-C2tzuzRe.mjs +0 -585
  40. package/dist/stack-graph-C2tzuzRe.mjs.map +0 -1
  41. package/dist/stack-graph-UgPd4sup.d.mts.map +0 -1
  42. package/dist/stack-translation-COVG5IPm.mjs.map +0 -1
  43. package/dist/stack-translation-CYNMQUUu.d.mts.map +0 -1
  44. package/dist/types-CWpfWGSN.d.mts +0 -123
  45. package/dist/types-CWpfWGSN.d.mts.map +0 -1
@@ -8,8 +8,9 @@ const EcosystemSchema = z.enum([
8
8
  "python",
9
9
  "go",
10
10
  "java",
11
- "elixir"
12
- ]).describe("Language ecosystem (typescript, react-native, rust, python, go, java, or elixir)");
11
+ "elixir",
12
+ "dotnet"
13
+ ]).describe("Language ecosystem (typescript, react-native, rust, python, go, java, elixir, or dotnet)");
13
14
  const StackPartEcosystemSchema = z.union([EcosystemSchema, z.literal("universal")]).describe("Ecosystem adapter for a selected stack part");
14
15
  const StackPartRoleSchema = z.enum([
15
16
  "frontend",
@@ -21,18 +22,26 @@ const StackPartRoleSchema = z.enum([
21
22
  "auth",
22
23
  "runtime",
23
24
  "deploy",
25
+ "dbSetup",
26
+ "realtime",
27
+ "navigation",
24
28
  "caching",
25
29
  "observability",
26
30
  "email",
27
31
  "search",
28
32
  "fileStorage",
29
33
  "jobQueue",
34
+ "rateLimit",
30
35
  "testing",
31
36
  "stateManagement",
32
37
  "forms",
38
+ "animation",
39
+ "fileUpload",
33
40
  "validation",
41
+ "effect",
34
42
  "ui",
35
43
  "css",
44
+ "storage",
36
45
  "ai",
37
46
  "payments",
38
47
  "logging",
@@ -42,7 +51,17 @@ const StackPartRoleSchema = z.enum([
42
51
  "i18n",
43
52
  "documentation",
44
53
  "codeQuality",
45
- "appPlatform"
54
+ "appPlatform",
55
+ "dataFetching",
56
+ "workspaceTooling",
57
+ "examples",
58
+ "buildTool",
59
+ "cli",
60
+ "errorHandling",
61
+ "httpClient",
62
+ "libraries",
63
+ "config",
64
+ "templating"
46
65
  ]).describe("Role a selected tool plays in the stack graph");
47
66
  const StackPartSourceSchema = z.enum([
48
67
  "selected",
@@ -140,6 +159,7 @@ const AddonsSchema = z.enum([
140
159
  "mcp",
141
160
  "skills",
142
161
  "turborepo",
162
+ "nx",
143
163
  "fumadocs",
144
164
  "ultracite",
145
165
  "oxlint",
@@ -153,6 +173,7 @@ const AddonsSchema = z.enum([
153
173
  "tanstack-virtual",
154
174
  "tanstack-db",
155
175
  "tanstack-pacer",
176
+ "backend-utils",
156
177
  "docker-compose",
157
178
  "none"
158
179
  ]).describe("Additional addons");
@@ -191,16 +212,20 @@ const APISchema = z.enum([
191
212
  "ts-rest",
192
213
  "garph",
193
214
  "graphql-yoga",
215
+ "openapi",
194
216
  "none"
195
217
  ]).describe("API type");
196
218
  const AuthSchema = z.enum([
197
219
  "better-auth",
220
+ "better-auth-organizations",
198
221
  "go-better-auth",
199
222
  "clerk",
200
223
  "nextauth",
201
224
  "stack-auth",
202
225
  "supabase-auth",
203
226
  "auth0",
227
+ "workos",
228
+ "kinde",
204
229
  "none"
205
230
  ]).describe("Authentication provider");
206
231
  const PaymentsSchema = z.enum([
@@ -215,6 +240,8 @@ const WebDeploySchema = z.enum([
215
240
  "cloudflare",
216
241
  "fly",
217
242
  "railway",
243
+ "render",
244
+ "netlify",
218
245
  "docker",
219
246
  "sst",
220
247
  "vercel",
@@ -224,6 +251,8 @@ const ServerDeploySchema = z.enum([
224
251
  "cloudflare",
225
252
  "fly",
226
253
  "railway",
254
+ "render",
255
+ "netlify",
227
256
  "docker",
228
257
  "sst",
229
258
  "vercel",
@@ -247,7 +276,7 @@ const EffectSchema = z.enum([
247
276
  "effect",
248
277
  "effect-full",
249
278
  "none"
250
- ]).describe("Effect ecosystem (effect-full includes @effect/schema, @effect/platform, @effect/sql)");
279
+ ]).describe("Effect ecosystem (effect-full includes effect/Schema, @effect/platform, @effect/sql)");
251
280
  const StateManagementSchema = z.enum([
252
281
  "zustand",
253
282
  "jotai",
@@ -323,6 +352,11 @@ const CMSSchema = z.enum([
323
352
  "none"
324
353
  ]).describe("Headless CMS solution");
325
354
  const CachingSchema = z.enum(["upstash-redis", "none"]).describe("Caching solution (upstash-redis for serverless Redis)");
355
+ const RateLimitSchema = z.enum([
356
+ "arcjet",
357
+ "upstash-ratelimit",
358
+ "none"
359
+ ]).describe("Rate limiting and abuse protection");
326
360
  const I18nSchema = z.enum([
327
361
  "i18next",
328
362
  "next-intl",
@@ -365,6 +399,9 @@ const ObservabilitySchema = z.enum([
365
399
  "opentelemetry",
366
400
  "sentry",
367
401
  "grafana",
402
+ "datadog",
403
+ "axiom",
404
+ "betterstack",
368
405
  "none"
369
406
  ]).describe("Observability and distributed tracing");
370
407
  const FeatureFlagsSchema = z.enum([
@@ -464,18 +501,32 @@ const RustCachingSchema = z.enum([
464
501
  "redis",
465
502
  "none"
466
503
  ]).describe("Rust caching library");
467
- const RustAuthSchema = z.enum(["oauth2", "none"]).describe("Rust authentication library");
504
+ const RustAuthSchema = z.enum([
505
+ "oauth2",
506
+ "torii",
507
+ "none"
508
+ ]).describe("Rust authentication library");
509
+ const RustRealtimeSchema = z.enum(["tokio-tungstenite", "none"]).describe("Rust realtime/WebSocket library");
510
+ const RustMessageQueueSchema = z.enum(["lapin", "none"]).describe("Rust message queue library");
511
+ const RustObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Rust observability/tracing library");
512
+ const RustTemplatingSchema = z.enum([
513
+ "askama",
514
+ "tera",
515
+ "none"
516
+ ]).describe("Rust template engine");
468
517
  const PythonWebFrameworkSchema = z.enum([
469
518
  "fastapi",
470
519
  "django",
471
520
  "flask",
472
521
  "litestar",
522
+ "starlette",
473
523
  "none"
474
524
  ]).describe("Python web framework");
475
525
  const PythonOrmSchema = z.enum([
476
526
  "sqlalchemy",
477
527
  "sqlmodel",
478
528
  "tortoise-orm",
529
+ "peewee",
479
530
  "none"
480
531
  ]).describe("Python ORM/database layer");
481
532
  const PythonValidationSchema = z.enum(["pydantic", "none"]).describe("Python validation library");
@@ -487,11 +538,15 @@ const PythonAiSchema = z.enum([
487
538
  "langgraph",
488
539
  "crewai",
489
540
  "haystack",
541
+ "pydantic-ai",
542
+ "google-adk",
543
+ "smolagents",
490
544
  "none"
491
545
  ]).describe("Python AI/ML framework");
492
546
  const PythonAuthSchema = z.enum([
493
547
  "authlib",
494
548
  "jwt",
549
+ "fastapi-users",
495
550
  "none"
496
551
  ]).describe("Python authentication library");
497
552
  const PythonApiSchema = z.enum([
@@ -504,6 +559,7 @@ const PythonTaskQueueSchema = z.enum([
504
559
  "rq",
505
560
  "dramatiq",
506
561
  "huey",
562
+ "taskiq",
507
563
  "none"
508
564
  ]).describe("Python task queue");
509
565
  const PythonGraphqlSchema = z.enum([
@@ -517,6 +573,28 @@ const PythonQualitySchema = z.enum([
517
573
  "pyright",
518
574
  "none"
519
575
  ]).describe("Python code quality tool");
576
+ const PythonTestingSchema = z.enum([
577
+ "pytest",
578
+ "hypothesis",
579
+ "none"
580
+ ]).describe("Python testing libraries");
581
+ const PythonCachingSchema = z.enum([
582
+ "redis",
583
+ "aiocache",
584
+ "none"
585
+ ]).describe("Python caching library");
586
+ const PythonRealtimeSchema = z.enum([
587
+ "python-socketio",
588
+ "websockets",
589
+ "none"
590
+ ]).describe("Python realtime/WebSocket library");
591
+ const PythonObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Python observability/tracing library");
592
+ const PythonCliSchema = z.enum([
593
+ "typer",
594
+ "click",
595
+ "rich",
596
+ "none"
597
+ ]).describe("Python CLI tooling libraries");
520
598
  const GoWebFrameworkSchema = z.enum([
521
599
  "gin",
522
600
  "echo",
@@ -530,7 +608,11 @@ const GoOrmSchema = z.enum([
530
608
  "ent",
531
609
  "none"
532
610
  ]).describe("Go ORM/database layer");
533
- const GoApiSchema = z.enum(["grpc-go", "none"]).describe("Go API layer (gRPC)");
611
+ const GoApiSchema = z.enum([
612
+ "grpc-go",
613
+ "gqlgen",
614
+ "none"
615
+ ]).describe("Go API layer (gRPC, GraphQL)");
534
616
  const GoCliSchema = z.enum([
535
617
  "cobra",
536
618
  "bubbletea",
@@ -547,8 +629,35 @@ const GoLoggingSchema = z.enum([
547
629
  const GoAuthSchema = z.enum([
548
630
  "casbin",
549
631
  "jwt",
632
+ "goth",
550
633
  "none"
551
634
  ]).describe("Go authentication library");
635
+ const GoTestingSchema = z.enum([
636
+ "testify",
637
+ "gomock",
638
+ "none"
639
+ ]).describe("Go testing libraries");
640
+ const GoRealtimeSchema = z.enum([
641
+ "gorilla-websocket",
642
+ "centrifuge",
643
+ "none"
644
+ ]).describe("Go realtime/WebSocket library");
645
+ const GoMessageQueueSchema = z.enum([
646
+ "nats",
647
+ "watermill",
648
+ "none"
649
+ ]).describe("Go message queue/eventing library");
650
+ const GoCachingSchema = z.enum([
651
+ "redis",
652
+ "ristretto",
653
+ "none"
654
+ ]).describe("Go caching library");
655
+ const GoConfigSchema = z.enum([
656
+ "viper",
657
+ "koanf",
658
+ "none"
659
+ ]).describe("Go configuration management library");
660
+ const GoObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Go observability/tracing library");
552
661
  const JavaWebFrameworkSchema = z.enum([
553
662
  "spring-boot",
554
663
  "quarkus",
@@ -559,8 +668,19 @@ const JavaBuildToolSchema = z.enum([
559
668
  "gradle",
560
669
  "none"
561
670
  ]).describe("Java build tool");
562
- const JavaOrmSchema = z.enum(["spring-data-jpa", "none"]).describe("Java ORM/database layer");
563
- const JavaAuthSchema = z.enum(["spring-security", "none"]).describe("Java authentication library");
671
+ const JavaOrmSchema = z.enum([
672
+ "spring-data-jpa",
673
+ "jooq",
674
+ "mybatis",
675
+ "none"
676
+ ]).describe("Java ORM/database layer");
677
+ const JavaAuthSchema = z.enum([
678
+ "spring-security",
679
+ "keycloak",
680
+ "none"
681
+ ]).describe("Java authentication library");
682
+ const JavaApiSchema = z.enum(["spring-graphql", "none"]).describe("Java API layer");
683
+ const JavaLoggingSchema = z.enum(["logback", "none"]).describe("Java logging configuration");
564
684
  const JavaLibrariesSchema = z.enum([
565
685
  "spring-actuator",
566
686
  "spring-validation",
@@ -578,6 +698,8 @@ const JavaLibrariesSchema = z.enum([
578
698
  "spring-devtools",
579
699
  "micrometer-prometheus",
580
700
  "thymeleaf",
701
+ "spring-amqp",
702
+ "opentelemetry-java",
581
703
  "none"
582
704
  ]).describe("Java application libraries");
583
705
  const JavaTestingLibrariesSchema = z.enum([
@@ -592,6 +714,67 @@ const JavaTestingLibrariesSchema = z.enum([
592
714
  "jqwik",
593
715
  "none"
594
716
  ]).describe("Java testing libraries");
717
+ const DotnetWebFrameworkSchema = z.enum([
718
+ "aspnet-minimal",
719
+ "aspnet-mvc",
720
+ "aspnet-blazor",
721
+ "none"
722
+ ]).describe(".NET web framework");
723
+ const DotnetOrmSchema = z.enum([
724
+ "ef-core",
725
+ "dapper",
726
+ "linq2db",
727
+ "none"
728
+ ]).describe(".NET data access library");
729
+ const DotnetAuthSchema = z.enum([
730
+ "aspnet-identity",
731
+ "duende-identityserver",
732
+ "auth0-aspnet",
733
+ "none"
734
+ ]).describe(".NET authentication library");
735
+ const DotnetApiSchema = z.enum([
736
+ "minimal-api",
737
+ "graphql-hotchocolate",
738
+ "grpc-dotnet",
739
+ "none"
740
+ ]).describe(".NET API style");
741
+ const DotnetTestingSchema = z.enum([
742
+ "xunit",
743
+ "nunit",
744
+ "moq",
745
+ "testcontainers-dotnet",
746
+ "none"
747
+ ]).describe(".NET testing libraries");
748
+ const DotnetJobQueueSchema = z.enum([
749
+ "hangfire",
750
+ "quartz-net",
751
+ "hosted-services",
752
+ "none"
753
+ ]).describe(".NET background jobs");
754
+ const DotnetRealtimeSchema = z.enum(["signalr", "none"]).describe(".NET realtime library");
755
+ const DotnetObservabilitySchema = z.enum([
756
+ "opentelemetry-dotnet",
757
+ "serilog",
758
+ "nlog",
759
+ "health-checks",
760
+ "none"
761
+ ]).describe(".NET observability and logging libraries");
762
+ const DotnetValidationSchema = z.enum([
763
+ "fluentvalidation",
764
+ "data-annotations",
765
+ "none"
766
+ ]).describe(".NET validation library");
767
+ const DotnetCachingSchema = z.enum([
768
+ "redis",
769
+ "memory-cache",
770
+ "none"
771
+ ]).describe(".NET caching library");
772
+ const DotnetDeploySchema = z.enum([
773
+ "docker",
774
+ "azure",
775
+ "aws",
776
+ "none"
777
+ ]).describe(".NET deployment target");
595
778
  const ElixirWebFrameworkSchema = z.enum([
596
779
  "phoenix",
597
780
  "phoenix-live-view",
@@ -611,8 +794,14 @@ const ElixirAuthSchema = z.enum([
611
794
  const ElixirApiSchema = z.enum([
612
795
  "rest",
613
796
  "absinthe",
797
+ "grpc",
614
798
  "none"
615
799
  ]).describe("Elixir API layer");
800
+ const ElixirLibrariesSchema = z.enum([
801
+ "broadway",
802
+ "nx",
803
+ "none"
804
+ ]).describe("Elixir application libraries");
616
805
  const ElixirRealtimeSchema = z.enum([
617
806
  "channels",
618
807
  "presence",
@@ -848,6 +1037,7 @@ const CreateInputSchema = z.object({
848
1037
  analytics: AnalyticsSchema.optional(),
849
1038
  cms: CMSSchema.optional(),
850
1039
  caching: CachingSchema.optional(),
1040
+ rateLimit: RateLimitSchema.optional(),
851
1041
  i18n: I18nSchema.optional(),
852
1042
  search: SearchSchema.optional(),
853
1043
  fileStorage: FileStorageSchema.optional(),
@@ -868,6 +1058,10 @@ const CreateInputSchema = z.object({
868
1058
  rustErrorHandling: RustErrorHandlingSchema.optional(),
869
1059
  rustCaching: RustCachingSchema.optional(),
870
1060
  rustAuth: RustAuthSchema.optional(),
1061
+ rustRealtime: RustRealtimeSchema.optional(),
1062
+ rustMessageQueue: RustMessageQueueSchema.optional(),
1063
+ rustObservability: RustObservabilitySchema.optional(),
1064
+ rustTemplating: RustTemplatingSchema.optional(),
871
1065
  pythonWebFramework: PythonWebFrameworkSchema.optional(),
872
1066
  pythonOrm: PythonOrmSchema.optional(),
873
1067
  pythonValidation: PythonValidationSchema.optional(),
@@ -877,18 +1071,42 @@ const CreateInputSchema = z.object({
877
1071
  pythonTaskQueue: PythonTaskQueueSchema.optional(),
878
1072
  pythonGraphql: PythonGraphqlSchema.optional(),
879
1073
  pythonQuality: PythonQualitySchema.optional(),
1074
+ pythonTesting: z.array(PythonTestingSchema).optional(),
1075
+ pythonCaching: PythonCachingSchema.optional(),
1076
+ pythonRealtime: PythonRealtimeSchema.optional(),
1077
+ pythonObservability: PythonObservabilitySchema.optional(),
1078
+ pythonCli: z.array(PythonCliSchema).optional(),
880
1079
  goWebFramework: GoWebFrameworkSchema.optional(),
881
1080
  goOrm: GoOrmSchema.optional(),
882
1081
  goApi: GoApiSchema.optional(),
883
1082
  goCli: GoCliSchema.optional(),
884
1083
  goLogging: GoLoggingSchema.optional(),
885
1084
  goAuth: GoAuthSchema.optional(),
1085
+ goTesting: z.array(GoTestingSchema).optional(),
1086
+ goRealtime: GoRealtimeSchema.optional(),
1087
+ goMessageQueue: GoMessageQueueSchema.optional(),
1088
+ goCaching: GoCachingSchema.optional(),
1089
+ goConfig: GoConfigSchema.optional(),
1090
+ goObservability: GoObservabilitySchema.optional(),
886
1091
  javaWebFramework: JavaWebFrameworkSchema.optional(),
887
1092
  javaBuildTool: JavaBuildToolSchema.optional(),
888
1093
  javaOrm: JavaOrmSchema.optional(),
889
1094
  javaAuth: JavaAuthSchema.optional(),
1095
+ javaApi: JavaApiSchema.optional(),
1096
+ javaLogging: JavaLoggingSchema.optional(),
890
1097
  javaLibraries: z.array(JavaLibrariesSchema).optional(),
891
1098
  javaTestingLibraries: z.array(JavaTestingLibrariesSchema).optional(),
1099
+ dotnetWebFramework: DotnetWebFrameworkSchema.optional(),
1100
+ dotnetOrm: DotnetOrmSchema.optional(),
1101
+ dotnetAuth: DotnetAuthSchema.optional(),
1102
+ dotnetApi: DotnetApiSchema.optional(),
1103
+ dotnetTesting: z.array(DotnetTestingSchema).optional(),
1104
+ dotnetJobQueue: DotnetJobQueueSchema.optional(),
1105
+ dotnetRealtime: DotnetRealtimeSchema.optional(),
1106
+ dotnetObservability: z.array(DotnetObservabilitySchema).optional(),
1107
+ dotnetValidation: DotnetValidationSchema.optional(),
1108
+ dotnetCaching: DotnetCachingSchema.optional(),
1109
+ dotnetDeploy: DotnetDeploySchema.optional(),
892
1110
  elixirWebFramework: ElixirWebFrameworkSchema.optional(),
893
1111
  elixirOrm: ElixirOrmSchema.optional(),
894
1112
  elixirAuth: ElixirAuthSchema.optional(),
@@ -904,6 +1122,7 @@ const CreateInputSchema = z.object({
904
1122
  elixirTesting: ElixirTestingSchema.optional(),
905
1123
  elixirQuality: ElixirQualitySchema.optional(),
906
1124
  elixirDeploy: ElixirDeploySchema.optional(),
1125
+ elixirLibraries: z.array(ElixirLibrariesSchema).optional(),
907
1126
  aiDocs: z.array(AiDocsSchema).optional(),
908
1127
  part: z.array(z.string()).optional()
909
1128
  });
@@ -965,6 +1184,7 @@ const ProjectConfigSchema = z.object({
965
1184
  analytics: AnalyticsSchema,
966
1185
  cms: CMSSchema,
967
1186
  caching: CachingSchema,
1187
+ rateLimit: RateLimitSchema,
968
1188
  i18n: I18nSchema,
969
1189
  search: SearchSchema,
970
1190
  fileStorage: FileStorageSchema,
@@ -985,6 +1205,10 @@ const ProjectConfigSchema = z.object({
985
1205
  rustErrorHandling: RustErrorHandlingSchema,
986
1206
  rustCaching: RustCachingSchema,
987
1207
  rustAuth: RustAuthSchema,
1208
+ rustRealtime: RustRealtimeSchema,
1209
+ rustMessageQueue: RustMessageQueueSchema,
1210
+ rustObservability: RustObservabilitySchema,
1211
+ rustTemplating: RustTemplatingSchema,
988
1212
  pythonWebFramework: PythonWebFrameworkSchema,
989
1213
  pythonOrm: PythonOrmSchema,
990
1214
  pythonValidation: PythonValidationSchema,
@@ -994,18 +1218,42 @@ const ProjectConfigSchema = z.object({
994
1218
  pythonTaskQueue: PythonTaskQueueSchema,
995
1219
  pythonGraphql: PythonGraphqlSchema,
996
1220
  pythonQuality: PythonQualitySchema,
1221
+ pythonTesting: z.array(PythonTestingSchema),
1222
+ pythonCaching: PythonCachingSchema,
1223
+ pythonRealtime: PythonRealtimeSchema,
1224
+ pythonObservability: PythonObservabilitySchema,
1225
+ pythonCli: z.array(PythonCliSchema),
997
1226
  goWebFramework: GoWebFrameworkSchema,
998
1227
  goOrm: GoOrmSchema,
999
1228
  goApi: GoApiSchema,
1000
1229
  goCli: GoCliSchema,
1001
1230
  goLogging: GoLoggingSchema,
1002
1231
  goAuth: GoAuthSchema,
1232
+ goTesting: z.array(GoTestingSchema),
1233
+ goRealtime: GoRealtimeSchema,
1234
+ goMessageQueue: GoMessageQueueSchema,
1235
+ goCaching: GoCachingSchema,
1236
+ goConfig: GoConfigSchema,
1237
+ goObservability: GoObservabilitySchema,
1003
1238
  javaWebFramework: JavaWebFrameworkSchema,
1004
1239
  javaBuildTool: JavaBuildToolSchema,
1005
1240
  javaOrm: JavaOrmSchema,
1006
1241
  javaAuth: JavaAuthSchema,
1242
+ javaApi: JavaApiSchema,
1243
+ javaLogging: JavaLoggingSchema,
1007
1244
  javaLibraries: z.array(JavaLibrariesSchema),
1008
1245
  javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
1246
+ dotnetWebFramework: DotnetWebFrameworkSchema,
1247
+ dotnetOrm: DotnetOrmSchema,
1248
+ dotnetAuth: DotnetAuthSchema,
1249
+ dotnetApi: DotnetApiSchema,
1250
+ dotnetTesting: z.array(DotnetTestingSchema),
1251
+ dotnetJobQueue: DotnetJobQueueSchema,
1252
+ dotnetRealtime: DotnetRealtimeSchema,
1253
+ dotnetObservability: z.array(DotnetObservabilitySchema),
1254
+ dotnetValidation: DotnetValidationSchema,
1255
+ dotnetCaching: DotnetCachingSchema,
1256
+ dotnetDeploy: DotnetDeploySchema,
1009
1257
  elixirWebFramework: ElixirWebFrameworkSchema,
1010
1258
  elixirOrm: ElixirOrmSchema,
1011
1259
  elixirAuth: ElixirAuthSchema,
@@ -1021,14 +1269,15 @@ const ProjectConfigSchema = z.object({
1021
1269
  elixirTesting: ElixirTestingSchema,
1022
1270
  elixirQuality: ElixirQualitySchema,
1023
1271
  elixirDeploy: ElixirDeploySchema,
1272
+ elixirLibraries: z.array(ElixirLibrariesSchema),
1024
1273
  aiDocs: z.array(AiDocsSchema),
1025
- stackParts: z.array(StackPartSchema).optional()
1274
+ stackParts: z.array(StackPartSchema).optional().describe("Authoritative stack graph when present; flat fields are a derived projection.")
1026
1275
  });
1027
1276
  const BetterTStackConfigSchema = z.object({
1028
1277
  version: z.string().describe("CLI version used to create this project"),
1029
1278
  createdAt: z.string().describe("Timestamp when the project was created"),
1030
- graphSummary: z.string().optional().describe("Human-readable summary of selected stack parts"),
1031
- effectiveStack: z.record(z.string(), z.string()).optional().describe("Graph-aware effective stack, keyed by role"),
1279
+ graphSummary: z.string().optional().describe("Human-readable summary derived from authoritative stackParts"),
1280
+ effectiveStack: z.record(z.string(), z.string()).optional().describe("Graph-aware effective stack derived from stackParts and keyed by owner role path"),
1032
1281
  ecosystem: EcosystemSchema,
1033
1282
  database: DatabaseSchema,
1034
1283
  orm: ORMSchema,
@@ -1072,6 +1321,7 @@ const BetterTStackConfigSchema = z.object({
1072
1321
  analytics: AnalyticsSchema,
1073
1322
  cms: CMSSchema,
1074
1323
  caching: CachingSchema,
1324
+ rateLimit: RateLimitSchema,
1075
1325
  i18n: I18nSchema,
1076
1326
  search: SearchSchema,
1077
1327
  fileStorage: FileStorageSchema,
@@ -1092,6 +1342,10 @@ const BetterTStackConfigSchema = z.object({
1092
1342
  rustErrorHandling: RustErrorHandlingSchema,
1093
1343
  rustCaching: RustCachingSchema,
1094
1344
  rustAuth: RustAuthSchema,
1345
+ rustRealtime: RustRealtimeSchema,
1346
+ rustMessageQueue: RustMessageQueueSchema,
1347
+ rustObservability: RustObservabilitySchema,
1348
+ rustTemplating: RustTemplatingSchema,
1095
1349
  pythonWebFramework: PythonWebFrameworkSchema,
1096
1350
  pythonOrm: PythonOrmSchema,
1097
1351
  pythonValidation: PythonValidationSchema,
@@ -1101,18 +1355,42 @@ const BetterTStackConfigSchema = z.object({
1101
1355
  pythonTaskQueue: PythonTaskQueueSchema,
1102
1356
  pythonGraphql: PythonGraphqlSchema,
1103
1357
  pythonQuality: PythonQualitySchema,
1358
+ pythonTesting: z.array(PythonTestingSchema),
1359
+ pythonCaching: PythonCachingSchema,
1360
+ pythonRealtime: PythonRealtimeSchema,
1361
+ pythonObservability: PythonObservabilitySchema,
1362
+ pythonCli: z.array(PythonCliSchema),
1104
1363
  goWebFramework: GoWebFrameworkSchema,
1105
1364
  goOrm: GoOrmSchema,
1106
1365
  goApi: GoApiSchema,
1107
1366
  goCli: GoCliSchema,
1108
1367
  goLogging: GoLoggingSchema,
1109
1368
  goAuth: GoAuthSchema,
1369
+ goTesting: z.array(GoTestingSchema),
1370
+ goRealtime: GoRealtimeSchema,
1371
+ goMessageQueue: GoMessageQueueSchema,
1372
+ goCaching: GoCachingSchema,
1373
+ goConfig: GoConfigSchema,
1374
+ goObservability: GoObservabilitySchema,
1110
1375
  javaWebFramework: JavaWebFrameworkSchema,
1111
1376
  javaBuildTool: JavaBuildToolSchema,
1112
1377
  javaOrm: JavaOrmSchema,
1113
1378
  javaAuth: JavaAuthSchema,
1379
+ javaApi: JavaApiSchema,
1380
+ javaLogging: JavaLoggingSchema,
1114
1381
  javaLibraries: z.array(JavaLibrariesSchema),
1115
1382
  javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
1383
+ dotnetWebFramework: DotnetWebFrameworkSchema,
1384
+ dotnetOrm: DotnetOrmSchema,
1385
+ dotnetAuth: DotnetAuthSchema,
1386
+ dotnetApi: DotnetApiSchema,
1387
+ dotnetTesting: z.array(DotnetTestingSchema),
1388
+ dotnetJobQueue: DotnetJobQueueSchema,
1389
+ dotnetRealtime: DotnetRealtimeSchema,
1390
+ dotnetObservability: z.array(DotnetObservabilitySchema),
1391
+ dotnetValidation: DotnetValidationSchema,
1392
+ dotnetCaching: DotnetCachingSchema,
1393
+ dotnetDeploy: DotnetDeploySchema,
1116
1394
  elixirWebFramework: ElixirWebFrameworkSchema,
1117
1395
  elixirOrm: ElixirOrmSchema,
1118
1396
  elixirAuth: ElixirAuthSchema,
@@ -1128,8 +1406,9 @@ const BetterTStackConfigSchema = z.object({
1128
1406
  elixirTesting: ElixirTestingSchema,
1129
1407
  elixirQuality: ElixirQualitySchema,
1130
1408
  elixirDeploy: ElixirDeploySchema,
1409
+ elixirLibraries: z.array(ElixirLibrariesSchema),
1131
1410
  aiDocs: z.array(AiDocsSchema),
1132
- stackParts: z.array(StackPartSchema).optional()
1411
+ stackParts: z.array(StackPartSchema).optional().describe("Authoritative stack graph when present; top-level fields are a derived cache.")
1133
1412
  });
1134
1413
  const BetterFullstackConfigSchema = BetterTStackConfigSchema;
1135
1414
  const BetterTStackConfigFileSchema = z.object({ $schema: z.string().optional().describe("JSON Schema reference for validation") }).extend(BetterTStackConfigSchema.shape).meta({
@@ -1196,6 +1475,7 @@ const MOBILE_OTA_VALUES = MobileOTASchema.options;
1196
1475
  const MOBILE_DEEP_LINKING_VALUES = MobileDeepLinkingSchema.options;
1197
1476
  const CMS_VALUES = CMSSchema.options;
1198
1477
  const CACHING_VALUES = CachingSchema.options;
1478
+ const RATE_LIMIT_VALUES = RateLimitSchema.options;
1199
1479
  const I18N_VALUES = I18nSchema.options;
1200
1480
  const SEARCH_VALUES = SearchSchema.options;
1201
1481
  const FILE_STORAGE_VALUES = FileStorageSchema.options;
@@ -1210,6 +1490,10 @@ const RUST_LOGGING_VALUES = RustLoggingSchema.options;
1210
1490
  const RUST_ERROR_HANDLING_VALUES = RustErrorHandlingSchema.options;
1211
1491
  const RUST_CACHING_VALUES = RustCachingSchema.options;
1212
1492
  const RUST_AUTH_VALUES = RustAuthSchema.options;
1493
+ const RUST_REALTIME_VALUES = RustRealtimeSchema.options;
1494
+ const RUST_MESSAGE_QUEUE_VALUES = RustMessageQueueSchema.options;
1495
+ const RUST_OBSERVABILITY_VALUES = RustObservabilitySchema.options;
1496
+ const RUST_TEMPLATING_VALUES = RustTemplatingSchema.options;
1213
1497
  const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;
1214
1498
  const PYTHON_ORM_VALUES = PythonOrmSchema.options;
1215
1499
  const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;
@@ -1219,22 +1503,47 @@ const PYTHON_API_VALUES = PythonApiSchema.options;
1219
1503
  const PYTHON_TASK_QUEUE_VALUES = PythonTaskQueueSchema.options;
1220
1504
  const PYTHON_GRAPHQL_VALUES = PythonGraphqlSchema.options;
1221
1505
  const PYTHON_QUALITY_VALUES = PythonQualitySchema.options;
1506
+ const PYTHON_TESTING_VALUES = PythonTestingSchema.options;
1507
+ const PYTHON_CACHING_VALUES = PythonCachingSchema.options;
1508
+ const PYTHON_REALTIME_VALUES = PythonRealtimeSchema.options;
1509
+ const PYTHON_OBSERVABILITY_VALUES = PythonObservabilitySchema.options;
1510
+ const PYTHON_CLI_VALUES = PythonCliSchema.options;
1222
1511
  const GO_WEB_FRAMEWORK_VALUES = GoWebFrameworkSchema.options;
1223
1512
  const GO_ORM_VALUES = GoOrmSchema.options;
1224
1513
  const GO_API_VALUES = GoApiSchema.options;
1225
1514
  const GO_CLI_VALUES = GoCliSchema.options;
1226
1515
  const GO_LOGGING_VALUES = GoLoggingSchema.options;
1227
1516
  const GO_AUTH_VALUES = GoAuthSchema.options;
1517
+ const GO_TESTING_VALUES = GoTestingSchema.options;
1518
+ const GO_REALTIME_VALUES = GoRealtimeSchema.options;
1519
+ const GO_MESSAGE_QUEUE_VALUES = GoMessageQueueSchema.options;
1520
+ const GO_CACHING_VALUES = GoCachingSchema.options;
1521
+ const GO_CONFIG_VALUES = GoConfigSchema.options;
1522
+ const GO_OBSERVABILITY_VALUES = GoObservabilitySchema.options;
1228
1523
  const JAVA_WEB_FRAMEWORK_VALUES = JavaWebFrameworkSchema.options;
1229
1524
  const JAVA_BUILD_TOOL_VALUES = JavaBuildToolSchema.options;
1230
1525
  const JAVA_ORM_VALUES = JavaOrmSchema.options;
1231
1526
  const JAVA_AUTH_VALUES = JavaAuthSchema.options;
1527
+ const JAVA_API_VALUES = JavaApiSchema.options;
1528
+ const JAVA_LOGGING_VALUES = JavaLoggingSchema.options;
1232
1529
  const JAVA_LIBRARIES_VALUES = JavaLibrariesSchema.options;
1233
1530
  const JAVA_TESTING_LIBRARIES_VALUES = JavaTestingLibrariesSchema.options;
1531
+ const DOTNET_WEB_FRAMEWORK_VALUES = DotnetWebFrameworkSchema.options;
1532
+ const DOTNET_ORM_VALUES = DotnetOrmSchema.options;
1533
+ const DOTNET_AUTH_VALUES = DotnetAuthSchema.options;
1534
+ const DOTNET_API_VALUES = DotnetApiSchema.options;
1535
+ const DOTNET_TESTING_VALUES = DotnetTestingSchema.options;
1536
+ const DOTNET_JOB_QUEUE_VALUES = DotnetJobQueueSchema.options;
1537
+ const DOTNET_REALTIME_VALUES = DotnetRealtimeSchema.options;
1538
+ const DOTNET_OBSERVABILITY_VALUES = DotnetObservabilitySchema.options;
1539
+ const DOTNET_VALIDATION_VALUES = DotnetValidationSchema.options;
1540
+ const DOTNET_CACHING_VALUES = DotnetCachingSchema.options;
1541
+ const DOTNET_DEPLOY_VALUES = DotnetDeploySchema.options;
1234
1542
  const ELIXIR_WEB_FRAMEWORK_VALUES = ElixirWebFrameworkSchema.options;
1235
1543
  const ELIXIR_ORM_VALUES = ElixirOrmSchema.options;
1236
1544
  const ELIXIR_AUTH_VALUES = ElixirAuthSchema.options;
1237
1545
  const ELIXIR_API_VALUES = ElixirApiSchema.options;
1546
+ const ELIXIR_LIBRARIES_VALUES = ElixirLibrariesSchema.options;
1238
1547
  const ELIXIR_REALTIME_VALUES = ElixirRealtimeSchema.options;
1239
1548
  const ELIXIR_JOBS_VALUES = ElixirJobsSchema.options;
1240
1549
  const ELIXIR_VALIDATION_VALUES = ElixirValidationSchema.options;
@@ -1256,5 +1565,5 @@ const SHADCN_FONT_VALUES = ShadcnFontSchema.options;
1256
1565
  const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
1257
1566
 
1258
1567
  //#endregion
1259
- export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, ValidationSchema as $r, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn, StackPartEcosystemSchema as Br, GoCliSchema as Bt, BetterTStackConfigSchema as C, OBSERVABILITY_VALUES as Cn, SHADCN_BASE_COLOR_VALUES as Cr, FILE_STORAGE_VALUES as Ct, CMS_VALUES as D, PACKAGE_MANAGER_VALUES as Dn, SHADCN_ICON_LIBRARY_VALUES as Dr, FeatureFlagsSchema as Dt, CMSSchema as E, ObservabilitySchema as En, SHADCN_FONT_VALUES as Er, FRONTEND_VALUES as Et, DatabaseSchema as F, PYTHON_TASK_QUEUE_VALUES as Fn, ShadcnColorThemeSchema as Fr, GO_LOGGING_VALUES as Ft, ELIXIR_HTTP_VALUES as G, PythonGraphqlSchema as Gn, TEMPLATE_VALUES as Gr, I18nSchema as Gt, ELIXIR_CACHING_VALUES as H, PythonAiSchema as Hn, StackPartSchema as Hr, GoOrmSchema as Ht, DatabaseSetupSchema as I, PYTHON_VALIDATION_VALUES as In, ShadcnFontSchema as Ir, GO_ORM_VALUES as It, ELIXIR_OBSERVABILITY_VALUES as J, PythonTaskQueueSchema as Jn, TestingSchema as Jr, JAVA_BUILD_TOOL_VALUES as Jt, ELIXIR_JOBS_VALUES as K, PythonOrmSchema as Kn, TESTING_VALUES as Kr, InitResultSchema as Kt, DirectoryConflictSchema as L, PYTHON_WEB_FRAMEWORK_VALUES as Ln, ShadcnIconLibrarySchema as Lr, GO_WEB_FRAMEWORK_VALUES as Lt, DATABASE_SETUP_VALUES as M, PYTHON_GRAPHQL_VALUES as Mn, ServerDeploySchema as Mr, GO_API_VALUES as Mt, DATABASE_VALUES as N, PYTHON_ORM_VALUES as Nn, ShadcnBaseColorSchema as Nr, GO_AUTH_VALUES as Nt, CSSFrameworkSchema as O, PAYMENTS_VALUES as On, SHADCN_RADIUS_VALUES as Or, FileStorageSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, PYTHON_QUALITY_VALUES as Pn, ShadcnBaseSchema as Pr, GO_CLI_VALUES as Pt, ELIXIR_TESTING_VALUES as Q, RUNTIME_VALUES as Qn, VERSION_CHANNEL_VALUES as Qr, JAVA_WEB_FRAMEWORK_VALUES as Qt, ECOSYSTEM_VALUES as R, PackageManagerSchema as Rn, ShadcnRadiusSchema as Rr, GoApiSchema as Rt, BetterTStackConfigFileSchema as S, MobileUISchema as Sn, SERVER_DEPLOY_VALUES as Sr, FEATURE_FLAGS_VALUES as St, CLIInputSchema as T, ORM_VALUES as Tn, SHADCN_COLOR_THEME_VALUES as Tr, FORMS_VALUES as Tt, ELIXIR_DEPLOY_VALUES as U, PythonApiSchema as Un, StackPartSourceSchema as Ur, GoWebFrameworkSchema as Ut, ELIXIR_AUTH_VALUES as V, ProjectNameSchema as Vn, StackPartRoleSchema as Vr, GoLoggingSchema as Vt, ELIXIR_EMAIL_VALUES as W, PythonAuthSchema as Wn, StateManagementSchema as Wr, I18N_VALUES as Wt, ELIXIR_QUALITY_VALUES as X, PythonWebFrameworkSchema as Xn, UI_LIBRARY_VALUES as Xr, JAVA_ORM_VALUES as Xt, ELIXIR_ORM_VALUES as Y, PythonValidationSchema as Yn, UILibrarySchema as Yr, JAVA_LIBRARIES_VALUES as Yt, ELIXIR_REALTIME_VALUES as Z, REALTIME_VALUES as Zn, VALIDATION_VALUES as Zr, JAVA_TESTING_LIBRARIES_VALUES as Zt, AuthSchema as _, MobileNavigationSchema as _n, RustLibrariesSchema as _r, ElixirTestingSchema as _t, ANALYTICS_VALUES as a, JavaWebFrameworkSchema as an, RUST_LIBRARIES_VALUES as ar, ElixirApiSchema as at, BetterFullstackConfigFileSchema as b, MobileStorageSchema as bn, RustWebFrameworkSchema as br, EmailSchema as bt, API_VALUES as c, LoggingSchema as cn, RUST_WEB_FRAMEWORK_VALUES as cr, ElixirDeploySchema as ct, AddInputSchema as d, MOBILE_OTA_VALUES as dn, RustApiSchema as dr, ElixirJobsSchema as dt, VersionChannelSchema as ei, JavaAuthSchema as en, RUST_AUTH_VALUES as er, ELIXIR_WEB_FRAMEWORK_VALUES as et, AddonsSchema as f, MOBILE_PUSH_VALUES as fn, RustAuthSchema as fr, ElixirJsonSchema as ft, AstroIntegrationSchema as g, MobileDeepLinkingSchema as gn, RustFrontendSchema as gr, ElixirRealtimeSchema as gt, AnimationSchema as h, MOBILE_UI_VALUES as hn, RustErrorHandlingSchema as hr, ElixirQualitySchema as ht, AI_VALUES as i, JavaTestingLibrariesSchema as in, RUST_FRONTEND_VALUES as ir, EffectSchema as it, CreateInputSchema as j, PYTHON_AUTH_VALUES as jn, SearchSchema as jr, FrontendSchema as jt, CSS_FRAMEWORK_VALUES as k, PYTHON_AI_VALUES as kn, SHADCN_STYLE_VALUES as kr, FileUploadSchema as kt, ASTRO_INTEGRATION_VALUES as l, MOBILE_DEEP_LINKING_VALUES as ln, RealtimeSchema as lr, ElixirEmailSchema as lt, AnalyticsSchema as m, MOBILE_TESTING_VALUES as mn, RustCliSchema as mr, ElixirOrmSchema as mt, AISchema as n, WebDeploySchema as ni, JavaLibrariesSchema as nn, RUST_CLI_VALUES as nr, EXAMPLES_VALUES as nt, ANIMATION_VALUES as o, JobQueueSchema as on, RUST_LOGGING_VALUES as or, ElixirAuthSchema as ot, AiDocsSchema as p, MOBILE_STORAGE_VALUES as pn, RustCachingSchema as pr, ElixirObservabilitySchema as pt, ELIXIR_JSON_VALUES as q, PythonQualitySchema as qn, TemplateSchema as qr, JAVA_AUTH_VALUES as qt, AI_DOCS_VALUES as r, JavaOrmSchema as rn, RUST_ERROR_HANDLING_VALUES as rr, EcosystemSchema as rt, APISchema as s, LOGGING_VALUES as sn, RUST_ORM_VALUES as sr, ElixirCachingSchema as st, ADDONS_VALUES as t, WEB_DEPLOY_VALUES as ti, JavaBuildToolSchema as tn, RUST_CACHING_VALUES as tr, EMAIL_VALUES as tt, AUTH_VALUES as u, MOBILE_NAVIGATION_VALUES as un, RuntimeSchema as ur, ElixirHttpSchema as ut, BACKEND_VALUES as v, MobileOTASchema as vn, RustLoggingSchema as vr, ElixirValidationSchema as vt, CACHING_VALUES as w, ORMSchema as wn, SHADCN_BASE_VALUES as wr, FILE_UPLOAD_VALUES as wt, BetterFullstackConfigSchema as x, MobileTestingSchema as xn, SEARCH_VALUES as xr, ExamplesSchema as xt, BackendSchema as y, MobilePushSchema as yn, RustOrmSchema as yr, ElixirWebFrameworkSchema as yt, EFFECT_VALUES as z, PaymentsSchema as zn, ShadcnStyleSchema as zr, GoAuthSchema as zt };
1260
- //# sourceMappingURL=schemas-DnEGgQzA.mjs.map
1568
+ export { DotnetJobQueueSchema as $, TemplateSchema as $i, MOBILE_STORAGE_VALUES as $n, RUST_CLI_VALUES as $r, FileUploadSchema as $t, CachingSchema as A, SHADCN_BASE_VALUES as Ai, JAVA_AUTH_VALUES as An, PaymentsSchema as Ar, ElixirCachingSchema as At, DOTNET_OBSERVABILITY_VALUES as B, ShadcnBaseSchema as Bi, JavaBuildToolSchema as Bn, PythonOrmSchema as Br, ElixirRealtimeSchema as Bt, BetterTStackConfigSchema as C, RustOrmSchema as Ci, GoRealtimeSchema as Cn, PYTHON_QUALITY_VALUES as Cr, ELIXIR_WEB_FRAMEWORK_VALUES as Ct, CMS_VALUES as D, SEARCH_VALUES as Di, I18nSchema as Dn, PYTHON_VALIDATION_VALUES as Dr, EffectSchema as Dt, CMSSchema as E, RustWebFrameworkSchema as Ei, I18N_VALUES as En, PYTHON_TESTING_VALUES as Er, EcosystemSchema as Et, DOTNET_API_VALUES as F, SHADCN_STYLE_VALUES as Fi, JAVA_TESTING_LIBRARIES_VALUES as Fn, PythonAuthSchema as Fr, ElixirJsonSchema as Ft, DOTNET_WEB_FRAMEWORK_VALUES as G, ShadcnStyleSchema as Gi, JavaWebFrameworkSchema as Gn, PythonValidationSchema as Gr, ExamplesSchema as Gt, DOTNET_REALTIME_VALUES as H, ShadcnFontSchema as Hi, JavaLoggingSchema as Hn, PythonRealtimeSchema as Hr, ElixirValidationSchema as Ht, DOTNET_AUTH_VALUES as I, STATE_MANAGEMENT_VALUES as Ii, JAVA_WEB_FRAMEWORK_VALUES as In, PythonCachingSchema as Ir, ElixirLibrariesSchema as It, DirectoryConflictSchema as J, StackPartSchema as Ji, LoggingSchema as Jn, REALTIME_VALUES as Jr, FILE_UPLOAD_VALUES as Jt, DatabaseSchema as K, StackPartEcosystemSchema as Ki, JobQueueSchema as Kn, PythonWebFrameworkSchema as Kr, FEATURE_FLAGS_VALUES as Kt, DOTNET_CACHING_VALUES as L, SearchSchema as Li, JOB_QUEUE_VALUES as Ln, PythonCliSchema as Lr, ElixirObservabilitySchema as Lt, DATABASE_SETUP_VALUES as M, SHADCN_FONT_VALUES as Mi, JAVA_LIBRARIES_VALUES as Mn, ProjectNameSchema as Mr, ElixirEmailSchema as Mt, DATABASE_VALUES as N, SHADCN_ICON_LIBRARY_VALUES as Ni, JAVA_LOGGING_VALUES as Nn, PythonAiSchema as Nr, ElixirHttpSchema as Nt, CSSFrameworkSchema as O, SERVER_DEPLOY_VALUES as Oi, InitResultSchema as On, PYTHON_WEB_FRAMEWORK_VALUES as Or, ElixirApiSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, SHADCN_RADIUS_VALUES as Pi, JAVA_ORM_VALUES as Pn, PythonApiSchema as Pr, ElixirJobsSchema as Pt, DotnetDeploySchema as Q, TESTING_VALUES as Qi, MOBILE_PUSH_VALUES as Qn, RUST_CACHING_VALUES as Qr, FileStorageSchema as Qt, DOTNET_DEPLOY_VALUES as R, ServerDeploySchema as Ri, JavaApiSchema as Rn, PythonGraphqlSchema as Rr, ElixirOrmSchema as Rt, BetterTStackConfigFileSchema as S, RustObservabilitySchema as Si, GoOrmSchema as Sn, PYTHON_ORM_VALUES as Sr, ELIXIR_VALIDATION_VALUES as St, CLIInputSchema as T, RustTemplatingSchema as Ti, GoWebFrameworkSchema as Tn, PYTHON_TASK_QUEUE_VALUES as Tr, EXAMPLES_VALUES as Tt, DOTNET_TESTING_VALUES as U, ShadcnIconLibrarySchema as Ui, JavaOrmSchema as Un, PythonTaskQueueSchema as Ur, ElixirWebFrameworkSchema as Ut, DOTNET_ORM_VALUES as V, ShadcnColorThemeSchema as Vi, JavaLibrariesSchema as Vn, PythonQualitySchema as Vr, ElixirTestingSchema as Vt, DOTNET_VALIDATION_VALUES as W, ShadcnRadiusSchema as Wi, JavaTestingLibrariesSchema as Wn, PythonTestingSchema as Wr, EmailSchema as Wt, DotnetAuthSchema as X, StateManagementSchema as Xi, MOBILE_NAVIGATION_VALUES as Xn, RUST_API_VALUES as Xr, FRONTEND_VALUES as Xt, DotnetApiSchema as Y, StackPartSourceSchema as Yi, MOBILE_DEEP_LINKING_VALUES as Yn, RUNTIME_VALUES as Yr, FORMS_VALUES as Yt, DotnetCachingSchema as Z, TEMPLATE_VALUES as Zi, MOBILE_OTA_VALUES as Zn, RUST_AUTH_VALUES as Zr, FeatureFlagsSchema as Zt, AuthSchema as _, RustErrorHandlingSchema as _i, GoCliSchema as _n, PYTHON_AUTH_VALUES as _r, ELIXIR_OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, ValidationSchema as aa, RUST_OBSERVABILITY_VALUES as ai, GO_CLI_VALUES as an, MobilePushSchema as ar, DotnetWebFrameworkSchema as at, BetterFullstackConfigFileSchema as b, RustLoggingSchema as bi, GoMessageQueueSchema as bn, PYTHON_GRAPHQL_VALUES as br, ELIXIR_REALTIME_VALUES as bt, API_VALUES as c, WebDeploySchema as ca, RUST_TEMPLATING_VALUES as ci, GO_MESSAGE_QUEUE_VALUES as cn, MobileUISchema as cr, ELIXIR_API_VALUES as ct, AddInputSchema as d, RealtimeSchema as di, GO_REALTIME_VALUES as dn, ORM_VALUES as dr, ELIXIR_DEPLOY_VALUES as dt, TestingSchema as ea, RUST_ERROR_HANDLING_VALUES as ei, FormsSchema as en, MOBILE_TESTING_VALUES as er, DotnetObservabilitySchema as et, AddonsSchema as f, RuntimeSchema as fi, GO_TESTING_VALUES as fn, ObservabilitySchema as fr, ELIXIR_EMAIL_VALUES as ft, AstroIntegrationSchema as g, RustCliSchema as gi, GoCachingSchema as gn, PYTHON_API_VALUES as gr, ELIXIR_LIBRARIES_VALUES as gt, AnimationSchema as h, RustCachingSchema as hi, GoAuthSchema as hn, PYTHON_AI_VALUES as hr, ELIXIR_JSON_VALUES as ht, AI_VALUES as i, VERSION_CHANNEL_VALUES as ia, RUST_MESSAGE_QUEUE_VALUES as ii, GO_CACHING_VALUES as in, MobileOTASchema as ir, DotnetValidationSchema as it, CreateInputSchema as j, SHADCN_COLOR_THEME_VALUES as ji, JAVA_BUILD_TOOL_VALUES as jn, ProjectConfigSchema as jr, ElixirDeploySchema as jt, CSS_FRAMEWORK_VALUES as k, SHADCN_BASE_COLOR_VALUES as ki, JAVA_API_VALUES as kn, PackageManagerSchema as kr, ElixirAuthSchema as kt, ASTRO_INTEGRATION_VALUES as l, RUST_WEB_FRAMEWORK_VALUES as li, GO_OBSERVABILITY_VALUES as ln, OBSERVABILITY_VALUES as lr, ELIXIR_AUTH_VALUES as lt, AnalyticsSchema as m, RustAuthSchema as mi, GoApiSchema as mn, PAYMENTS_VALUES as mr, ELIXIR_JOBS_VALUES as mt, AISchema as n, UI_LIBRARY_VALUES as na, RUST_LIBRARIES_VALUES as ni, GO_API_VALUES as nn, MobileDeepLinkingSchema as nr, DotnetRealtimeSchema as nt, ANIMATION_VALUES as o, VersionChannelSchema as oa, RUST_ORM_VALUES as oi, GO_CONFIG_VALUES as on, MobileStorageSchema as or, ECOSYSTEM_VALUES as ot, AiDocsSchema as p, RustApiSchema as pi, GO_WEB_FRAMEWORK_VALUES as pn, PACKAGE_MANAGER_VALUES as pr, ELIXIR_HTTP_VALUES as pt, DatabaseSetupSchema as q, StackPartRoleSchema as qi, LOGGING_VALUES as qn, RATE_LIMIT_VALUES as qr, FILE_STORAGE_VALUES as qt, AI_DOCS_VALUES as r, VALIDATION_VALUES as ra, RUST_LOGGING_VALUES as ri, GO_AUTH_VALUES as rn, MobileNavigationSchema as rr, DotnetTestingSchema as rt, APISchema as s, WEB_DEPLOY_VALUES as sa, RUST_REALTIME_VALUES as si, GO_LOGGING_VALUES as sn, MobileTestingSchema as sr, EFFECT_VALUES as st, ADDONS_VALUES as t, UILibrarySchema as ta, RUST_FRONTEND_VALUES as ti, FrontendSchema as tn, MOBILE_UI_VALUES as tr, DotnetOrmSchema as tt, AUTH_VALUES as u, RateLimitSchema as ui, GO_ORM_VALUES as un, ORMSchema as ur, ELIXIR_CACHING_VALUES as ut, BACKEND_VALUES as v, RustFrontendSchema as vi, GoConfigSchema as vn, PYTHON_CACHING_VALUES as vr, ELIXIR_ORM_VALUES as vt, CACHING_VALUES as w, RustRealtimeSchema as wi, GoTestingSchema as wn, PYTHON_REALTIME_VALUES as wr, EMAIL_VALUES as wt, BetterFullstackConfigSchema as x, RustMessageQueueSchema as xi, GoObservabilitySchema as xn, PYTHON_OBSERVABILITY_VALUES as xr, ELIXIR_TESTING_VALUES as xt, BackendSchema as y, RustLibrariesSchema as yi, GoLoggingSchema as yn, PYTHON_CLI_VALUES as yr, ELIXIR_QUALITY_VALUES as yt, DOTNET_JOB_QUEUE_VALUES as z, ShadcnBaseColorSchema as zi, JavaAuthSchema as zn, PythonObservabilitySchema as zr, ElixirQualitySchema as zt };
1569
+ //# sourceMappingURL=schemas-D1fG1cXJ.mjs.map