@better-fullstack/types 2.0.1 → 2.0.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.
- package/dist/{defaults-DNmNiuxG.mjs → defaults-Cy0_ttEE.mjs} +31 -1
- package/dist/defaults-Cy0_ttEE.mjs.map +1 -0
- package/dist/{defaults-ByJzfP7_.d.mts → defaults-zyxI-U_5.d.mts} +2 -2
- package/dist/defaults-zyxI-U_5.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/json-schema.d.mts +2196 -206
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-62dqb8iS.d.mts → schemas-BTO7jwoE.d.mts} +2034 -218
- package/dist/schemas-BTO7jwoE.d.mts.map +1 -0
- package/dist/{schemas-DnEGgQzA.mjs → schemas-D444b8s8.mjs} +321 -14
- package/dist/schemas-D444b8s8.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-UgPd4sup.d.mts → stack-graph-DH1m1ONQ.d.mts} +19 -4
- package/dist/stack-graph-DH1m1ONQ.d.mts.map +1 -0
- package/dist/stack-graph-DXh8F1TL.mjs +2114 -0
- package/dist/stack-graph-DXh8F1TL.mjs.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-COVG5IPm.mjs → stack-translation-Bb3LIDTp.mjs} +4054 -3026
- package/dist/stack-translation-Bb3LIDTp.mjs.map +1 -0
- package/dist/{stack-translation-CYNMQUUu.d.mts → stack-translation-LwAKaXg1.d.mts} +116 -34
- package/dist/stack-translation-LwAKaXg1.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/types-C4r4ucMM.d.mts +153 -0
- package/dist/types-C4r4ucMM.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-ByJzfP7_.d.mts.map +0 -1
- package/dist/defaults-DNmNiuxG.mjs.map +0 -1
- package/dist/schemas-62dqb8iS.d.mts.map +0 -1
- package/dist/schemas-DnEGgQzA.mjs.map +0 -1
- package/dist/stack-graph-C2tzuzRe.mjs +0 -585
- package/dist/stack-graph-C2tzuzRe.mjs.map +0 -1
- package/dist/stack-graph-UgPd4sup.d.mts.map +0 -1
- package/dist/stack-translation-COVG5IPm.mjs.map +0 -1
- package/dist/stack-translation-CYNMQUUu.d.mts.map +0 -1
- package/dist/types-CWpfWGSN.d.mts +0 -123
- 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
|
-
|
|
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",
|
|
@@ -153,6 +172,7 @@ const AddonsSchema = z.enum([
|
|
|
153
172
|
"tanstack-virtual",
|
|
154
173
|
"tanstack-db",
|
|
155
174
|
"tanstack-pacer",
|
|
175
|
+
"backend-utils",
|
|
156
176
|
"docker-compose",
|
|
157
177
|
"none"
|
|
158
178
|
]).describe("Additional addons");
|
|
@@ -195,12 +215,15 @@ const APISchema = z.enum([
|
|
|
195
215
|
]).describe("API type");
|
|
196
216
|
const AuthSchema = z.enum([
|
|
197
217
|
"better-auth",
|
|
218
|
+
"better-auth-organizations",
|
|
198
219
|
"go-better-auth",
|
|
199
220
|
"clerk",
|
|
200
221
|
"nextauth",
|
|
201
222
|
"stack-auth",
|
|
202
223
|
"supabase-auth",
|
|
203
224
|
"auth0",
|
|
225
|
+
"workos",
|
|
226
|
+
"kinde",
|
|
204
227
|
"none"
|
|
205
228
|
]).describe("Authentication provider");
|
|
206
229
|
const PaymentsSchema = z.enum([
|
|
@@ -215,6 +238,8 @@ const WebDeploySchema = z.enum([
|
|
|
215
238
|
"cloudflare",
|
|
216
239
|
"fly",
|
|
217
240
|
"railway",
|
|
241
|
+
"render",
|
|
242
|
+
"netlify",
|
|
218
243
|
"docker",
|
|
219
244
|
"sst",
|
|
220
245
|
"vercel",
|
|
@@ -224,6 +249,8 @@ const ServerDeploySchema = z.enum([
|
|
|
224
249
|
"cloudflare",
|
|
225
250
|
"fly",
|
|
226
251
|
"railway",
|
|
252
|
+
"render",
|
|
253
|
+
"netlify",
|
|
227
254
|
"docker",
|
|
228
255
|
"sst",
|
|
229
256
|
"vercel",
|
|
@@ -247,7 +274,7 @@ const EffectSchema = z.enum([
|
|
|
247
274
|
"effect",
|
|
248
275
|
"effect-full",
|
|
249
276
|
"none"
|
|
250
|
-
]).describe("Effect ecosystem (effect-full includes
|
|
277
|
+
]).describe("Effect ecosystem (effect-full includes effect/Schema, @effect/platform, @effect/sql)");
|
|
251
278
|
const StateManagementSchema = z.enum([
|
|
252
279
|
"zustand",
|
|
253
280
|
"jotai",
|
|
@@ -323,6 +350,11 @@ const CMSSchema = z.enum([
|
|
|
323
350
|
"none"
|
|
324
351
|
]).describe("Headless CMS solution");
|
|
325
352
|
const CachingSchema = z.enum(["upstash-redis", "none"]).describe("Caching solution (upstash-redis for serverless Redis)");
|
|
353
|
+
const RateLimitSchema = z.enum([
|
|
354
|
+
"arcjet",
|
|
355
|
+
"upstash-ratelimit",
|
|
356
|
+
"none"
|
|
357
|
+
]).describe("Rate limiting and abuse protection");
|
|
326
358
|
const I18nSchema = z.enum([
|
|
327
359
|
"i18next",
|
|
328
360
|
"next-intl",
|
|
@@ -365,6 +397,9 @@ const ObservabilitySchema = z.enum([
|
|
|
365
397
|
"opentelemetry",
|
|
366
398
|
"sentry",
|
|
367
399
|
"grafana",
|
|
400
|
+
"datadog",
|
|
401
|
+
"axiom",
|
|
402
|
+
"betterstack",
|
|
368
403
|
"none"
|
|
369
404
|
]).describe("Observability and distributed tracing");
|
|
370
405
|
const FeatureFlagsSchema = z.enum([
|
|
@@ -464,18 +499,32 @@ const RustCachingSchema = z.enum([
|
|
|
464
499
|
"redis",
|
|
465
500
|
"none"
|
|
466
501
|
]).describe("Rust caching library");
|
|
467
|
-
const RustAuthSchema = z.enum([
|
|
502
|
+
const RustAuthSchema = z.enum([
|
|
503
|
+
"oauth2",
|
|
504
|
+
"torii",
|
|
505
|
+
"none"
|
|
506
|
+
]).describe("Rust authentication library");
|
|
507
|
+
const RustRealtimeSchema = z.enum(["tokio-tungstenite", "none"]).describe("Rust realtime/WebSocket library");
|
|
508
|
+
const RustMessageQueueSchema = z.enum(["lapin", "none"]).describe("Rust message queue library");
|
|
509
|
+
const RustObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Rust observability/tracing library");
|
|
510
|
+
const RustTemplatingSchema = z.enum([
|
|
511
|
+
"askama",
|
|
512
|
+
"tera",
|
|
513
|
+
"none"
|
|
514
|
+
]).describe("Rust template engine");
|
|
468
515
|
const PythonWebFrameworkSchema = z.enum([
|
|
469
516
|
"fastapi",
|
|
470
517
|
"django",
|
|
471
518
|
"flask",
|
|
472
519
|
"litestar",
|
|
520
|
+
"starlette",
|
|
473
521
|
"none"
|
|
474
522
|
]).describe("Python web framework");
|
|
475
523
|
const PythonOrmSchema = z.enum([
|
|
476
524
|
"sqlalchemy",
|
|
477
525
|
"sqlmodel",
|
|
478
526
|
"tortoise-orm",
|
|
527
|
+
"peewee",
|
|
479
528
|
"none"
|
|
480
529
|
]).describe("Python ORM/database layer");
|
|
481
530
|
const PythonValidationSchema = z.enum(["pydantic", "none"]).describe("Python validation library");
|
|
@@ -487,11 +536,15 @@ const PythonAiSchema = z.enum([
|
|
|
487
536
|
"langgraph",
|
|
488
537
|
"crewai",
|
|
489
538
|
"haystack",
|
|
539
|
+
"pydantic-ai",
|
|
540
|
+
"google-adk",
|
|
541
|
+
"smolagents",
|
|
490
542
|
"none"
|
|
491
543
|
]).describe("Python AI/ML framework");
|
|
492
544
|
const PythonAuthSchema = z.enum([
|
|
493
545
|
"authlib",
|
|
494
546
|
"jwt",
|
|
547
|
+
"fastapi-users",
|
|
495
548
|
"none"
|
|
496
549
|
]).describe("Python authentication library");
|
|
497
550
|
const PythonApiSchema = z.enum([
|
|
@@ -504,6 +557,7 @@ const PythonTaskQueueSchema = z.enum([
|
|
|
504
557
|
"rq",
|
|
505
558
|
"dramatiq",
|
|
506
559
|
"huey",
|
|
560
|
+
"taskiq",
|
|
507
561
|
"none"
|
|
508
562
|
]).describe("Python task queue");
|
|
509
563
|
const PythonGraphqlSchema = z.enum([
|
|
@@ -517,6 +571,28 @@ const PythonQualitySchema = z.enum([
|
|
|
517
571
|
"pyright",
|
|
518
572
|
"none"
|
|
519
573
|
]).describe("Python code quality tool");
|
|
574
|
+
const PythonTestingSchema = z.enum([
|
|
575
|
+
"pytest",
|
|
576
|
+
"hypothesis",
|
|
577
|
+
"none"
|
|
578
|
+
]).describe("Python testing libraries");
|
|
579
|
+
const PythonCachingSchema = z.enum([
|
|
580
|
+
"redis",
|
|
581
|
+
"aiocache",
|
|
582
|
+
"none"
|
|
583
|
+
]).describe("Python caching library");
|
|
584
|
+
const PythonRealtimeSchema = z.enum([
|
|
585
|
+
"python-socketio",
|
|
586
|
+
"websockets",
|
|
587
|
+
"none"
|
|
588
|
+
]).describe("Python realtime/WebSocket library");
|
|
589
|
+
const PythonObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Python observability/tracing library");
|
|
590
|
+
const PythonCliSchema = z.enum([
|
|
591
|
+
"typer",
|
|
592
|
+
"click",
|
|
593
|
+
"rich",
|
|
594
|
+
"none"
|
|
595
|
+
]).describe("Python CLI tooling libraries");
|
|
520
596
|
const GoWebFrameworkSchema = z.enum([
|
|
521
597
|
"gin",
|
|
522
598
|
"echo",
|
|
@@ -530,7 +606,11 @@ const GoOrmSchema = z.enum([
|
|
|
530
606
|
"ent",
|
|
531
607
|
"none"
|
|
532
608
|
]).describe("Go ORM/database layer");
|
|
533
|
-
const GoApiSchema = z.enum([
|
|
609
|
+
const GoApiSchema = z.enum([
|
|
610
|
+
"grpc-go",
|
|
611
|
+
"gqlgen",
|
|
612
|
+
"none"
|
|
613
|
+
]).describe("Go API layer (gRPC, GraphQL)");
|
|
534
614
|
const GoCliSchema = z.enum([
|
|
535
615
|
"cobra",
|
|
536
616
|
"bubbletea",
|
|
@@ -547,8 +627,35 @@ const GoLoggingSchema = z.enum([
|
|
|
547
627
|
const GoAuthSchema = z.enum([
|
|
548
628
|
"casbin",
|
|
549
629
|
"jwt",
|
|
630
|
+
"goth",
|
|
550
631
|
"none"
|
|
551
632
|
]).describe("Go authentication library");
|
|
633
|
+
const GoTestingSchema = z.enum([
|
|
634
|
+
"testify",
|
|
635
|
+
"gomock",
|
|
636
|
+
"none"
|
|
637
|
+
]).describe("Go testing libraries");
|
|
638
|
+
const GoRealtimeSchema = z.enum([
|
|
639
|
+
"gorilla-websocket",
|
|
640
|
+
"centrifuge",
|
|
641
|
+
"none"
|
|
642
|
+
]).describe("Go realtime/WebSocket library");
|
|
643
|
+
const GoMessageQueueSchema = z.enum([
|
|
644
|
+
"nats",
|
|
645
|
+
"watermill",
|
|
646
|
+
"none"
|
|
647
|
+
]).describe("Go message queue/eventing library");
|
|
648
|
+
const GoCachingSchema = z.enum([
|
|
649
|
+
"redis",
|
|
650
|
+
"ristretto",
|
|
651
|
+
"none"
|
|
652
|
+
]).describe("Go caching library");
|
|
653
|
+
const GoConfigSchema = z.enum([
|
|
654
|
+
"viper",
|
|
655
|
+
"koanf",
|
|
656
|
+
"none"
|
|
657
|
+
]).describe("Go configuration management library");
|
|
658
|
+
const GoObservabilitySchema = z.enum(["opentelemetry", "none"]).describe("Go observability/tracing library");
|
|
552
659
|
const JavaWebFrameworkSchema = z.enum([
|
|
553
660
|
"spring-boot",
|
|
554
661
|
"quarkus",
|
|
@@ -559,8 +666,19 @@ const JavaBuildToolSchema = z.enum([
|
|
|
559
666
|
"gradle",
|
|
560
667
|
"none"
|
|
561
668
|
]).describe("Java build tool");
|
|
562
|
-
const JavaOrmSchema = z.enum([
|
|
563
|
-
|
|
669
|
+
const JavaOrmSchema = z.enum([
|
|
670
|
+
"spring-data-jpa",
|
|
671
|
+
"jooq",
|
|
672
|
+
"mybatis",
|
|
673
|
+
"none"
|
|
674
|
+
]).describe("Java ORM/database layer");
|
|
675
|
+
const JavaAuthSchema = z.enum([
|
|
676
|
+
"spring-security",
|
|
677
|
+
"keycloak",
|
|
678
|
+
"none"
|
|
679
|
+
]).describe("Java authentication library");
|
|
680
|
+
const JavaApiSchema = z.enum(["spring-graphql", "none"]).describe("Java API layer");
|
|
681
|
+
const JavaLoggingSchema = z.enum(["logback", "none"]).describe("Java logging configuration");
|
|
564
682
|
const JavaLibrariesSchema = z.enum([
|
|
565
683
|
"spring-actuator",
|
|
566
684
|
"spring-validation",
|
|
@@ -578,6 +696,8 @@ const JavaLibrariesSchema = z.enum([
|
|
|
578
696
|
"spring-devtools",
|
|
579
697
|
"micrometer-prometheus",
|
|
580
698
|
"thymeleaf",
|
|
699
|
+
"spring-amqp",
|
|
700
|
+
"opentelemetry-java",
|
|
581
701
|
"none"
|
|
582
702
|
]).describe("Java application libraries");
|
|
583
703
|
const JavaTestingLibrariesSchema = z.enum([
|
|
@@ -592,6 +712,67 @@ const JavaTestingLibrariesSchema = z.enum([
|
|
|
592
712
|
"jqwik",
|
|
593
713
|
"none"
|
|
594
714
|
]).describe("Java testing libraries");
|
|
715
|
+
const DotnetWebFrameworkSchema = z.enum([
|
|
716
|
+
"aspnet-minimal",
|
|
717
|
+
"aspnet-mvc",
|
|
718
|
+
"aspnet-blazor",
|
|
719
|
+
"none"
|
|
720
|
+
]).describe(".NET web framework");
|
|
721
|
+
const DotnetOrmSchema = z.enum([
|
|
722
|
+
"ef-core",
|
|
723
|
+
"dapper",
|
|
724
|
+
"linq2db",
|
|
725
|
+
"none"
|
|
726
|
+
]).describe(".NET data access library");
|
|
727
|
+
const DotnetAuthSchema = z.enum([
|
|
728
|
+
"aspnet-identity",
|
|
729
|
+
"duende-identityserver",
|
|
730
|
+
"auth0-aspnet",
|
|
731
|
+
"none"
|
|
732
|
+
]).describe(".NET authentication library");
|
|
733
|
+
const DotnetApiSchema = z.enum([
|
|
734
|
+
"minimal-api",
|
|
735
|
+
"graphql-hotchocolate",
|
|
736
|
+
"grpc-dotnet",
|
|
737
|
+
"none"
|
|
738
|
+
]).describe(".NET API style");
|
|
739
|
+
const DotnetTestingSchema = z.enum([
|
|
740
|
+
"xunit",
|
|
741
|
+
"nunit",
|
|
742
|
+
"moq",
|
|
743
|
+
"testcontainers-dotnet",
|
|
744
|
+
"none"
|
|
745
|
+
]).describe(".NET testing libraries");
|
|
746
|
+
const DotnetJobQueueSchema = z.enum([
|
|
747
|
+
"hangfire",
|
|
748
|
+
"quartz-net",
|
|
749
|
+
"hosted-services",
|
|
750
|
+
"none"
|
|
751
|
+
]).describe(".NET background jobs");
|
|
752
|
+
const DotnetRealtimeSchema = z.enum(["signalr", "none"]).describe(".NET realtime library");
|
|
753
|
+
const DotnetObservabilitySchema = z.enum([
|
|
754
|
+
"opentelemetry-dotnet",
|
|
755
|
+
"serilog",
|
|
756
|
+
"nlog",
|
|
757
|
+
"health-checks",
|
|
758
|
+
"none"
|
|
759
|
+
]).describe(".NET observability and logging libraries");
|
|
760
|
+
const DotnetValidationSchema = z.enum([
|
|
761
|
+
"fluentvalidation",
|
|
762
|
+
"data-annotations",
|
|
763
|
+
"none"
|
|
764
|
+
]).describe(".NET validation library");
|
|
765
|
+
const DotnetCachingSchema = z.enum([
|
|
766
|
+
"redis",
|
|
767
|
+
"memory-cache",
|
|
768
|
+
"none"
|
|
769
|
+
]).describe(".NET caching library");
|
|
770
|
+
const DotnetDeploySchema = z.enum([
|
|
771
|
+
"docker",
|
|
772
|
+
"azure",
|
|
773
|
+
"aws",
|
|
774
|
+
"none"
|
|
775
|
+
]).describe(".NET deployment target");
|
|
595
776
|
const ElixirWebFrameworkSchema = z.enum([
|
|
596
777
|
"phoenix",
|
|
597
778
|
"phoenix-live-view",
|
|
@@ -611,8 +792,14 @@ const ElixirAuthSchema = z.enum([
|
|
|
611
792
|
const ElixirApiSchema = z.enum([
|
|
612
793
|
"rest",
|
|
613
794
|
"absinthe",
|
|
795
|
+
"grpc",
|
|
614
796
|
"none"
|
|
615
797
|
]).describe("Elixir API layer");
|
|
798
|
+
const ElixirLibrariesSchema = z.enum([
|
|
799
|
+
"broadway",
|
|
800
|
+
"nx",
|
|
801
|
+
"none"
|
|
802
|
+
]).describe("Elixir application libraries");
|
|
616
803
|
const ElixirRealtimeSchema = z.enum([
|
|
617
804
|
"channels",
|
|
618
805
|
"presence",
|
|
@@ -848,6 +1035,7 @@ const CreateInputSchema = z.object({
|
|
|
848
1035
|
analytics: AnalyticsSchema.optional(),
|
|
849
1036
|
cms: CMSSchema.optional(),
|
|
850
1037
|
caching: CachingSchema.optional(),
|
|
1038
|
+
rateLimit: RateLimitSchema.optional(),
|
|
851
1039
|
i18n: I18nSchema.optional(),
|
|
852
1040
|
search: SearchSchema.optional(),
|
|
853
1041
|
fileStorage: FileStorageSchema.optional(),
|
|
@@ -868,6 +1056,10 @@ const CreateInputSchema = z.object({
|
|
|
868
1056
|
rustErrorHandling: RustErrorHandlingSchema.optional(),
|
|
869
1057
|
rustCaching: RustCachingSchema.optional(),
|
|
870
1058
|
rustAuth: RustAuthSchema.optional(),
|
|
1059
|
+
rustRealtime: RustRealtimeSchema.optional(),
|
|
1060
|
+
rustMessageQueue: RustMessageQueueSchema.optional(),
|
|
1061
|
+
rustObservability: RustObservabilitySchema.optional(),
|
|
1062
|
+
rustTemplating: RustTemplatingSchema.optional(),
|
|
871
1063
|
pythonWebFramework: PythonWebFrameworkSchema.optional(),
|
|
872
1064
|
pythonOrm: PythonOrmSchema.optional(),
|
|
873
1065
|
pythonValidation: PythonValidationSchema.optional(),
|
|
@@ -877,18 +1069,42 @@ const CreateInputSchema = z.object({
|
|
|
877
1069
|
pythonTaskQueue: PythonTaskQueueSchema.optional(),
|
|
878
1070
|
pythonGraphql: PythonGraphqlSchema.optional(),
|
|
879
1071
|
pythonQuality: PythonQualitySchema.optional(),
|
|
1072
|
+
pythonTesting: z.array(PythonTestingSchema).optional(),
|
|
1073
|
+
pythonCaching: PythonCachingSchema.optional(),
|
|
1074
|
+
pythonRealtime: PythonRealtimeSchema.optional(),
|
|
1075
|
+
pythonObservability: PythonObservabilitySchema.optional(),
|
|
1076
|
+
pythonCli: z.array(PythonCliSchema).optional(),
|
|
880
1077
|
goWebFramework: GoWebFrameworkSchema.optional(),
|
|
881
1078
|
goOrm: GoOrmSchema.optional(),
|
|
882
1079
|
goApi: GoApiSchema.optional(),
|
|
883
1080
|
goCli: GoCliSchema.optional(),
|
|
884
1081
|
goLogging: GoLoggingSchema.optional(),
|
|
885
1082
|
goAuth: GoAuthSchema.optional(),
|
|
1083
|
+
goTesting: z.array(GoTestingSchema).optional(),
|
|
1084
|
+
goRealtime: GoRealtimeSchema.optional(),
|
|
1085
|
+
goMessageQueue: GoMessageQueueSchema.optional(),
|
|
1086
|
+
goCaching: GoCachingSchema.optional(),
|
|
1087
|
+
goConfig: GoConfigSchema.optional(),
|
|
1088
|
+
goObservability: GoObservabilitySchema.optional(),
|
|
886
1089
|
javaWebFramework: JavaWebFrameworkSchema.optional(),
|
|
887
1090
|
javaBuildTool: JavaBuildToolSchema.optional(),
|
|
888
1091
|
javaOrm: JavaOrmSchema.optional(),
|
|
889
1092
|
javaAuth: JavaAuthSchema.optional(),
|
|
1093
|
+
javaApi: JavaApiSchema.optional(),
|
|
1094
|
+
javaLogging: JavaLoggingSchema.optional(),
|
|
890
1095
|
javaLibraries: z.array(JavaLibrariesSchema).optional(),
|
|
891
1096
|
javaTestingLibraries: z.array(JavaTestingLibrariesSchema).optional(),
|
|
1097
|
+
dotnetWebFramework: DotnetWebFrameworkSchema.optional(),
|
|
1098
|
+
dotnetOrm: DotnetOrmSchema.optional(),
|
|
1099
|
+
dotnetAuth: DotnetAuthSchema.optional(),
|
|
1100
|
+
dotnetApi: DotnetApiSchema.optional(),
|
|
1101
|
+
dotnetTesting: z.array(DotnetTestingSchema).optional(),
|
|
1102
|
+
dotnetJobQueue: DotnetJobQueueSchema.optional(),
|
|
1103
|
+
dotnetRealtime: DotnetRealtimeSchema.optional(),
|
|
1104
|
+
dotnetObservability: z.array(DotnetObservabilitySchema).optional(),
|
|
1105
|
+
dotnetValidation: DotnetValidationSchema.optional(),
|
|
1106
|
+
dotnetCaching: DotnetCachingSchema.optional(),
|
|
1107
|
+
dotnetDeploy: DotnetDeploySchema.optional(),
|
|
892
1108
|
elixirWebFramework: ElixirWebFrameworkSchema.optional(),
|
|
893
1109
|
elixirOrm: ElixirOrmSchema.optional(),
|
|
894
1110
|
elixirAuth: ElixirAuthSchema.optional(),
|
|
@@ -904,6 +1120,7 @@ const CreateInputSchema = z.object({
|
|
|
904
1120
|
elixirTesting: ElixirTestingSchema.optional(),
|
|
905
1121
|
elixirQuality: ElixirQualitySchema.optional(),
|
|
906
1122
|
elixirDeploy: ElixirDeploySchema.optional(),
|
|
1123
|
+
elixirLibraries: z.array(ElixirLibrariesSchema).optional(),
|
|
907
1124
|
aiDocs: z.array(AiDocsSchema).optional(),
|
|
908
1125
|
part: z.array(z.string()).optional()
|
|
909
1126
|
});
|
|
@@ -965,6 +1182,7 @@ const ProjectConfigSchema = z.object({
|
|
|
965
1182
|
analytics: AnalyticsSchema,
|
|
966
1183
|
cms: CMSSchema,
|
|
967
1184
|
caching: CachingSchema,
|
|
1185
|
+
rateLimit: RateLimitSchema,
|
|
968
1186
|
i18n: I18nSchema,
|
|
969
1187
|
search: SearchSchema,
|
|
970
1188
|
fileStorage: FileStorageSchema,
|
|
@@ -985,6 +1203,10 @@ const ProjectConfigSchema = z.object({
|
|
|
985
1203
|
rustErrorHandling: RustErrorHandlingSchema,
|
|
986
1204
|
rustCaching: RustCachingSchema,
|
|
987
1205
|
rustAuth: RustAuthSchema,
|
|
1206
|
+
rustRealtime: RustRealtimeSchema,
|
|
1207
|
+
rustMessageQueue: RustMessageQueueSchema,
|
|
1208
|
+
rustObservability: RustObservabilitySchema,
|
|
1209
|
+
rustTemplating: RustTemplatingSchema,
|
|
988
1210
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
989
1211
|
pythonOrm: PythonOrmSchema,
|
|
990
1212
|
pythonValidation: PythonValidationSchema,
|
|
@@ -994,18 +1216,42 @@ const ProjectConfigSchema = z.object({
|
|
|
994
1216
|
pythonTaskQueue: PythonTaskQueueSchema,
|
|
995
1217
|
pythonGraphql: PythonGraphqlSchema,
|
|
996
1218
|
pythonQuality: PythonQualitySchema,
|
|
1219
|
+
pythonTesting: z.array(PythonTestingSchema),
|
|
1220
|
+
pythonCaching: PythonCachingSchema,
|
|
1221
|
+
pythonRealtime: PythonRealtimeSchema,
|
|
1222
|
+
pythonObservability: PythonObservabilitySchema,
|
|
1223
|
+
pythonCli: z.array(PythonCliSchema),
|
|
997
1224
|
goWebFramework: GoWebFrameworkSchema,
|
|
998
1225
|
goOrm: GoOrmSchema,
|
|
999
1226
|
goApi: GoApiSchema,
|
|
1000
1227
|
goCli: GoCliSchema,
|
|
1001
1228
|
goLogging: GoLoggingSchema,
|
|
1002
1229
|
goAuth: GoAuthSchema,
|
|
1230
|
+
goTesting: z.array(GoTestingSchema),
|
|
1231
|
+
goRealtime: GoRealtimeSchema,
|
|
1232
|
+
goMessageQueue: GoMessageQueueSchema,
|
|
1233
|
+
goCaching: GoCachingSchema,
|
|
1234
|
+
goConfig: GoConfigSchema,
|
|
1235
|
+
goObservability: GoObservabilitySchema,
|
|
1003
1236
|
javaWebFramework: JavaWebFrameworkSchema,
|
|
1004
1237
|
javaBuildTool: JavaBuildToolSchema,
|
|
1005
1238
|
javaOrm: JavaOrmSchema,
|
|
1006
1239
|
javaAuth: JavaAuthSchema,
|
|
1240
|
+
javaApi: JavaApiSchema,
|
|
1241
|
+
javaLogging: JavaLoggingSchema,
|
|
1007
1242
|
javaLibraries: z.array(JavaLibrariesSchema),
|
|
1008
1243
|
javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
|
|
1244
|
+
dotnetWebFramework: DotnetWebFrameworkSchema,
|
|
1245
|
+
dotnetOrm: DotnetOrmSchema,
|
|
1246
|
+
dotnetAuth: DotnetAuthSchema,
|
|
1247
|
+
dotnetApi: DotnetApiSchema,
|
|
1248
|
+
dotnetTesting: z.array(DotnetTestingSchema),
|
|
1249
|
+
dotnetJobQueue: DotnetJobQueueSchema,
|
|
1250
|
+
dotnetRealtime: DotnetRealtimeSchema,
|
|
1251
|
+
dotnetObservability: z.array(DotnetObservabilitySchema),
|
|
1252
|
+
dotnetValidation: DotnetValidationSchema,
|
|
1253
|
+
dotnetCaching: DotnetCachingSchema,
|
|
1254
|
+
dotnetDeploy: DotnetDeploySchema,
|
|
1009
1255
|
elixirWebFramework: ElixirWebFrameworkSchema,
|
|
1010
1256
|
elixirOrm: ElixirOrmSchema,
|
|
1011
1257
|
elixirAuth: ElixirAuthSchema,
|
|
@@ -1021,14 +1267,15 @@ const ProjectConfigSchema = z.object({
|
|
|
1021
1267
|
elixirTesting: ElixirTestingSchema,
|
|
1022
1268
|
elixirQuality: ElixirQualitySchema,
|
|
1023
1269
|
elixirDeploy: ElixirDeploySchema,
|
|
1270
|
+
elixirLibraries: z.array(ElixirLibrariesSchema),
|
|
1024
1271
|
aiDocs: z.array(AiDocsSchema),
|
|
1025
|
-
stackParts: z.array(StackPartSchema).optional()
|
|
1272
|
+
stackParts: z.array(StackPartSchema).optional().describe("Authoritative stack graph when present; flat fields are a derived projection.")
|
|
1026
1273
|
});
|
|
1027
1274
|
const BetterTStackConfigSchema = z.object({
|
|
1028
1275
|
version: z.string().describe("CLI version used to create this project"),
|
|
1029
1276
|
createdAt: z.string().describe("Timestamp when the project was created"),
|
|
1030
|
-
graphSummary: z.string().optional().describe("Human-readable summary
|
|
1031
|
-
effectiveStack: z.record(z.string(), z.string()).optional().describe("Graph-aware effective stack
|
|
1277
|
+
graphSummary: z.string().optional().describe("Human-readable summary derived from authoritative stackParts"),
|
|
1278
|
+
effectiveStack: z.record(z.string(), z.string()).optional().describe("Graph-aware effective stack derived from stackParts and keyed by owner role path"),
|
|
1032
1279
|
ecosystem: EcosystemSchema,
|
|
1033
1280
|
database: DatabaseSchema,
|
|
1034
1281
|
orm: ORMSchema,
|
|
@@ -1072,6 +1319,7 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1072
1319
|
analytics: AnalyticsSchema,
|
|
1073
1320
|
cms: CMSSchema,
|
|
1074
1321
|
caching: CachingSchema,
|
|
1322
|
+
rateLimit: RateLimitSchema,
|
|
1075
1323
|
i18n: I18nSchema,
|
|
1076
1324
|
search: SearchSchema,
|
|
1077
1325
|
fileStorage: FileStorageSchema,
|
|
@@ -1092,6 +1340,10 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1092
1340
|
rustErrorHandling: RustErrorHandlingSchema,
|
|
1093
1341
|
rustCaching: RustCachingSchema,
|
|
1094
1342
|
rustAuth: RustAuthSchema,
|
|
1343
|
+
rustRealtime: RustRealtimeSchema,
|
|
1344
|
+
rustMessageQueue: RustMessageQueueSchema,
|
|
1345
|
+
rustObservability: RustObservabilitySchema,
|
|
1346
|
+
rustTemplating: RustTemplatingSchema,
|
|
1095
1347
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
1096
1348
|
pythonOrm: PythonOrmSchema,
|
|
1097
1349
|
pythonValidation: PythonValidationSchema,
|
|
@@ -1101,18 +1353,42 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1101
1353
|
pythonTaskQueue: PythonTaskQueueSchema,
|
|
1102
1354
|
pythonGraphql: PythonGraphqlSchema,
|
|
1103
1355
|
pythonQuality: PythonQualitySchema,
|
|
1356
|
+
pythonTesting: z.array(PythonTestingSchema),
|
|
1357
|
+
pythonCaching: PythonCachingSchema,
|
|
1358
|
+
pythonRealtime: PythonRealtimeSchema,
|
|
1359
|
+
pythonObservability: PythonObservabilitySchema,
|
|
1360
|
+
pythonCli: z.array(PythonCliSchema),
|
|
1104
1361
|
goWebFramework: GoWebFrameworkSchema,
|
|
1105
1362
|
goOrm: GoOrmSchema,
|
|
1106
1363
|
goApi: GoApiSchema,
|
|
1107
1364
|
goCli: GoCliSchema,
|
|
1108
1365
|
goLogging: GoLoggingSchema,
|
|
1109
1366
|
goAuth: GoAuthSchema,
|
|
1367
|
+
goTesting: z.array(GoTestingSchema),
|
|
1368
|
+
goRealtime: GoRealtimeSchema,
|
|
1369
|
+
goMessageQueue: GoMessageQueueSchema,
|
|
1370
|
+
goCaching: GoCachingSchema,
|
|
1371
|
+
goConfig: GoConfigSchema,
|
|
1372
|
+
goObservability: GoObservabilitySchema,
|
|
1110
1373
|
javaWebFramework: JavaWebFrameworkSchema,
|
|
1111
1374
|
javaBuildTool: JavaBuildToolSchema,
|
|
1112
1375
|
javaOrm: JavaOrmSchema,
|
|
1113
1376
|
javaAuth: JavaAuthSchema,
|
|
1377
|
+
javaApi: JavaApiSchema,
|
|
1378
|
+
javaLogging: JavaLoggingSchema,
|
|
1114
1379
|
javaLibraries: z.array(JavaLibrariesSchema),
|
|
1115
1380
|
javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
|
|
1381
|
+
dotnetWebFramework: DotnetWebFrameworkSchema,
|
|
1382
|
+
dotnetOrm: DotnetOrmSchema,
|
|
1383
|
+
dotnetAuth: DotnetAuthSchema,
|
|
1384
|
+
dotnetApi: DotnetApiSchema,
|
|
1385
|
+
dotnetTesting: z.array(DotnetTestingSchema),
|
|
1386
|
+
dotnetJobQueue: DotnetJobQueueSchema,
|
|
1387
|
+
dotnetRealtime: DotnetRealtimeSchema,
|
|
1388
|
+
dotnetObservability: z.array(DotnetObservabilitySchema),
|
|
1389
|
+
dotnetValidation: DotnetValidationSchema,
|
|
1390
|
+
dotnetCaching: DotnetCachingSchema,
|
|
1391
|
+
dotnetDeploy: DotnetDeploySchema,
|
|
1116
1392
|
elixirWebFramework: ElixirWebFrameworkSchema,
|
|
1117
1393
|
elixirOrm: ElixirOrmSchema,
|
|
1118
1394
|
elixirAuth: ElixirAuthSchema,
|
|
@@ -1128,8 +1404,9 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1128
1404
|
elixirTesting: ElixirTestingSchema,
|
|
1129
1405
|
elixirQuality: ElixirQualitySchema,
|
|
1130
1406
|
elixirDeploy: ElixirDeploySchema,
|
|
1407
|
+
elixirLibraries: z.array(ElixirLibrariesSchema),
|
|
1131
1408
|
aiDocs: z.array(AiDocsSchema),
|
|
1132
|
-
stackParts: z.array(StackPartSchema).optional()
|
|
1409
|
+
stackParts: z.array(StackPartSchema).optional().describe("Authoritative stack graph when present; top-level fields are a derived cache.")
|
|
1133
1410
|
});
|
|
1134
1411
|
const BetterFullstackConfigSchema = BetterTStackConfigSchema;
|
|
1135
1412
|
const BetterTStackConfigFileSchema = z.object({ $schema: z.string().optional().describe("JSON Schema reference for validation") }).extend(BetterTStackConfigSchema.shape).meta({
|
|
@@ -1196,6 +1473,7 @@ const MOBILE_OTA_VALUES = MobileOTASchema.options;
|
|
|
1196
1473
|
const MOBILE_DEEP_LINKING_VALUES = MobileDeepLinkingSchema.options;
|
|
1197
1474
|
const CMS_VALUES = CMSSchema.options;
|
|
1198
1475
|
const CACHING_VALUES = CachingSchema.options;
|
|
1476
|
+
const RATE_LIMIT_VALUES = RateLimitSchema.options;
|
|
1199
1477
|
const I18N_VALUES = I18nSchema.options;
|
|
1200
1478
|
const SEARCH_VALUES = SearchSchema.options;
|
|
1201
1479
|
const FILE_STORAGE_VALUES = FileStorageSchema.options;
|
|
@@ -1210,6 +1488,10 @@ const RUST_LOGGING_VALUES = RustLoggingSchema.options;
|
|
|
1210
1488
|
const RUST_ERROR_HANDLING_VALUES = RustErrorHandlingSchema.options;
|
|
1211
1489
|
const RUST_CACHING_VALUES = RustCachingSchema.options;
|
|
1212
1490
|
const RUST_AUTH_VALUES = RustAuthSchema.options;
|
|
1491
|
+
const RUST_REALTIME_VALUES = RustRealtimeSchema.options;
|
|
1492
|
+
const RUST_MESSAGE_QUEUE_VALUES = RustMessageQueueSchema.options;
|
|
1493
|
+
const RUST_OBSERVABILITY_VALUES = RustObservabilitySchema.options;
|
|
1494
|
+
const RUST_TEMPLATING_VALUES = RustTemplatingSchema.options;
|
|
1213
1495
|
const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;
|
|
1214
1496
|
const PYTHON_ORM_VALUES = PythonOrmSchema.options;
|
|
1215
1497
|
const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;
|
|
@@ -1219,22 +1501,47 @@ const PYTHON_API_VALUES = PythonApiSchema.options;
|
|
|
1219
1501
|
const PYTHON_TASK_QUEUE_VALUES = PythonTaskQueueSchema.options;
|
|
1220
1502
|
const PYTHON_GRAPHQL_VALUES = PythonGraphqlSchema.options;
|
|
1221
1503
|
const PYTHON_QUALITY_VALUES = PythonQualitySchema.options;
|
|
1504
|
+
const PYTHON_TESTING_VALUES = PythonTestingSchema.options;
|
|
1505
|
+
const PYTHON_CACHING_VALUES = PythonCachingSchema.options;
|
|
1506
|
+
const PYTHON_REALTIME_VALUES = PythonRealtimeSchema.options;
|
|
1507
|
+
const PYTHON_OBSERVABILITY_VALUES = PythonObservabilitySchema.options;
|
|
1508
|
+
const PYTHON_CLI_VALUES = PythonCliSchema.options;
|
|
1222
1509
|
const GO_WEB_FRAMEWORK_VALUES = GoWebFrameworkSchema.options;
|
|
1223
1510
|
const GO_ORM_VALUES = GoOrmSchema.options;
|
|
1224
1511
|
const GO_API_VALUES = GoApiSchema.options;
|
|
1225
1512
|
const GO_CLI_VALUES = GoCliSchema.options;
|
|
1226
1513
|
const GO_LOGGING_VALUES = GoLoggingSchema.options;
|
|
1227
1514
|
const GO_AUTH_VALUES = GoAuthSchema.options;
|
|
1515
|
+
const GO_TESTING_VALUES = GoTestingSchema.options;
|
|
1516
|
+
const GO_REALTIME_VALUES = GoRealtimeSchema.options;
|
|
1517
|
+
const GO_MESSAGE_QUEUE_VALUES = GoMessageQueueSchema.options;
|
|
1518
|
+
const GO_CACHING_VALUES = GoCachingSchema.options;
|
|
1519
|
+
const GO_CONFIG_VALUES = GoConfigSchema.options;
|
|
1520
|
+
const GO_OBSERVABILITY_VALUES = GoObservabilitySchema.options;
|
|
1228
1521
|
const JAVA_WEB_FRAMEWORK_VALUES = JavaWebFrameworkSchema.options;
|
|
1229
1522
|
const JAVA_BUILD_TOOL_VALUES = JavaBuildToolSchema.options;
|
|
1230
1523
|
const JAVA_ORM_VALUES = JavaOrmSchema.options;
|
|
1231
1524
|
const JAVA_AUTH_VALUES = JavaAuthSchema.options;
|
|
1525
|
+
const JAVA_API_VALUES = JavaApiSchema.options;
|
|
1526
|
+
const JAVA_LOGGING_VALUES = JavaLoggingSchema.options;
|
|
1232
1527
|
const JAVA_LIBRARIES_VALUES = JavaLibrariesSchema.options;
|
|
1233
1528
|
const JAVA_TESTING_LIBRARIES_VALUES = JavaTestingLibrariesSchema.options;
|
|
1529
|
+
const DOTNET_WEB_FRAMEWORK_VALUES = DotnetWebFrameworkSchema.options;
|
|
1530
|
+
const DOTNET_ORM_VALUES = DotnetOrmSchema.options;
|
|
1531
|
+
const DOTNET_AUTH_VALUES = DotnetAuthSchema.options;
|
|
1532
|
+
const DOTNET_API_VALUES = DotnetApiSchema.options;
|
|
1533
|
+
const DOTNET_TESTING_VALUES = DotnetTestingSchema.options;
|
|
1534
|
+
const DOTNET_JOB_QUEUE_VALUES = DotnetJobQueueSchema.options;
|
|
1535
|
+
const DOTNET_REALTIME_VALUES = DotnetRealtimeSchema.options;
|
|
1536
|
+
const DOTNET_OBSERVABILITY_VALUES = DotnetObservabilitySchema.options;
|
|
1537
|
+
const DOTNET_VALIDATION_VALUES = DotnetValidationSchema.options;
|
|
1538
|
+
const DOTNET_CACHING_VALUES = DotnetCachingSchema.options;
|
|
1539
|
+
const DOTNET_DEPLOY_VALUES = DotnetDeploySchema.options;
|
|
1234
1540
|
const ELIXIR_WEB_FRAMEWORK_VALUES = ElixirWebFrameworkSchema.options;
|
|
1235
1541
|
const ELIXIR_ORM_VALUES = ElixirOrmSchema.options;
|
|
1236
1542
|
const ELIXIR_AUTH_VALUES = ElixirAuthSchema.options;
|
|
1237
1543
|
const ELIXIR_API_VALUES = ElixirApiSchema.options;
|
|
1544
|
+
const ELIXIR_LIBRARIES_VALUES = ElixirLibrariesSchema.options;
|
|
1238
1545
|
const ELIXIR_REALTIME_VALUES = ElixirRealtimeSchema.options;
|
|
1239
1546
|
const ELIXIR_JOBS_VALUES = ElixirJobsSchema.options;
|
|
1240
1547
|
const ELIXIR_VALIDATION_VALUES = ElixirValidationSchema.options;
|
|
@@ -1256,5 +1563,5 @@ const SHADCN_FONT_VALUES = ShadcnFontSchema.options;
|
|
|
1256
1563
|
const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
|
|
1257
1564
|
|
|
1258
1565
|
//#endregion
|
|
1259
|
-
export {
|
|
1260
|
-
//# sourceMappingURL=schemas-
|
|
1566
|
+
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 };
|
|
1567
|
+
//# sourceMappingURL=schemas-D444b8s8.mjs.map
|