@better-fullstack/types 2.1.8 → 2.3.0
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-Cpkx-Eu7.d.mts → defaults-BT-WhLPX.d.mts} +2 -2
- package/dist/defaults-BT-WhLPX.d.mts.map +1 -0
- package/dist/{defaults-DNnZX9er.mjs → defaults-Cl16mM84.mjs} +21 -1
- package/dist/defaults-Cl16mM84.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +7 -7
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +194 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +3076 -364
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +102 -2
- package/dist/json-schema.mjs.map +1 -1
- package/dist/{schemas-BXDvWDRp.mjs → schemas-CprYz5Sh.mjs} +301 -8
- package/dist/schemas-CprYz5Sh.mjs.map +1 -0
- package/dist/{schemas-DOb4t_el.d.mts → schemas-q5-QVYJy.d.mts} +2945 -642
- package/dist/schemas-q5-QVYJy.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-0MDSuSPQ.d.mts → stack-graph-CgFYIeir.d.mts} +2 -2
- package/dist/stack-graph-CgFYIeir.d.mts.map +1 -0
- package/dist/{stack-graph-BAad0vv4.mjs → stack-graph-DiLi3WuL.mjs} +228 -33
- package/dist/stack-graph-DiLi3WuL.mjs.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-DwSS9Vc2.mjs → stack-translation-Ay-_1mNB.mjs} +1117 -98
- package/dist/stack-translation-Ay-_1mNB.mjs.map +1 -0
- package/dist/{stack-translation-CnNmU8Z5.d.mts → stack-translation-CU1kpqq3.d.mts} +53 -13
- package/dist/stack-translation-CU1kpqq3.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/types-Cp7krSdb.d.mts +176 -0
- package/dist/types-Cp7krSdb.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +2 -2
- package/dist/defaults-Cpkx-Eu7.d.mts.map +0 -1
- package/dist/defaults-DNnZX9er.mjs.map +0 -1
- package/dist/schemas-BXDvWDRp.mjs.map +0 -1
- package/dist/schemas-DOb4t_el.d.mts.map +0 -1
- package/dist/stack-graph-0MDSuSPQ.d.mts.map +0 -1
- package/dist/stack-graph-BAad0vv4.mjs.map +0 -1
- package/dist/stack-translation-CnNmU8Z5.d.mts.map +0 -1
- package/dist/stack-translation-DwSS9Vc2.mjs.map +0 -1
- package/dist/types-CcWal512.d.mts +0 -156
- package/dist/types-CcWal512.d.mts.map +0 -1
|
@@ -24,6 +24,7 @@ const StackPartRoleSchema = z.enum([
|
|
|
24
24
|
"runtime",
|
|
25
25
|
"deploy",
|
|
26
26
|
"dbSetup",
|
|
27
|
+
"migrations",
|
|
27
28
|
"realtime",
|
|
28
29
|
"navigation",
|
|
29
30
|
"caching",
|
|
@@ -67,7 +68,13 @@ const StackPartRoleSchema = z.enum([
|
|
|
67
68
|
"httpClient",
|
|
68
69
|
"libraries",
|
|
69
70
|
"config",
|
|
70
|
-
"templating"
|
|
71
|
+
"templating",
|
|
72
|
+
"cloudSdk",
|
|
73
|
+
"data",
|
|
74
|
+
"media",
|
|
75
|
+
"server",
|
|
76
|
+
"packageManager",
|
|
77
|
+
"messageQueue"
|
|
71
78
|
]).describe("Role a selected tool plays in the stack graph");
|
|
72
79
|
const StackPartSourceSchema = z.enum([
|
|
73
80
|
"selected",
|
|
@@ -131,6 +138,8 @@ const FrontendSchema = z.enum([
|
|
|
131
138
|
"tanstack-router",
|
|
132
139
|
"react-router",
|
|
133
140
|
"react-vite",
|
|
141
|
+
"vanilla-vite",
|
|
142
|
+
"vue",
|
|
134
143
|
"tanstack-start",
|
|
135
144
|
"next",
|
|
136
145
|
"vinext",
|
|
@@ -184,8 +193,31 @@ const AddonsSchema = z.enum([
|
|
|
184
193
|
"devcontainer",
|
|
185
194
|
"docker-compose",
|
|
186
195
|
"github-actions",
|
|
196
|
+
"eslint",
|
|
197
|
+
"prettier",
|
|
198
|
+
"axios",
|
|
199
|
+
"firebase",
|
|
200
|
+
"graphql-codegen",
|
|
201
|
+
"openapi-typescript",
|
|
202
|
+
"apollo-client",
|
|
203
|
+
"electron",
|
|
204
|
+
"capacitor",
|
|
187
205
|
"none"
|
|
188
206
|
]).describe("Additional addons");
|
|
207
|
+
/**
|
|
208
|
+
* Addon values that are app platforms — shells/targets that package the web
|
|
209
|
+
* frontend (desktop, mobile hybrid, browser extension, terminal, installable
|
|
210
|
+
* PWA). Surfaced as a dedicated "App Platforms" section in the CLI and web
|
|
211
|
+
* builder; they still serialize into the `addons` config field.
|
|
212
|
+
*/
|
|
213
|
+
const APP_PLATFORM_ADDON_VALUES = [
|
|
214
|
+
"pwa",
|
|
215
|
+
"tauri",
|
|
216
|
+
"electron",
|
|
217
|
+
"capacitor",
|
|
218
|
+
"wxt",
|
|
219
|
+
"opentui"
|
|
220
|
+
];
|
|
189
221
|
const ExamplesSchema = z.enum([
|
|
190
222
|
"ai",
|
|
191
223
|
"chat-sdk",
|
|
@@ -237,6 +269,7 @@ const AuthSchema = z.enum([
|
|
|
237
269
|
"auth0",
|
|
238
270
|
"workos",
|
|
239
271
|
"kinde",
|
|
272
|
+
"passport",
|
|
240
273
|
"none"
|
|
241
274
|
]).describe("Authentication provider");
|
|
242
275
|
const PaymentsSchema = z.enum([
|
|
@@ -245,6 +278,7 @@ const PaymentsSchema = z.enum([
|
|
|
245
278
|
"stripe",
|
|
246
279
|
"lemon-squeezy",
|
|
247
280
|
"paddle",
|
|
281
|
+
"paypal",
|
|
248
282
|
"dodo",
|
|
249
283
|
"creem",
|
|
250
284
|
"autumn",
|
|
@@ -279,6 +313,8 @@ const AISchema = z.enum([
|
|
|
279
313
|
"voltagent",
|
|
280
314
|
"langgraph",
|
|
281
315
|
"openai-agents",
|
|
316
|
+
"openai-sdk",
|
|
317
|
+
"anthropic-sdk",
|
|
282
318
|
"google-adk",
|
|
283
319
|
"modelfusion",
|
|
284
320
|
"langchain",
|
|
@@ -328,6 +364,7 @@ const TestingSchema = z.enum([
|
|
|
328
364
|
"playwright",
|
|
329
365
|
"vitest-playwright",
|
|
330
366
|
"jest",
|
|
367
|
+
"mocha",
|
|
331
368
|
"cypress",
|
|
332
369
|
"none"
|
|
333
370
|
]).describe("Testing framework (vitest-playwright includes both unit and e2e testing)");
|
|
@@ -344,6 +381,7 @@ const EmailSchema = z.enum([
|
|
|
344
381
|
]).describe("Email solution (resend includes react-email, nodemailer is classic Node.js email, postmark/sendgrid/aws-ses/mailgun/plunk are transactional email services)");
|
|
345
382
|
const RealtimeSchema = z.enum([
|
|
346
383
|
"socket-io",
|
|
384
|
+
"ws",
|
|
347
385
|
"partykit",
|
|
348
386
|
"ably",
|
|
349
387
|
"pusher",
|
|
@@ -365,6 +403,7 @@ const CMSSchema = z.enum([
|
|
|
365
403
|
"tinacms",
|
|
366
404
|
"directus",
|
|
367
405
|
"keystatic",
|
|
406
|
+
"contentful",
|
|
368
407
|
"none"
|
|
369
408
|
]).describe("Headless CMS solution");
|
|
370
409
|
const CachingSchema = z.enum([
|
|
@@ -448,6 +487,7 @@ const AnalyticsSchema = z.enum([
|
|
|
448
487
|
"plausible",
|
|
449
488
|
"umami",
|
|
450
489
|
"posthog",
|
|
490
|
+
"ga4",
|
|
451
491
|
"none"
|
|
452
492
|
]).describe("Product analytics provider");
|
|
453
493
|
const MobileNavigationSchema = z.enum([
|
|
@@ -472,28 +512,58 @@ const MobileTestingSchema = z.enum([
|
|
|
472
512
|
const MobilePushSchema = z.enum(["expo-notifications", "none"]).describe("Mobile push notification setup");
|
|
473
513
|
const MobileOTASchema = z.enum(["expo-updates", "none"]).describe("Mobile over-the-air update setup");
|
|
474
514
|
const MobileDeepLinkingSchema = z.enum(["expo-linking", "none"]).describe("Mobile deep linking setup");
|
|
515
|
+
const MobileLibrariesSchema = z.enum([
|
|
516
|
+
"expo-sqlite",
|
|
517
|
+
"expo-camera",
|
|
518
|
+
"expo-image-picker",
|
|
519
|
+
"expo-location",
|
|
520
|
+
"expo-sensors",
|
|
521
|
+
"expo-file-system",
|
|
522
|
+
"expo-image",
|
|
523
|
+
"expo-audio",
|
|
524
|
+
"expo-video",
|
|
525
|
+
"expo-contacts",
|
|
526
|
+
"expo-calendar",
|
|
527
|
+
"expo-local-authentication",
|
|
528
|
+
"expo-sharing",
|
|
529
|
+
"expo-clipboard",
|
|
530
|
+
"expo-task-manager",
|
|
531
|
+
"expo-background-task",
|
|
532
|
+
"expo-maps",
|
|
533
|
+
"expo-brightness",
|
|
534
|
+
"expo-battery",
|
|
535
|
+
"expo-screen-capture",
|
|
536
|
+
"none"
|
|
537
|
+
]).describe("Expo and React Native application libraries");
|
|
475
538
|
const RustWebFrameworkSchema = z.enum([
|
|
476
539
|
"axum",
|
|
477
540
|
"actix-web",
|
|
478
541
|
"rocket",
|
|
479
542
|
"poem",
|
|
480
543
|
"loco",
|
|
544
|
+
"warp",
|
|
545
|
+
"salvo",
|
|
481
546
|
"none"
|
|
482
547
|
]).describe("Rust web framework");
|
|
483
548
|
const RustFrontendSchema = z.enum([
|
|
484
549
|
"leptos",
|
|
485
550
|
"dioxus",
|
|
551
|
+
"yew",
|
|
486
552
|
"none"
|
|
487
553
|
]).describe("Rust WASM frontend framework");
|
|
488
554
|
const RustOrmSchema = z.enum([
|
|
489
555
|
"sea-orm",
|
|
490
556
|
"sqlx",
|
|
491
557
|
"diesel",
|
|
558
|
+
"mongodb",
|
|
559
|
+
"rusqlite",
|
|
560
|
+
"tokio-postgres",
|
|
492
561
|
"none"
|
|
493
562
|
]).describe("Rust ORM/database layer");
|
|
494
563
|
const RustApiSchema = z.enum([
|
|
495
564
|
"tonic",
|
|
496
565
|
"async-graphql",
|
|
566
|
+
"jsonrpsee",
|
|
497
567
|
"none"
|
|
498
568
|
]).describe("Rust API layer (gRPC/GraphQL)");
|
|
499
569
|
const RustCliSchema = z.enum([
|
|
@@ -519,6 +589,13 @@ const RustLibrariesSchema = z.enum([
|
|
|
519
589
|
"mockall",
|
|
520
590
|
"proptest",
|
|
521
591
|
"insta",
|
|
592
|
+
"rand",
|
|
593
|
+
"regex",
|
|
594
|
+
"rayon",
|
|
595
|
+
"itertools",
|
|
596
|
+
"rstest",
|
|
597
|
+
"cargo-nextest",
|
|
598
|
+
"cargo-audit",
|
|
522
599
|
"none"
|
|
523
600
|
]).describe("Rust core libraries");
|
|
524
601
|
const RustLoggingSchema = z.enum([
|
|
@@ -539,14 +616,26 @@ const RustCachingSchema = z.enum([
|
|
|
539
616
|
const RustAuthSchema = z.enum([
|
|
540
617
|
"oauth2",
|
|
541
618
|
"torii",
|
|
619
|
+
"openidconnect",
|
|
620
|
+
"tower-sessions",
|
|
542
621
|
"none"
|
|
543
622
|
]).describe("Rust authentication library");
|
|
544
623
|
const RustRealtimeSchema = z.enum(["tokio-tungstenite", "none"]).describe("Rust realtime/WebSocket library");
|
|
545
|
-
const RustMessageQueueSchema = z.enum([
|
|
546
|
-
|
|
624
|
+
const RustMessageQueueSchema = z.enum([
|
|
625
|
+
"lapin",
|
|
626
|
+
"rdkafka",
|
|
627
|
+
"async-nats",
|
|
628
|
+
"none"
|
|
629
|
+
]).describe("Rust message queue library");
|
|
630
|
+
const RustObservabilitySchema = z.enum([
|
|
631
|
+
"opentelemetry",
|
|
632
|
+
"metrics",
|
|
633
|
+
"none"
|
|
634
|
+
]).describe("Rust observability/tracing library");
|
|
547
635
|
const RustTemplatingSchema = z.enum([
|
|
548
636
|
"askama",
|
|
549
637
|
"tera",
|
|
638
|
+
"minijinja",
|
|
550
639
|
"none"
|
|
551
640
|
]).describe("Rust template engine");
|
|
552
641
|
const PythonWebFrameworkSchema = z.enum([
|
|
@@ -555,6 +644,8 @@ const PythonWebFrameworkSchema = z.enum([
|
|
|
555
644
|
"flask",
|
|
556
645
|
"litestar",
|
|
557
646
|
"starlette",
|
|
647
|
+
"aiohttp",
|
|
648
|
+
"streamlit",
|
|
558
649
|
"none"
|
|
559
650
|
]).describe("Python web framework");
|
|
560
651
|
const PythonOrmSchema = z.enum([
|
|
@@ -562,6 +653,7 @@ const PythonOrmSchema = z.enum([
|
|
|
562
653
|
"sqlmodel",
|
|
563
654
|
"tortoise-orm",
|
|
564
655
|
"peewee",
|
|
656
|
+
"pymongo",
|
|
565
657
|
"none"
|
|
566
658
|
]).describe("Python ORM/database layer");
|
|
567
659
|
const PythonValidationSchema = z.enum(["pydantic", "none"]).describe("Python validation library");
|
|
@@ -576,11 +668,17 @@ const PythonAiSchema = z.enum([
|
|
|
576
668
|
"pydantic-ai",
|
|
577
669
|
"google-adk",
|
|
578
670
|
"smolagents",
|
|
671
|
+
"pytorch",
|
|
672
|
+
"transformers",
|
|
673
|
+
"scikit-learn",
|
|
674
|
+
"tensorflow",
|
|
675
|
+
"mcp",
|
|
579
676
|
"none"
|
|
580
677
|
]).describe("Python AI/ML framework");
|
|
581
678
|
const PythonAuthSchema = z.enum([
|
|
582
679
|
"authlib",
|
|
583
680
|
"jwt",
|
|
681
|
+
"pyjwt",
|
|
584
682
|
"fastapi-users",
|
|
585
683
|
"none"
|
|
586
684
|
]).describe("Python authentication library");
|
|
@@ -611,6 +709,7 @@ const PythonQualitySchema = z.enum([
|
|
|
611
709
|
const PythonTestingSchema = z.enum([
|
|
612
710
|
"pytest",
|
|
613
711
|
"hypothesis",
|
|
712
|
+
"pytest-cov",
|
|
614
713
|
"none"
|
|
615
714
|
]).describe("Python testing libraries");
|
|
616
715
|
const PythonCachingSchema = z.enum([
|
|
@@ -623,19 +722,42 @@ const PythonRealtimeSchema = z.enum([
|
|
|
623
722
|
"websockets",
|
|
624
723
|
"none"
|
|
625
724
|
]).describe("Python realtime/WebSocket library");
|
|
626
|
-
const PythonObservabilitySchema = z.enum([
|
|
725
|
+
const PythonObservabilitySchema = z.enum([
|
|
726
|
+
"opentelemetry",
|
|
727
|
+
"prometheus-client",
|
|
728
|
+
"none"
|
|
729
|
+
]).describe("Python observability/tracing library");
|
|
627
730
|
const PythonCliSchema = z.enum([
|
|
628
731
|
"typer",
|
|
629
732
|
"click",
|
|
630
733
|
"rich",
|
|
631
734
|
"none"
|
|
632
735
|
]).describe("Python CLI tooling libraries");
|
|
736
|
+
const PythonCloudSdkSchema = z.enum(["boto3", "none"]).describe("Python cloud SDK");
|
|
737
|
+
const PythonHttpClientSchema = z.enum(["requests", "none"]).describe("Python HTTP client");
|
|
738
|
+
const PythonDataSchema = z.enum([
|
|
739
|
+
"numpy",
|
|
740
|
+
"pandas",
|
|
741
|
+
"scipy",
|
|
742
|
+
"none"
|
|
743
|
+
]).describe("Python data/scientific libraries");
|
|
744
|
+
const PythonMediaSchema = z.enum(["pillow", "none"]).describe("Python media library");
|
|
745
|
+
const PythonServerSchema = z.enum(["gunicorn", "none"]).describe("Python production server");
|
|
746
|
+
const PythonPackageManagerSchema = z.enum([
|
|
747
|
+
"uv",
|
|
748
|
+
"poetry",
|
|
749
|
+
"none"
|
|
750
|
+
]).describe("Python package manager");
|
|
751
|
+
const PythonMessageQueueSchema = z.enum(["confluent-kafka", "none"]).describe("Python message queue/streaming client");
|
|
633
752
|
const GoWebFrameworkSchema = z.enum([
|
|
634
753
|
"gin",
|
|
635
754
|
"echo",
|
|
636
755
|
"fiber",
|
|
637
756
|
"chi",
|
|
638
757
|
"stdlib",
|
|
758
|
+
"go-zero",
|
|
759
|
+
"kratos",
|
|
760
|
+
"httprouter",
|
|
639
761
|
"none"
|
|
640
762
|
]).describe("Go web framework");
|
|
641
763
|
const GoOrmSchema = z.enum([
|
|
@@ -643,11 +765,15 @@ const GoOrmSchema = z.enum([
|
|
|
643
765
|
"sqlc",
|
|
644
766
|
"ent",
|
|
645
767
|
"bun",
|
|
768
|
+
"sqlx",
|
|
646
769
|
"none"
|
|
647
770
|
]).describe("Go ORM/database layer");
|
|
648
771
|
const GoApiSchema = z.enum([
|
|
649
772
|
"grpc-go",
|
|
650
773
|
"gqlgen",
|
|
774
|
+
"grpc-gateway",
|
|
775
|
+
"connect-go",
|
|
776
|
+
"oapi-codegen",
|
|
651
777
|
"none"
|
|
652
778
|
]).describe("Go API layer (gRPC, GraphQL)");
|
|
653
779
|
const GoCliSchema = z.enum([
|
|
@@ -667,11 +793,15 @@ const GoAuthSchema = z.enum([
|
|
|
667
793
|
"casbin",
|
|
668
794
|
"jwt",
|
|
669
795
|
"goth",
|
|
796
|
+
"oauth2",
|
|
670
797
|
"none"
|
|
671
798
|
]).describe("Go authentication library");
|
|
672
799
|
const GoTestingSchema = z.enum([
|
|
673
800
|
"testify",
|
|
674
801
|
"gomock",
|
|
802
|
+
"testcontainers",
|
|
803
|
+
"ginkgo-gomega",
|
|
804
|
+
"mockery",
|
|
675
805
|
"none"
|
|
676
806
|
]).describe("Go testing libraries");
|
|
677
807
|
const GoRealtimeSchema = z.enum([
|
|
@@ -682,6 +812,8 @@ const GoRealtimeSchema = z.enum([
|
|
|
682
812
|
const GoMessageQueueSchema = z.enum([
|
|
683
813
|
"nats",
|
|
684
814
|
"watermill",
|
|
815
|
+
"kafka-go",
|
|
816
|
+
"asynq",
|
|
685
817
|
"none"
|
|
686
818
|
]).describe("Go message queue/eventing library");
|
|
687
819
|
const GoCachingSchema = z.enum([
|
|
@@ -694,7 +826,17 @@ const GoConfigSchema = z.enum([
|
|
|
694
826
|
"koanf",
|
|
695
827
|
"none"
|
|
696
828
|
]).describe("Go configuration management library");
|
|
697
|
-
const GoObservabilitySchema = z.enum([
|
|
829
|
+
const GoObservabilitySchema = z.enum([
|
|
830
|
+
"opentelemetry",
|
|
831
|
+
"prometheus",
|
|
832
|
+
"none"
|
|
833
|
+
]).describe("Go observability/tracing library");
|
|
834
|
+
const GoValidationSchema = z.enum(["validator", "none"]).describe("Go validation library");
|
|
835
|
+
const GoQualitySchema = z.enum(["golangci-lint", "none"]).describe("Go code quality tooling");
|
|
836
|
+
const GoMigrationsSchema = z.enum(["golang-migrate", "none"]).describe("Go database migration tooling");
|
|
837
|
+
const GoTemplatingSchema = z.enum(["templ", "none"]).describe("Go templating library");
|
|
838
|
+
const GoProtoToolingSchema = z.enum(["buf", "none"]).describe("Go Protocol Buffers tooling");
|
|
839
|
+
const GoDISchema = z.enum(["fx", "none"]).describe("Go dependency injection library");
|
|
698
840
|
const JavaLanguageSchema = z.enum(["java", "kotlin"]).describe("JVM language variant for the Java ecosystem (java or kotlin)");
|
|
699
841
|
const JavaWebFrameworkSchema = z.enum([
|
|
700
842
|
"spring-boot",
|
|
@@ -748,6 +890,26 @@ const JavaLibrariesSchema = z.enum([
|
|
|
748
890
|
"thymeleaf",
|
|
749
891
|
"spring-amqp",
|
|
750
892
|
"opentelemetry-java",
|
|
893
|
+
"spring-data-redis",
|
|
894
|
+
"spring-data-mongodb",
|
|
895
|
+
"spring-data-elasticsearch",
|
|
896
|
+
"spring-data-neo4j",
|
|
897
|
+
"spring-data-cassandra",
|
|
898
|
+
"spring-data-couchbase",
|
|
899
|
+
"spring-data-jdbc",
|
|
900
|
+
"spring-data-rest",
|
|
901
|
+
"spring-quartz",
|
|
902
|
+
"spring-pulsar",
|
|
903
|
+
"spring-integration",
|
|
904
|
+
"spring-websocket",
|
|
905
|
+
"spring-rsocket",
|
|
906
|
+
"spring-hateoas",
|
|
907
|
+
"spring-session-redis",
|
|
908
|
+
"spring-session-jdbc",
|
|
909
|
+
"spring-ldap",
|
|
910
|
+
"spring-oauth2-client",
|
|
911
|
+
"spring-saml2",
|
|
912
|
+
"spring-restclient",
|
|
751
913
|
"none"
|
|
752
914
|
]).describe("Java application libraries");
|
|
753
915
|
const JavaTestingLibrariesSchema = z.enum([
|
|
@@ -823,6 +985,29 @@ const DotnetDeploySchema = z.enum([
|
|
|
823
985
|
"aws",
|
|
824
986
|
"none"
|
|
825
987
|
]).describe(".NET deployment target");
|
|
988
|
+
const DotnetLibrariesSchema = z.enum([
|
|
989
|
+
"automapper",
|
|
990
|
+
"mediatr",
|
|
991
|
+
"fastendpoints",
|
|
992
|
+
"api-versioning",
|
|
993
|
+
"scalar",
|
|
994
|
+
"polly",
|
|
995
|
+
"masstransit",
|
|
996
|
+
"rebus",
|
|
997
|
+
"coravel",
|
|
998
|
+
"magic-onion",
|
|
999
|
+
"prometheus-net",
|
|
1000
|
+
"seq",
|
|
1001
|
+
"application-insights",
|
|
1002
|
+
"sentry",
|
|
1003
|
+
"mongodb-driver",
|
|
1004
|
+
"nhibernate",
|
|
1005
|
+
"mapster",
|
|
1006
|
+
"scrutor",
|
|
1007
|
+
"refit",
|
|
1008
|
+
"fluent-email",
|
|
1009
|
+
"none"
|
|
1010
|
+
]).describe(".NET application libraries");
|
|
826
1011
|
const ElixirWebFrameworkSchema = z.enum([
|
|
827
1012
|
"phoenix",
|
|
828
1013
|
"phoenix-live-view",
|
|
@@ -831,23 +1016,30 @@ const ElixirWebFrameworkSchema = z.enum([
|
|
|
831
1016
|
const ElixirOrmSchema = z.enum([
|
|
832
1017
|
"ecto",
|
|
833
1018
|
"ecto-sql",
|
|
1019
|
+
"myxql",
|
|
1020
|
+
"ecto_sqlite3",
|
|
834
1021
|
"none"
|
|
835
1022
|
]).describe("Elixir database layer");
|
|
836
1023
|
const ElixirAuthSchema = z.enum([
|
|
837
1024
|
"phx-gen-auth",
|
|
838
1025
|
"ueberauth",
|
|
839
1026
|
"guardian",
|
|
1027
|
+
"pow",
|
|
840
1028
|
"none"
|
|
841
1029
|
]).describe("Elixir authentication library");
|
|
842
1030
|
const ElixirApiSchema = z.enum([
|
|
843
1031
|
"rest",
|
|
844
1032
|
"absinthe",
|
|
845
1033
|
"grpc",
|
|
1034
|
+
"open_api_spex",
|
|
846
1035
|
"none"
|
|
847
1036
|
]).describe("Elixir API layer");
|
|
848
1037
|
const ElixirLibrariesSchema = z.enum([
|
|
849
1038
|
"broadway",
|
|
850
1039
|
"nx",
|
|
1040
|
+
"ex_aws",
|
|
1041
|
+
"floki",
|
|
1042
|
+
"rustler",
|
|
851
1043
|
"none"
|
|
852
1044
|
]).describe("Elixir application libraries");
|
|
853
1045
|
const ElixirRealtimeSchema = z.enum([
|
|
@@ -870,19 +1062,26 @@ const ElixirValidationSchema = z.enum([
|
|
|
870
1062
|
const ElixirHttpSchema = z.enum([
|
|
871
1063
|
"req",
|
|
872
1064
|
"finch",
|
|
1065
|
+
"tesla",
|
|
873
1066
|
"none"
|
|
874
1067
|
]).describe("Elixir HTTP client");
|
|
875
1068
|
const ElixirJsonSchema = z.enum(["jason", "none"]).describe("Elixir JSON library");
|
|
876
|
-
const ElixirEmailSchema = z.enum([
|
|
1069
|
+
const ElixirEmailSchema = z.enum([
|
|
1070
|
+
"swoosh",
|
|
1071
|
+
"bamboo",
|
|
1072
|
+
"none"
|
|
1073
|
+
]).describe("Elixir email library");
|
|
877
1074
|
const ElixirCachingSchema = z.enum([
|
|
878
1075
|
"cachex",
|
|
879
1076
|
"nebulex",
|
|
1077
|
+
"redix",
|
|
880
1078
|
"none"
|
|
881
1079
|
]).describe("Elixir caching library");
|
|
882
1080
|
const ElixirObservabilitySchema = z.enum([
|
|
883
1081
|
"telemetry",
|
|
884
1082
|
"opentelemetry",
|
|
885
1083
|
"prom_ex",
|
|
1084
|
+
"sentry",
|
|
886
1085
|
"none"
|
|
887
1086
|
]).describe("Elixir observability library");
|
|
888
1087
|
const ElixirTestingSchema = z.enum([
|
|
@@ -890,14 +1089,27 @@ const ElixirTestingSchema = z.enum([
|
|
|
890
1089
|
"mox",
|
|
891
1090
|
"bypass",
|
|
892
1091
|
"wallaby",
|
|
1092
|
+
"stream_data",
|
|
1093
|
+
"ex_machina",
|
|
893
1094
|
"none"
|
|
894
1095
|
]).describe("Elixir testing library");
|
|
895
1096
|
const ElixirQualitySchema = z.enum([
|
|
896
1097
|
"credo",
|
|
897
1098
|
"dialyxir",
|
|
898
1099
|
"sobelow",
|
|
1100
|
+
"excoveralls",
|
|
1101
|
+
"mix_audit",
|
|
899
1102
|
"none"
|
|
900
1103
|
]).describe("Elixir code quality tool");
|
|
1104
|
+
const ElixirI18nSchema = z.enum(["gettext", "none"]).describe("Elixir localization");
|
|
1105
|
+
const ElixirHttpServerSchema = z.enum([
|
|
1106
|
+
"bandit",
|
|
1107
|
+
"cowboy",
|
|
1108
|
+
"none"
|
|
1109
|
+
]).describe("Elixir HTTP server");
|
|
1110
|
+
const ElixirApplicationFrameworkSchema = z.enum(["ash", "none"]).describe("Elixir application framework");
|
|
1111
|
+
const ElixirDocumentationSchema = z.enum(["ex_doc", "none"]).describe("Elixir documentation tooling");
|
|
1112
|
+
const ElixirClusteringSchema = z.enum(["libcluster", "none"]).describe("Elixir clustering library");
|
|
901
1113
|
const ElixirDeploySchema = z.enum([
|
|
902
1114
|
"docker",
|
|
903
1115
|
"fly",
|
|
@@ -916,6 +1128,7 @@ const CSSFrameworkSchema = z.enum([
|
|
|
916
1128
|
"scss",
|
|
917
1129
|
"less",
|
|
918
1130
|
"postcss-only",
|
|
1131
|
+
"styled-components",
|
|
919
1132
|
"none"
|
|
920
1133
|
]).describe("CSS framework/preprocessor");
|
|
921
1134
|
const UILibrarySchema = z.enum([
|
|
@@ -1099,6 +1312,7 @@ const CreateInputSchema = z.object({
|
|
|
1099
1312
|
mobilePush: MobilePushSchema.optional(),
|
|
1100
1313
|
mobileOTA: MobileOTASchema.optional(),
|
|
1101
1314
|
mobileDeepLinking: MobileDeepLinkingSchema.optional(),
|
|
1315
|
+
mobileLibraries: z.array(MobileLibrariesSchema).optional(),
|
|
1102
1316
|
rustWebFramework: RustWebFrameworkSchema.optional(),
|
|
1103
1317
|
rustFrontend: RustFrontendSchema.optional(),
|
|
1104
1318
|
rustOrm: RustOrmSchema.optional(),
|
|
@@ -1127,6 +1341,13 @@ const CreateInputSchema = z.object({
|
|
|
1127
1341
|
pythonRealtime: PythonRealtimeSchema.optional(),
|
|
1128
1342
|
pythonObservability: PythonObservabilitySchema.optional(),
|
|
1129
1343
|
pythonCli: z.array(PythonCliSchema).optional(),
|
|
1344
|
+
pythonCloudSdk: PythonCloudSdkSchema.optional(),
|
|
1345
|
+
pythonHttpClient: PythonHttpClientSchema.optional(),
|
|
1346
|
+
pythonData: z.array(PythonDataSchema).optional(),
|
|
1347
|
+
pythonMedia: PythonMediaSchema.optional(),
|
|
1348
|
+
pythonServer: PythonServerSchema.optional(),
|
|
1349
|
+
pythonPackageManager: PythonPackageManagerSchema.optional(),
|
|
1350
|
+
pythonMessageQueue: PythonMessageQueueSchema.optional(),
|
|
1130
1351
|
goWebFramework: GoWebFrameworkSchema.optional(),
|
|
1131
1352
|
goOrm: GoOrmSchema.optional(),
|
|
1132
1353
|
goApi: GoApiSchema.optional(),
|
|
@@ -1139,6 +1360,12 @@ const CreateInputSchema = z.object({
|
|
|
1139
1360
|
goCaching: GoCachingSchema.optional(),
|
|
1140
1361
|
goConfig: GoConfigSchema.optional(),
|
|
1141
1362
|
goObservability: GoObservabilitySchema.optional(),
|
|
1363
|
+
goValidation: GoValidationSchema.optional(),
|
|
1364
|
+
goQuality: GoQualitySchema.optional(),
|
|
1365
|
+
goMigrations: GoMigrationsSchema.optional(),
|
|
1366
|
+
goTemplating: GoTemplatingSchema.optional(),
|
|
1367
|
+
goProtoTooling: GoProtoToolingSchema.optional(),
|
|
1368
|
+
goDI: GoDISchema.optional(),
|
|
1142
1369
|
javaLanguage: JavaLanguageSchema.optional(),
|
|
1143
1370
|
javaWebFramework: JavaWebFrameworkSchema.optional(),
|
|
1144
1371
|
javaBuildTool: JavaBuildToolSchema.optional(),
|
|
@@ -1159,6 +1386,7 @@ const CreateInputSchema = z.object({
|
|
|
1159
1386
|
dotnetValidation: DotnetValidationSchema.optional(),
|
|
1160
1387
|
dotnetCaching: DotnetCachingSchema.optional(),
|
|
1161
1388
|
dotnetDeploy: DotnetDeploySchema.optional(),
|
|
1389
|
+
dotnetLibraries: z.array(DotnetLibrariesSchema).optional(),
|
|
1162
1390
|
elixirWebFramework: ElixirWebFrameworkSchema.optional(),
|
|
1163
1391
|
elixirOrm: ElixirOrmSchema.optional(),
|
|
1164
1392
|
elixirAuth: ElixirAuthSchema.optional(),
|
|
@@ -1173,6 +1401,11 @@ const CreateInputSchema = z.object({
|
|
|
1173
1401
|
elixirObservability: ElixirObservabilitySchema.optional(),
|
|
1174
1402
|
elixirTesting: ElixirTestingSchema.optional(),
|
|
1175
1403
|
elixirQuality: ElixirQualitySchema.optional(),
|
|
1404
|
+
elixirI18n: ElixirI18nSchema.optional(),
|
|
1405
|
+
elixirHttpServer: ElixirHttpServerSchema.optional(),
|
|
1406
|
+
elixirApplicationFramework: ElixirApplicationFrameworkSchema.optional(),
|
|
1407
|
+
elixirDocumentation: ElixirDocumentationSchema.optional(),
|
|
1408
|
+
elixirClustering: ElixirClusteringSchema.optional(),
|
|
1176
1409
|
elixirDeploy: ElixirDeploySchema.optional(),
|
|
1177
1410
|
elixirLibraries: z.array(ElixirLibrariesSchema).optional(),
|
|
1178
1411
|
aiDocs: z.array(AiDocsSchema).optional(),
|
|
@@ -1257,6 +1490,7 @@ const ProjectConfigSchema = z.object({
|
|
|
1257
1490
|
mobilePush: MobilePushSchema,
|
|
1258
1491
|
mobileOTA: MobileOTASchema,
|
|
1259
1492
|
mobileDeepLinking: MobileDeepLinkingSchema,
|
|
1493
|
+
mobileLibraries: z.array(MobileLibrariesSchema),
|
|
1260
1494
|
rustWebFramework: RustWebFrameworkSchema,
|
|
1261
1495
|
rustFrontend: RustFrontendSchema,
|
|
1262
1496
|
rustOrm: RustOrmSchema,
|
|
@@ -1285,6 +1519,13 @@ const ProjectConfigSchema = z.object({
|
|
|
1285
1519
|
pythonRealtime: PythonRealtimeSchema,
|
|
1286
1520
|
pythonObservability: PythonObservabilitySchema,
|
|
1287
1521
|
pythonCli: z.array(PythonCliSchema),
|
|
1522
|
+
pythonCloudSdk: PythonCloudSdkSchema,
|
|
1523
|
+
pythonHttpClient: PythonHttpClientSchema,
|
|
1524
|
+
pythonData: z.array(PythonDataSchema),
|
|
1525
|
+
pythonMedia: PythonMediaSchema,
|
|
1526
|
+
pythonServer: PythonServerSchema,
|
|
1527
|
+
pythonPackageManager: PythonPackageManagerSchema,
|
|
1528
|
+
pythonMessageQueue: PythonMessageQueueSchema,
|
|
1288
1529
|
goWebFramework: GoWebFrameworkSchema,
|
|
1289
1530
|
goOrm: GoOrmSchema,
|
|
1290
1531
|
goApi: GoApiSchema,
|
|
@@ -1297,6 +1538,12 @@ const ProjectConfigSchema = z.object({
|
|
|
1297
1538
|
goCaching: GoCachingSchema,
|
|
1298
1539
|
goConfig: GoConfigSchema,
|
|
1299
1540
|
goObservability: GoObservabilitySchema,
|
|
1541
|
+
goValidation: GoValidationSchema,
|
|
1542
|
+
goQuality: GoQualitySchema,
|
|
1543
|
+
goMigrations: GoMigrationsSchema,
|
|
1544
|
+
goTemplating: GoTemplatingSchema,
|
|
1545
|
+
goProtoTooling: GoProtoToolingSchema,
|
|
1546
|
+
goDI: GoDISchema,
|
|
1300
1547
|
javaLanguage: JavaLanguageSchema.optional(),
|
|
1301
1548
|
javaWebFramework: JavaWebFrameworkSchema,
|
|
1302
1549
|
javaBuildTool: JavaBuildToolSchema,
|
|
@@ -1317,6 +1564,7 @@ const ProjectConfigSchema = z.object({
|
|
|
1317
1564
|
dotnetValidation: DotnetValidationSchema,
|
|
1318
1565
|
dotnetCaching: DotnetCachingSchema,
|
|
1319
1566
|
dotnetDeploy: DotnetDeploySchema,
|
|
1567
|
+
dotnetLibraries: z.array(DotnetLibrariesSchema),
|
|
1320
1568
|
elixirWebFramework: ElixirWebFrameworkSchema,
|
|
1321
1569
|
elixirOrm: ElixirOrmSchema,
|
|
1322
1570
|
elixirAuth: ElixirAuthSchema,
|
|
@@ -1331,6 +1579,11 @@ const ProjectConfigSchema = z.object({
|
|
|
1331
1579
|
elixirObservability: ElixirObservabilitySchema,
|
|
1332
1580
|
elixirTesting: ElixirTestingSchema,
|
|
1333
1581
|
elixirQuality: ElixirQualitySchema,
|
|
1582
|
+
elixirI18n: ElixirI18nSchema,
|
|
1583
|
+
elixirHttpServer: ElixirHttpServerSchema,
|
|
1584
|
+
elixirApplicationFramework: ElixirApplicationFrameworkSchema,
|
|
1585
|
+
elixirDocumentation: ElixirDocumentationSchema,
|
|
1586
|
+
elixirClustering: ElixirClusteringSchema,
|
|
1334
1587
|
elixirDeploy: ElixirDeploySchema,
|
|
1335
1588
|
elixirLibraries: z.array(ElixirLibrariesSchema),
|
|
1336
1589
|
aiDocs: z.array(AiDocsSchema),
|
|
@@ -1397,6 +1650,7 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1397
1650
|
mobilePush: MobilePushSchema,
|
|
1398
1651
|
mobileOTA: MobileOTASchema,
|
|
1399
1652
|
mobileDeepLinking: MobileDeepLinkingSchema,
|
|
1653
|
+
mobileLibraries: z.array(MobileLibrariesSchema),
|
|
1400
1654
|
rustWebFramework: RustWebFrameworkSchema,
|
|
1401
1655
|
rustFrontend: RustFrontendSchema,
|
|
1402
1656
|
rustOrm: RustOrmSchema,
|
|
@@ -1425,6 +1679,13 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1425
1679
|
pythonRealtime: PythonRealtimeSchema,
|
|
1426
1680
|
pythonObservability: PythonObservabilitySchema,
|
|
1427
1681
|
pythonCli: z.array(PythonCliSchema),
|
|
1682
|
+
pythonCloudSdk: PythonCloudSdkSchema,
|
|
1683
|
+
pythonHttpClient: PythonHttpClientSchema,
|
|
1684
|
+
pythonData: z.array(PythonDataSchema),
|
|
1685
|
+
pythonMedia: PythonMediaSchema,
|
|
1686
|
+
pythonServer: PythonServerSchema,
|
|
1687
|
+
pythonPackageManager: PythonPackageManagerSchema,
|
|
1688
|
+
pythonMessageQueue: PythonMessageQueueSchema,
|
|
1428
1689
|
goWebFramework: GoWebFrameworkSchema,
|
|
1429
1690
|
goOrm: GoOrmSchema,
|
|
1430
1691
|
goApi: GoApiSchema,
|
|
@@ -1437,6 +1698,12 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1437
1698
|
goCaching: GoCachingSchema,
|
|
1438
1699
|
goConfig: GoConfigSchema,
|
|
1439
1700
|
goObservability: GoObservabilitySchema,
|
|
1701
|
+
goValidation: GoValidationSchema,
|
|
1702
|
+
goQuality: GoQualitySchema,
|
|
1703
|
+
goMigrations: GoMigrationsSchema,
|
|
1704
|
+
goTemplating: GoTemplatingSchema,
|
|
1705
|
+
goProtoTooling: GoProtoToolingSchema,
|
|
1706
|
+
goDI: GoDISchema,
|
|
1440
1707
|
javaLanguage: JavaLanguageSchema.optional(),
|
|
1441
1708
|
javaWebFramework: JavaWebFrameworkSchema,
|
|
1442
1709
|
javaBuildTool: JavaBuildToolSchema,
|
|
@@ -1457,6 +1724,7 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1457
1724
|
dotnetValidation: DotnetValidationSchema,
|
|
1458
1725
|
dotnetCaching: DotnetCachingSchema,
|
|
1459
1726
|
dotnetDeploy: DotnetDeploySchema,
|
|
1727
|
+
dotnetLibraries: z.array(DotnetLibrariesSchema),
|
|
1460
1728
|
elixirWebFramework: ElixirWebFrameworkSchema,
|
|
1461
1729
|
elixirOrm: ElixirOrmSchema,
|
|
1462
1730
|
elixirAuth: ElixirAuthSchema,
|
|
@@ -1471,6 +1739,11 @@ const BetterTStackConfigSchema = z.object({
|
|
|
1471
1739
|
elixirObservability: ElixirObservabilitySchema,
|
|
1472
1740
|
elixirTesting: ElixirTestingSchema,
|
|
1473
1741
|
elixirQuality: ElixirQualitySchema,
|
|
1742
|
+
elixirI18n: ElixirI18nSchema,
|
|
1743
|
+
elixirHttpServer: ElixirHttpServerSchema,
|
|
1744
|
+
elixirApplicationFramework: ElixirApplicationFrameworkSchema,
|
|
1745
|
+
elixirDocumentation: ElixirDocumentationSchema,
|
|
1746
|
+
elixirClustering: ElixirClusteringSchema,
|
|
1474
1747
|
elixirDeploy: ElixirDeploySchema,
|
|
1475
1748
|
elixirLibraries: z.array(ElixirLibrariesSchema),
|
|
1476
1749
|
aiDocs: z.array(AiDocsSchema),
|
|
@@ -1540,6 +1813,7 @@ const MOBILE_TESTING_VALUES = MobileTestingSchema.options;
|
|
|
1540
1813
|
const MOBILE_PUSH_VALUES = MobilePushSchema.options;
|
|
1541
1814
|
const MOBILE_OTA_VALUES = MobileOTASchema.options;
|
|
1542
1815
|
const MOBILE_DEEP_LINKING_VALUES = MobileDeepLinkingSchema.options;
|
|
1816
|
+
const MOBILE_LIBRARIES_VALUES = MobileLibrariesSchema.options;
|
|
1543
1817
|
const CMS_VALUES = CMSSchema.options;
|
|
1544
1818
|
const CACHING_VALUES = CachingSchema.options;
|
|
1545
1819
|
const RATE_LIMIT_VALUES = RateLimitSchema.options;
|
|
@@ -1576,6 +1850,13 @@ const PYTHON_CACHING_VALUES = PythonCachingSchema.options;
|
|
|
1576
1850
|
const PYTHON_REALTIME_VALUES = PythonRealtimeSchema.options;
|
|
1577
1851
|
const PYTHON_OBSERVABILITY_VALUES = PythonObservabilitySchema.options;
|
|
1578
1852
|
const PYTHON_CLI_VALUES = PythonCliSchema.options;
|
|
1853
|
+
const PYTHON_CLOUD_SDK_VALUES = PythonCloudSdkSchema.options;
|
|
1854
|
+
const PYTHON_HTTP_CLIENT_VALUES = PythonHttpClientSchema.options;
|
|
1855
|
+
const PYTHON_DATA_VALUES = PythonDataSchema.options;
|
|
1856
|
+
const PYTHON_MEDIA_VALUES = PythonMediaSchema.options;
|
|
1857
|
+
const PYTHON_SERVER_VALUES = PythonServerSchema.options;
|
|
1858
|
+
const PYTHON_PACKAGE_MANAGER_VALUES = PythonPackageManagerSchema.options;
|
|
1859
|
+
const PYTHON_MESSAGE_QUEUE_VALUES = PythonMessageQueueSchema.options;
|
|
1579
1860
|
const GO_WEB_FRAMEWORK_VALUES = GoWebFrameworkSchema.options;
|
|
1580
1861
|
const GO_ORM_VALUES = GoOrmSchema.options;
|
|
1581
1862
|
const GO_API_VALUES = GoApiSchema.options;
|
|
@@ -1588,6 +1869,12 @@ const GO_MESSAGE_QUEUE_VALUES = GoMessageQueueSchema.options;
|
|
|
1588
1869
|
const GO_CACHING_VALUES = GoCachingSchema.options;
|
|
1589
1870
|
const GO_CONFIG_VALUES = GoConfigSchema.options;
|
|
1590
1871
|
const GO_OBSERVABILITY_VALUES = GoObservabilitySchema.options;
|
|
1872
|
+
const GO_VALIDATION_VALUES = GoValidationSchema.options;
|
|
1873
|
+
const GO_QUALITY_VALUES = GoQualitySchema.options;
|
|
1874
|
+
const GO_MIGRATIONS_VALUES = GoMigrationsSchema.options;
|
|
1875
|
+
const GO_TEMPLATING_VALUES = GoTemplatingSchema.options;
|
|
1876
|
+
const GO_PROTO_TOOLING_VALUES = GoProtoToolingSchema.options;
|
|
1877
|
+
const GO_DI_VALUES = GoDISchema.options;
|
|
1591
1878
|
const JAVA_LANGUAGE_VALUES = JavaLanguageSchema.options;
|
|
1592
1879
|
const JAVA_WEB_FRAMEWORK_VALUES = JavaWebFrameworkSchema.options;
|
|
1593
1880
|
const JAVA_BUILD_TOOL_VALUES = JavaBuildToolSchema.options;
|
|
@@ -1608,6 +1895,7 @@ const DOTNET_OBSERVABILITY_VALUES = DotnetObservabilitySchema.options;
|
|
|
1608
1895
|
const DOTNET_VALIDATION_VALUES = DotnetValidationSchema.options;
|
|
1609
1896
|
const DOTNET_CACHING_VALUES = DotnetCachingSchema.options;
|
|
1610
1897
|
const DOTNET_DEPLOY_VALUES = DotnetDeploySchema.options;
|
|
1898
|
+
const DOTNET_LIBRARIES_VALUES = DotnetLibrariesSchema.options;
|
|
1611
1899
|
const ELIXIR_WEB_FRAMEWORK_VALUES = ElixirWebFrameworkSchema.options;
|
|
1612
1900
|
const ELIXIR_ORM_VALUES = ElixirOrmSchema.options;
|
|
1613
1901
|
const ELIXIR_AUTH_VALUES = ElixirAuthSchema.options;
|
|
@@ -1623,6 +1911,11 @@ const ELIXIR_CACHING_VALUES = ElixirCachingSchema.options;
|
|
|
1623
1911
|
const ELIXIR_OBSERVABILITY_VALUES = ElixirObservabilitySchema.options;
|
|
1624
1912
|
const ELIXIR_TESTING_VALUES = ElixirTestingSchema.options;
|
|
1625
1913
|
const ELIXIR_QUALITY_VALUES = ElixirQualitySchema.options;
|
|
1914
|
+
const ELIXIR_I18N_VALUES = ElixirI18nSchema.options;
|
|
1915
|
+
const ELIXIR_HTTP_SERVER_VALUES = ElixirHttpServerSchema.options;
|
|
1916
|
+
const ELIXIR_APPLICATION_FRAMEWORK_VALUES = ElixirApplicationFrameworkSchema.options;
|
|
1917
|
+
const ELIXIR_DOCUMENTATION_VALUES = ElixirDocumentationSchema.options;
|
|
1918
|
+
const ELIXIR_CLUSTERING_VALUES = ElixirClusteringSchema.options;
|
|
1626
1919
|
const ELIXIR_DEPLOY_VALUES = ElixirDeploySchema.options;
|
|
1627
1920
|
const AI_DOCS_VALUES = AiDocsSchema.options;
|
|
1628
1921
|
const SHADCN_BASE_VALUES = ShadcnBaseSchema.options;
|
|
@@ -1634,5 +1927,5 @@ const SHADCN_FONT_VALUES = ShadcnFontSchema.options;
|
|
|
1634
1927
|
const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
|
|
1635
1928
|
|
|
1636
1929
|
//#endregion
|
|
1637
|
-
export {
|
|
1638
|
-
//# sourceMappingURL=schemas-
|
|
1930
|
+
export { DotnetCachingSchema as $, WORKSPACE_SHAPE_VALUES as $a, RateLimitSchema as $i, InitResultSchema as $n, PYTHON_MEDIA_VALUES as $r, ElixirRealtimeSchema as $t, CSS_FRAMEWORK_VALUES as A, ShadcnColorThemeSchema as Aa, PythonRealtimeSchema as Ai, GO_TESTING_VALUES as An, MobileDeepLinkingSchema as Ar, ELIXIR_VALIDATION_VALUES as At, DOTNET_JOB_QUEUE_VALUES as B, TEMPLATE_VALUES as Ba, RUST_AUTH_VALUES as Bi, GoMessageQueueSchema as Bn, ORM_VALUES as Br, ElixirClusteringSchema as Bt, BetterTStackConfigFileSchema as C, SHADCN_RADIUS_VALUES as Ca, PythonHttpClientSchema as Ci, GO_MIGRATIONS_VALUES as Cn, MOBILE_LIBRARIES_VALUES as Cr, ELIXIR_JSON_VALUES as Ct, CMSSchema as D, ServerDeploySchema as Da, PythonOrmSchema as Di, GO_QUALITY_VALUES as Dn, MOBILE_STORAGE_VALUES as Dr, ELIXIR_QUALITY_VALUES as Dt, CLIInputSchema as E, SearchSchema as Ea, PythonObservabilitySchema as Ei, GO_PROTO_TOOLING_VALUES as En, MOBILE_PUSH_VALUES as Er, ELIXIR_ORM_VALUES as Et, DIRECTORY_CONFLICT_VALUES as F, StackPartEcosystemSchema as Fa, PythonWebFrameworkSchema as Fi, GoCachingSchema as Fn, MobileStorageSchema as Fr, EffectSchema as Ft, DOTNET_TESTING_VALUES as G, UI_LIBRARY_VALUES as Ga, RUST_LIBRARIES_VALUES as Gi, GoQualitySchema as Gn, PYTHON_API_VALUES as Gr, ElixirHttpServerSchema as Gt, DOTNET_OBSERVABILITY_VALUES as H, TemplateSchema as Ha, RUST_CLI_VALUES as Hi, GoObservabilitySchema as Hn, PACKAGE_MANAGER_VALUES as Hr, ElixirDocumentationSchema as Ht, DOTNET_API_VALUES as I, StackPartRoleSchema as Ia, RATE_LIMIT_VALUES as Ii, GoCliSchema as In, MobileTestingSchema as Ir, ElixirApiSchema as It, DatabaseSchema as J, VERSION_CHANNEL_VALUES as Ja, RUST_OBSERVABILITY_VALUES as Ji, GoTestingSchema as Jn, PYTHON_CLI_VALUES as Jr, ElixirJsonSchema as Jt, DOTNET_VALIDATION_VALUES as K, VALIDATION_VALUES as Ka, RUST_LOGGING_VALUES as Ki, GoRealtimeSchema as Kn, PYTHON_AUTH_VALUES as Kr, ElixirI18nSchema as Kt, DOTNET_AUTH_VALUES as L, StackPartSchema as La, REALTIME_VALUES as Li, GoConfigSchema as Ln, MobileUISchema as Lr, ElixirApplicationFrameworkSchema as Lt, CreateInputSchema as M, ShadcnIconLibrarySchema as Ma, PythonTaskQueueSchema as Mi, GO_WEB_FRAMEWORK_VALUES as Mn, MobileNavigationSchema as Mr, EMAIL_VALUES as Mt, DATABASE_SETUP_VALUES as N, ShadcnRadiusSchema as Na, PythonTestingSchema as Ni, GoApiSchema as Nn, MobileOTASchema as Nr, EXAMPLES_VALUES as Nt, CMS_VALUES as O, ShadcnBaseColorSchema as Oa, PythonPackageManagerSchema as Oi, GO_REALTIME_VALUES as On, MOBILE_TESTING_VALUES as Or, ELIXIR_REALTIME_VALUES as Ot, DATABASE_VALUES as P, ShadcnStyleSchema as Pa, PythonValidationSchema as Pi, GoAuthSchema as Pn, MobilePushSchema as Pr, EcosystemSchema as Pt, DotnetAuthSchema as Q, WEB_DEPLOY_VALUES as Qa, RUST_WEB_FRAMEWORK_VALUES as Qi, I18nSchema as Qn, PYTHON_HTTP_CLIENT_VALUES as Qr, ElixirQualitySchema as Qt, DOTNET_CACHING_VALUES as R, StackPartSourceSchema as Ra, RUNTIME_VALUES as Ri, GoDISchema as Rn, OBSERVABILITY_VALUES as Rr, ElixirAuthSchema as Rt, BetterFullstackConfigSchema as S, SHADCN_ICON_LIBRARY_VALUES as Sa, PythonGraphqlSchema as Si, GO_MESSAGE_QUEUE_VALUES as Sn, MOBILE_DEEP_LINKING_VALUES as Sr, ELIXIR_JOBS_VALUES as St, CACHING_VALUES as T, STATE_MANAGEMENT_VALUES as Ta, PythonMessageQueueSchema as Ti, GO_ORM_VALUES as Tn, MOBILE_OTA_VALUES as Tr, ELIXIR_OBSERVABILITY_VALUES as Tt, DOTNET_ORM_VALUES as U, TestingSchema as Ua, RUST_ERROR_HANDLING_VALUES as Ui, GoOrmSchema as Un, PAYMENTS_VALUES as Ur, ElixirEmailSchema as Ut, DOTNET_LIBRARIES_VALUES as V, TESTING_VALUES as Va, RUST_CACHING_VALUES as Vi, GoMigrationsSchema as Vn, ObservabilitySchema as Vr, ElixirDeploySchema as Vt, DOTNET_REALTIME_VALUES as W, UILibrarySchema as Wa, RUST_FRONTEND_VALUES as Wi, GoProtoToolingSchema as Wn, PYTHON_AI_VALUES as Wr, ElixirHttpSchema as Wt, DirectoryConflictSchema as X, VectorDbSchema as Xa, RUST_REALTIME_VALUES as Xi, GoWebFrameworkSchema as Xn, PYTHON_DATA_VALUES as Xr, ElixirObservabilitySchema as Xt, DatabaseSetupSchema as Y, ValidationSchema as Ya, RUST_ORM_VALUES as Yi, GoValidationSchema as Yn, PYTHON_CLOUD_SDK_VALUES as Yr, ElixirLibrariesSchema as Yt, DotnetApiSchema as Z, VersionChannelSchema as Za, RUST_TEMPLATING_VALUES as Zi, I18N_VALUES as Zn, PYTHON_GRAPHQL_VALUES as Zr, ElixirOrmSchema as Zt, AstroIntegrationSchema as _, SERVER_DEPLOY_VALUES as _a, PythonAuthSchema as _i, GO_CACHING_VALUES as _n, JavaTestingLibrariesSchema as _r, ELIXIR_DOCUMENTATION_VALUES as _t, ANALYTICS_VALUES as a, RustCliSchema as aa, PYTHON_REALTIME_VALUES as ai, FEATURE_FLAGS_VALUES as an, JAVA_LOGGING_VALUES as ar, DotnetRealtimeSchema as at, BackendSchema as b, SHADCN_COLOR_THEME_VALUES as ba, PythonCloudSdkSchema as bi, GO_DI_VALUES as bn, LOGGING_VALUES as br, ELIXIR_HTTP_VALUES as bt, API_VALUES as c, RustLibrariesSchema as ca, PYTHON_TESTING_VALUES as ci, FORMS_VALUES as cn, JAVA_WEB_FRAMEWORK_VALUES as cr, DotnetWebFrameworkSchema as ct, AUTH_VALUES as d, RustObservabilitySchema as da, PackageManagerSchema as di, FileStorageSchema as dn, JavaAuthSchema as dr, ELIXIR_API_VALUES as dt, RealtimeSchema as ea, PYTHON_MESSAGE_QUEUE_VALUES as ei, ElixirTestingSchema as en, WebDeploySchema as eo, JAVA_API_VALUES as er, DotnetDeploySchema as et, AddInputSchema as f, RustOrmSchema as fa, PaymentsSchema as fi, FileUploadSchema as fn, JavaBuildToolSchema as fr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as ft, AnimationSchema as g, SEARCH_VALUES as ga, PythonApiSchema as gi, GO_AUTH_VALUES as gn, JavaOrmSchema as gr, ELIXIR_DEPLOY_VALUES as gt, AnalyticsSchema as h, RustWebFrameworkSchema as ha, PythonAiSchema as hi, GO_API_VALUES as hn, JavaLoggingSchema as hr, ELIXIR_CLUSTERING_VALUES as ht, AI_VALUES as i, RustCachingSchema as ia, PYTHON_QUALITY_VALUES as ii, ExamplesSchema as in, JAVA_LIBRARIES_VALUES as ir, DotnetOrmSchema as it, CachingSchema as j, ShadcnFontSchema as ja, PythonServerSchema as ji, GO_VALIDATION_VALUES as jn, MobileLibrariesSchema as jr, ELIXIR_WEB_FRAMEWORK_VALUES as jt, CSSFrameworkSchema as k, ShadcnBaseSchema as ka, PythonQualitySchema as ki, GO_TEMPLATING_VALUES as kn, MOBILE_UI_VALUES as kr, ELIXIR_TESTING_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RustLoggingSchema as la, PYTHON_VALIDATION_VALUES as li, FRONTEND_VALUES as ln, JOB_QUEUE_VALUES as lr, ECOSYSTEM_VALUES as lt, AiDocsSchema as m, RustTemplatingSchema as ma, ProjectNameSchema as mi, FrontendSchema as mn, JavaLibrariesSchema as mr, ELIXIR_CACHING_VALUES as mt, AISchema as n, RustApiSchema as na, PYTHON_ORM_VALUES as ni, ElixirWebFrameworkSchema as nn, JAVA_BUILD_TOOL_VALUES as nr, DotnetLibrariesSchema as nt, ANIMATION_VALUES as o, RustErrorHandlingSchema as oa, PYTHON_SERVER_VALUES as oi, FILE_STORAGE_VALUES as on, JAVA_ORM_VALUES as or, DotnetTestingSchema as ot, AddonsSchema as p, RustRealtimeSchema as pa, ProjectConfigSchema as pi, FormsSchema as pn, JavaLanguageSchema as pr, ELIXIR_AUTH_VALUES as pt, DOTNET_WEB_FRAMEWORK_VALUES as q, VECTOR_DB_VALUES as qa, RUST_MESSAGE_QUEUE_VALUES as qi, GoTemplatingSchema as qn, PYTHON_CACHING_VALUES as qr, ElixirJobsSchema as qt, AI_DOCS_VALUES as r, RustAuthSchema as ra, PYTHON_PACKAGE_MANAGER_VALUES as ri, EmailSchema as rn, JAVA_LANGUAGE_VALUES as rr, DotnetObservabilitySchema as rt, APISchema as s, RustFrontendSchema as sa, PYTHON_TASK_QUEUE_VALUES as si, FILE_UPLOAD_VALUES as sn, JAVA_TESTING_LIBRARIES_VALUES as sr, DotnetValidationSchema as st, ADDONS_VALUES as t, RuntimeSchema as ta, PYTHON_OBSERVABILITY_VALUES as ti, ElixirValidationSchema as tn, WorkspaceShapeSchema as to, JAVA_AUTH_VALUES as tr, DotnetJobQueueSchema as tt, ASTRO_INTEGRATION_VALUES as u, RustMessageQueueSchema as ua, PYTHON_WEB_FRAMEWORK_VALUES as ui, FeatureFlagsSchema as un, JavaApiSchema as ur, EFFECT_VALUES as ut, AuthSchema as v, SHADCN_BASE_COLOR_VALUES as va, PythonCachingSchema as vi, GO_CLI_VALUES as vn, JavaWebFrameworkSchema as vr, ELIXIR_EMAIL_VALUES as vt, BetterTStackConfigSchema as w, SHADCN_STYLE_VALUES as wa, PythonMediaSchema as wi, GO_OBSERVABILITY_VALUES as wn, MOBILE_NAVIGATION_VALUES as wr, ELIXIR_LIBRARIES_VALUES as wt, BetterFullstackConfigFileSchema as x, SHADCN_FONT_VALUES as xa, PythonDataSchema as xi, GO_LOGGING_VALUES as xn, LoggingSchema as xr, ELIXIR_I18N_VALUES as xt, BACKEND_VALUES as y, SHADCN_BASE_VALUES as ya, PythonCliSchema as yi, GO_CONFIG_VALUES as yn, JobQueueSchema as yr, ELIXIR_HTTP_SERVER_VALUES as yt, DOTNET_DEPLOY_VALUES as z, StateManagementSchema as za, RUST_API_VALUES as zi, GoLoggingSchema as zn, ORMSchema as zr, ElixirCachingSchema as zt };
|
|
1931
|
+
//# sourceMappingURL=schemas-CprYz5Sh.mjs.map
|