@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
package/dist/json-schema.d.mts
CHANGED
|
@@ -86,6 +86,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
86
86
|
"tanstack-virtual": "tanstack-virtual";
|
|
87
87
|
"tanstack-db": "tanstack-db";
|
|
88
88
|
"tanstack-pacer": "tanstack-pacer";
|
|
89
|
+
"backend-utils": "backend-utils";
|
|
89
90
|
"docker-compose": "docker-compose";
|
|
90
91
|
}>>;
|
|
91
92
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
@@ -123,12 +124,15 @@ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
|
|
|
123
124
|
declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
124
125
|
none: "none";
|
|
125
126
|
"better-auth": "better-auth";
|
|
127
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
126
128
|
"go-better-auth": "go-better-auth";
|
|
127
129
|
clerk: "clerk";
|
|
128
130
|
nextauth: "nextauth";
|
|
129
131
|
"stack-auth": "stack-auth";
|
|
130
132
|
"supabase-auth": "supabase-auth";
|
|
131
133
|
auth0: "auth0";
|
|
134
|
+
workos: "workos";
|
|
135
|
+
kinde: "kinde";
|
|
132
136
|
}>>;
|
|
133
137
|
declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
134
138
|
none: "none";
|
|
@@ -144,6 +148,8 @@ declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z
|
|
|
144
148
|
cloudflare: "cloudflare";
|
|
145
149
|
fly: "fly";
|
|
146
150
|
railway: "railway";
|
|
151
|
+
render: "render";
|
|
152
|
+
netlify: "netlify";
|
|
147
153
|
sst: "sst";
|
|
148
154
|
vercel: "vercel";
|
|
149
155
|
}>>;
|
|
@@ -153,6 +159,8 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
153
159
|
cloudflare: "cloudflare";
|
|
154
160
|
fly: "fly";
|
|
155
161
|
railway: "railway";
|
|
162
|
+
render: "render";
|
|
163
|
+
netlify: "netlify";
|
|
156
164
|
sst: "sst";
|
|
157
165
|
vercel: "vercel";
|
|
158
166
|
}>>;
|
|
@@ -191,6 +199,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
191
199
|
go: "go";
|
|
192
200
|
java: "java";
|
|
193
201
|
elixir: "elixir";
|
|
202
|
+
dotnet: "dotnet";
|
|
194
203
|
}>>;
|
|
195
204
|
database: z.ZodOptional<z.ZodEnum<{
|
|
196
205
|
none: "none";
|
|
@@ -214,12 +223,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
214
223
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
215
224
|
none: "none";
|
|
216
225
|
"better-auth": "better-auth";
|
|
226
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
217
227
|
"go-better-auth": "go-better-auth";
|
|
218
228
|
clerk: "clerk";
|
|
219
229
|
nextauth: "nextauth";
|
|
220
230
|
"stack-auth": "stack-auth";
|
|
221
231
|
"supabase-auth": "supabase-auth";
|
|
222
232
|
auth0: "auth0";
|
|
233
|
+
workos: "workos";
|
|
234
|
+
kinde: "kinde";
|
|
223
235
|
}>>;
|
|
224
236
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
225
237
|
none: "none";
|
|
@@ -275,6 +287,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
275
287
|
"tanstack-virtual": "tanstack-virtual";
|
|
276
288
|
"tanstack-db": "tanstack-db";
|
|
277
289
|
"tanstack-pacer": "tanstack-pacer";
|
|
290
|
+
"backend-utils": "backend-utils";
|
|
278
291
|
"docker-compose": "docker-compose";
|
|
279
292
|
}>>>;
|
|
280
293
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -342,6 +355,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
342
355
|
cloudflare: "cloudflare";
|
|
343
356
|
fly: "fly";
|
|
344
357
|
railway: "railway";
|
|
358
|
+
render: "render";
|
|
359
|
+
netlify: "netlify";
|
|
345
360
|
sst: "sst";
|
|
346
361
|
vercel: "vercel";
|
|
347
362
|
}>>;
|
|
@@ -351,6 +366,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
351
366
|
cloudflare: "cloudflare";
|
|
352
367
|
fly: "fly";
|
|
353
368
|
railway: "railway";
|
|
369
|
+
render: "render";
|
|
370
|
+
netlify: "netlify";
|
|
354
371
|
sst: "sst";
|
|
355
372
|
vercel: "vercel";
|
|
356
373
|
}>>;
|
|
@@ -437,7 +454,6 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
437
454
|
"postcss-only": "postcss-only";
|
|
438
455
|
}>>;
|
|
439
456
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
440
|
-
mui: "mui";
|
|
441
457
|
none: "none";
|
|
442
458
|
"shadcn-ui": "shadcn-ui";
|
|
443
459
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -448,6 +464,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
448
464
|
"chakra-ui": "chakra-ui";
|
|
449
465
|
nextui: "nextui";
|
|
450
466
|
mantine: "mantine";
|
|
467
|
+
mui: "mui";
|
|
451
468
|
antd: "antd";
|
|
452
469
|
"base-ui": "base-ui";
|
|
453
470
|
"ark-ui": "ark-ui";
|
|
@@ -519,8 +536,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
519
536
|
"geist-mono": "geist-mono";
|
|
520
537
|
}>>;
|
|
521
538
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
522
|
-
none: "none";
|
|
523
539
|
default: "default";
|
|
540
|
+
none: "none";
|
|
524
541
|
small: "small";
|
|
525
542
|
medium: "medium";
|
|
526
543
|
large: "large";
|
|
@@ -576,6 +593,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
576
593
|
opentelemetry: "opentelemetry";
|
|
577
594
|
sentry: "sentry";
|
|
578
595
|
grafana: "grafana";
|
|
596
|
+
datadog: "datadog";
|
|
597
|
+
axiom: "axiom";
|
|
598
|
+
betterstack: "betterstack";
|
|
579
599
|
}>>;
|
|
580
600
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
581
601
|
none: "none";
|
|
@@ -602,6 +622,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
602
622
|
none: "none";
|
|
603
623
|
"upstash-redis": "upstash-redis";
|
|
604
624
|
}>>;
|
|
625
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
626
|
+
none: "none";
|
|
627
|
+
arcjet: "arcjet";
|
|
628
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
629
|
+
}>>;
|
|
605
630
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
606
631
|
none: "none";
|
|
607
632
|
i18next: "i18next";
|
|
@@ -682,12 +707,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
682
707
|
ratatui: "ratatui";
|
|
683
708
|
}>>;
|
|
684
709
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
710
|
+
config: "config";
|
|
685
711
|
none: "none";
|
|
686
712
|
serde: "serde";
|
|
687
713
|
uuid: "uuid";
|
|
688
714
|
chrono: "chrono";
|
|
689
715
|
reqwest: "reqwest";
|
|
690
|
-
config: "config";
|
|
691
716
|
dashmap: "dashmap";
|
|
692
717
|
"parking-lot": "parking-lot";
|
|
693
718
|
secrecy: "secrecy";
|
|
@@ -719,6 +744,24 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
719
744
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
720
745
|
none: "none";
|
|
721
746
|
oauth2: "oauth2";
|
|
747
|
+
torii: "torii";
|
|
748
|
+
}>>;
|
|
749
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
750
|
+
none: "none";
|
|
751
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
752
|
+
}>>;
|
|
753
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
754
|
+
none: "none";
|
|
755
|
+
lapin: "lapin";
|
|
756
|
+
}>>;
|
|
757
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
758
|
+
none: "none";
|
|
759
|
+
opentelemetry: "opentelemetry";
|
|
760
|
+
}>>;
|
|
761
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
762
|
+
none: "none";
|
|
763
|
+
askama: "askama";
|
|
764
|
+
tera: "tera";
|
|
722
765
|
}>>;
|
|
723
766
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
724
767
|
none: "none";
|
|
@@ -726,12 +769,14 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
726
769
|
django: "django";
|
|
727
770
|
flask: "flask";
|
|
728
771
|
litestar: "litestar";
|
|
772
|
+
starlette: "starlette";
|
|
729
773
|
}>>;
|
|
730
774
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
731
775
|
none: "none";
|
|
732
776
|
sqlalchemy: "sqlalchemy";
|
|
733
777
|
sqlmodel: "sqlmodel";
|
|
734
778
|
"tortoise-orm": "tortoise-orm";
|
|
779
|
+
peewee: "peewee";
|
|
735
780
|
}>>;
|
|
736
781
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
737
782
|
none: "none";
|
|
@@ -740,17 +785,21 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
740
785
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
741
786
|
none: "none";
|
|
742
787
|
langgraph: "langgraph";
|
|
788
|
+
"google-adk": "google-adk";
|
|
743
789
|
langchain: "langchain";
|
|
744
790
|
llamaindex: "llamaindex";
|
|
745
791
|
"openai-sdk": "openai-sdk";
|
|
746
792
|
"anthropic-sdk": "anthropic-sdk";
|
|
747
793
|
crewai: "crewai";
|
|
748
794
|
haystack: "haystack";
|
|
795
|
+
"pydantic-ai": "pydantic-ai";
|
|
796
|
+
smolagents: "smolagents";
|
|
749
797
|
}>>>;
|
|
750
798
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
751
799
|
none: "none";
|
|
752
800
|
authlib: "authlib";
|
|
753
801
|
jwt: "jwt";
|
|
802
|
+
"fastapi-users": "fastapi-users";
|
|
754
803
|
}>>;
|
|
755
804
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
756
805
|
none: "none";
|
|
@@ -763,6 +812,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
763
812
|
rq: "rq";
|
|
764
813
|
dramatiq: "dramatiq";
|
|
765
814
|
huey: "huey";
|
|
815
|
+
taskiq: "taskiq";
|
|
766
816
|
}>>;
|
|
767
817
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
768
818
|
none: "none";
|
|
@@ -775,6 +825,31 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
775
825
|
mypy: "mypy";
|
|
776
826
|
pyright: "pyright";
|
|
777
827
|
}>>;
|
|
828
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
829
|
+
none: "none";
|
|
830
|
+
pytest: "pytest";
|
|
831
|
+
hypothesis: "hypothesis";
|
|
832
|
+
}>>>;
|
|
833
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
834
|
+
none: "none";
|
|
835
|
+
redis: "redis";
|
|
836
|
+
aiocache: "aiocache";
|
|
837
|
+
}>>;
|
|
838
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
839
|
+
none: "none";
|
|
840
|
+
"python-socketio": "python-socketio";
|
|
841
|
+
websockets: "websockets";
|
|
842
|
+
}>>;
|
|
843
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
844
|
+
none: "none";
|
|
845
|
+
opentelemetry: "opentelemetry";
|
|
846
|
+
}>>;
|
|
847
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
848
|
+
none: "none";
|
|
849
|
+
typer: "typer";
|
|
850
|
+
click: "click";
|
|
851
|
+
rich: "rich";
|
|
852
|
+
}>>>;
|
|
778
853
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
779
854
|
none: "none";
|
|
780
855
|
gin: "gin";
|
|
@@ -783,14 +858,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
783
858
|
chi: "chi";
|
|
784
859
|
}>>;
|
|
785
860
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
786
|
-
gorm: "gorm";
|
|
787
861
|
none: "none";
|
|
862
|
+
gorm: "gorm";
|
|
788
863
|
sqlc: "sqlc";
|
|
789
864
|
ent: "ent";
|
|
790
865
|
}>>;
|
|
791
866
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
792
867
|
none: "none";
|
|
793
868
|
"grpc-go": "grpc-go";
|
|
869
|
+
gqlgen: "gqlgen";
|
|
794
870
|
}>>;
|
|
795
871
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
796
872
|
none: "none";
|
|
@@ -809,6 +885,36 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
809
885
|
none: "none";
|
|
810
886
|
jwt: "jwt";
|
|
811
887
|
casbin: "casbin";
|
|
888
|
+
goth: "goth";
|
|
889
|
+
}>>;
|
|
890
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
891
|
+
none: "none";
|
|
892
|
+
testify: "testify";
|
|
893
|
+
gomock: "gomock";
|
|
894
|
+
}>>>;
|
|
895
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
896
|
+
none: "none";
|
|
897
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
898
|
+
centrifuge: "centrifuge";
|
|
899
|
+
}>>;
|
|
900
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
901
|
+
none: "none";
|
|
902
|
+
nats: "nats";
|
|
903
|
+
watermill: "watermill";
|
|
904
|
+
}>>;
|
|
905
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
906
|
+
none: "none";
|
|
907
|
+
redis: "redis";
|
|
908
|
+
ristretto: "ristretto";
|
|
909
|
+
}>>;
|
|
910
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
911
|
+
none: "none";
|
|
912
|
+
viper: "viper";
|
|
913
|
+
koanf: "koanf";
|
|
914
|
+
}>>;
|
|
915
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
916
|
+
none: "none";
|
|
917
|
+
opentelemetry: "opentelemetry";
|
|
812
918
|
}>>;
|
|
813
919
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
814
920
|
none: "none";
|
|
@@ -823,10 +929,21 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
823
929
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
824
930
|
none: "none";
|
|
825
931
|
"spring-data-jpa": "spring-data-jpa";
|
|
932
|
+
jooq: "jooq";
|
|
933
|
+
mybatis: "mybatis";
|
|
826
934
|
}>>;
|
|
827
935
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
828
936
|
none: "none";
|
|
829
937
|
"spring-security": "spring-security";
|
|
938
|
+
keycloak: "keycloak";
|
|
939
|
+
}>>;
|
|
940
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
941
|
+
none: "none";
|
|
942
|
+
"spring-graphql": "spring-graphql";
|
|
943
|
+
}>>;
|
|
944
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
945
|
+
none: "none";
|
|
946
|
+
logback: "logback";
|
|
830
947
|
}>>;
|
|
831
948
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
832
949
|
none: "none";
|
|
@@ -846,6 +963,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
846
963
|
"spring-devtools": "spring-devtools";
|
|
847
964
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
848
965
|
thymeleaf: "thymeleaf";
|
|
966
|
+
"spring-amqp": "spring-amqp";
|
|
967
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
849
968
|
}>>>;
|
|
850
969
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
851
970
|
none: "none";
|
|
@@ -859,6 +978,70 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
859
978
|
archunit: "archunit";
|
|
860
979
|
jqwik: "jqwik";
|
|
861
980
|
}>>>;
|
|
981
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
982
|
+
none: "none";
|
|
983
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
984
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
985
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
986
|
+
}>>;
|
|
987
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
988
|
+
none: "none";
|
|
989
|
+
"ef-core": "ef-core";
|
|
990
|
+
dapper: "dapper";
|
|
991
|
+
linq2db: "linq2db";
|
|
992
|
+
}>>;
|
|
993
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
994
|
+
none: "none";
|
|
995
|
+
"aspnet-identity": "aspnet-identity";
|
|
996
|
+
"duende-identityserver": "duende-identityserver";
|
|
997
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
998
|
+
}>>;
|
|
999
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
1000
|
+
none: "none";
|
|
1001
|
+
"minimal-api": "minimal-api";
|
|
1002
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
1003
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
1004
|
+
}>>;
|
|
1005
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1006
|
+
none: "none";
|
|
1007
|
+
xunit: "xunit";
|
|
1008
|
+
nunit: "nunit";
|
|
1009
|
+
moq: "moq";
|
|
1010
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
1011
|
+
}>>>;
|
|
1012
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
1013
|
+
none: "none";
|
|
1014
|
+
hangfire: "hangfire";
|
|
1015
|
+
"quartz-net": "quartz-net";
|
|
1016
|
+
"hosted-services": "hosted-services";
|
|
1017
|
+
}>>;
|
|
1018
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1019
|
+
none: "none";
|
|
1020
|
+
signalr: "signalr";
|
|
1021
|
+
}>>;
|
|
1022
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1023
|
+
none: "none";
|
|
1024
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
1025
|
+
serilog: "serilog";
|
|
1026
|
+
nlog: "nlog";
|
|
1027
|
+
"health-checks": "health-checks";
|
|
1028
|
+
}>>>;
|
|
1029
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
1030
|
+
none: "none";
|
|
1031
|
+
fluentvalidation: "fluentvalidation";
|
|
1032
|
+
"data-annotations": "data-annotations";
|
|
1033
|
+
}>>;
|
|
1034
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
1035
|
+
none: "none";
|
|
1036
|
+
redis: "redis";
|
|
1037
|
+
"memory-cache": "memory-cache";
|
|
1038
|
+
}>>;
|
|
1039
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1040
|
+
none: "none";
|
|
1041
|
+
docker: "docker";
|
|
1042
|
+
azure: "azure";
|
|
1043
|
+
aws: "aws";
|
|
1044
|
+
}>>;
|
|
862
1045
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
863
1046
|
none: "none";
|
|
864
1047
|
phoenix: "phoenix";
|
|
@@ -879,6 +1062,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
879
1062
|
none: "none";
|
|
880
1063
|
rest: "rest";
|
|
881
1064
|
absinthe: "absinthe";
|
|
1065
|
+
grpc: "grpc";
|
|
882
1066
|
}>>;
|
|
883
1067
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
884
1068
|
none: "none";
|
|
@@ -941,6 +1125,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
941
1125
|
gigalixir: "gigalixir";
|
|
942
1126
|
"mix-release": "mix-release";
|
|
943
1127
|
}>>;
|
|
1128
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1129
|
+
none: "none";
|
|
1130
|
+
broadway: "broadway";
|
|
1131
|
+
nx: "nx";
|
|
1132
|
+
}>>>;
|
|
944
1133
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
945
1134
|
none: "none";
|
|
946
1135
|
"claude-md": "claude-md";
|
|
@@ -961,6 +1150,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
961
1150
|
go: "go";
|
|
962
1151
|
java: "java";
|
|
963
1152
|
elixir: "elixir";
|
|
1153
|
+
dotnet: "dotnet";
|
|
964
1154
|
}>;
|
|
965
1155
|
database: z.ZodEnum<{
|
|
966
1156
|
none: "none";
|
|
@@ -1047,6 +1237,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1047
1237
|
"tanstack-virtual": "tanstack-virtual";
|
|
1048
1238
|
"tanstack-db": "tanstack-db";
|
|
1049
1239
|
"tanstack-pacer": "tanstack-pacer";
|
|
1240
|
+
"backend-utils": "backend-utils";
|
|
1050
1241
|
"docker-compose": "docker-compose";
|
|
1051
1242
|
}>>;
|
|
1052
1243
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -1058,12 +1249,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1058
1249
|
auth: z.ZodEnum<{
|
|
1059
1250
|
none: "none";
|
|
1060
1251
|
"better-auth": "better-auth";
|
|
1252
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
1061
1253
|
"go-better-auth": "go-better-auth";
|
|
1062
1254
|
clerk: "clerk";
|
|
1063
1255
|
nextauth: "nextauth";
|
|
1064
1256
|
"stack-auth": "stack-auth";
|
|
1065
1257
|
"supabase-auth": "supabase-auth";
|
|
1066
1258
|
auth0: "auth0";
|
|
1259
|
+
workos: "workos";
|
|
1260
|
+
kinde: "kinde";
|
|
1067
1261
|
}>;
|
|
1068
1262
|
payments: z.ZodEnum<{
|
|
1069
1263
|
none: "none";
|
|
@@ -1112,6 +1306,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1112
1306
|
cloudflare: "cloudflare";
|
|
1113
1307
|
fly: "fly";
|
|
1114
1308
|
railway: "railway";
|
|
1309
|
+
render: "render";
|
|
1310
|
+
netlify: "netlify";
|
|
1115
1311
|
sst: "sst";
|
|
1116
1312
|
vercel: "vercel";
|
|
1117
1313
|
}>;
|
|
@@ -1121,6 +1317,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1121
1317
|
cloudflare: "cloudflare";
|
|
1122
1318
|
fly: "fly";
|
|
1123
1319
|
railway: "railway";
|
|
1320
|
+
render: "render";
|
|
1321
|
+
netlify: "netlify";
|
|
1124
1322
|
sst: "sst";
|
|
1125
1323
|
vercel: "vercel";
|
|
1126
1324
|
}>;
|
|
@@ -1198,7 +1396,6 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1198
1396
|
"postcss-only": "postcss-only";
|
|
1199
1397
|
}>;
|
|
1200
1398
|
uiLibrary: z.ZodEnum<{
|
|
1201
|
-
mui: "mui";
|
|
1202
1399
|
none: "none";
|
|
1203
1400
|
"shadcn-ui": "shadcn-ui";
|
|
1204
1401
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1209,6 +1406,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1209
1406
|
"chakra-ui": "chakra-ui";
|
|
1210
1407
|
nextui: "nextui";
|
|
1211
1408
|
mantine: "mantine";
|
|
1409
|
+
mui: "mui";
|
|
1212
1410
|
antd: "antd";
|
|
1213
1411
|
"base-ui": "base-ui";
|
|
1214
1412
|
"ark-ui": "ark-ui";
|
|
@@ -1280,8 +1478,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1280
1478
|
"geist-mono": "geist-mono";
|
|
1281
1479
|
}>>;
|
|
1282
1480
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1283
|
-
none: "none";
|
|
1284
1481
|
default: "default";
|
|
1482
|
+
none: "none";
|
|
1285
1483
|
small: "small";
|
|
1286
1484
|
medium: "medium";
|
|
1287
1485
|
large: "large";
|
|
@@ -1337,6 +1535,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1337
1535
|
opentelemetry: "opentelemetry";
|
|
1338
1536
|
sentry: "sentry";
|
|
1339
1537
|
grafana: "grafana";
|
|
1538
|
+
datadog: "datadog";
|
|
1539
|
+
axiom: "axiom";
|
|
1540
|
+
betterstack: "betterstack";
|
|
1340
1541
|
}>;
|
|
1341
1542
|
featureFlags: z.ZodEnum<{
|
|
1342
1543
|
none: "none";
|
|
@@ -1363,6 +1564,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1363
1564
|
none: "none";
|
|
1364
1565
|
"upstash-redis": "upstash-redis";
|
|
1365
1566
|
}>;
|
|
1567
|
+
rateLimit: z.ZodEnum<{
|
|
1568
|
+
none: "none";
|
|
1569
|
+
arcjet: "arcjet";
|
|
1570
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
1571
|
+
}>;
|
|
1366
1572
|
i18n: z.ZodEnum<{
|
|
1367
1573
|
none: "none";
|
|
1368
1574
|
i18next: "i18next";
|
|
@@ -1443,12 +1649,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1443
1649
|
ratatui: "ratatui";
|
|
1444
1650
|
}>;
|
|
1445
1651
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
1652
|
+
config: "config";
|
|
1446
1653
|
none: "none";
|
|
1447
1654
|
serde: "serde";
|
|
1448
1655
|
uuid: "uuid";
|
|
1449
1656
|
chrono: "chrono";
|
|
1450
1657
|
reqwest: "reqwest";
|
|
1451
|
-
config: "config";
|
|
1452
1658
|
dashmap: "dashmap";
|
|
1453
1659
|
"parking-lot": "parking-lot";
|
|
1454
1660
|
secrecy: "secrecy";
|
|
@@ -1480,6 +1686,24 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1480
1686
|
rustAuth: z.ZodEnum<{
|
|
1481
1687
|
none: "none";
|
|
1482
1688
|
oauth2: "oauth2";
|
|
1689
|
+
torii: "torii";
|
|
1690
|
+
}>;
|
|
1691
|
+
rustRealtime: z.ZodEnum<{
|
|
1692
|
+
none: "none";
|
|
1693
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
1694
|
+
}>;
|
|
1695
|
+
rustMessageQueue: z.ZodEnum<{
|
|
1696
|
+
none: "none";
|
|
1697
|
+
lapin: "lapin";
|
|
1698
|
+
}>;
|
|
1699
|
+
rustObservability: z.ZodEnum<{
|
|
1700
|
+
none: "none";
|
|
1701
|
+
opentelemetry: "opentelemetry";
|
|
1702
|
+
}>;
|
|
1703
|
+
rustTemplating: z.ZodEnum<{
|
|
1704
|
+
none: "none";
|
|
1705
|
+
askama: "askama";
|
|
1706
|
+
tera: "tera";
|
|
1483
1707
|
}>;
|
|
1484
1708
|
pythonWebFramework: z.ZodEnum<{
|
|
1485
1709
|
none: "none";
|
|
@@ -1487,12 +1711,14 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1487
1711
|
django: "django";
|
|
1488
1712
|
flask: "flask";
|
|
1489
1713
|
litestar: "litestar";
|
|
1714
|
+
starlette: "starlette";
|
|
1490
1715
|
}>;
|
|
1491
1716
|
pythonOrm: z.ZodEnum<{
|
|
1492
1717
|
none: "none";
|
|
1493
1718
|
sqlalchemy: "sqlalchemy";
|
|
1494
1719
|
sqlmodel: "sqlmodel";
|
|
1495
1720
|
"tortoise-orm": "tortoise-orm";
|
|
1721
|
+
peewee: "peewee";
|
|
1496
1722
|
}>;
|
|
1497
1723
|
pythonValidation: z.ZodEnum<{
|
|
1498
1724
|
none: "none";
|
|
@@ -1501,17 +1727,21 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1501
1727
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
1502
1728
|
none: "none";
|
|
1503
1729
|
langgraph: "langgraph";
|
|
1730
|
+
"google-adk": "google-adk";
|
|
1504
1731
|
langchain: "langchain";
|
|
1505
1732
|
llamaindex: "llamaindex";
|
|
1506
1733
|
"openai-sdk": "openai-sdk";
|
|
1507
1734
|
"anthropic-sdk": "anthropic-sdk";
|
|
1508
1735
|
crewai: "crewai";
|
|
1509
1736
|
haystack: "haystack";
|
|
1737
|
+
"pydantic-ai": "pydantic-ai";
|
|
1738
|
+
smolagents: "smolagents";
|
|
1510
1739
|
}>>;
|
|
1511
1740
|
pythonAuth: z.ZodEnum<{
|
|
1512
1741
|
none: "none";
|
|
1513
1742
|
authlib: "authlib";
|
|
1514
1743
|
jwt: "jwt";
|
|
1744
|
+
"fastapi-users": "fastapi-users";
|
|
1515
1745
|
}>;
|
|
1516
1746
|
pythonApi: z.ZodEnum<{
|
|
1517
1747
|
none: "none";
|
|
@@ -1524,6 +1754,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1524
1754
|
rq: "rq";
|
|
1525
1755
|
dramatiq: "dramatiq";
|
|
1526
1756
|
huey: "huey";
|
|
1757
|
+
taskiq: "taskiq";
|
|
1527
1758
|
}>;
|
|
1528
1759
|
pythonGraphql: z.ZodEnum<{
|
|
1529
1760
|
none: "none";
|
|
@@ -1536,6 +1767,31 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1536
1767
|
mypy: "mypy";
|
|
1537
1768
|
pyright: "pyright";
|
|
1538
1769
|
}>;
|
|
1770
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
1771
|
+
none: "none";
|
|
1772
|
+
pytest: "pytest";
|
|
1773
|
+
hypothesis: "hypothesis";
|
|
1774
|
+
}>>;
|
|
1775
|
+
pythonCaching: z.ZodEnum<{
|
|
1776
|
+
none: "none";
|
|
1777
|
+
redis: "redis";
|
|
1778
|
+
aiocache: "aiocache";
|
|
1779
|
+
}>;
|
|
1780
|
+
pythonRealtime: z.ZodEnum<{
|
|
1781
|
+
none: "none";
|
|
1782
|
+
"python-socketio": "python-socketio";
|
|
1783
|
+
websockets: "websockets";
|
|
1784
|
+
}>;
|
|
1785
|
+
pythonObservability: z.ZodEnum<{
|
|
1786
|
+
none: "none";
|
|
1787
|
+
opentelemetry: "opentelemetry";
|
|
1788
|
+
}>;
|
|
1789
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
1790
|
+
none: "none";
|
|
1791
|
+
typer: "typer";
|
|
1792
|
+
click: "click";
|
|
1793
|
+
rich: "rich";
|
|
1794
|
+
}>>;
|
|
1539
1795
|
goWebFramework: z.ZodEnum<{
|
|
1540
1796
|
none: "none";
|
|
1541
1797
|
gin: "gin";
|
|
@@ -1544,14 +1800,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1544
1800
|
chi: "chi";
|
|
1545
1801
|
}>;
|
|
1546
1802
|
goOrm: z.ZodEnum<{
|
|
1547
|
-
gorm: "gorm";
|
|
1548
1803
|
none: "none";
|
|
1804
|
+
gorm: "gorm";
|
|
1549
1805
|
sqlc: "sqlc";
|
|
1550
1806
|
ent: "ent";
|
|
1551
1807
|
}>;
|
|
1552
1808
|
goApi: z.ZodEnum<{
|
|
1553
1809
|
none: "none";
|
|
1554
1810
|
"grpc-go": "grpc-go";
|
|
1811
|
+
gqlgen: "gqlgen";
|
|
1555
1812
|
}>;
|
|
1556
1813
|
goCli: z.ZodEnum<{
|
|
1557
1814
|
none: "none";
|
|
@@ -1570,6 +1827,36 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1570
1827
|
none: "none";
|
|
1571
1828
|
jwt: "jwt";
|
|
1572
1829
|
casbin: "casbin";
|
|
1830
|
+
goth: "goth";
|
|
1831
|
+
}>;
|
|
1832
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
1833
|
+
none: "none";
|
|
1834
|
+
testify: "testify";
|
|
1835
|
+
gomock: "gomock";
|
|
1836
|
+
}>>;
|
|
1837
|
+
goRealtime: z.ZodEnum<{
|
|
1838
|
+
none: "none";
|
|
1839
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
1840
|
+
centrifuge: "centrifuge";
|
|
1841
|
+
}>;
|
|
1842
|
+
goMessageQueue: z.ZodEnum<{
|
|
1843
|
+
none: "none";
|
|
1844
|
+
nats: "nats";
|
|
1845
|
+
watermill: "watermill";
|
|
1846
|
+
}>;
|
|
1847
|
+
goCaching: z.ZodEnum<{
|
|
1848
|
+
none: "none";
|
|
1849
|
+
redis: "redis";
|
|
1850
|
+
ristretto: "ristretto";
|
|
1851
|
+
}>;
|
|
1852
|
+
goConfig: z.ZodEnum<{
|
|
1853
|
+
none: "none";
|
|
1854
|
+
viper: "viper";
|
|
1855
|
+
koanf: "koanf";
|
|
1856
|
+
}>;
|
|
1857
|
+
goObservability: z.ZodEnum<{
|
|
1858
|
+
none: "none";
|
|
1859
|
+
opentelemetry: "opentelemetry";
|
|
1573
1860
|
}>;
|
|
1574
1861
|
javaWebFramework: z.ZodEnum<{
|
|
1575
1862
|
none: "none";
|
|
@@ -1584,10 +1871,21 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1584
1871
|
javaOrm: z.ZodEnum<{
|
|
1585
1872
|
none: "none";
|
|
1586
1873
|
"spring-data-jpa": "spring-data-jpa";
|
|
1874
|
+
jooq: "jooq";
|
|
1875
|
+
mybatis: "mybatis";
|
|
1587
1876
|
}>;
|
|
1588
1877
|
javaAuth: z.ZodEnum<{
|
|
1589
1878
|
none: "none";
|
|
1590
1879
|
"spring-security": "spring-security";
|
|
1880
|
+
keycloak: "keycloak";
|
|
1881
|
+
}>;
|
|
1882
|
+
javaApi: z.ZodEnum<{
|
|
1883
|
+
none: "none";
|
|
1884
|
+
"spring-graphql": "spring-graphql";
|
|
1885
|
+
}>;
|
|
1886
|
+
javaLogging: z.ZodEnum<{
|
|
1887
|
+
none: "none";
|
|
1888
|
+
logback: "logback";
|
|
1591
1889
|
}>;
|
|
1592
1890
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
1593
1891
|
none: "none";
|
|
@@ -1607,6 +1905,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1607
1905
|
"spring-devtools": "spring-devtools";
|
|
1608
1906
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
1609
1907
|
thymeleaf: "thymeleaf";
|
|
1908
|
+
"spring-amqp": "spring-amqp";
|
|
1909
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
1610
1910
|
}>>;
|
|
1611
1911
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
1612
1912
|
none: "none";
|
|
@@ -1620,6 +1920,70 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1620
1920
|
archunit: "archunit";
|
|
1621
1921
|
jqwik: "jqwik";
|
|
1622
1922
|
}>>;
|
|
1923
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
1924
|
+
none: "none";
|
|
1925
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
1926
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
1927
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
1928
|
+
}>;
|
|
1929
|
+
dotnetOrm: z.ZodEnum<{
|
|
1930
|
+
none: "none";
|
|
1931
|
+
"ef-core": "ef-core";
|
|
1932
|
+
dapper: "dapper";
|
|
1933
|
+
linq2db: "linq2db";
|
|
1934
|
+
}>;
|
|
1935
|
+
dotnetAuth: z.ZodEnum<{
|
|
1936
|
+
none: "none";
|
|
1937
|
+
"aspnet-identity": "aspnet-identity";
|
|
1938
|
+
"duende-identityserver": "duende-identityserver";
|
|
1939
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
1940
|
+
}>;
|
|
1941
|
+
dotnetApi: z.ZodEnum<{
|
|
1942
|
+
none: "none";
|
|
1943
|
+
"minimal-api": "minimal-api";
|
|
1944
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
1945
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
1946
|
+
}>;
|
|
1947
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
1948
|
+
none: "none";
|
|
1949
|
+
xunit: "xunit";
|
|
1950
|
+
nunit: "nunit";
|
|
1951
|
+
moq: "moq";
|
|
1952
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
1953
|
+
}>>;
|
|
1954
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
1955
|
+
none: "none";
|
|
1956
|
+
hangfire: "hangfire";
|
|
1957
|
+
"quartz-net": "quartz-net";
|
|
1958
|
+
"hosted-services": "hosted-services";
|
|
1959
|
+
}>;
|
|
1960
|
+
dotnetRealtime: z.ZodEnum<{
|
|
1961
|
+
none: "none";
|
|
1962
|
+
signalr: "signalr";
|
|
1963
|
+
}>;
|
|
1964
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
1965
|
+
none: "none";
|
|
1966
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
1967
|
+
serilog: "serilog";
|
|
1968
|
+
nlog: "nlog";
|
|
1969
|
+
"health-checks": "health-checks";
|
|
1970
|
+
}>>;
|
|
1971
|
+
dotnetValidation: z.ZodEnum<{
|
|
1972
|
+
none: "none";
|
|
1973
|
+
fluentvalidation: "fluentvalidation";
|
|
1974
|
+
"data-annotations": "data-annotations";
|
|
1975
|
+
}>;
|
|
1976
|
+
dotnetCaching: z.ZodEnum<{
|
|
1977
|
+
none: "none";
|
|
1978
|
+
redis: "redis";
|
|
1979
|
+
"memory-cache": "memory-cache";
|
|
1980
|
+
}>;
|
|
1981
|
+
dotnetDeploy: z.ZodEnum<{
|
|
1982
|
+
none: "none";
|
|
1983
|
+
docker: "docker";
|
|
1984
|
+
azure: "azure";
|
|
1985
|
+
aws: "aws";
|
|
1986
|
+
}>;
|
|
1623
1987
|
elixirWebFramework: z.ZodEnum<{
|
|
1624
1988
|
none: "none";
|
|
1625
1989
|
phoenix: "phoenix";
|
|
@@ -1640,6 +2004,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1640
2004
|
none: "none";
|
|
1641
2005
|
rest: "rest";
|
|
1642
2006
|
absinthe: "absinthe";
|
|
2007
|
+
grpc: "grpc";
|
|
1643
2008
|
}>;
|
|
1644
2009
|
elixirRealtime: z.ZodEnum<{
|
|
1645
2010
|
none: "none";
|
|
@@ -1702,6 +2067,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1702
2067
|
gigalixir: "gigalixir";
|
|
1703
2068
|
"mix-release": "mix-release";
|
|
1704
2069
|
}>;
|
|
2070
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
2071
|
+
none: "none";
|
|
2072
|
+
broadway: "broadway";
|
|
2073
|
+
nx: "nx";
|
|
2074
|
+
}>>;
|
|
1705
2075
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
1706
2076
|
none: "none";
|
|
1707
2077
|
"claude-md": "claude-md";
|
|
@@ -1711,37 +2081,55 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1711
2081
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1712
2082
|
id: z.ZodString;
|
|
1713
2083
|
role: z.ZodEnum<{
|
|
1714
|
-
|
|
2084
|
+
frontend: "frontend";
|
|
1715
2085
|
backend: "backend";
|
|
2086
|
+
mobile: "mobile";
|
|
1716
2087
|
database: "database";
|
|
2088
|
+
api: "api";
|
|
1717
2089
|
orm: "orm";
|
|
1718
2090
|
auth: "auth";
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
2091
|
+
runtime: "runtime";
|
|
2092
|
+
deploy: "deploy";
|
|
2093
|
+
dbSetup: "dbSetup";
|
|
2094
|
+
realtime: "realtime";
|
|
2095
|
+
navigation: "navigation";
|
|
2096
|
+
caching: "caching";
|
|
1722
2097
|
observability: "observability";
|
|
1723
|
-
|
|
1724
|
-
|
|
2098
|
+
email: "email";
|
|
2099
|
+
search: "search";
|
|
2100
|
+
fileStorage: "fileStorage";
|
|
2101
|
+
jobQueue: "jobQueue";
|
|
2102
|
+
rateLimit: "rateLimit";
|
|
2103
|
+
testing: "testing";
|
|
1725
2104
|
stateManagement: "stateManagement";
|
|
1726
2105
|
forms: "forms";
|
|
2106
|
+
animation: "animation";
|
|
2107
|
+
fileUpload: "fileUpload";
|
|
1727
2108
|
validation: "validation";
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
2109
|
+
effect: "effect";
|
|
2110
|
+
ui: "ui";
|
|
2111
|
+
css: "css";
|
|
2112
|
+
storage: "storage";
|
|
2113
|
+
ai: "ai";
|
|
2114
|
+
payments: "payments";
|
|
2115
|
+
logging: "logging";
|
|
2116
|
+
featureFlags: "featureFlags";
|
|
2117
|
+
analytics: "analytics";
|
|
1731
2118
|
cms: "cms";
|
|
1732
2119
|
i18n: "i18n";
|
|
1733
|
-
search: "search";
|
|
1734
|
-
fileStorage: "fileStorage";
|
|
1735
|
-
codeQuality: "codeQuality";
|
|
1736
2120
|
documentation: "documentation";
|
|
1737
|
-
|
|
1738
|
-
ai: "ai";
|
|
1739
|
-
css: "css";
|
|
1740
|
-
ui: "ui";
|
|
1741
|
-
frontend: "frontend";
|
|
1742
|
-
mobile: "mobile";
|
|
1743
|
-
deploy: "deploy";
|
|
2121
|
+
codeQuality: "codeQuality";
|
|
1744
2122
|
appPlatform: "appPlatform";
|
|
2123
|
+
dataFetching: "dataFetching";
|
|
2124
|
+
workspaceTooling: "workspaceTooling";
|
|
2125
|
+
examples: "examples";
|
|
2126
|
+
buildTool: "buildTool";
|
|
2127
|
+
cli: "cli";
|
|
2128
|
+
errorHandling: "errorHandling";
|
|
2129
|
+
httpClient: "httpClient";
|
|
2130
|
+
libraries: "libraries";
|
|
2131
|
+
config: "config";
|
|
2132
|
+
templating: "templating";
|
|
1745
2133
|
}>;
|
|
1746
2134
|
toolId: z.ZodString;
|
|
1747
2135
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -1752,6 +2140,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1752
2140
|
go: "go";
|
|
1753
2141
|
java: "java";
|
|
1754
2142
|
elixir: "elixir";
|
|
2143
|
+
dotnet: "dotnet";
|
|
1755
2144
|
}>, z.ZodLiteral<"universal">]>;
|
|
1756
2145
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
1757
2146
|
source: z.ZodEnum<{
|
|
@@ -1779,6 +2168,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1779
2168
|
go: "go";
|
|
1780
2169
|
java: "java";
|
|
1781
2170
|
elixir: "elixir";
|
|
2171
|
+
dotnet: "dotnet";
|
|
1782
2172
|
}>;
|
|
1783
2173
|
database: z.ZodEnum<{
|
|
1784
2174
|
none: "none";
|
|
@@ -1865,6 +2255,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1865
2255
|
"tanstack-virtual": "tanstack-virtual";
|
|
1866
2256
|
"tanstack-db": "tanstack-db";
|
|
1867
2257
|
"tanstack-pacer": "tanstack-pacer";
|
|
2258
|
+
"backend-utils": "backend-utils";
|
|
1868
2259
|
"docker-compose": "docker-compose";
|
|
1869
2260
|
}>>;
|
|
1870
2261
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -1876,12 +2267,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1876
2267
|
auth: z.ZodEnum<{
|
|
1877
2268
|
none: "none";
|
|
1878
2269
|
"better-auth": "better-auth";
|
|
2270
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
1879
2271
|
"go-better-auth": "go-better-auth";
|
|
1880
2272
|
clerk: "clerk";
|
|
1881
2273
|
nextauth: "nextauth";
|
|
1882
2274
|
"stack-auth": "stack-auth";
|
|
1883
2275
|
"supabase-auth": "supabase-auth";
|
|
1884
2276
|
auth0: "auth0";
|
|
2277
|
+
workos: "workos";
|
|
2278
|
+
kinde: "kinde";
|
|
1885
2279
|
}>;
|
|
1886
2280
|
payments: z.ZodEnum<{
|
|
1887
2281
|
none: "none";
|
|
@@ -1928,6 +2322,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1928
2322
|
cloudflare: "cloudflare";
|
|
1929
2323
|
fly: "fly";
|
|
1930
2324
|
railway: "railway";
|
|
2325
|
+
render: "render";
|
|
2326
|
+
netlify: "netlify";
|
|
1931
2327
|
sst: "sst";
|
|
1932
2328
|
vercel: "vercel";
|
|
1933
2329
|
}>;
|
|
@@ -1937,6 +2333,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1937
2333
|
cloudflare: "cloudflare";
|
|
1938
2334
|
fly: "fly";
|
|
1939
2335
|
railway: "railway";
|
|
2336
|
+
render: "render";
|
|
2337
|
+
netlify: "netlify";
|
|
1940
2338
|
sst: "sst";
|
|
1941
2339
|
vercel: "vercel";
|
|
1942
2340
|
}>;
|
|
@@ -2014,7 +2412,6 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2014
2412
|
"postcss-only": "postcss-only";
|
|
2015
2413
|
}>;
|
|
2016
2414
|
uiLibrary: z.ZodEnum<{
|
|
2017
|
-
mui: "mui";
|
|
2018
2415
|
none: "none";
|
|
2019
2416
|
"shadcn-ui": "shadcn-ui";
|
|
2020
2417
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2025,6 +2422,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2025
2422
|
"chakra-ui": "chakra-ui";
|
|
2026
2423
|
nextui: "nextui";
|
|
2027
2424
|
mantine: "mantine";
|
|
2425
|
+
mui: "mui";
|
|
2028
2426
|
antd: "antd";
|
|
2029
2427
|
"base-ui": "base-ui";
|
|
2030
2428
|
"ark-ui": "ark-ui";
|
|
@@ -2096,8 +2494,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2096
2494
|
"geist-mono": "geist-mono";
|
|
2097
2495
|
}>>;
|
|
2098
2496
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2099
|
-
none: "none";
|
|
2100
2497
|
default: "default";
|
|
2498
|
+
none: "none";
|
|
2101
2499
|
small: "small";
|
|
2102
2500
|
medium: "medium";
|
|
2103
2501
|
large: "large";
|
|
@@ -2153,6 +2551,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2153
2551
|
opentelemetry: "opentelemetry";
|
|
2154
2552
|
sentry: "sentry";
|
|
2155
2553
|
grafana: "grafana";
|
|
2554
|
+
datadog: "datadog";
|
|
2555
|
+
axiom: "axiom";
|
|
2556
|
+
betterstack: "betterstack";
|
|
2156
2557
|
}>;
|
|
2157
2558
|
featureFlags: z.ZodEnum<{
|
|
2158
2559
|
none: "none";
|
|
@@ -2179,6 +2580,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2179
2580
|
none: "none";
|
|
2180
2581
|
"upstash-redis": "upstash-redis";
|
|
2181
2582
|
}>;
|
|
2583
|
+
rateLimit: z.ZodEnum<{
|
|
2584
|
+
none: "none";
|
|
2585
|
+
arcjet: "arcjet";
|
|
2586
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2587
|
+
}>;
|
|
2182
2588
|
i18n: z.ZodEnum<{
|
|
2183
2589
|
none: "none";
|
|
2184
2590
|
i18next: "i18next";
|
|
@@ -2259,12 +2665,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2259
2665
|
ratatui: "ratatui";
|
|
2260
2666
|
}>;
|
|
2261
2667
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
2668
|
+
config: "config";
|
|
2262
2669
|
none: "none";
|
|
2263
2670
|
serde: "serde";
|
|
2264
2671
|
uuid: "uuid";
|
|
2265
2672
|
chrono: "chrono";
|
|
2266
2673
|
reqwest: "reqwest";
|
|
2267
|
-
config: "config";
|
|
2268
2674
|
dashmap: "dashmap";
|
|
2269
2675
|
"parking-lot": "parking-lot";
|
|
2270
2676
|
secrecy: "secrecy";
|
|
@@ -2296,6 +2702,24 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2296
2702
|
rustAuth: z.ZodEnum<{
|
|
2297
2703
|
none: "none";
|
|
2298
2704
|
oauth2: "oauth2";
|
|
2705
|
+
torii: "torii";
|
|
2706
|
+
}>;
|
|
2707
|
+
rustRealtime: z.ZodEnum<{
|
|
2708
|
+
none: "none";
|
|
2709
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
2710
|
+
}>;
|
|
2711
|
+
rustMessageQueue: z.ZodEnum<{
|
|
2712
|
+
none: "none";
|
|
2713
|
+
lapin: "lapin";
|
|
2714
|
+
}>;
|
|
2715
|
+
rustObservability: z.ZodEnum<{
|
|
2716
|
+
none: "none";
|
|
2717
|
+
opentelemetry: "opentelemetry";
|
|
2718
|
+
}>;
|
|
2719
|
+
rustTemplating: z.ZodEnum<{
|
|
2720
|
+
none: "none";
|
|
2721
|
+
askama: "askama";
|
|
2722
|
+
tera: "tera";
|
|
2299
2723
|
}>;
|
|
2300
2724
|
pythonWebFramework: z.ZodEnum<{
|
|
2301
2725
|
none: "none";
|
|
@@ -2303,12 +2727,14 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2303
2727
|
django: "django";
|
|
2304
2728
|
flask: "flask";
|
|
2305
2729
|
litestar: "litestar";
|
|
2730
|
+
starlette: "starlette";
|
|
2306
2731
|
}>;
|
|
2307
2732
|
pythonOrm: z.ZodEnum<{
|
|
2308
2733
|
none: "none";
|
|
2309
2734
|
sqlalchemy: "sqlalchemy";
|
|
2310
2735
|
sqlmodel: "sqlmodel";
|
|
2311
2736
|
"tortoise-orm": "tortoise-orm";
|
|
2737
|
+
peewee: "peewee";
|
|
2312
2738
|
}>;
|
|
2313
2739
|
pythonValidation: z.ZodEnum<{
|
|
2314
2740
|
none: "none";
|
|
@@ -2317,17 +2743,21 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2317
2743
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
2318
2744
|
none: "none";
|
|
2319
2745
|
langgraph: "langgraph";
|
|
2746
|
+
"google-adk": "google-adk";
|
|
2320
2747
|
langchain: "langchain";
|
|
2321
2748
|
llamaindex: "llamaindex";
|
|
2322
2749
|
"openai-sdk": "openai-sdk";
|
|
2323
2750
|
"anthropic-sdk": "anthropic-sdk";
|
|
2324
2751
|
crewai: "crewai";
|
|
2325
2752
|
haystack: "haystack";
|
|
2753
|
+
"pydantic-ai": "pydantic-ai";
|
|
2754
|
+
smolagents: "smolagents";
|
|
2326
2755
|
}>>;
|
|
2327
2756
|
pythonAuth: z.ZodEnum<{
|
|
2328
2757
|
none: "none";
|
|
2329
2758
|
authlib: "authlib";
|
|
2330
2759
|
jwt: "jwt";
|
|
2760
|
+
"fastapi-users": "fastapi-users";
|
|
2331
2761
|
}>;
|
|
2332
2762
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
2333
2763
|
none: "none";
|
|
@@ -2340,6 +2770,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2340
2770
|
rq: "rq";
|
|
2341
2771
|
dramatiq: "dramatiq";
|
|
2342
2772
|
huey: "huey";
|
|
2773
|
+
taskiq: "taskiq";
|
|
2343
2774
|
}>;
|
|
2344
2775
|
pythonGraphql: z.ZodEnum<{
|
|
2345
2776
|
none: "none";
|
|
@@ -2352,6 +2783,31 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2352
2783
|
mypy: "mypy";
|
|
2353
2784
|
pyright: "pyright";
|
|
2354
2785
|
}>;
|
|
2786
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
2787
|
+
none: "none";
|
|
2788
|
+
pytest: "pytest";
|
|
2789
|
+
hypothesis: "hypothesis";
|
|
2790
|
+
}>>;
|
|
2791
|
+
pythonCaching: z.ZodEnum<{
|
|
2792
|
+
none: "none";
|
|
2793
|
+
redis: "redis";
|
|
2794
|
+
aiocache: "aiocache";
|
|
2795
|
+
}>;
|
|
2796
|
+
pythonRealtime: z.ZodEnum<{
|
|
2797
|
+
none: "none";
|
|
2798
|
+
"python-socketio": "python-socketio";
|
|
2799
|
+
websockets: "websockets";
|
|
2800
|
+
}>;
|
|
2801
|
+
pythonObservability: z.ZodEnum<{
|
|
2802
|
+
none: "none";
|
|
2803
|
+
opentelemetry: "opentelemetry";
|
|
2804
|
+
}>;
|
|
2805
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
2806
|
+
none: "none";
|
|
2807
|
+
typer: "typer";
|
|
2808
|
+
click: "click";
|
|
2809
|
+
rich: "rich";
|
|
2810
|
+
}>>;
|
|
2355
2811
|
goWebFramework: z.ZodEnum<{
|
|
2356
2812
|
none: "none";
|
|
2357
2813
|
gin: "gin";
|
|
@@ -2360,14 +2816,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2360
2816
|
chi: "chi";
|
|
2361
2817
|
}>;
|
|
2362
2818
|
goOrm: z.ZodEnum<{
|
|
2363
|
-
gorm: "gorm";
|
|
2364
2819
|
none: "none";
|
|
2820
|
+
gorm: "gorm";
|
|
2365
2821
|
sqlc: "sqlc";
|
|
2366
2822
|
ent: "ent";
|
|
2367
2823
|
}>;
|
|
2368
2824
|
goApi: z.ZodEnum<{
|
|
2369
2825
|
none: "none";
|
|
2370
2826
|
"grpc-go": "grpc-go";
|
|
2827
|
+
gqlgen: "gqlgen";
|
|
2371
2828
|
}>;
|
|
2372
2829
|
goCli: z.ZodEnum<{
|
|
2373
2830
|
none: "none";
|
|
@@ -2386,6 +2843,36 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2386
2843
|
none: "none";
|
|
2387
2844
|
jwt: "jwt";
|
|
2388
2845
|
casbin: "casbin";
|
|
2846
|
+
goth: "goth";
|
|
2847
|
+
}>;
|
|
2848
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
2849
|
+
none: "none";
|
|
2850
|
+
testify: "testify";
|
|
2851
|
+
gomock: "gomock";
|
|
2852
|
+
}>>;
|
|
2853
|
+
goRealtime: z.ZodEnum<{
|
|
2854
|
+
none: "none";
|
|
2855
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
2856
|
+
centrifuge: "centrifuge";
|
|
2857
|
+
}>;
|
|
2858
|
+
goMessageQueue: z.ZodEnum<{
|
|
2859
|
+
none: "none";
|
|
2860
|
+
nats: "nats";
|
|
2861
|
+
watermill: "watermill";
|
|
2862
|
+
}>;
|
|
2863
|
+
goCaching: z.ZodEnum<{
|
|
2864
|
+
none: "none";
|
|
2865
|
+
redis: "redis";
|
|
2866
|
+
ristretto: "ristretto";
|
|
2867
|
+
}>;
|
|
2868
|
+
goConfig: z.ZodEnum<{
|
|
2869
|
+
none: "none";
|
|
2870
|
+
viper: "viper";
|
|
2871
|
+
koanf: "koanf";
|
|
2872
|
+
}>;
|
|
2873
|
+
goObservability: z.ZodEnum<{
|
|
2874
|
+
none: "none";
|
|
2875
|
+
opentelemetry: "opentelemetry";
|
|
2389
2876
|
}>;
|
|
2390
2877
|
javaWebFramework: z.ZodEnum<{
|
|
2391
2878
|
none: "none";
|
|
@@ -2400,10 +2887,21 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2400
2887
|
javaOrm: z.ZodEnum<{
|
|
2401
2888
|
none: "none";
|
|
2402
2889
|
"spring-data-jpa": "spring-data-jpa";
|
|
2890
|
+
jooq: "jooq";
|
|
2891
|
+
mybatis: "mybatis";
|
|
2403
2892
|
}>;
|
|
2404
2893
|
javaAuth: z.ZodEnum<{
|
|
2405
2894
|
none: "none";
|
|
2406
2895
|
"spring-security": "spring-security";
|
|
2896
|
+
keycloak: "keycloak";
|
|
2897
|
+
}>;
|
|
2898
|
+
javaApi: z.ZodEnum<{
|
|
2899
|
+
none: "none";
|
|
2900
|
+
"spring-graphql": "spring-graphql";
|
|
2901
|
+
}>;
|
|
2902
|
+
javaLogging: z.ZodEnum<{
|
|
2903
|
+
none: "none";
|
|
2904
|
+
logback: "logback";
|
|
2407
2905
|
}>;
|
|
2408
2906
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2409
2907
|
none: "none";
|
|
@@ -2423,6 +2921,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2423
2921
|
"spring-devtools": "spring-devtools";
|
|
2424
2922
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
2425
2923
|
thymeleaf: "thymeleaf";
|
|
2924
|
+
"spring-amqp": "spring-amqp";
|
|
2925
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
2426
2926
|
}>>;
|
|
2427
2927
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
2428
2928
|
none: "none";
|
|
@@ -2436,28 +2936,93 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2436
2936
|
archunit: "archunit";
|
|
2437
2937
|
jqwik: "jqwik";
|
|
2438
2938
|
}>>;
|
|
2439
|
-
|
|
2939
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
2440
2940
|
none: "none";
|
|
2441
|
-
|
|
2442
|
-
"
|
|
2941
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
2942
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
2943
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
2443
2944
|
}>;
|
|
2444
|
-
|
|
2945
|
+
dotnetOrm: z.ZodEnum<{
|
|
2445
2946
|
none: "none";
|
|
2446
|
-
|
|
2447
|
-
|
|
2947
|
+
"ef-core": "ef-core";
|
|
2948
|
+
dapper: "dapper";
|
|
2949
|
+
linq2db: "linq2db";
|
|
2448
2950
|
}>;
|
|
2449
|
-
|
|
2951
|
+
dotnetAuth: z.ZodEnum<{
|
|
2450
2952
|
none: "none";
|
|
2451
|
-
"
|
|
2452
|
-
|
|
2453
|
-
|
|
2953
|
+
"aspnet-identity": "aspnet-identity";
|
|
2954
|
+
"duende-identityserver": "duende-identityserver";
|
|
2955
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
2454
2956
|
}>;
|
|
2455
|
-
|
|
2957
|
+
dotnetApi: z.ZodEnum<{
|
|
2456
2958
|
none: "none";
|
|
2457
|
-
|
|
2458
|
-
|
|
2959
|
+
"minimal-api": "minimal-api";
|
|
2960
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
2961
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
2459
2962
|
}>;
|
|
2460
|
-
|
|
2963
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
2964
|
+
none: "none";
|
|
2965
|
+
xunit: "xunit";
|
|
2966
|
+
nunit: "nunit";
|
|
2967
|
+
moq: "moq";
|
|
2968
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
2969
|
+
}>>;
|
|
2970
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
2971
|
+
none: "none";
|
|
2972
|
+
hangfire: "hangfire";
|
|
2973
|
+
"quartz-net": "quartz-net";
|
|
2974
|
+
"hosted-services": "hosted-services";
|
|
2975
|
+
}>;
|
|
2976
|
+
dotnetRealtime: z.ZodEnum<{
|
|
2977
|
+
none: "none";
|
|
2978
|
+
signalr: "signalr";
|
|
2979
|
+
}>;
|
|
2980
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
2981
|
+
none: "none";
|
|
2982
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
2983
|
+
serilog: "serilog";
|
|
2984
|
+
nlog: "nlog";
|
|
2985
|
+
"health-checks": "health-checks";
|
|
2986
|
+
}>>;
|
|
2987
|
+
dotnetValidation: z.ZodEnum<{
|
|
2988
|
+
none: "none";
|
|
2989
|
+
fluentvalidation: "fluentvalidation";
|
|
2990
|
+
"data-annotations": "data-annotations";
|
|
2991
|
+
}>;
|
|
2992
|
+
dotnetCaching: z.ZodEnum<{
|
|
2993
|
+
none: "none";
|
|
2994
|
+
redis: "redis";
|
|
2995
|
+
"memory-cache": "memory-cache";
|
|
2996
|
+
}>;
|
|
2997
|
+
dotnetDeploy: z.ZodEnum<{
|
|
2998
|
+
none: "none";
|
|
2999
|
+
docker: "docker";
|
|
3000
|
+
azure: "azure";
|
|
3001
|
+
aws: "aws";
|
|
3002
|
+
}>;
|
|
3003
|
+
elixirWebFramework: z.ZodEnum<{
|
|
3004
|
+
none: "none";
|
|
3005
|
+
phoenix: "phoenix";
|
|
3006
|
+
"phoenix-live-view": "phoenix-live-view";
|
|
3007
|
+
}>;
|
|
3008
|
+
elixirOrm: z.ZodEnum<{
|
|
3009
|
+
none: "none";
|
|
3010
|
+
ecto: "ecto";
|
|
3011
|
+
"ecto-sql": "ecto-sql";
|
|
3012
|
+
}>;
|
|
3013
|
+
elixirAuth: z.ZodEnum<{
|
|
3014
|
+
none: "none";
|
|
3015
|
+
"phx-gen-auth": "phx-gen-auth";
|
|
3016
|
+
ueberauth: "ueberauth";
|
|
3017
|
+
guardian: "guardian";
|
|
3018
|
+
}>;
|
|
3019
|
+
elixirApi: z.ZodEnum<{
|
|
3020
|
+
none: "none";
|
|
3021
|
+
rest: "rest";
|
|
3022
|
+
absinthe: "absinthe";
|
|
3023
|
+
grpc: "grpc";
|
|
3024
|
+
}>;
|
|
3025
|
+
elixirRealtime: z.ZodEnum<{
|
|
2461
3026
|
none: "none";
|
|
2462
3027
|
channels: "channels";
|
|
2463
3028
|
presence: "presence";
|
|
@@ -2518,6 +3083,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2518
3083
|
gigalixir: "gigalixir";
|
|
2519
3084
|
"mix-release": "mix-release";
|
|
2520
3085
|
}>;
|
|
3086
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
3087
|
+
none: "none";
|
|
3088
|
+
broadway: "broadway";
|
|
3089
|
+
nx: "nx";
|
|
3090
|
+
}>>;
|
|
2521
3091
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
2522
3092
|
none: "none";
|
|
2523
3093
|
"claude-md": "claude-md";
|
|
@@ -2527,37 +3097,55 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2527
3097
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2528
3098
|
id: z.ZodString;
|
|
2529
3099
|
role: z.ZodEnum<{
|
|
2530
|
-
|
|
3100
|
+
frontend: "frontend";
|
|
2531
3101
|
backend: "backend";
|
|
3102
|
+
mobile: "mobile";
|
|
2532
3103
|
database: "database";
|
|
3104
|
+
api: "api";
|
|
2533
3105
|
orm: "orm";
|
|
2534
3106
|
auth: "auth";
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
3107
|
+
runtime: "runtime";
|
|
3108
|
+
deploy: "deploy";
|
|
3109
|
+
dbSetup: "dbSetup";
|
|
3110
|
+
realtime: "realtime";
|
|
3111
|
+
navigation: "navigation";
|
|
3112
|
+
caching: "caching";
|
|
2538
3113
|
observability: "observability";
|
|
2539
|
-
|
|
2540
|
-
|
|
3114
|
+
email: "email";
|
|
3115
|
+
search: "search";
|
|
3116
|
+
fileStorage: "fileStorage";
|
|
3117
|
+
jobQueue: "jobQueue";
|
|
3118
|
+
rateLimit: "rateLimit";
|
|
3119
|
+
testing: "testing";
|
|
2541
3120
|
stateManagement: "stateManagement";
|
|
2542
3121
|
forms: "forms";
|
|
3122
|
+
animation: "animation";
|
|
3123
|
+
fileUpload: "fileUpload";
|
|
2543
3124
|
validation: "validation";
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
3125
|
+
effect: "effect";
|
|
3126
|
+
ui: "ui";
|
|
3127
|
+
css: "css";
|
|
3128
|
+
storage: "storage";
|
|
3129
|
+
ai: "ai";
|
|
3130
|
+
payments: "payments";
|
|
3131
|
+
logging: "logging";
|
|
3132
|
+
featureFlags: "featureFlags";
|
|
3133
|
+
analytics: "analytics";
|
|
2547
3134
|
cms: "cms";
|
|
2548
3135
|
i18n: "i18n";
|
|
2549
|
-
search: "search";
|
|
2550
|
-
fileStorage: "fileStorage";
|
|
2551
|
-
codeQuality: "codeQuality";
|
|
2552
3136
|
documentation: "documentation";
|
|
2553
|
-
|
|
2554
|
-
ai: "ai";
|
|
2555
|
-
css: "css";
|
|
2556
|
-
ui: "ui";
|
|
2557
|
-
frontend: "frontend";
|
|
2558
|
-
mobile: "mobile";
|
|
2559
|
-
deploy: "deploy";
|
|
3137
|
+
codeQuality: "codeQuality";
|
|
2560
3138
|
appPlatform: "appPlatform";
|
|
3139
|
+
dataFetching: "dataFetching";
|
|
3140
|
+
workspaceTooling: "workspaceTooling";
|
|
3141
|
+
examples: "examples";
|
|
3142
|
+
buildTool: "buildTool";
|
|
3143
|
+
cli: "cli";
|
|
3144
|
+
errorHandling: "errorHandling";
|
|
3145
|
+
httpClient: "httpClient";
|
|
3146
|
+
libraries: "libraries";
|
|
3147
|
+
config: "config";
|
|
3148
|
+
templating: "templating";
|
|
2561
3149
|
}>;
|
|
2562
3150
|
toolId: z.ZodString;
|
|
2563
3151
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -2568,6 +3156,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2568
3156
|
go: "go";
|
|
2569
3157
|
java: "java";
|
|
2570
3158
|
elixir: "elixir";
|
|
3159
|
+
dotnet: "dotnet";
|
|
2571
3160
|
}>, z.ZodLiteral<"universal">]>;
|
|
2572
3161
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
2573
3162
|
source: z.ZodEnum<{
|
|
@@ -2595,6 +3184,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2595
3184
|
go: "go";
|
|
2596
3185
|
java: "java";
|
|
2597
3186
|
elixir: "elixir";
|
|
3187
|
+
dotnet: "dotnet";
|
|
2598
3188
|
}>;
|
|
2599
3189
|
database: z.ZodEnum<{
|
|
2600
3190
|
none: "none";
|
|
@@ -2681,6 +3271,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2681
3271
|
"tanstack-virtual": "tanstack-virtual";
|
|
2682
3272
|
"tanstack-db": "tanstack-db";
|
|
2683
3273
|
"tanstack-pacer": "tanstack-pacer";
|
|
3274
|
+
"backend-utils": "backend-utils";
|
|
2684
3275
|
"docker-compose": "docker-compose";
|
|
2685
3276
|
}>>;
|
|
2686
3277
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -2692,12 +3283,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2692
3283
|
auth: z.ZodEnum<{
|
|
2693
3284
|
none: "none";
|
|
2694
3285
|
"better-auth": "better-auth";
|
|
3286
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
2695
3287
|
"go-better-auth": "go-better-auth";
|
|
2696
3288
|
clerk: "clerk";
|
|
2697
3289
|
nextauth: "nextauth";
|
|
2698
3290
|
"stack-auth": "stack-auth";
|
|
2699
3291
|
"supabase-auth": "supabase-auth";
|
|
2700
3292
|
auth0: "auth0";
|
|
3293
|
+
workos: "workos";
|
|
3294
|
+
kinde: "kinde";
|
|
2701
3295
|
}>;
|
|
2702
3296
|
payments: z.ZodEnum<{
|
|
2703
3297
|
none: "none";
|
|
@@ -2744,6 +3338,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2744
3338
|
cloudflare: "cloudflare";
|
|
2745
3339
|
fly: "fly";
|
|
2746
3340
|
railway: "railway";
|
|
3341
|
+
render: "render";
|
|
3342
|
+
netlify: "netlify";
|
|
2747
3343
|
sst: "sst";
|
|
2748
3344
|
vercel: "vercel";
|
|
2749
3345
|
}>;
|
|
@@ -2753,6 +3349,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2753
3349
|
cloudflare: "cloudflare";
|
|
2754
3350
|
fly: "fly";
|
|
2755
3351
|
railway: "railway";
|
|
3352
|
+
render: "render";
|
|
3353
|
+
netlify: "netlify";
|
|
2756
3354
|
sst: "sst";
|
|
2757
3355
|
vercel: "vercel";
|
|
2758
3356
|
}>;
|
|
@@ -2830,7 +3428,6 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2830
3428
|
"postcss-only": "postcss-only";
|
|
2831
3429
|
}>;
|
|
2832
3430
|
uiLibrary: z.ZodEnum<{
|
|
2833
|
-
mui: "mui";
|
|
2834
3431
|
none: "none";
|
|
2835
3432
|
"shadcn-ui": "shadcn-ui";
|
|
2836
3433
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2841,6 +3438,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2841
3438
|
"chakra-ui": "chakra-ui";
|
|
2842
3439
|
nextui: "nextui";
|
|
2843
3440
|
mantine: "mantine";
|
|
3441
|
+
mui: "mui";
|
|
2844
3442
|
antd: "antd";
|
|
2845
3443
|
"base-ui": "base-ui";
|
|
2846
3444
|
"ark-ui": "ark-ui";
|
|
@@ -2912,8 +3510,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2912
3510
|
"geist-mono": "geist-mono";
|
|
2913
3511
|
}>>;
|
|
2914
3512
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2915
|
-
none: "none";
|
|
2916
3513
|
default: "default";
|
|
3514
|
+
none: "none";
|
|
2917
3515
|
small: "small";
|
|
2918
3516
|
medium: "medium";
|
|
2919
3517
|
large: "large";
|
|
@@ -2969,6 +3567,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2969
3567
|
opentelemetry: "opentelemetry";
|
|
2970
3568
|
sentry: "sentry";
|
|
2971
3569
|
grafana: "grafana";
|
|
3570
|
+
datadog: "datadog";
|
|
3571
|
+
axiom: "axiom";
|
|
3572
|
+
betterstack: "betterstack";
|
|
2972
3573
|
}>;
|
|
2973
3574
|
featureFlags: z.ZodEnum<{
|
|
2974
3575
|
none: "none";
|
|
@@ -2995,6 +3596,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2995
3596
|
none: "none";
|
|
2996
3597
|
"upstash-redis": "upstash-redis";
|
|
2997
3598
|
}>;
|
|
3599
|
+
rateLimit: z.ZodEnum<{
|
|
3600
|
+
none: "none";
|
|
3601
|
+
arcjet: "arcjet";
|
|
3602
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
3603
|
+
}>;
|
|
2998
3604
|
i18n: z.ZodEnum<{
|
|
2999
3605
|
none: "none";
|
|
3000
3606
|
i18next: "i18next";
|
|
@@ -3075,12 +3681,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3075
3681
|
ratatui: "ratatui";
|
|
3076
3682
|
}>;
|
|
3077
3683
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3684
|
+
config: "config";
|
|
3078
3685
|
none: "none";
|
|
3079
3686
|
serde: "serde";
|
|
3080
3687
|
uuid: "uuid";
|
|
3081
3688
|
chrono: "chrono";
|
|
3082
3689
|
reqwest: "reqwest";
|
|
3083
|
-
config: "config";
|
|
3084
3690
|
dashmap: "dashmap";
|
|
3085
3691
|
"parking-lot": "parking-lot";
|
|
3086
3692
|
secrecy: "secrecy";
|
|
@@ -3112,6 +3718,24 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3112
3718
|
rustAuth: z.ZodEnum<{
|
|
3113
3719
|
none: "none";
|
|
3114
3720
|
oauth2: "oauth2";
|
|
3721
|
+
torii: "torii";
|
|
3722
|
+
}>;
|
|
3723
|
+
rustRealtime: z.ZodEnum<{
|
|
3724
|
+
none: "none";
|
|
3725
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
3726
|
+
}>;
|
|
3727
|
+
rustMessageQueue: z.ZodEnum<{
|
|
3728
|
+
none: "none";
|
|
3729
|
+
lapin: "lapin";
|
|
3730
|
+
}>;
|
|
3731
|
+
rustObservability: z.ZodEnum<{
|
|
3732
|
+
none: "none";
|
|
3733
|
+
opentelemetry: "opentelemetry";
|
|
3734
|
+
}>;
|
|
3735
|
+
rustTemplating: z.ZodEnum<{
|
|
3736
|
+
none: "none";
|
|
3737
|
+
askama: "askama";
|
|
3738
|
+
tera: "tera";
|
|
3115
3739
|
}>;
|
|
3116
3740
|
pythonWebFramework: z.ZodEnum<{
|
|
3117
3741
|
none: "none";
|
|
@@ -3119,12 +3743,14 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3119
3743
|
django: "django";
|
|
3120
3744
|
flask: "flask";
|
|
3121
3745
|
litestar: "litestar";
|
|
3746
|
+
starlette: "starlette";
|
|
3122
3747
|
}>;
|
|
3123
3748
|
pythonOrm: z.ZodEnum<{
|
|
3124
3749
|
none: "none";
|
|
3125
3750
|
sqlalchemy: "sqlalchemy";
|
|
3126
3751
|
sqlmodel: "sqlmodel";
|
|
3127
3752
|
"tortoise-orm": "tortoise-orm";
|
|
3753
|
+
peewee: "peewee";
|
|
3128
3754
|
}>;
|
|
3129
3755
|
pythonValidation: z.ZodEnum<{
|
|
3130
3756
|
none: "none";
|
|
@@ -3133,17 +3759,21 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3133
3759
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3134
3760
|
none: "none";
|
|
3135
3761
|
langgraph: "langgraph";
|
|
3762
|
+
"google-adk": "google-adk";
|
|
3136
3763
|
langchain: "langchain";
|
|
3137
3764
|
llamaindex: "llamaindex";
|
|
3138
3765
|
"openai-sdk": "openai-sdk";
|
|
3139
3766
|
"anthropic-sdk": "anthropic-sdk";
|
|
3140
3767
|
crewai: "crewai";
|
|
3141
3768
|
haystack: "haystack";
|
|
3769
|
+
"pydantic-ai": "pydantic-ai";
|
|
3770
|
+
smolagents: "smolagents";
|
|
3142
3771
|
}>>;
|
|
3143
3772
|
pythonAuth: z.ZodEnum<{
|
|
3144
3773
|
none: "none";
|
|
3145
3774
|
authlib: "authlib";
|
|
3146
3775
|
jwt: "jwt";
|
|
3776
|
+
"fastapi-users": "fastapi-users";
|
|
3147
3777
|
}>;
|
|
3148
3778
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
3149
3779
|
none: "none";
|
|
@@ -3156,6 +3786,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3156
3786
|
rq: "rq";
|
|
3157
3787
|
dramatiq: "dramatiq";
|
|
3158
3788
|
huey: "huey";
|
|
3789
|
+
taskiq: "taskiq";
|
|
3159
3790
|
}>;
|
|
3160
3791
|
pythonGraphql: z.ZodEnum<{
|
|
3161
3792
|
none: "none";
|
|
@@ -3168,6 +3799,31 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3168
3799
|
mypy: "mypy";
|
|
3169
3800
|
pyright: "pyright";
|
|
3170
3801
|
}>;
|
|
3802
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
3803
|
+
none: "none";
|
|
3804
|
+
pytest: "pytest";
|
|
3805
|
+
hypothesis: "hypothesis";
|
|
3806
|
+
}>>;
|
|
3807
|
+
pythonCaching: z.ZodEnum<{
|
|
3808
|
+
none: "none";
|
|
3809
|
+
redis: "redis";
|
|
3810
|
+
aiocache: "aiocache";
|
|
3811
|
+
}>;
|
|
3812
|
+
pythonRealtime: z.ZodEnum<{
|
|
3813
|
+
none: "none";
|
|
3814
|
+
"python-socketio": "python-socketio";
|
|
3815
|
+
websockets: "websockets";
|
|
3816
|
+
}>;
|
|
3817
|
+
pythonObservability: z.ZodEnum<{
|
|
3818
|
+
none: "none";
|
|
3819
|
+
opentelemetry: "opentelemetry";
|
|
3820
|
+
}>;
|
|
3821
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
3822
|
+
none: "none";
|
|
3823
|
+
typer: "typer";
|
|
3824
|
+
click: "click";
|
|
3825
|
+
rich: "rich";
|
|
3826
|
+
}>>;
|
|
3171
3827
|
goWebFramework: z.ZodEnum<{
|
|
3172
3828
|
none: "none";
|
|
3173
3829
|
gin: "gin";
|
|
@@ -3176,14 +3832,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3176
3832
|
chi: "chi";
|
|
3177
3833
|
}>;
|
|
3178
3834
|
goOrm: z.ZodEnum<{
|
|
3179
|
-
gorm: "gorm";
|
|
3180
3835
|
none: "none";
|
|
3836
|
+
gorm: "gorm";
|
|
3181
3837
|
sqlc: "sqlc";
|
|
3182
3838
|
ent: "ent";
|
|
3183
3839
|
}>;
|
|
3184
3840
|
goApi: z.ZodEnum<{
|
|
3185
3841
|
none: "none";
|
|
3186
3842
|
"grpc-go": "grpc-go";
|
|
3843
|
+
gqlgen: "gqlgen";
|
|
3187
3844
|
}>;
|
|
3188
3845
|
goCli: z.ZodEnum<{
|
|
3189
3846
|
none: "none";
|
|
@@ -3202,6 +3859,36 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3202
3859
|
none: "none";
|
|
3203
3860
|
jwt: "jwt";
|
|
3204
3861
|
casbin: "casbin";
|
|
3862
|
+
goth: "goth";
|
|
3863
|
+
}>;
|
|
3864
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
3865
|
+
none: "none";
|
|
3866
|
+
testify: "testify";
|
|
3867
|
+
gomock: "gomock";
|
|
3868
|
+
}>>;
|
|
3869
|
+
goRealtime: z.ZodEnum<{
|
|
3870
|
+
none: "none";
|
|
3871
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
3872
|
+
centrifuge: "centrifuge";
|
|
3873
|
+
}>;
|
|
3874
|
+
goMessageQueue: z.ZodEnum<{
|
|
3875
|
+
none: "none";
|
|
3876
|
+
nats: "nats";
|
|
3877
|
+
watermill: "watermill";
|
|
3878
|
+
}>;
|
|
3879
|
+
goCaching: z.ZodEnum<{
|
|
3880
|
+
none: "none";
|
|
3881
|
+
redis: "redis";
|
|
3882
|
+
ristretto: "ristretto";
|
|
3883
|
+
}>;
|
|
3884
|
+
goConfig: z.ZodEnum<{
|
|
3885
|
+
none: "none";
|
|
3886
|
+
viper: "viper";
|
|
3887
|
+
koanf: "koanf";
|
|
3888
|
+
}>;
|
|
3889
|
+
goObservability: z.ZodEnum<{
|
|
3890
|
+
none: "none";
|
|
3891
|
+
opentelemetry: "opentelemetry";
|
|
3205
3892
|
}>;
|
|
3206
3893
|
javaWebFramework: z.ZodEnum<{
|
|
3207
3894
|
none: "none";
|
|
@@ -3216,10 +3903,21 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3216
3903
|
javaOrm: z.ZodEnum<{
|
|
3217
3904
|
none: "none";
|
|
3218
3905
|
"spring-data-jpa": "spring-data-jpa";
|
|
3906
|
+
jooq: "jooq";
|
|
3907
|
+
mybatis: "mybatis";
|
|
3219
3908
|
}>;
|
|
3220
3909
|
javaAuth: z.ZodEnum<{
|
|
3221
3910
|
none: "none";
|
|
3222
3911
|
"spring-security": "spring-security";
|
|
3912
|
+
keycloak: "keycloak";
|
|
3913
|
+
}>;
|
|
3914
|
+
javaApi: z.ZodEnum<{
|
|
3915
|
+
none: "none";
|
|
3916
|
+
"spring-graphql": "spring-graphql";
|
|
3917
|
+
}>;
|
|
3918
|
+
javaLogging: z.ZodEnum<{
|
|
3919
|
+
none: "none";
|
|
3920
|
+
logback: "logback";
|
|
3223
3921
|
}>;
|
|
3224
3922
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3225
3923
|
none: "none";
|
|
@@ -3239,6 +3937,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3239
3937
|
"spring-devtools": "spring-devtools";
|
|
3240
3938
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
3241
3939
|
thymeleaf: "thymeleaf";
|
|
3940
|
+
"spring-amqp": "spring-amqp";
|
|
3941
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
3242
3942
|
}>>;
|
|
3243
3943
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3244
3944
|
none: "none";
|
|
@@ -3252,6 +3952,70 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3252
3952
|
archunit: "archunit";
|
|
3253
3953
|
jqwik: "jqwik";
|
|
3254
3954
|
}>>;
|
|
3955
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
3956
|
+
none: "none";
|
|
3957
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
3958
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
3959
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
3960
|
+
}>;
|
|
3961
|
+
dotnetOrm: z.ZodEnum<{
|
|
3962
|
+
none: "none";
|
|
3963
|
+
"ef-core": "ef-core";
|
|
3964
|
+
dapper: "dapper";
|
|
3965
|
+
linq2db: "linq2db";
|
|
3966
|
+
}>;
|
|
3967
|
+
dotnetAuth: z.ZodEnum<{
|
|
3968
|
+
none: "none";
|
|
3969
|
+
"aspnet-identity": "aspnet-identity";
|
|
3970
|
+
"duende-identityserver": "duende-identityserver";
|
|
3971
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
3972
|
+
}>;
|
|
3973
|
+
dotnetApi: z.ZodEnum<{
|
|
3974
|
+
none: "none";
|
|
3975
|
+
"minimal-api": "minimal-api";
|
|
3976
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
3977
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
3978
|
+
}>;
|
|
3979
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
3980
|
+
none: "none";
|
|
3981
|
+
xunit: "xunit";
|
|
3982
|
+
nunit: "nunit";
|
|
3983
|
+
moq: "moq";
|
|
3984
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
3985
|
+
}>>;
|
|
3986
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
3987
|
+
none: "none";
|
|
3988
|
+
hangfire: "hangfire";
|
|
3989
|
+
"quartz-net": "quartz-net";
|
|
3990
|
+
"hosted-services": "hosted-services";
|
|
3991
|
+
}>;
|
|
3992
|
+
dotnetRealtime: z.ZodEnum<{
|
|
3993
|
+
none: "none";
|
|
3994
|
+
signalr: "signalr";
|
|
3995
|
+
}>;
|
|
3996
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
3997
|
+
none: "none";
|
|
3998
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
3999
|
+
serilog: "serilog";
|
|
4000
|
+
nlog: "nlog";
|
|
4001
|
+
"health-checks": "health-checks";
|
|
4002
|
+
}>>;
|
|
4003
|
+
dotnetValidation: z.ZodEnum<{
|
|
4004
|
+
none: "none";
|
|
4005
|
+
fluentvalidation: "fluentvalidation";
|
|
4006
|
+
"data-annotations": "data-annotations";
|
|
4007
|
+
}>;
|
|
4008
|
+
dotnetCaching: z.ZodEnum<{
|
|
4009
|
+
none: "none";
|
|
4010
|
+
redis: "redis";
|
|
4011
|
+
"memory-cache": "memory-cache";
|
|
4012
|
+
}>;
|
|
4013
|
+
dotnetDeploy: z.ZodEnum<{
|
|
4014
|
+
none: "none";
|
|
4015
|
+
docker: "docker";
|
|
4016
|
+
azure: "azure";
|
|
4017
|
+
aws: "aws";
|
|
4018
|
+
}>;
|
|
3255
4019
|
elixirWebFramework: z.ZodEnum<{
|
|
3256
4020
|
none: "none";
|
|
3257
4021
|
phoenix: "phoenix";
|
|
@@ -3272,6 +4036,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3272
4036
|
none: "none";
|
|
3273
4037
|
rest: "rest";
|
|
3274
4038
|
absinthe: "absinthe";
|
|
4039
|
+
grpc: "grpc";
|
|
3275
4040
|
}>;
|
|
3276
4041
|
elixirRealtime: z.ZodEnum<{
|
|
3277
4042
|
none: "none";
|
|
@@ -3334,6 +4099,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3334
4099
|
gigalixir: "gigalixir";
|
|
3335
4100
|
"mix-release": "mix-release";
|
|
3336
4101
|
}>;
|
|
4102
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
4103
|
+
none: "none";
|
|
4104
|
+
broadway: "broadway";
|
|
4105
|
+
nx: "nx";
|
|
4106
|
+
}>>;
|
|
3337
4107
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3338
4108
|
none: "none";
|
|
3339
4109
|
"claude-md": "claude-md";
|
|
@@ -3343,37 +4113,55 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3343
4113
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3344
4114
|
id: z.ZodString;
|
|
3345
4115
|
role: z.ZodEnum<{
|
|
3346
|
-
|
|
4116
|
+
frontend: "frontend";
|
|
3347
4117
|
backend: "backend";
|
|
4118
|
+
mobile: "mobile";
|
|
3348
4119
|
database: "database";
|
|
4120
|
+
api: "api";
|
|
3349
4121
|
orm: "orm";
|
|
3350
4122
|
auth: "auth";
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
4123
|
+
runtime: "runtime";
|
|
4124
|
+
deploy: "deploy";
|
|
4125
|
+
dbSetup: "dbSetup";
|
|
4126
|
+
realtime: "realtime";
|
|
4127
|
+
navigation: "navigation";
|
|
4128
|
+
caching: "caching";
|
|
3354
4129
|
observability: "observability";
|
|
3355
|
-
|
|
3356
|
-
|
|
4130
|
+
email: "email";
|
|
4131
|
+
search: "search";
|
|
4132
|
+
fileStorage: "fileStorage";
|
|
4133
|
+
jobQueue: "jobQueue";
|
|
4134
|
+
rateLimit: "rateLimit";
|
|
4135
|
+
testing: "testing";
|
|
3357
4136
|
stateManagement: "stateManagement";
|
|
3358
4137
|
forms: "forms";
|
|
4138
|
+
animation: "animation";
|
|
4139
|
+
fileUpload: "fileUpload";
|
|
3359
4140
|
validation: "validation";
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
4141
|
+
effect: "effect";
|
|
4142
|
+
ui: "ui";
|
|
4143
|
+
css: "css";
|
|
4144
|
+
storage: "storage";
|
|
4145
|
+
ai: "ai";
|
|
4146
|
+
payments: "payments";
|
|
4147
|
+
logging: "logging";
|
|
4148
|
+
featureFlags: "featureFlags";
|
|
4149
|
+
analytics: "analytics";
|
|
3363
4150
|
cms: "cms";
|
|
3364
4151
|
i18n: "i18n";
|
|
3365
|
-
search: "search";
|
|
3366
|
-
fileStorage: "fileStorage";
|
|
3367
|
-
codeQuality: "codeQuality";
|
|
3368
4152
|
documentation: "documentation";
|
|
3369
|
-
|
|
3370
|
-
ai: "ai";
|
|
3371
|
-
css: "css";
|
|
3372
|
-
ui: "ui";
|
|
3373
|
-
frontend: "frontend";
|
|
3374
|
-
mobile: "mobile";
|
|
3375
|
-
deploy: "deploy";
|
|
4153
|
+
codeQuality: "codeQuality";
|
|
3376
4154
|
appPlatform: "appPlatform";
|
|
4155
|
+
dataFetching: "dataFetching";
|
|
4156
|
+
workspaceTooling: "workspaceTooling";
|
|
4157
|
+
examples: "examples";
|
|
4158
|
+
buildTool: "buildTool";
|
|
4159
|
+
cli: "cli";
|
|
4160
|
+
errorHandling: "errorHandling";
|
|
4161
|
+
httpClient: "httpClient";
|
|
4162
|
+
libraries: "libraries";
|
|
4163
|
+
config: "config";
|
|
4164
|
+
templating: "templating";
|
|
3377
4165
|
}>;
|
|
3378
4166
|
toolId: z.ZodString;
|
|
3379
4167
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -3384,6 +4172,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3384
4172
|
go: "go";
|
|
3385
4173
|
java: "java";
|
|
3386
4174
|
elixir: "elixir";
|
|
4175
|
+
dotnet: "dotnet";
|
|
3387
4176
|
}>, z.ZodLiteral<"universal">]>;
|
|
3388
4177
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3389
4178
|
source: z.ZodEnum<{
|
|
@@ -3412,6 +4201,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3412
4201
|
go: "go";
|
|
3413
4202
|
java: "java";
|
|
3414
4203
|
elixir: "elixir";
|
|
4204
|
+
dotnet: "dotnet";
|
|
3415
4205
|
}>;
|
|
3416
4206
|
database: z.ZodEnum<{
|
|
3417
4207
|
none: "none";
|
|
@@ -3498,6 +4288,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3498
4288
|
"tanstack-virtual": "tanstack-virtual";
|
|
3499
4289
|
"tanstack-db": "tanstack-db";
|
|
3500
4290
|
"tanstack-pacer": "tanstack-pacer";
|
|
4291
|
+
"backend-utils": "backend-utils";
|
|
3501
4292
|
"docker-compose": "docker-compose";
|
|
3502
4293
|
}>>;
|
|
3503
4294
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -3509,12 +4300,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3509
4300
|
auth: z.ZodEnum<{
|
|
3510
4301
|
none: "none";
|
|
3511
4302
|
"better-auth": "better-auth";
|
|
4303
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
3512
4304
|
"go-better-auth": "go-better-auth";
|
|
3513
4305
|
clerk: "clerk";
|
|
3514
4306
|
nextauth: "nextauth";
|
|
3515
4307
|
"stack-auth": "stack-auth";
|
|
3516
4308
|
"supabase-auth": "supabase-auth";
|
|
3517
4309
|
auth0: "auth0";
|
|
4310
|
+
workos: "workos";
|
|
4311
|
+
kinde: "kinde";
|
|
3518
4312
|
}>;
|
|
3519
4313
|
payments: z.ZodEnum<{
|
|
3520
4314
|
none: "none";
|
|
@@ -3563,6 +4357,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3563
4357
|
cloudflare: "cloudflare";
|
|
3564
4358
|
fly: "fly";
|
|
3565
4359
|
railway: "railway";
|
|
4360
|
+
render: "render";
|
|
4361
|
+
netlify: "netlify";
|
|
3566
4362
|
sst: "sst";
|
|
3567
4363
|
vercel: "vercel";
|
|
3568
4364
|
}>;
|
|
@@ -3572,6 +4368,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3572
4368
|
cloudflare: "cloudflare";
|
|
3573
4369
|
fly: "fly";
|
|
3574
4370
|
railway: "railway";
|
|
4371
|
+
render: "render";
|
|
4372
|
+
netlify: "netlify";
|
|
3575
4373
|
sst: "sst";
|
|
3576
4374
|
vercel: "vercel";
|
|
3577
4375
|
}>;
|
|
@@ -3649,7 +4447,6 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3649
4447
|
"postcss-only": "postcss-only";
|
|
3650
4448
|
}>;
|
|
3651
4449
|
uiLibrary: z.ZodEnum<{
|
|
3652
|
-
mui: "mui";
|
|
3653
4450
|
none: "none";
|
|
3654
4451
|
"shadcn-ui": "shadcn-ui";
|
|
3655
4452
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3660,6 +4457,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3660
4457
|
"chakra-ui": "chakra-ui";
|
|
3661
4458
|
nextui: "nextui";
|
|
3662
4459
|
mantine: "mantine";
|
|
4460
|
+
mui: "mui";
|
|
3663
4461
|
antd: "antd";
|
|
3664
4462
|
"base-ui": "base-ui";
|
|
3665
4463
|
"ark-ui": "ark-ui";
|
|
@@ -3731,8 +4529,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3731
4529
|
"geist-mono": "geist-mono";
|
|
3732
4530
|
}>>;
|
|
3733
4531
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3734
|
-
none: "none";
|
|
3735
4532
|
default: "default";
|
|
4533
|
+
none: "none";
|
|
3736
4534
|
small: "small";
|
|
3737
4535
|
medium: "medium";
|
|
3738
4536
|
large: "large";
|
|
@@ -3788,6 +4586,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3788
4586
|
opentelemetry: "opentelemetry";
|
|
3789
4587
|
sentry: "sentry";
|
|
3790
4588
|
grafana: "grafana";
|
|
4589
|
+
datadog: "datadog";
|
|
4590
|
+
axiom: "axiom";
|
|
4591
|
+
betterstack: "betterstack";
|
|
3791
4592
|
}>;
|
|
3792
4593
|
featureFlags: z.ZodEnum<{
|
|
3793
4594
|
none: "none";
|
|
@@ -3814,6 +4615,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3814
4615
|
none: "none";
|
|
3815
4616
|
"upstash-redis": "upstash-redis";
|
|
3816
4617
|
}>;
|
|
4618
|
+
rateLimit: z.ZodEnum<{
|
|
4619
|
+
none: "none";
|
|
4620
|
+
arcjet: "arcjet";
|
|
4621
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
4622
|
+
}>;
|
|
3817
4623
|
i18n: z.ZodEnum<{
|
|
3818
4624
|
none: "none";
|
|
3819
4625
|
i18next: "i18next";
|
|
@@ -3894,12 +4700,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3894
4700
|
ratatui: "ratatui";
|
|
3895
4701
|
}>;
|
|
3896
4702
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4703
|
+
config: "config";
|
|
3897
4704
|
none: "none";
|
|
3898
4705
|
serde: "serde";
|
|
3899
4706
|
uuid: "uuid";
|
|
3900
4707
|
chrono: "chrono";
|
|
3901
4708
|
reqwest: "reqwest";
|
|
3902
|
-
config: "config";
|
|
3903
4709
|
dashmap: "dashmap";
|
|
3904
4710
|
"parking-lot": "parking-lot";
|
|
3905
4711
|
secrecy: "secrecy";
|
|
@@ -3931,6 +4737,24 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3931
4737
|
rustAuth: z.ZodEnum<{
|
|
3932
4738
|
none: "none";
|
|
3933
4739
|
oauth2: "oauth2";
|
|
4740
|
+
torii: "torii";
|
|
4741
|
+
}>;
|
|
4742
|
+
rustRealtime: z.ZodEnum<{
|
|
4743
|
+
none: "none";
|
|
4744
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
4745
|
+
}>;
|
|
4746
|
+
rustMessageQueue: z.ZodEnum<{
|
|
4747
|
+
none: "none";
|
|
4748
|
+
lapin: "lapin";
|
|
4749
|
+
}>;
|
|
4750
|
+
rustObservability: z.ZodEnum<{
|
|
4751
|
+
none: "none";
|
|
4752
|
+
opentelemetry: "opentelemetry";
|
|
4753
|
+
}>;
|
|
4754
|
+
rustTemplating: z.ZodEnum<{
|
|
4755
|
+
none: "none";
|
|
4756
|
+
askama: "askama";
|
|
4757
|
+
tera: "tera";
|
|
3934
4758
|
}>;
|
|
3935
4759
|
pythonWebFramework: z.ZodEnum<{
|
|
3936
4760
|
none: "none";
|
|
@@ -3938,12 +4762,14 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3938
4762
|
django: "django";
|
|
3939
4763
|
flask: "flask";
|
|
3940
4764
|
litestar: "litestar";
|
|
4765
|
+
starlette: "starlette";
|
|
3941
4766
|
}>;
|
|
3942
4767
|
pythonOrm: z.ZodEnum<{
|
|
3943
4768
|
none: "none";
|
|
3944
4769
|
sqlalchemy: "sqlalchemy";
|
|
3945
4770
|
sqlmodel: "sqlmodel";
|
|
3946
4771
|
"tortoise-orm": "tortoise-orm";
|
|
4772
|
+
peewee: "peewee";
|
|
3947
4773
|
}>;
|
|
3948
4774
|
pythonValidation: z.ZodEnum<{
|
|
3949
4775
|
none: "none";
|
|
@@ -3952,17 +4778,21 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3952
4778
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3953
4779
|
none: "none";
|
|
3954
4780
|
langgraph: "langgraph";
|
|
4781
|
+
"google-adk": "google-adk";
|
|
3955
4782
|
langchain: "langchain";
|
|
3956
4783
|
llamaindex: "llamaindex";
|
|
3957
4784
|
"openai-sdk": "openai-sdk";
|
|
3958
4785
|
"anthropic-sdk": "anthropic-sdk";
|
|
3959
4786
|
crewai: "crewai";
|
|
3960
4787
|
haystack: "haystack";
|
|
4788
|
+
"pydantic-ai": "pydantic-ai";
|
|
4789
|
+
smolagents: "smolagents";
|
|
3961
4790
|
}>>;
|
|
3962
4791
|
pythonAuth: z.ZodEnum<{
|
|
3963
4792
|
none: "none";
|
|
3964
4793
|
authlib: "authlib";
|
|
3965
4794
|
jwt: "jwt";
|
|
4795
|
+
"fastapi-users": "fastapi-users";
|
|
3966
4796
|
}>;
|
|
3967
4797
|
pythonApi: z.ZodEnum<{
|
|
3968
4798
|
none: "none";
|
|
@@ -3975,6 +4805,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3975
4805
|
rq: "rq";
|
|
3976
4806
|
dramatiq: "dramatiq";
|
|
3977
4807
|
huey: "huey";
|
|
4808
|
+
taskiq: "taskiq";
|
|
3978
4809
|
}>;
|
|
3979
4810
|
pythonGraphql: z.ZodEnum<{
|
|
3980
4811
|
none: "none";
|
|
@@ -3987,6 +4818,31 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3987
4818
|
mypy: "mypy";
|
|
3988
4819
|
pyright: "pyright";
|
|
3989
4820
|
}>;
|
|
4821
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
4822
|
+
none: "none";
|
|
4823
|
+
pytest: "pytest";
|
|
4824
|
+
hypothesis: "hypothesis";
|
|
4825
|
+
}>>;
|
|
4826
|
+
pythonCaching: z.ZodEnum<{
|
|
4827
|
+
none: "none";
|
|
4828
|
+
redis: "redis";
|
|
4829
|
+
aiocache: "aiocache";
|
|
4830
|
+
}>;
|
|
4831
|
+
pythonRealtime: z.ZodEnum<{
|
|
4832
|
+
none: "none";
|
|
4833
|
+
"python-socketio": "python-socketio";
|
|
4834
|
+
websockets: "websockets";
|
|
4835
|
+
}>;
|
|
4836
|
+
pythonObservability: z.ZodEnum<{
|
|
4837
|
+
none: "none";
|
|
4838
|
+
opentelemetry: "opentelemetry";
|
|
4839
|
+
}>;
|
|
4840
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
4841
|
+
none: "none";
|
|
4842
|
+
typer: "typer";
|
|
4843
|
+
click: "click";
|
|
4844
|
+
rich: "rich";
|
|
4845
|
+
}>>;
|
|
3990
4846
|
goWebFramework: z.ZodEnum<{
|
|
3991
4847
|
none: "none";
|
|
3992
4848
|
gin: "gin";
|
|
@@ -3995,14 +4851,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3995
4851
|
chi: "chi";
|
|
3996
4852
|
}>;
|
|
3997
4853
|
goOrm: z.ZodEnum<{
|
|
3998
|
-
gorm: "gorm";
|
|
3999
4854
|
none: "none";
|
|
4855
|
+
gorm: "gorm";
|
|
4000
4856
|
sqlc: "sqlc";
|
|
4001
4857
|
ent: "ent";
|
|
4002
4858
|
}>;
|
|
4003
4859
|
goApi: z.ZodEnum<{
|
|
4004
4860
|
none: "none";
|
|
4005
4861
|
"grpc-go": "grpc-go";
|
|
4862
|
+
gqlgen: "gqlgen";
|
|
4006
4863
|
}>;
|
|
4007
4864
|
goCli: z.ZodEnum<{
|
|
4008
4865
|
none: "none";
|
|
@@ -4021,6 +4878,36 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4021
4878
|
none: "none";
|
|
4022
4879
|
jwt: "jwt";
|
|
4023
4880
|
casbin: "casbin";
|
|
4881
|
+
goth: "goth";
|
|
4882
|
+
}>;
|
|
4883
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
4884
|
+
none: "none";
|
|
4885
|
+
testify: "testify";
|
|
4886
|
+
gomock: "gomock";
|
|
4887
|
+
}>>;
|
|
4888
|
+
goRealtime: z.ZodEnum<{
|
|
4889
|
+
none: "none";
|
|
4890
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
4891
|
+
centrifuge: "centrifuge";
|
|
4892
|
+
}>;
|
|
4893
|
+
goMessageQueue: z.ZodEnum<{
|
|
4894
|
+
none: "none";
|
|
4895
|
+
nats: "nats";
|
|
4896
|
+
watermill: "watermill";
|
|
4897
|
+
}>;
|
|
4898
|
+
goCaching: z.ZodEnum<{
|
|
4899
|
+
none: "none";
|
|
4900
|
+
redis: "redis";
|
|
4901
|
+
ristretto: "ristretto";
|
|
4902
|
+
}>;
|
|
4903
|
+
goConfig: z.ZodEnum<{
|
|
4904
|
+
none: "none";
|
|
4905
|
+
viper: "viper";
|
|
4906
|
+
koanf: "koanf";
|
|
4907
|
+
}>;
|
|
4908
|
+
goObservability: z.ZodEnum<{
|
|
4909
|
+
none: "none";
|
|
4910
|
+
opentelemetry: "opentelemetry";
|
|
4024
4911
|
}>;
|
|
4025
4912
|
javaWebFramework: z.ZodEnum<{
|
|
4026
4913
|
none: "none";
|
|
@@ -4035,10 +4922,21 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4035
4922
|
javaOrm: z.ZodEnum<{
|
|
4036
4923
|
none: "none";
|
|
4037
4924
|
"spring-data-jpa": "spring-data-jpa";
|
|
4925
|
+
jooq: "jooq";
|
|
4926
|
+
mybatis: "mybatis";
|
|
4038
4927
|
}>;
|
|
4039
4928
|
javaAuth: z.ZodEnum<{
|
|
4040
4929
|
none: "none";
|
|
4041
4930
|
"spring-security": "spring-security";
|
|
4931
|
+
keycloak: "keycloak";
|
|
4932
|
+
}>;
|
|
4933
|
+
javaApi: z.ZodEnum<{
|
|
4934
|
+
none: "none";
|
|
4935
|
+
"spring-graphql": "spring-graphql";
|
|
4936
|
+
}>;
|
|
4937
|
+
javaLogging: z.ZodEnum<{
|
|
4938
|
+
none: "none";
|
|
4939
|
+
logback: "logback";
|
|
4042
4940
|
}>;
|
|
4043
4941
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4044
4942
|
none: "none";
|
|
@@ -4058,6 +4956,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4058
4956
|
"spring-devtools": "spring-devtools";
|
|
4059
4957
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
4060
4958
|
thymeleaf: "thymeleaf";
|
|
4959
|
+
"spring-amqp": "spring-amqp";
|
|
4960
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
4061
4961
|
}>>;
|
|
4062
4962
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
4063
4963
|
none: "none";
|
|
@@ -4071,6 +4971,70 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4071
4971
|
archunit: "archunit";
|
|
4072
4972
|
jqwik: "jqwik";
|
|
4073
4973
|
}>>;
|
|
4974
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
4975
|
+
none: "none";
|
|
4976
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
4977
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
4978
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
4979
|
+
}>;
|
|
4980
|
+
dotnetOrm: z.ZodEnum<{
|
|
4981
|
+
none: "none";
|
|
4982
|
+
"ef-core": "ef-core";
|
|
4983
|
+
dapper: "dapper";
|
|
4984
|
+
linq2db: "linq2db";
|
|
4985
|
+
}>;
|
|
4986
|
+
dotnetAuth: z.ZodEnum<{
|
|
4987
|
+
none: "none";
|
|
4988
|
+
"aspnet-identity": "aspnet-identity";
|
|
4989
|
+
"duende-identityserver": "duende-identityserver";
|
|
4990
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
4991
|
+
}>;
|
|
4992
|
+
dotnetApi: z.ZodEnum<{
|
|
4993
|
+
none: "none";
|
|
4994
|
+
"minimal-api": "minimal-api";
|
|
4995
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
4996
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
4997
|
+
}>;
|
|
4998
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
4999
|
+
none: "none";
|
|
5000
|
+
xunit: "xunit";
|
|
5001
|
+
nunit: "nunit";
|
|
5002
|
+
moq: "moq";
|
|
5003
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
5004
|
+
}>>;
|
|
5005
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
5006
|
+
none: "none";
|
|
5007
|
+
hangfire: "hangfire";
|
|
5008
|
+
"quartz-net": "quartz-net";
|
|
5009
|
+
"hosted-services": "hosted-services";
|
|
5010
|
+
}>;
|
|
5011
|
+
dotnetRealtime: z.ZodEnum<{
|
|
5012
|
+
none: "none";
|
|
5013
|
+
signalr: "signalr";
|
|
5014
|
+
}>;
|
|
5015
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
5016
|
+
none: "none";
|
|
5017
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
5018
|
+
serilog: "serilog";
|
|
5019
|
+
nlog: "nlog";
|
|
5020
|
+
"health-checks": "health-checks";
|
|
5021
|
+
}>>;
|
|
5022
|
+
dotnetValidation: z.ZodEnum<{
|
|
5023
|
+
none: "none";
|
|
5024
|
+
fluentvalidation: "fluentvalidation";
|
|
5025
|
+
"data-annotations": "data-annotations";
|
|
5026
|
+
}>;
|
|
5027
|
+
dotnetCaching: z.ZodEnum<{
|
|
5028
|
+
none: "none";
|
|
5029
|
+
redis: "redis";
|
|
5030
|
+
"memory-cache": "memory-cache";
|
|
5031
|
+
}>;
|
|
5032
|
+
dotnetDeploy: z.ZodEnum<{
|
|
5033
|
+
none: "none";
|
|
5034
|
+
docker: "docker";
|
|
5035
|
+
azure: "azure";
|
|
5036
|
+
aws: "aws";
|
|
5037
|
+
}>;
|
|
4074
5038
|
elixirWebFramework: z.ZodEnum<{
|
|
4075
5039
|
none: "none";
|
|
4076
5040
|
phoenix: "phoenix";
|
|
@@ -4091,6 +5055,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4091
5055
|
none: "none";
|
|
4092
5056
|
rest: "rest";
|
|
4093
5057
|
absinthe: "absinthe";
|
|
5058
|
+
grpc: "grpc";
|
|
4094
5059
|
}>;
|
|
4095
5060
|
elixirRealtime: z.ZodEnum<{
|
|
4096
5061
|
none: "none";
|
|
@@ -4153,6 +5118,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4153
5118
|
gigalixir: "gigalixir";
|
|
4154
5119
|
"mix-release": "mix-release";
|
|
4155
5120
|
}>;
|
|
5121
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
5122
|
+
none: "none";
|
|
5123
|
+
broadway: "broadway";
|
|
5124
|
+
nx: "nx";
|
|
5125
|
+
}>>;
|
|
4156
5126
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4157
5127
|
none: "none";
|
|
4158
5128
|
"claude-md": "claude-md";
|
|
@@ -4162,37 +5132,55 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4162
5132
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4163
5133
|
id: z.ZodString;
|
|
4164
5134
|
role: z.ZodEnum<{
|
|
4165
|
-
|
|
5135
|
+
frontend: "frontend";
|
|
4166
5136
|
backend: "backend";
|
|
5137
|
+
mobile: "mobile";
|
|
4167
5138
|
database: "database";
|
|
5139
|
+
api: "api";
|
|
4168
5140
|
orm: "orm";
|
|
4169
5141
|
auth: "auth";
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
5142
|
+
runtime: "runtime";
|
|
5143
|
+
deploy: "deploy";
|
|
5144
|
+
dbSetup: "dbSetup";
|
|
5145
|
+
realtime: "realtime";
|
|
5146
|
+
navigation: "navigation";
|
|
5147
|
+
caching: "caching";
|
|
4173
5148
|
observability: "observability";
|
|
4174
|
-
|
|
4175
|
-
|
|
5149
|
+
email: "email";
|
|
5150
|
+
search: "search";
|
|
5151
|
+
fileStorage: "fileStorage";
|
|
5152
|
+
jobQueue: "jobQueue";
|
|
5153
|
+
rateLimit: "rateLimit";
|
|
5154
|
+
testing: "testing";
|
|
4176
5155
|
stateManagement: "stateManagement";
|
|
4177
5156
|
forms: "forms";
|
|
5157
|
+
animation: "animation";
|
|
5158
|
+
fileUpload: "fileUpload";
|
|
4178
5159
|
validation: "validation";
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
5160
|
+
effect: "effect";
|
|
5161
|
+
ui: "ui";
|
|
5162
|
+
css: "css";
|
|
5163
|
+
storage: "storage";
|
|
5164
|
+
ai: "ai";
|
|
5165
|
+
payments: "payments";
|
|
5166
|
+
logging: "logging";
|
|
5167
|
+
featureFlags: "featureFlags";
|
|
5168
|
+
analytics: "analytics";
|
|
4182
5169
|
cms: "cms";
|
|
4183
5170
|
i18n: "i18n";
|
|
4184
|
-
search: "search";
|
|
4185
|
-
fileStorage: "fileStorage";
|
|
4186
|
-
codeQuality: "codeQuality";
|
|
4187
5171
|
documentation: "documentation";
|
|
4188
|
-
|
|
4189
|
-
ai: "ai";
|
|
4190
|
-
css: "css";
|
|
4191
|
-
ui: "ui";
|
|
4192
|
-
frontend: "frontend";
|
|
4193
|
-
mobile: "mobile";
|
|
4194
|
-
deploy: "deploy";
|
|
5172
|
+
codeQuality: "codeQuality";
|
|
4195
5173
|
appPlatform: "appPlatform";
|
|
5174
|
+
dataFetching: "dataFetching";
|
|
5175
|
+
workspaceTooling: "workspaceTooling";
|
|
5176
|
+
examples: "examples";
|
|
5177
|
+
buildTool: "buildTool";
|
|
5178
|
+
cli: "cli";
|
|
5179
|
+
errorHandling: "errorHandling";
|
|
5180
|
+
httpClient: "httpClient";
|
|
5181
|
+
libraries: "libraries";
|
|
5182
|
+
config: "config";
|
|
5183
|
+
templating: "templating";
|
|
4196
5184
|
}>;
|
|
4197
5185
|
toolId: z.ZodString;
|
|
4198
5186
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -4203,6 +5191,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4203
5191
|
go: "go";
|
|
4204
5192
|
java: "java";
|
|
4205
5193
|
elixir: "elixir";
|
|
5194
|
+
dotnet: "dotnet";
|
|
4206
5195
|
}>, z.ZodLiteral<"universal">]>;
|
|
4207
5196
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4208
5197
|
source: z.ZodEnum<{
|
|
@@ -4241,10 +5230,13 @@ declare function getJavaBuildToolJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
4241
5230
|
declare function getJavaOrmJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4242
5231
|
none: "none";
|
|
4243
5232
|
"spring-data-jpa": "spring-data-jpa";
|
|
5233
|
+
jooq: "jooq";
|
|
5234
|
+
mybatis: "mybatis";
|
|
4244
5235
|
}>>;
|
|
4245
5236
|
declare function getJavaAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4246
5237
|
none: "none";
|
|
4247
5238
|
"spring-security": "spring-security";
|
|
5239
|
+
keycloak: "keycloak";
|
|
4248
5240
|
}>>;
|
|
4249
5241
|
declare function getJavaLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4250
5242
|
none: "none";
|
|
@@ -4264,6 +5256,8 @@ declare function getJavaLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
4264
5256
|
"spring-devtools": "spring-devtools";
|
|
4265
5257
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
4266
5258
|
thymeleaf: "thymeleaf";
|
|
5259
|
+
"spring-amqp": "spring-amqp";
|
|
5260
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
4267
5261
|
}>>;
|
|
4268
5262
|
declare function getJavaTestingLibrariesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4269
5263
|
none: "none";
|
|
@@ -4297,6 +5291,7 @@ declare function getElixirApiJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z
|
|
|
4297
5291
|
none: "none";
|
|
4298
5292
|
rest: "rest";
|
|
4299
5293
|
absinthe: "absinthe";
|
|
5294
|
+
grpc: "grpc";
|
|
4300
5295
|
}>>;
|
|
4301
5296
|
declare function getElixirRealtimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4302
5297
|
none: "none";
|
|
@@ -4445,6 +5440,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4445
5440
|
"tanstack-virtual": "tanstack-virtual";
|
|
4446
5441
|
"tanstack-db": "tanstack-db";
|
|
4447
5442
|
"tanstack-pacer": "tanstack-pacer";
|
|
5443
|
+
"backend-utils": "backend-utils";
|
|
4448
5444
|
"docker-compose": "docker-compose";
|
|
4449
5445
|
}>>;
|
|
4450
5446
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
@@ -4482,12 +5478,15 @@ declare function getAllJsonSchemas(): {
|
|
|
4482
5478
|
auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4483
5479
|
none: "none";
|
|
4484
5480
|
"better-auth": "better-auth";
|
|
5481
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
4485
5482
|
"go-better-auth": "go-better-auth";
|
|
4486
5483
|
clerk: "clerk";
|
|
4487
5484
|
nextauth: "nextauth";
|
|
4488
5485
|
"stack-auth": "stack-auth";
|
|
4489
5486
|
"supabase-auth": "supabase-auth";
|
|
4490
5487
|
auth0: "auth0";
|
|
5488
|
+
workos: "workos";
|
|
5489
|
+
kinde: "kinde";
|
|
4491
5490
|
}>>;
|
|
4492
5491
|
payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4493
5492
|
none: "none";
|
|
@@ -4503,6 +5502,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4503
5502
|
cloudflare: "cloudflare";
|
|
4504
5503
|
fly: "fly";
|
|
4505
5504
|
railway: "railway";
|
|
5505
|
+
render: "render";
|
|
5506
|
+
netlify: "netlify";
|
|
4506
5507
|
sst: "sst";
|
|
4507
5508
|
vercel: "vercel";
|
|
4508
5509
|
}>>;
|
|
@@ -4512,6 +5513,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4512
5513
|
cloudflare: "cloudflare";
|
|
4513
5514
|
fly: "fly";
|
|
4514
5515
|
railway: "railway";
|
|
5516
|
+
render: "render";
|
|
5517
|
+
netlify: "netlify";
|
|
4515
5518
|
sst: "sst";
|
|
4516
5519
|
vercel: "vercel";
|
|
4517
5520
|
}>>;
|
|
@@ -4541,10 +5544,13 @@ declare function getAllJsonSchemas(): {
|
|
|
4541
5544
|
javaOrm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4542
5545
|
none: "none";
|
|
4543
5546
|
"spring-data-jpa": "spring-data-jpa";
|
|
5547
|
+
jooq: "jooq";
|
|
5548
|
+
mybatis: "mybatis";
|
|
4544
5549
|
}>>;
|
|
4545
5550
|
javaAuth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4546
5551
|
none: "none";
|
|
4547
5552
|
"spring-security": "spring-security";
|
|
5553
|
+
keycloak: "keycloak";
|
|
4548
5554
|
}>>;
|
|
4549
5555
|
javaLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4550
5556
|
none: "none";
|
|
@@ -4564,6 +5570,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4564
5570
|
"spring-devtools": "spring-devtools";
|
|
4565
5571
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
4566
5572
|
thymeleaf: "thymeleaf";
|
|
5573
|
+
"spring-amqp": "spring-amqp";
|
|
5574
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
4567
5575
|
}>>;
|
|
4568
5576
|
javaTestingLibraries: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4569
5577
|
none: "none";
|
|
@@ -4597,6 +5605,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4597
5605
|
none: "none";
|
|
4598
5606
|
rest: "rest";
|
|
4599
5607
|
absinthe: "absinthe";
|
|
5608
|
+
grpc: "grpc";
|
|
4600
5609
|
}>>;
|
|
4601
5610
|
elixirRealtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4602
5611
|
none: "none";
|
|
@@ -4681,6 +5690,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4681
5690
|
go: "go";
|
|
4682
5691
|
java: "java";
|
|
4683
5692
|
elixir: "elixir";
|
|
5693
|
+
dotnet: "dotnet";
|
|
4684
5694
|
}>>;
|
|
4685
5695
|
database: z.ZodOptional<z.ZodEnum<{
|
|
4686
5696
|
none: "none";
|
|
@@ -4704,12 +5714,15 @@ declare function getAllJsonSchemas(): {
|
|
|
4704
5714
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
4705
5715
|
none: "none";
|
|
4706
5716
|
"better-auth": "better-auth";
|
|
5717
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
4707
5718
|
"go-better-auth": "go-better-auth";
|
|
4708
5719
|
clerk: "clerk";
|
|
4709
5720
|
nextauth: "nextauth";
|
|
4710
5721
|
"stack-auth": "stack-auth";
|
|
4711
5722
|
"supabase-auth": "supabase-auth";
|
|
4712
5723
|
auth0: "auth0";
|
|
5724
|
+
workos: "workos";
|
|
5725
|
+
kinde: "kinde";
|
|
4713
5726
|
}>>;
|
|
4714
5727
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
4715
5728
|
none: "none";
|
|
@@ -4765,6 +5778,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4765
5778
|
"tanstack-virtual": "tanstack-virtual";
|
|
4766
5779
|
"tanstack-db": "tanstack-db";
|
|
4767
5780
|
"tanstack-pacer": "tanstack-pacer";
|
|
5781
|
+
"backend-utils": "backend-utils";
|
|
4768
5782
|
"docker-compose": "docker-compose";
|
|
4769
5783
|
}>>>;
|
|
4770
5784
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -4832,6 +5846,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4832
5846
|
cloudflare: "cloudflare";
|
|
4833
5847
|
fly: "fly";
|
|
4834
5848
|
railway: "railway";
|
|
5849
|
+
render: "render";
|
|
5850
|
+
netlify: "netlify";
|
|
4835
5851
|
sst: "sst";
|
|
4836
5852
|
vercel: "vercel";
|
|
4837
5853
|
}>>;
|
|
@@ -4841,6 +5857,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4841
5857
|
cloudflare: "cloudflare";
|
|
4842
5858
|
fly: "fly";
|
|
4843
5859
|
railway: "railway";
|
|
5860
|
+
render: "render";
|
|
5861
|
+
netlify: "netlify";
|
|
4844
5862
|
sst: "sst";
|
|
4845
5863
|
vercel: "vercel";
|
|
4846
5864
|
}>>;
|
|
@@ -4927,7 +5945,6 @@ declare function getAllJsonSchemas(): {
|
|
|
4927
5945
|
"postcss-only": "postcss-only";
|
|
4928
5946
|
}>>;
|
|
4929
5947
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
4930
|
-
mui: "mui";
|
|
4931
5948
|
none: "none";
|
|
4932
5949
|
"shadcn-ui": "shadcn-ui";
|
|
4933
5950
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4938,6 +5955,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4938
5955
|
"chakra-ui": "chakra-ui";
|
|
4939
5956
|
nextui: "nextui";
|
|
4940
5957
|
mantine: "mantine";
|
|
5958
|
+
mui: "mui";
|
|
4941
5959
|
antd: "antd";
|
|
4942
5960
|
"base-ui": "base-ui";
|
|
4943
5961
|
"ark-ui": "ark-ui";
|
|
@@ -5009,8 +6027,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5009
6027
|
"geist-mono": "geist-mono";
|
|
5010
6028
|
}>>;
|
|
5011
6029
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5012
|
-
none: "none";
|
|
5013
6030
|
default: "default";
|
|
6031
|
+
none: "none";
|
|
5014
6032
|
small: "small";
|
|
5015
6033
|
medium: "medium";
|
|
5016
6034
|
large: "large";
|
|
@@ -5066,6 +6084,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5066
6084
|
opentelemetry: "opentelemetry";
|
|
5067
6085
|
sentry: "sentry";
|
|
5068
6086
|
grafana: "grafana";
|
|
6087
|
+
datadog: "datadog";
|
|
6088
|
+
axiom: "axiom";
|
|
6089
|
+
betterstack: "betterstack";
|
|
5069
6090
|
}>>;
|
|
5070
6091
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
5071
6092
|
none: "none";
|
|
@@ -5092,6 +6113,11 @@ declare function getAllJsonSchemas(): {
|
|
|
5092
6113
|
none: "none";
|
|
5093
6114
|
"upstash-redis": "upstash-redis";
|
|
5094
6115
|
}>>;
|
|
6116
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
6117
|
+
none: "none";
|
|
6118
|
+
arcjet: "arcjet";
|
|
6119
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
6120
|
+
}>>;
|
|
5095
6121
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
5096
6122
|
none: "none";
|
|
5097
6123
|
i18next: "i18next";
|
|
@@ -5172,12 +6198,12 @@ declare function getAllJsonSchemas(): {
|
|
|
5172
6198
|
ratatui: "ratatui";
|
|
5173
6199
|
}>>;
|
|
5174
6200
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6201
|
+
config: "config";
|
|
5175
6202
|
none: "none";
|
|
5176
6203
|
serde: "serde";
|
|
5177
6204
|
uuid: "uuid";
|
|
5178
6205
|
chrono: "chrono";
|
|
5179
6206
|
reqwest: "reqwest";
|
|
5180
|
-
config: "config";
|
|
5181
6207
|
dashmap: "dashmap";
|
|
5182
6208
|
"parking-lot": "parking-lot";
|
|
5183
6209
|
secrecy: "secrecy";
|
|
@@ -5209,6 +6235,24 @@ declare function getAllJsonSchemas(): {
|
|
|
5209
6235
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
5210
6236
|
none: "none";
|
|
5211
6237
|
oauth2: "oauth2";
|
|
6238
|
+
torii: "torii";
|
|
6239
|
+
}>>;
|
|
6240
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6241
|
+
none: "none";
|
|
6242
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
6243
|
+
}>>;
|
|
6244
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
6245
|
+
none: "none";
|
|
6246
|
+
lapin: "lapin";
|
|
6247
|
+
}>>;
|
|
6248
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
6249
|
+
none: "none";
|
|
6250
|
+
opentelemetry: "opentelemetry";
|
|
6251
|
+
}>>;
|
|
6252
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
6253
|
+
none: "none";
|
|
6254
|
+
askama: "askama";
|
|
6255
|
+
tera: "tera";
|
|
5212
6256
|
}>>;
|
|
5213
6257
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
5214
6258
|
none: "none";
|
|
@@ -5216,12 +6260,14 @@ declare function getAllJsonSchemas(): {
|
|
|
5216
6260
|
django: "django";
|
|
5217
6261
|
flask: "flask";
|
|
5218
6262
|
litestar: "litestar";
|
|
6263
|
+
starlette: "starlette";
|
|
5219
6264
|
}>>;
|
|
5220
6265
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
5221
6266
|
none: "none";
|
|
5222
6267
|
sqlalchemy: "sqlalchemy";
|
|
5223
6268
|
sqlmodel: "sqlmodel";
|
|
5224
6269
|
"tortoise-orm": "tortoise-orm";
|
|
6270
|
+
peewee: "peewee";
|
|
5225
6271
|
}>>;
|
|
5226
6272
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
5227
6273
|
none: "none";
|
|
@@ -5230,17 +6276,21 @@ declare function getAllJsonSchemas(): {
|
|
|
5230
6276
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5231
6277
|
none: "none";
|
|
5232
6278
|
langgraph: "langgraph";
|
|
6279
|
+
"google-adk": "google-adk";
|
|
5233
6280
|
langchain: "langchain";
|
|
5234
6281
|
llamaindex: "llamaindex";
|
|
5235
6282
|
"openai-sdk": "openai-sdk";
|
|
5236
6283
|
"anthropic-sdk": "anthropic-sdk";
|
|
5237
6284
|
crewai: "crewai";
|
|
5238
6285
|
haystack: "haystack";
|
|
6286
|
+
"pydantic-ai": "pydantic-ai";
|
|
6287
|
+
smolagents: "smolagents";
|
|
5239
6288
|
}>>>;
|
|
5240
6289
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
5241
6290
|
none: "none";
|
|
5242
6291
|
authlib: "authlib";
|
|
5243
6292
|
jwt: "jwt";
|
|
6293
|
+
"fastapi-users": "fastapi-users";
|
|
5244
6294
|
}>>;
|
|
5245
6295
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
5246
6296
|
none: "none";
|
|
@@ -5253,6 +6303,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5253
6303
|
rq: "rq";
|
|
5254
6304
|
dramatiq: "dramatiq";
|
|
5255
6305
|
huey: "huey";
|
|
6306
|
+
taskiq: "taskiq";
|
|
5256
6307
|
}>>;
|
|
5257
6308
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
5258
6309
|
none: "none";
|
|
@@ -5265,6 +6316,31 @@ declare function getAllJsonSchemas(): {
|
|
|
5265
6316
|
mypy: "mypy";
|
|
5266
6317
|
pyright: "pyright";
|
|
5267
6318
|
}>>;
|
|
6319
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6320
|
+
none: "none";
|
|
6321
|
+
pytest: "pytest";
|
|
6322
|
+
hypothesis: "hypothesis";
|
|
6323
|
+
}>>>;
|
|
6324
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
6325
|
+
none: "none";
|
|
6326
|
+
redis: "redis";
|
|
6327
|
+
aiocache: "aiocache";
|
|
6328
|
+
}>>;
|
|
6329
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6330
|
+
none: "none";
|
|
6331
|
+
"python-socketio": "python-socketio";
|
|
6332
|
+
websockets: "websockets";
|
|
6333
|
+
}>>;
|
|
6334
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
6335
|
+
none: "none";
|
|
6336
|
+
opentelemetry: "opentelemetry";
|
|
6337
|
+
}>>;
|
|
6338
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6339
|
+
none: "none";
|
|
6340
|
+
typer: "typer";
|
|
6341
|
+
click: "click";
|
|
6342
|
+
rich: "rich";
|
|
6343
|
+
}>>>;
|
|
5268
6344
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
5269
6345
|
none: "none";
|
|
5270
6346
|
gin: "gin";
|
|
@@ -5273,14 +6349,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5273
6349
|
chi: "chi";
|
|
5274
6350
|
}>>;
|
|
5275
6351
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
5276
|
-
gorm: "gorm";
|
|
5277
6352
|
none: "none";
|
|
6353
|
+
gorm: "gorm";
|
|
5278
6354
|
sqlc: "sqlc";
|
|
5279
6355
|
ent: "ent";
|
|
5280
6356
|
}>>;
|
|
5281
6357
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
5282
6358
|
none: "none";
|
|
5283
6359
|
"grpc-go": "grpc-go";
|
|
6360
|
+
gqlgen: "gqlgen";
|
|
5284
6361
|
}>>;
|
|
5285
6362
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
5286
6363
|
none: "none";
|
|
@@ -5299,6 +6376,36 @@ declare function getAllJsonSchemas(): {
|
|
|
5299
6376
|
none: "none";
|
|
5300
6377
|
jwt: "jwt";
|
|
5301
6378
|
casbin: "casbin";
|
|
6379
|
+
goth: "goth";
|
|
6380
|
+
}>>;
|
|
6381
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6382
|
+
none: "none";
|
|
6383
|
+
testify: "testify";
|
|
6384
|
+
gomock: "gomock";
|
|
6385
|
+
}>>>;
|
|
6386
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6387
|
+
none: "none";
|
|
6388
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
6389
|
+
centrifuge: "centrifuge";
|
|
6390
|
+
}>>;
|
|
6391
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
6392
|
+
none: "none";
|
|
6393
|
+
nats: "nats";
|
|
6394
|
+
watermill: "watermill";
|
|
6395
|
+
}>>;
|
|
6396
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
6397
|
+
none: "none";
|
|
6398
|
+
redis: "redis";
|
|
6399
|
+
ristretto: "ristretto";
|
|
6400
|
+
}>>;
|
|
6401
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
6402
|
+
none: "none";
|
|
6403
|
+
viper: "viper";
|
|
6404
|
+
koanf: "koanf";
|
|
6405
|
+
}>>;
|
|
6406
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
6407
|
+
none: "none";
|
|
6408
|
+
opentelemetry: "opentelemetry";
|
|
5302
6409
|
}>>;
|
|
5303
6410
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
5304
6411
|
none: "none";
|
|
@@ -5313,10 +6420,21 @@ declare function getAllJsonSchemas(): {
|
|
|
5313
6420
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
5314
6421
|
none: "none";
|
|
5315
6422
|
"spring-data-jpa": "spring-data-jpa";
|
|
6423
|
+
jooq: "jooq";
|
|
6424
|
+
mybatis: "mybatis";
|
|
5316
6425
|
}>>;
|
|
5317
6426
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
5318
6427
|
none: "none";
|
|
5319
6428
|
"spring-security": "spring-security";
|
|
6429
|
+
keycloak: "keycloak";
|
|
6430
|
+
}>>;
|
|
6431
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
6432
|
+
none: "none";
|
|
6433
|
+
"spring-graphql": "spring-graphql";
|
|
6434
|
+
}>>;
|
|
6435
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
6436
|
+
none: "none";
|
|
6437
|
+
logback: "logback";
|
|
5320
6438
|
}>>;
|
|
5321
6439
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5322
6440
|
none: "none";
|
|
@@ -5336,6 +6454,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5336
6454
|
"spring-devtools": "spring-devtools";
|
|
5337
6455
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
5338
6456
|
thymeleaf: "thymeleaf";
|
|
6457
|
+
"spring-amqp": "spring-amqp";
|
|
6458
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
5339
6459
|
}>>>;
|
|
5340
6460
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5341
6461
|
none: "none";
|
|
@@ -5349,6 +6469,70 @@ declare function getAllJsonSchemas(): {
|
|
|
5349
6469
|
archunit: "archunit";
|
|
5350
6470
|
jqwik: "jqwik";
|
|
5351
6471
|
}>>>;
|
|
6472
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
6473
|
+
none: "none";
|
|
6474
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
6475
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
6476
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
6477
|
+
}>>;
|
|
6478
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
6479
|
+
none: "none";
|
|
6480
|
+
"ef-core": "ef-core";
|
|
6481
|
+
dapper: "dapper";
|
|
6482
|
+
linq2db: "linq2db";
|
|
6483
|
+
}>>;
|
|
6484
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
6485
|
+
none: "none";
|
|
6486
|
+
"aspnet-identity": "aspnet-identity";
|
|
6487
|
+
"duende-identityserver": "duende-identityserver";
|
|
6488
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
6489
|
+
}>>;
|
|
6490
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
6491
|
+
none: "none";
|
|
6492
|
+
"minimal-api": "minimal-api";
|
|
6493
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
6494
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
6495
|
+
}>>;
|
|
6496
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6497
|
+
none: "none";
|
|
6498
|
+
xunit: "xunit";
|
|
6499
|
+
nunit: "nunit";
|
|
6500
|
+
moq: "moq";
|
|
6501
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
6502
|
+
}>>>;
|
|
6503
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
6504
|
+
none: "none";
|
|
6505
|
+
hangfire: "hangfire";
|
|
6506
|
+
"quartz-net": "quartz-net";
|
|
6507
|
+
"hosted-services": "hosted-services";
|
|
6508
|
+
}>>;
|
|
6509
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6510
|
+
none: "none";
|
|
6511
|
+
signalr: "signalr";
|
|
6512
|
+
}>>;
|
|
6513
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6514
|
+
none: "none";
|
|
6515
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
6516
|
+
serilog: "serilog";
|
|
6517
|
+
nlog: "nlog";
|
|
6518
|
+
"health-checks": "health-checks";
|
|
6519
|
+
}>>>;
|
|
6520
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
6521
|
+
none: "none";
|
|
6522
|
+
fluentvalidation: "fluentvalidation";
|
|
6523
|
+
"data-annotations": "data-annotations";
|
|
6524
|
+
}>>;
|
|
6525
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
6526
|
+
none: "none";
|
|
6527
|
+
redis: "redis";
|
|
6528
|
+
"memory-cache": "memory-cache";
|
|
6529
|
+
}>>;
|
|
6530
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
6531
|
+
none: "none";
|
|
6532
|
+
docker: "docker";
|
|
6533
|
+
azure: "azure";
|
|
6534
|
+
aws: "aws";
|
|
6535
|
+
}>>;
|
|
5352
6536
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
5353
6537
|
none: "none";
|
|
5354
6538
|
phoenix: "phoenix";
|
|
@@ -5369,6 +6553,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5369
6553
|
none: "none";
|
|
5370
6554
|
rest: "rest";
|
|
5371
6555
|
absinthe: "absinthe";
|
|
6556
|
+
grpc: "grpc";
|
|
5372
6557
|
}>>;
|
|
5373
6558
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
5374
6559
|
none: "none";
|
|
@@ -5431,6 +6616,11 @@ declare function getAllJsonSchemas(): {
|
|
|
5431
6616
|
gigalixir: "gigalixir";
|
|
5432
6617
|
"mix-release": "mix-release";
|
|
5433
6618
|
}>>;
|
|
6619
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6620
|
+
none: "none";
|
|
6621
|
+
broadway: "broadway";
|
|
6622
|
+
nx: "nx";
|
|
6623
|
+
}>>>;
|
|
5434
6624
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5435
6625
|
none: "none";
|
|
5436
6626
|
"claude-md": "claude-md";
|
|
@@ -5451,6 +6641,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5451
6641
|
go: "go";
|
|
5452
6642
|
java: "java";
|
|
5453
6643
|
elixir: "elixir";
|
|
6644
|
+
dotnet: "dotnet";
|
|
5454
6645
|
}>;
|
|
5455
6646
|
database: z.ZodEnum<{
|
|
5456
6647
|
none: "none";
|
|
@@ -5537,6 +6728,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5537
6728
|
"tanstack-virtual": "tanstack-virtual";
|
|
5538
6729
|
"tanstack-db": "tanstack-db";
|
|
5539
6730
|
"tanstack-pacer": "tanstack-pacer";
|
|
6731
|
+
"backend-utils": "backend-utils";
|
|
5540
6732
|
"docker-compose": "docker-compose";
|
|
5541
6733
|
}>>;
|
|
5542
6734
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -5548,12 +6740,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5548
6740
|
auth: z.ZodEnum<{
|
|
5549
6741
|
none: "none";
|
|
5550
6742
|
"better-auth": "better-auth";
|
|
6743
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
5551
6744
|
"go-better-auth": "go-better-auth";
|
|
5552
6745
|
clerk: "clerk";
|
|
5553
6746
|
nextauth: "nextauth";
|
|
5554
6747
|
"stack-auth": "stack-auth";
|
|
5555
6748
|
"supabase-auth": "supabase-auth";
|
|
5556
6749
|
auth0: "auth0";
|
|
6750
|
+
workos: "workos";
|
|
6751
|
+
kinde: "kinde";
|
|
5557
6752
|
}>;
|
|
5558
6753
|
payments: z.ZodEnum<{
|
|
5559
6754
|
none: "none";
|
|
@@ -5602,6 +6797,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5602
6797
|
cloudflare: "cloudflare";
|
|
5603
6798
|
fly: "fly";
|
|
5604
6799
|
railway: "railway";
|
|
6800
|
+
render: "render";
|
|
6801
|
+
netlify: "netlify";
|
|
5605
6802
|
sst: "sst";
|
|
5606
6803
|
vercel: "vercel";
|
|
5607
6804
|
}>;
|
|
@@ -5611,6 +6808,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5611
6808
|
cloudflare: "cloudflare";
|
|
5612
6809
|
fly: "fly";
|
|
5613
6810
|
railway: "railway";
|
|
6811
|
+
render: "render";
|
|
6812
|
+
netlify: "netlify";
|
|
5614
6813
|
sst: "sst";
|
|
5615
6814
|
vercel: "vercel";
|
|
5616
6815
|
}>;
|
|
@@ -5688,7 +6887,6 @@ declare function getAllJsonSchemas(): {
|
|
|
5688
6887
|
"postcss-only": "postcss-only";
|
|
5689
6888
|
}>;
|
|
5690
6889
|
uiLibrary: z.ZodEnum<{
|
|
5691
|
-
mui: "mui";
|
|
5692
6890
|
none: "none";
|
|
5693
6891
|
"shadcn-ui": "shadcn-ui";
|
|
5694
6892
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -5699,6 +6897,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5699
6897
|
"chakra-ui": "chakra-ui";
|
|
5700
6898
|
nextui: "nextui";
|
|
5701
6899
|
mantine: "mantine";
|
|
6900
|
+
mui: "mui";
|
|
5702
6901
|
antd: "antd";
|
|
5703
6902
|
"base-ui": "base-ui";
|
|
5704
6903
|
"ark-ui": "ark-ui";
|
|
@@ -5770,8 +6969,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5770
6969
|
"geist-mono": "geist-mono";
|
|
5771
6970
|
}>>;
|
|
5772
6971
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5773
|
-
none: "none";
|
|
5774
6972
|
default: "default";
|
|
6973
|
+
none: "none";
|
|
5775
6974
|
small: "small";
|
|
5776
6975
|
medium: "medium";
|
|
5777
6976
|
large: "large";
|
|
@@ -5827,6 +7026,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5827
7026
|
opentelemetry: "opentelemetry";
|
|
5828
7027
|
sentry: "sentry";
|
|
5829
7028
|
grafana: "grafana";
|
|
7029
|
+
datadog: "datadog";
|
|
7030
|
+
axiom: "axiom";
|
|
7031
|
+
betterstack: "betterstack";
|
|
5830
7032
|
}>;
|
|
5831
7033
|
featureFlags: z.ZodEnum<{
|
|
5832
7034
|
none: "none";
|
|
@@ -5853,6 +7055,11 @@ declare function getAllJsonSchemas(): {
|
|
|
5853
7055
|
none: "none";
|
|
5854
7056
|
"upstash-redis": "upstash-redis";
|
|
5855
7057
|
}>;
|
|
7058
|
+
rateLimit: z.ZodEnum<{
|
|
7059
|
+
none: "none";
|
|
7060
|
+
arcjet: "arcjet";
|
|
7061
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
7062
|
+
}>;
|
|
5856
7063
|
i18n: z.ZodEnum<{
|
|
5857
7064
|
none: "none";
|
|
5858
7065
|
i18next: "i18next";
|
|
@@ -5933,12 +7140,12 @@ declare function getAllJsonSchemas(): {
|
|
|
5933
7140
|
ratatui: "ratatui";
|
|
5934
7141
|
}>;
|
|
5935
7142
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7143
|
+
config: "config";
|
|
5936
7144
|
none: "none";
|
|
5937
7145
|
serde: "serde";
|
|
5938
7146
|
uuid: "uuid";
|
|
5939
7147
|
chrono: "chrono";
|
|
5940
7148
|
reqwest: "reqwest";
|
|
5941
|
-
config: "config";
|
|
5942
7149
|
dashmap: "dashmap";
|
|
5943
7150
|
"parking-lot": "parking-lot";
|
|
5944
7151
|
secrecy: "secrecy";
|
|
@@ -5970,6 +7177,24 @@ declare function getAllJsonSchemas(): {
|
|
|
5970
7177
|
rustAuth: z.ZodEnum<{
|
|
5971
7178
|
none: "none";
|
|
5972
7179
|
oauth2: "oauth2";
|
|
7180
|
+
torii: "torii";
|
|
7181
|
+
}>;
|
|
7182
|
+
rustRealtime: z.ZodEnum<{
|
|
7183
|
+
none: "none";
|
|
7184
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
7185
|
+
}>;
|
|
7186
|
+
rustMessageQueue: z.ZodEnum<{
|
|
7187
|
+
none: "none";
|
|
7188
|
+
lapin: "lapin";
|
|
7189
|
+
}>;
|
|
7190
|
+
rustObservability: z.ZodEnum<{
|
|
7191
|
+
none: "none";
|
|
7192
|
+
opentelemetry: "opentelemetry";
|
|
7193
|
+
}>;
|
|
7194
|
+
rustTemplating: z.ZodEnum<{
|
|
7195
|
+
none: "none";
|
|
7196
|
+
askama: "askama";
|
|
7197
|
+
tera: "tera";
|
|
5973
7198
|
}>;
|
|
5974
7199
|
pythonWebFramework: z.ZodEnum<{
|
|
5975
7200
|
none: "none";
|
|
@@ -5977,12 +7202,14 @@ declare function getAllJsonSchemas(): {
|
|
|
5977
7202
|
django: "django";
|
|
5978
7203
|
flask: "flask";
|
|
5979
7204
|
litestar: "litestar";
|
|
7205
|
+
starlette: "starlette";
|
|
5980
7206
|
}>;
|
|
5981
7207
|
pythonOrm: z.ZodEnum<{
|
|
5982
7208
|
none: "none";
|
|
5983
7209
|
sqlalchemy: "sqlalchemy";
|
|
5984
7210
|
sqlmodel: "sqlmodel";
|
|
5985
7211
|
"tortoise-orm": "tortoise-orm";
|
|
7212
|
+
peewee: "peewee";
|
|
5986
7213
|
}>;
|
|
5987
7214
|
pythonValidation: z.ZodEnum<{
|
|
5988
7215
|
none: "none";
|
|
@@ -5991,17 +7218,21 @@ declare function getAllJsonSchemas(): {
|
|
|
5991
7218
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
5992
7219
|
none: "none";
|
|
5993
7220
|
langgraph: "langgraph";
|
|
7221
|
+
"google-adk": "google-adk";
|
|
5994
7222
|
langchain: "langchain";
|
|
5995
7223
|
llamaindex: "llamaindex";
|
|
5996
7224
|
"openai-sdk": "openai-sdk";
|
|
5997
7225
|
"anthropic-sdk": "anthropic-sdk";
|
|
5998
7226
|
crewai: "crewai";
|
|
5999
7227
|
haystack: "haystack";
|
|
7228
|
+
"pydantic-ai": "pydantic-ai";
|
|
7229
|
+
smolagents: "smolagents";
|
|
6000
7230
|
}>>;
|
|
6001
7231
|
pythonAuth: z.ZodEnum<{
|
|
6002
7232
|
none: "none";
|
|
6003
7233
|
authlib: "authlib";
|
|
6004
7234
|
jwt: "jwt";
|
|
7235
|
+
"fastapi-users": "fastapi-users";
|
|
6005
7236
|
}>;
|
|
6006
7237
|
pythonApi: z.ZodEnum<{
|
|
6007
7238
|
none: "none";
|
|
@@ -6014,6 +7245,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6014
7245
|
rq: "rq";
|
|
6015
7246
|
dramatiq: "dramatiq";
|
|
6016
7247
|
huey: "huey";
|
|
7248
|
+
taskiq: "taskiq";
|
|
6017
7249
|
}>;
|
|
6018
7250
|
pythonGraphql: z.ZodEnum<{
|
|
6019
7251
|
none: "none";
|
|
@@ -6026,6 +7258,31 @@ declare function getAllJsonSchemas(): {
|
|
|
6026
7258
|
mypy: "mypy";
|
|
6027
7259
|
pyright: "pyright";
|
|
6028
7260
|
}>;
|
|
7261
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
7262
|
+
none: "none";
|
|
7263
|
+
pytest: "pytest";
|
|
7264
|
+
hypothesis: "hypothesis";
|
|
7265
|
+
}>>;
|
|
7266
|
+
pythonCaching: z.ZodEnum<{
|
|
7267
|
+
none: "none";
|
|
7268
|
+
redis: "redis";
|
|
7269
|
+
aiocache: "aiocache";
|
|
7270
|
+
}>;
|
|
7271
|
+
pythonRealtime: z.ZodEnum<{
|
|
7272
|
+
none: "none";
|
|
7273
|
+
"python-socketio": "python-socketio";
|
|
7274
|
+
websockets: "websockets";
|
|
7275
|
+
}>;
|
|
7276
|
+
pythonObservability: z.ZodEnum<{
|
|
7277
|
+
none: "none";
|
|
7278
|
+
opentelemetry: "opentelemetry";
|
|
7279
|
+
}>;
|
|
7280
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
7281
|
+
none: "none";
|
|
7282
|
+
typer: "typer";
|
|
7283
|
+
click: "click";
|
|
7284
|
+
rich: "rich";
|
|
7285
|
+
}>>;
|
|
6029
7286
|
goWebFramework: z.ZodEnum<{
|
|
6030
7287
|
none: "none";
|
|
6031
7288
|
gin: "gin";
|
|
@@ -6034,14 +7291,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6034
7291
|
chi: "chi";
|
|
6035
7292
|
}>;
|
|
6036
7293
|
goOrm: z.ZodEnum<{
|
|
6037
|
-
gorm: "gorm";
|
|
6038
7294
|
none: "none";
|
|
7295
|
+
gorm: "gorm";
|
|
6039
7296
|
sqlc: "sqlc";
|
|
6040
7297
|
ent: "ent";
|
|
6041
7298
|
}>;
|
|
6042
7299
|
goApi: z.ZodEnum<{
|
|
6043
7300
|
none: "none";
|
|
6044
7301
|
"grpc-go": "grpc-go";
|
|
7302
|
+
gqlgen: "gqlgen";
|
|
6045
7303
|
}>;
|
|
6046
7304
|
goCli: z.ZodEnum<{
|
|
6047
7305
|
none: "none";
|
|
@@ -6060,6 +7318,36 @@ declare function getAllJsonSchemas(): {
|
|
|
6060
7318
|
none: "none";
|
|
6061
7319
|
jwt: "jwt";
|
|
6062
7320
|
casbin: "casbin";
|
|
7321
|
+
goth: "goth";
|
|
7322
|
+
}>;
|
|
7323
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
7324
|
+
none: "none";
|
|
7325
|
+
testify: "testify";
|
|
7326
|
+
gomock: "gomock";
|
|
7327
|
+
}>>;
|
|
7328
|
+
goRealtime: z.ZodEnum<{
|
|
7329
|
+
none: "none";
|
|
7330
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
7331
|
+
centrifuge: "centrifuge";
|
|
7332
|
+
}>;
|
|
7333
|
+
goMessageQueue: z.ZodEnum<{
|
|
7334
|
+
none: "none";
|
|
7335
|
+
nats: "nats";
|
|
7336
|
+
watermill: "watermill";
|
|
7337
|
+
}>;
|
|
7338
|
+
goCaching: z.ZodEnum<{
|
|
7339
|
+
none: "none";
|
|
7340
|
+
redis: "redis";
|
|
7341
|
+
ristretto: "ristretto";
|
|
7342
|
+
}>;
|
|
7343
|
+
goConfig: z.ZodEnum<{
|
|
7344
|
+
none: "none";
|
|
7345
|
+
viper: "viper";
|
|
7346
|
+
koanf: "koanf";
|
|
7347
|
+
}>;
|
|
7348
|
+
goObservability: z.ZodEnum<{
|
|
7349
|
+
none: "none";
|
|
7350
|
+
opentelemetry: "opentelemetry";
|
|
6063
7351
|
}>;
|
|
6064
7352
|
javaWebFramework: z.ZodEnum<{
|
|
6065
7353
|
none: "none";
|
|
@@ -6074,10 +7362,21 @@ declare function getAllJsonSchemas(): {
|
|
|
6074
7362
|
javaOrm: z.ZodEnum<{
|
|
6075
7363
|
none: "none";
|
|
6076
7364
|
"spring-data-jpa": "spring-data-jpa";
|
|
7365
|
+
jooq: "jooq";
|
|
7366
|
+
mybatis: "mybatis";
|
|
6077
7367
|
}>;
|
|
6078
7368
|
javaAuth: z.ZodEnum<{
|
|
6079
7369
|
none: "none";
|
|
6080
7370
|
"spring-security": "spring-security";
|
|
7371
|
+
keycloak: "keycloak";
|
|
7372
|
+
}>;
|
|
7373
|
+
javaApi: z.ZodEnum<{
|
|
7374
|
+
none: "none";
|
|
7375
|
+
"spring-graphql": "spring-graphql";
|
|
7376
|
+
}>;
|
|
7377
|
+
javaLogging: z.ZodEnum<{
|
|
7378
|
+
none: "none";
|
|
7379
|
+
logback: "logback";
|
|
6081
7380
|
}>;
|
|
6082
7381
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
6083
7382
|
none: "none";
|
|
@@ -6097,6 +7396,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6097
7396
|
"spring-devtools": "spring-devtools";
|
|
6098
7397
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
6099
7398
|
thymeleaf: "thymeleaf";
|
|
7399
|
+
"spring-amqp": "spring-amqp";
|
|
7400
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
6100
7401
|
}>>;
|
|
6101
7402
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
6102
7403
|
none: "none";
|
|
@@ -6110,6 +7411,70 @@ declare function getAllJsonSchemas(): {
|
|
|
6110
7411
|
archunit: "archunit";
|
|
6111
7412
|
jqwik: "jqwik";
|
|
6112
7413
|
}>>;
|
|
7414
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
7415
|
+
none: "none";
|
|
7416
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
7417
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
7418
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
7419
|
+
}>;
|
|
7420
|
+
dotnetOrm: z.ZodEnum<{
|
|
7421
|
+
none: "none";
|
|
7422
|
+
"ef-core": "ef-core";
|
|
7423
|
+
dapper: "dapper";
|
|
7424
|
+
linq2db: "linq2db";
|
|
7425
|
+
}>;
|
|
7426
|
+
dotnetAuth: z.ZodEnum<{
|
|
7427
|
+
none: "none";
|
|
7428
|
+
"aspnet-identity": "aspnet-identity";
|
|
7429
|
+
"duende-identityserver": "duende-identityserver";
|
|
7430
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
7431
|
+
}>;
|
|
7432
|
+
dotnetApi: z.ZodEnum<{
|
|
7433
|
+
none: "none";
|
|
7434
|
+
"minimal-api": "minimal-api";
|
|
7435
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
7436
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
7437
|
+
}>;
|
|
7438
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
7439
|
+
none: "none";
|
|
7440
|
+
xunit: "xunit";
|
|
7441
|
+
nunit: "nunit";
|
|
7442
|
+
moq: "moq";
|
|
7443
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
7444
|
+
}>>;
|
|
7445
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
7446
|
+
none: "none";
|
|
7447
|
+
hangfire: "hangfire";
|
|
7448
|
+
"quartz-net": "quartz-net";
|
|
7449
|
+
"hosted-services": "hosted-services";
|
|
7450
|
+
}>;
|
|
7451
|
+
dotnetRealtime: z.ZodEnum<{
|
|
7452
|
+
none: "none";
|
|
7453
|
+
signalr: "signalr";
|
|
7454
|
+
}>;
|
|
7455
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
7456
|
+
none: "none";
|
|
7457
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
7458
|
+
serilog: "serilog";
|
|
7459
|
+
nlog: "nlog";
|
|
7460
|
+
"health-checks": "health-checks";
|
|
7461
|
+
}>>;
|
|
7462
|
+
dotnetValidation: z.ZodEnum<{
|
|
7463
|
+
none: "none";
|
|
7464
|
+
fluentvalidation: "fluentvalidation";
|
|
7465
|
+
"data-annotations": "data-annotations";
|
|
7466
|
+
}>;
|
|
7467
|
+
dotnetCaching: z.ZodEnum<{
|
|
7468
|
+
none: "none";
|
|
7469
|
+
redis: "redis";
|
|
7470
|
+
"memory-cache": "memory-cache";
|
|
7471
|
+
}>;
|
|
7472
|
+
dotnetDeploy: z.ZodEnum<{
|
|
7473
|
+
none: "none";
|
|
7474
|
+
docker: "docker";
|
|
7475
|
+
azure: "azure";
|
|
7476
|
+
aws: "aws";
|
|
7477
|
+
}>;
|
|
6113
7478
|
elixirWebFramework: z.ZodEnum<{
|
|
6114
7479
|
none: "none";
|
|
6115
7480
|
phoenix: "phoenix";
|
|
@@ -6130,6 +7495,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6130
7495
|
none: "none";
|
|
6131
7496
|
rest: "rest";
|
|
6132
7497
|
absinthe: "absinthe";
|
|
7498
|
+
grpc: "grpc";
|
|
6133
7499
|
}>;
|
|
6134
7500
|
elixirRealtime: z.ZodEnum<{
|
|
6135
7501
|
none: "none";
|
|
@@ -6192,6 +7558,11 @@ declare function getAllJsonSchemas(): {
|
|
|
6192
7558
|
gigalixir: "gigalixir";
|
|
6193
7559
|
"mix-release": "mix-release";
|
|
6194
7560
|
}>;
|
|
7561
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
7562
|
+
none: "none";
|
|
7563
|
+
broadway: "broadway";
|
|
7564
|
+
nx: "nx";
|
|
7565
|
+
}>>;
|
|
6195
7566
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
6196
7567
|
none: "none";
|
|
6197
7568
|
"claude-md": "claude-md";
|
|
@@ -6201,37 +7572,55 @@ declare function getAllJsonSchemas(): {
|
|
|
6201
7572
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6202
7573
|
id: z.ZodString;
|
|
6203
7574
|
role: z.ZodEnum<{
|
|
6204
|
-
|
|
7575
|
+
frontend: "frontend";
|
|
6205
7576
|
backend: "backend";
|
|
7577
|
+
mobile: "mobile";
|
|
6206
7578
|
database: "database";
|
|
7579
|
+
api: "api";
|
|
6207
7580
|
orm: "orm";
|
|
6208
7581
|
auth: "auth";
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
7582
|
+
runtime: "runtime";
|
|
7583
|
+
deploy: "deploy";
|
|
7584
|
+
dbSetup: "dbSetup";
|
|
7585
|
+
realtime: "realtime";
|
|
7586
|
+
navigation: "navigation";
|
|
7587
|
+
caching: "caching";
|
|
6212
7588
|
observability: "observability";
|
|
6213
|
-
|
|
6214
|
-
|
|
7589
|
+
email: "email";
|
|
7590
|
+
search: "search";
|
|
7591
|
+
fileStorage: "fileStorage";
|
|
7592
|
+
jobQueue: "jobQueue";
|
|
7593
|
+
rateLimit: "rateLimit";
|
|
7594
|
+
testing: "testing";
|
|
6215
7595
|
stateManagement: "stateManagement";
|
|
6216
7596
|
forms: "forms";
|
|
7597
|
+
animation: "animation";
|
|
7598
|
+
fileUpload: "fileUpload";
|
|
6217
7599
|
validation: "validation";
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
7600
|
+
effect: "effect";
|
|
7601
|
+
ui: "ui";
|
|
7602
|
+
css: "css";
|
|
7603
|
+
storage: "storage";
|
|
7604
|
+
ai: "ai";
|
|
7605
|
+
payments: "payments";
|
|
7606
|
+
logging: "logging";
|
|
7607
|
+
featureFlags: "featureFlags";
|
|
7608
|
+
analytics: "analytics";
|
|
6221
7609
|
cms: "cms";
|
|
6222
7610
|
i18n: "i18n";
|
|
6223
|
-
search: "search";
|
|
6224
|
-
fileStorage: "fileStorage";
|
|
6225
|
-
codeQuality: "codeQuality";
|
|
6226
7611
|
documentation: "documentation";
|
|
6227
|
-
|
|
6228
|
-
ai: "ai";
|
|
6229
|
-
css: "css";
|
|
6230
|
-
ui: "ui";
|
|
6231
|
-
frontend: "frontend";
|
|
6232
|
-
mobile: "mobile";
|
|
6233
|
-
deploy: "deploy";
|
|
7612
|
+
codeQuality: "codeQuality";
|
|
6234
7613
|
appPlatform: "appPlatform";
|
|
7614
|
+
dataFetching: "dataFetching";
|
|
7615
|
+
workspaceTooling: "workspaceTooling";
|
|
7616
|
+
examples: "examples";
|
|
7617
|
+
buildTool: "buildTool";
|
|
7618
|
+
cli: "cli";
|
|
7619
|
+
errorHandling: "errorHandling";
|
|
7620
|
+
httpClient: "httpClient";
|
|
7621
|
+
libraries: "libraries";
|
|
7622
|
+
config: "config";
|
|
7623
|
+
templating: "templating";
|
|
6235
7624
|
}>;
|
|
6236
7625
|
toolId: z.ZodString;
|
|
6237
7626
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -6242,6 +7631,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6242
7631
|
go: "go";
|
|
6243
7632
|
java: "java";
|
|
6244
7633
|
elixir: "elixir";
|
|
7634
|
+
dotnet: "dotnet";
|
|
6245
7635
|
}>, z.ZodLiteral<"universal">]>;
|
|
6246
7636
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6247
7637
|
source: z.ZodEnum<{
|
|
@@ -6269,6 +7659,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6269
7659
|
go: "go";
|
|
6270
7660
|
java: "java";
|
|
6271
7661
|
elixir: "elixir";
|
|
7662
|
+
dotnet: "dotnet";
|
|
6272
7663
|
}>;
|
|
6273
7664
|
database: z.ZodEnum<{
|
|
6274
7665
|
none: "none";
|
|
@@ -6355,6 +7746,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6355
7746
|
"tanstack-virtual": "tanstack-virtual";
|
|
6356
7747
|
"tanstack-db": "tanstack-db";
|
|
6357
7748
|
"tanstack-pacer": "tanstack-pacer";
|
|
7749
|
+
"backend-utils": "backend-utils";
|
|
6358
7750
|
"docker-compose": "docker-compose";
|
|
6359
7751
|
}>>;
|
|
6360
7752
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -6366,12 +7758,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6366
7758
|
auth: z.ZodEnum<{
|
|
6367
7759
|
none: "none";
|
|
6368
7760
|
"better-auth": "better-auth";
|
|
7761
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
6369
7762
|
"go-better-auth": "go-better-auth";
|
|
6370
7763
|
clerk: "clerk";
|
|
6371
7764
|
nextauth: "nextauth";
|
|
6372
7765
|
"stack-auth": "stack-auth";
|
|
6373
7766
|
"supabase-auth": "supabase-auth";
|
|
6374
7767
|
auth0: "auth0";
|
|
7768
|
+
workos: "workos";
|
|
7769
|
+
kinde: "kinde";
|
|
6375
7770
|
}>;
|
|
6376
7771
|
payments: z.ZodEnum<{
|
|
6377
7772
|
none: "none";
|
|
@@ -6418,6 +7813,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6418
7813
|
cloudflare: "cloudflare";
|
|
6419
7814
|
fly: "fly";
|
|
6420
7815
|
railway: "railway";
|
|
7816
|
+
render: "render";
|
|
7817
|
+
netlify: "netlify";
|
|
6421
7818
|
sst: "sst";
|
|
6422
7819
|
vercel: "vercel";
|
|
6423
7820
|
}>;
|
|
@@ -6427,6 +7824,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6427
7824
|
cloudflare: "cloudflare";
|
|
6428
7825
|
fly: "fly";
|
|
6429
7826
|
railway: "railway";
|
|
7827
|
+
render: "render";
|
|
7828
|
+
netlify: "netlify";
|
|
6430
7829
|
sst: "sst";
|
|
6431
7830
|
vercel: "vercel";
|
|
6432
7831
|
}>;
|
|
@@ -6504,7 +7903,6 @@ declare function getAllJsonSchemas(): {
|
|
|
6504
7903
|
"postcss-only": "postcss-only";
|
|
6505
7904
|
}>;
|
|
6506
7905
|
uiLibrary: z.ZodEnum<{
|
|
6507
|
-
mui: "mui";
|
|
6508
7906
|
none: "none";
|
|
6509
7907
|
"shadcn-ui": "shadcn-ui";
|
|
6510
7908
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6515,6 +7913,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6515
7913
|
"chakra-ui": "chakra-ui";
|
|
6516
7914
|
nextui: "nextui";
|
|
6517
7915
|
mantine: "mantine";
|
|
7916
|
+
mui: "mui";
|
|
6518
7917
|
antd: "antd";
|
|
6519
7918
|
"base-ui": "base-ui";
|
|
6520
7919
|
"ark-ui": "ark-ui";
|
|
@@ -6586,8 +7985,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6586
7985
|
"geist-mono": "geist-mono";
|
|
6587
7986
|
}>>;
|
|
6588
7987
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6589
|
-
none: "none";
|
|
6590
7988
|
default: "default";
|
|
7989
|
+
none: "none";
|
|
6591
7990
|
small: "small";
|
|
6592
7991
|
medium: "medium";
|
|
6593
7992
|
large: "large";
|
|
@@ -6643,6 +8042,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6643
8042
|
opentelemetry: "opentelemetry";
|
|
6644
8043
|
sentry: "sentry";
|
|
6645
8044
|
grafana: "grafana";
|
|
8045
|
+
datadog: "datadog";
|
|
8046
|
+
axiom: "axiom";
|
|
8047
|
+
betterstack: "betterstack";
|
|
6646
8048
|
}>;
|
|
6647
8049
|
featureFlags: z.ZodEnum<{
|
|
6648
8050
|
none: "none";
|
|
@@ -6669,6 +8071,11 @@ declare function getAllJsonSchemas(): {
|
|
|
6669
8071
|
none: "none";
|
|
6670
8072
|
"upstash-redis": "upstash-redis";
|
|
6671
8073
|
}>;
|
|
8074
|
+
rateLimit: z.ZodEnum<{
|
|
8075
|
+
none: "none";
|
|
8076
|
+
arcjet: "arcjet";
|
|
8077
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
8078
|
+
}>;
|
|
6672
8079
|
i18n: z.ZodEnum<{
|
|
6673
8080
|
none: "none";
|
|
6674
8081
|
i18next: "i18next";
|
|
@@ -6749,12 +8156,12 @@ declare function getAllJsonSchemas(): {
|
|
|
6749
8156
|
ratatui: "ratatui";
|
|
6750
8157
|
}>;
|
|
6751
8158
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8159
|
+
config: "config";
|
|
6752
8160
|
none: "none";
|
|
6753
8161
|
serde: "serde";
|
|
6754
8162
|
uuid: "uuid";
|
|
6755
8163
|
chrono: "chrono";
|
|
6756
8164
|
reqwest: "reqwest";
|
|
6757
|
-
config: "config";
|
|
6758
8165
|
dashmap: "dashmap";
|
|
6759
8166
|
"parking-lot": "parking-lot";
|
|
6760
8167
|
secrecy: "secrecy";
|
|
@@ -6786,6 +8193,24 @@ declare function getAllJsonSchemas(): {
|
|
|
6786
8193
|
rustAuth: z.ZodEnum<{
|
|
6787
8194
|
none: "none";
|
|
6788
8195
|
oauth2: "oauth2";
|
|
8196
|
+
torii: "torii";
|
|
8197
|
+
}>;
|
|
8198
|
+
rustRealtime: z.ZodEnum<{
|
|
8199
|
+
none: "none";
|
|
8200
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
8201
|
+
}>;
|
|
8202
|
+
rustMessageQueue: z.ZodEnum<{
|
|
8203
|
+
none: "none";
|
|
8204
|
+
lapin: "lapin";
|
|
8205
|
+
}>;
|
|
8206
|
+
rustObservability: z.ZodEnum<{
|
|
8207
|
+
none: "none";
|
|
8208
|
+
opentelemetry: "opentelemetry";
|
|
8209
|
+
}>;
|
|
8210
|
+
rustTemplating: z.ZodEnum<{
|
|
8211
|
+
none: "none";
|
|
8212
|
+
askama: "askama";
|
|
8213
|
+
tera: "tera";
|
|
6789
8214
|
}>;
|
|
6790
8215
|
pythonWebFramework: z.ZodEnum<{
|
|
6791
8216
|
none: "none";
|
|
@@ -6793,12 +8218,14 @@ declare function getAllJsonSchemas(): {
|
|
|
6793
8218
|
django: "django";
|
|
6794
8219
|
flask: "flask";
|
|
6795
8220
|
litestar: "litestar";
|
|
8221
|
+
starlette: "starlette";
|
|
6796
8222
|
}>;
|
|
6797
8223
|
pythonOrm: z.ZodEnum<{
|
|
6798
8224
|
none: "none";
|
|
6799
8225
|
sqlalchemy: "sqlalchemy";
|
|
6800
8226
|
sqlmodel: "sqlmodel";
|
|
6801
8227
|
"tortoise-orm": "tortoise-orm";
|
|
8228
|
+
peewee: "peewee";
|
|
6802
8229
|
}>;
|
|
6803
8230
|
pythonValidation: z.ZodEnum<{
|
|
6804
8231
|
none: "none";
|
|
@@ -6807,17 +8234,21 @@ declare function getAllJsonSchemas(): {
|
|
|
6807
8234
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
6808
8235
|
none: "none";
|
|
6809
8236
|
langgraph: "langgraph";
|
|
8237
|
+
"google-adk": "google-adk";
|
|
6810
8238
|
langchain: "langchain";
|
|
6811
8239
|
llamaindex: "llamaindex";
|
|
6812
8240
|
"openai-sdk": "openai-sdk";
|
|
6813
8241
|
"anthropic-sdk": "anthropic-sdk";
|
|
6814
8242
|
crewai: "crewai";
|
|
6815
8243
|
haystack: "haystack";
|
|
8244
|
+
"pydantic-ai": "pydantic-ai";
|
|
8245
|
+
smolagents: "smolagents";
|
|
6816
8246
|
}>>;
|
|
6817
8247
|
pythonAuth: z.ZodEnum<{
|
|
6818
8248
|
none: "none";
|
|
6819
8249
|
authlib: "authlib";
|
|
6820
8250
|
jwt: "jwt";
|
|
8251
|
+
"fastapi-users": "fastapi-users";
|
|
6821
8252
|
}>;
|
|
6822
8253
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
6823
8254
|
none: "none";
|
|
@@ -6830,6 +8261,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6830
8261
|
rq: "rq";
|
|
6831
8262
|
dramatiq: "dramatiq";
|
|
6832
8263
|
huey: "huey";
|
|
8264
|
+
taskiq: "taskiq";
|
|
6833
8265
|
}>;
|
|
6834
8266
|
pythonGraphql: z.ZodEnum<{
|
|
6835
8267
|
none: "none";
|
|
@@ -6842,6 +8274,31 @@ declare function getAllJsonSchemas(): {
|
|
|
6842
8274
|
mypy: "mypy";
|
|
6843
8275
|
pyright: "pyright";
|
|
6844
8276
|
}>;
|
|
8277
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
8278
|
+
none: "none";
|
|
8279
|
+
pytest: "pytest";
|
|
8280
|
+
hypothesis: "hypothesis";
|
|
8281
|
+
}>>;
|
|
8282
|
+
pythonCaching: z.ZodEnum<{
|
|
8283
|
+
none: "none";
|
|
8284
|
+
redis: "redis";
|
|
8285
|
+
aiocache: "aiocache";
|
|
8286
|
+
}>;
|
|
8287
|
+
pythonRealtime: z.ZodEnum<{
|
|
8288
|
+
none: "none";
|
|
8289
|
+
"python-socketio": "python-socketio";
|
|
8290
|
+
websockets: "websockets";
|
|
8291
|
+
}>;
|
|
8292
|
+
pythonObservability: z.ZodEnum<{
|
|
8293
|
+
none: "none";
|
|
8294
|
+
opentelemetry: "opentelemetry";
|
|
8295
|
+
}>;
|
|
8296
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
8297
|
+
none: "none";
|
|
8298
|
+
typer: "typer";
|
|
8299
|
+
click: "click";
|
|
8300
|
+
rich: "rich";
|
|
8301
|
+
}>>;
|
|
6845
8302
|
goWebFramework: z.ZodEnum<{
|
|
6846
8303
|
none: "none";
|
|
6847
8304
|
gin: "gin";
|
|
@@ -6850,14 +8307,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6850
8307
|
chi: "chi";
|
|
6851
8308
|
}>;
|
|
6852
8309
|
goOrm: z.ZodEnum<{
|
|
6853
|
-
gorm: "gorm";
|
|
6854
8310
|
none: "none";
|
|
8311
|
+
gorm: "gorm";
|
|
6855
8312
|
sqlc: "sqlc";
|
|
6856
8313
|
ent: "ent";
|
|
6857
8314
|
}>;
|
|
6858
8315
|
goApi: z.ZodEnum<{
|
|
6859
8316
|
none: "none";
|
|
6860
8317
|
"grpc-go": "grpc-go";
|
|
8318
|
+
gqlgen: "gqlgen";
|
|
6861
8319
|
}>;
|
|
6862
8320
|
goCli: z.ZodEnum<{
|
|
6863
8321
|
none: "none";
|
|
@@ -6876,6 +8334,36 @@ declare function getAllJsonSchemas(): {
|
|
|
6876
8334
|
none: "none";
|
|
6877
8335
|
jwt: "jwt";
|
|
6878
8336
|
casbin: "casbin";
|
|
8337
|
+
goth: "goth";
|
|
8338
|
+
}>;
|
|
8339
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
8340
|
+
none: "none";
|
|
8341
|
+
testify: "testify";
|
|
8342
|
+
gomock: "gomock";
|
|
8343
|
+
}>>;
|
|
8344
|
+
goRealtime: z.ZodEnum<{
|
|
8345
|
+
none: "none";
|
|
8346
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
8347
|
+
centrifuge: "centrifuge";
|
|
8348
|
+
}>;
|
|
8349
|
+
goMessageQueue: z.ZodEnum<{
|
|
8350
|
+
none: "none";
|
|
8351
|
+
nats: "nats";
|
|
8352
|
+
watermill: "watermill";
|
|
8353
|
+
}>;
|
|
8354
|
+
goCaching: z.ZodEnum<{
|
|
8355
|
+
none: "none";
|
|
8356
|
+
redis: "redis";
|
|
8357
|
+
ristretto: "ristretto";
|
|
8358
|
+
}>;
|
|
8359
|
+
goConfig: z.ZodEnum<{
|
|
8360
|
+
none: "none";
|
|
8361
|
+
viper: "viper";
|
|
8362
|
+
koanf: "koanf";
|
|
8363
|
+
}>;
|
|
8364
|
+
goObservability: z.ZodEnum<{
|
|
8365
|
+
none: "none";
|
|
8366
|
+
opentelemetry: "opentelemetry";
|
|
6879
8367
|
}>;
|
|
6880
8368
|
javaWebFramework: z.ZodEnum<{
|
|
6881
8369
|
none: "none";
|
|
@@ -6890,10 +8378,21 @@ declare function getAllJsonSchemas(): {
|
|
|
6890
8378
|
javaOrm: z.ZodEnum<{
|
|
6891
8379
|
none: "none";
|
|
6892
8380
|
"spring-data-jpa": "spring-data-jpa";
|
|
8381
|
+
jooq: "jooq";
|
|
8382
|
+
mybatis: "mybatis";
|
|
6893
8383
|
}>;
|
|
6894
8384
|
javaAuth: z.ZodEnum<{
|
|
6895
8385
|
none: "none";
|
|
6896
8386
|
"spring-security": "spring-security";
|
|
8387
|
+
keycloak: "keycloak";
|
|
8388
|
+
}>;
|
|
8389
|
+
javaApi: z.ZodEnum<{
|
|
8390
|
+
none: "none";
|
|
8391
|
+
"spring-graphql": "spring-graphql";
|
|
8392
|
+
}>;
|
|
8393
|
+
javaLogging: z.ZodEnum<{
|
|
8394
|
+
none: "none";
|
|
8395
|
+
logback: "logback";
|
|
6897
8396
|
}>;
|
|
6898
8397
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
6899
8398
|
none: "none";
|
|
@@ -6913,6 +8412,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6913
8412
|
"spring-devtools": "spring-devtools";
|
|
6914
8413
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
6915
8414
|
thymeleaf: "thymeleaf";
|
|
8415
|
+
"spring-amqp": "spring-amqp";
|
|
8416
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
6916
8417
|
}>>;
|
|
6917
8418
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
6918
8419
|
none: "none";
|
|
@@ -6926,6 +8427,70 @@ declare function getAllJsonSchemas(): {
|
|
|
6926
8427
|
archunit: "archunit";
|
|
6927
8428
|
jqwik: "jqwik";
|
|
6928
8429
|
}>>;
|
|
8430
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
8431
|
+
none: "none";
|
|
8432
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
8433
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
8434
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
8435
|
+
}>;
|
|
8436
|
+
dotnetOrm: z.ZodEnum<{
|
|
8437
|
+
none: "none";
|
|
8438
|
+
"ef-core": "ef-core";
|
|
8439
|
+
dapper: "dapper";
|
|
8440
|
+
linq2db: "linq2db";
|
|
8441
|
+
}>;
|
|
8442
|
+
dotnetAuth: z.ZodEnum<{
|
|
8443
|
+
none: "none";
|
|
8444
|
+
"aspnet-identity": "aspnet-identity";
|
|
8445
|
+
"duende-identityserver": "duende-identityserver";
|
|
8446
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
8447
|
+
}>;
|
|
8448
|
+
dotnetApi: z.ZodEnum<{
|
|
8449
|
+
none: "none";
|
|
8450
|
+
"minimal-api": "minimal-api";
|
|
8451
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
8452
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
8453
|
+
}>;
|
|
8454
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
8455
|
+
none: "none";
|
|
8456
|
+
xunit: "xunit";
|
|
8457
|
+
nunit: "nunit";
|
|
8458
|
+
moq: "moq";
|
|
8459
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
8460
|
+
}>>;
|
|
8461
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
8462
|
+
none: "none";
|
|
8463
|
+
hangfire: "hangfire";
|
|
8464
|
+
"quartz-net": "quartz-net";
|
|
8465
|
+
"hosted-services": "hosted-services";
|
|
8466
|
+
}>;
|
|
8467
|
+
dotnetRealtime: z.ZodEnum<{
|
|
8468
|
+
none: "none";
|
|
8469
|
+
signalr: "signalr";
|
|
8470
|
+
}>;
|
|
8471
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
8472
|
+
none: "none";
|
|
8473
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
8474
|
+
serilog: "serilog";
|
|
8475
|
+
nlog: "nlog";
|
|
8476
|
+
"health-checks": "health-checks";
|
|
8477
|
+
}>>;
|
|
8478
|
+
dotnetValidation: z.ZodEnum<{
|
|
8479
|
+
none: "none";
|
|
8480
|
+
fluentvalidation: "fluentvalidation";
|
|
8481
|
+
"data-annotations": "data-annotations";
|
|
8482
|
+
}>;
|
|
8483
|
+
dotnetCaching: z.ZodEnum<{
|
|
8484
|
+
none: "none";
|
|
8485
|
+
redis: "redis";
|
|
8486
|
+
"memory-cache": "memory-cache";
|
|
8487
|
+
}>;
|
|
8488
|
+
dotnetDeploy: z.ZodEnum<{
|
|
8489
|
+
none: "none";
|
|
8490
|
+
docker: "docker";
|
|
8491
|
+
azure: "azure";
|
|
8492
|
+
aws: "aws";
|
|
8493
|
+
}>;
|
|
6929
8494
|
elixirWebFramework: z.ZodEnum<{
|
|
6930
8495
|
none: "none";
|
|
6931
8496
|
phoenix: "phoenix";
|
|
@@ -6946,6 +8511,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6946
8511
|
none: "none";
|
|
6947
8512
|
rest: "rest";
|
|
6948
8513
|
absinthe: "absinthe";
|
|
8514
|
+
grpc: "grpc";
|
|
6949
8515
|
}>;
|
|
6950
8516
|
elixirRealtime: z.ZodEnum<{
|
|
6951
8517
|
none: "none";
|
|
@@ -7008,6 +8574,11 @@ declare function getAllJsonSchemas(): {
|
|
|
7008
8574
|
gigalixir: "gigalixir";
|
|
7009
8575
|
"mix-release": "mix-release";
|
|
7010
8576
|
}>;
|
|
8577
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
8578
|
+
none: "none";
|
|
8579
|
+
broadway: "broadway";
|
|
8580
|
+
nx: "nx";
|
|
8581
|
+
}>>;
|
|
7011
8582
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
7012
8583
|
none: "none";
|
|
7013
8584
|
"claude-md": "claude-md";
|
|
@@ -7017,37 +8588,55 @@ declare function getAllJsonSchemas(): {
|
|
|
7017
8588
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7018
8589
|
id: z.ZodString;
|
|
7019
8590
|
role: z.ZodEnum<{
|
|
7020
|
-
|
|
8591
|
+
frontend: "frontend";
|
|
7021
8592
|
backend: "backend";
|
|
8593
|
+
mobile: "mobile";
|
|
7022
8594
|
database: "database";
|
|
8595
|
+
api: "api";
|
|
7023
8596
|
orm: "orm";
|
|
7024
8597
|
auth: "auth";
|
|
8598
|
+
runtime: "runtime";
|
|
8599
|
+
deploy: "deploy";
|
|
8600
|
+
dbSetup: "dbSetup";
|
|
8601
|
+
realtime: "realtime";
|
|
8602
|
+
navigation: "navigation";
|
|
8603
|
+
caching: "caching";
|
|
8604
|
+
observability: "observability";
|
|
8605
|
+
email: "email";
|
|
8606
|
+
search: "search";
|
|
8607
|
+
fileStorage: "fileStorage";
|
|
8608
|
+
jobQueue: "jobQueue";
|
|
8609
|
+
rateLimit: "rateLimit";
|
|
8610
|
+
testing: "testing";
|
|
8611
|
+
stateManagement: "stateManagement";
|
|
8612
|
+
forms: "forms";
|
|
8613
|
+
animation: "animation";
|
|
8614
|
+
fileUpload: "fileUpload";
|
|
8615
|
+
validation: "validation";
|
|
8616
|
+
effect: "effect";
|
|
8617
|
+
ui: "ui";
|
|
8618
|
+
css: "css";
|
|
8619
|
+
storage: "storage";
|
|
8620
|
+
ai: "ai";
|
|
7025
8621
|
payments: "payments";
|
|
7026
|
-
email: "email";
|
|
7027
8622
|
logging: "logging";
|
|
7028
|
-
observability: "observability";
|
|
7029
8623
|
featureFlags: "featureFlags";
|
|
7030
8624
|
analytics: "analytics";
|
|
7031
|
-
stateManagement: "stateManagement";
|
|
7032
|
-
forms: "forms";
|
|
7033
|
-
validation: "validation";
|
|
7034
|
-
testing: "testing";
|
|
7035
|
-
jobQueue: "jobQueue";
|
|
7036
|
-
caching: "caching";
|
|
7037
8625
|
cms: "cms";
|
|
7038
8626
|
i18n: "i18n";
|
|
7039
|
-
search: "search";
|
|
7040
|
-
fileStorage: "fileStorage";
|
|
7041
|
-
codeQuality: "codeQuality";
|
|
7042
8627
|
documentation: "documentation";
|
|
7043
|
-
|
|
7044
|
-
ai: "ai";
|
|
7045
|
-
css: "css";
|
|
7046
|
-
ui: "ui";
|
|
7047
|
-
frontend: "frontend";
|
|
7048
|
-
mobile: "mobile";
|
|
7049
|
-
deploy: "deploy";
|
|
8628
|
+
codeQuality: "codeQuality";
|
|
7050
8629
|
appPlatform: "appPlatform";
|
|
8630
|
+
dataFetching: "dataFetching";
|
|
8631
|
+
workspaceTooling: "workspaceTooling";
|
|
8632
|
+
examples: "examples";
|
|
8633
|
+
buildTool: "buildTool";
|
|
8634
|
+
cli: "cli";
|
|
8635
|
+
errorHandling: "errorHandling";
|
|
8636
|
+
httpClient: "httpClient";
|
|
8637
|
+
libraries: "libraries";
|
|
8638
|
+
config: "config";
|
|
8639
|
+
templating: "templating";
|
|
7051
8640
|
}>;
|
|
7052
8641
|
toolId: z.ZodString;
|
|
7053
8642
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -7058,6 +8647,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7058
8647
|
go: "go";
|
|
7059
8648
|
java: "java";
|
|
7060
8649
|
elixir: "elixir";
|
|
8650
|
+
dotnet: "dotnet";
|
|
7061
8651
|
}>, z.ZodLiteral<"universal">]>;
|
|
7062
8652
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7063
8653
|
source: z.ZodEnum<{
|
|
@@ -7085,6 +8675,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7085
8675
|
go: "go";
|
|
7086
8676
|
java: "java";
|
|
7087
8677
|
elixir: "elixir";
|
|
8678
|
+
dotnet: "dotnet";
|
|
7088
8679
|
}>;
|
|
7089
8680
|
database: z.ZodEnum<{
|
|
7090
8681
|
none: "none";
|
|
@@ -7171,6 +8762,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7171
8762
|
"tanstack-virtual": "tanstack-virtual";
|
|
7172
8763
|
"tanstack-db": "tanstack-db";
|
|
7173
8764
|
"tanstack-pacer": "tanstack-pacer";
|
|
8765
|
+
"backend-utils": "backend-utils";
|
|
7174
8766
|
"docker-compose": "docker-compose";
|
|
7175
8767
|
}>>;
|
|
7176
8768
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -7182,12 +8774,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7182
8774
|
auth: z.ZodEnum<{
|
|
7183
8775
|
none: "none";
|
|
7184
8776
|
"better-auth": "better-auth";
|
|
8777
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
7185
8778
|
"go-better-auth": "go-better-auth";
|
|
7186
8779
|
clerk: "clerk";
|
|
7187
8780
|
nextauth: "nextauth";
|
|
7188
8781
|
"stack-auth": "stack-auth";
|
|
7189
8782
|
"supabase-auth": "supabase-auth";
|
|
7190
8783
|
auth0: "auth0";
|
|
8784
|
+
workos: "workos";
|
|
8785
|
+
kinde: "kinde";
|
|
7191
8786
|
}>;
|
|
7192
8787
|
payments: z.ZodEnum<{
|
|
7193
8788
|
none: "none";
|
|
@@ -7234,6 +8829,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7234
8829
|
cloudflare: "cloudflare";
|
|
7235
8830
|
fly: "fly";
|
|
7236
8831
|
railway: "railway";
|
|
8832
|
+
render: "render";
|
|
8833
|
+
netlify: "netlify";
|
|
7237
8834
|
sst: "sst";
|
|
7238
8835
|
vercel: "vercel";
|
|
7239
8836
|
}>;
|
|
@@ -7243,6 +8840,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7243
8840
|
cloudflare: "cloudflare";
|
|
7244
8841
|
fly: "fly";
|
|
7245
8842
|
railway: "railway";
|
|
8843
|
+
render: "render";
|
|
8844
|
+
netlify: "netlify";
|
|
7246
8845
|
sst: "sst";
|
|
7247
8846
|
vercel: "vercel";
|
|
7248
8847
|
}>;
|
|
@@ -7320,7 +8919,6 @@ declare function getAllJsonSchemas(): {
|
|
|
7320
8919
|
"postcss-only": "postcss-only";
|
|
7321
8920
|
}>;
|
|
7322
8921
|
uiLibrary: z.ZodEnum<{
|
|
7323
|
-
mui: "mui";
|
|
7324
8922
|
none: "none";
|
|
7325
8923
|
"shadcn-ui": "shadcn-ui";
|
|
7326
8924
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -7331,6 +8929,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7331
8929
|
"chakra-ui": "chakra-ui";
|
|
7332
8930
|
nextui: "nextui";
|
|
7333
8931
|
mantine: "mantine";
|
|
8932
|
+
mui: "mui";
|
|
7334
8933
|
antd: "antd";
|
|
7335
8934
|
"base-ui": "base-ui";
|
|
7336
8935
|
"ark-ui": "ark-ui";
|
|
@@ -7402,8 +9001,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7402
9001
|
"geist-mono": "geist-mono";
|
|
7403
9002
|
}>>;
|
|
7404
9003
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7405
|
-
none: "none";
|
|
7406
9004
|
default: "default";
|
|
9005
|
+
none: "none";
|
|
7407
9006
|
small: "small";
|
|
7408
9007
|
medium: "medium";
|
|
7409
9008
|
large: "large";
|
|
@@ -7459,6 +9058,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7459
9058
|
opentelemetry: "opentelemetry";
|
|
7460
9059
|
sentry: "sentry";
|
|
7461
9060
|
grafana: "grafana";
|
|
9061
|
+
datadog: "datadog";
|
|
9062
|
+
axiom: "axiom";
|
|
9063
|
+
betterstack: "betterstack";
|
|
7462
9064
|
}>;
|
|
7463
9065
|
featureFlags: z.ZodEnum<{
|
|
7464
9066
|
none: "none";
|
|
@@ -7485,6 +9087,11 @@ declare function getAllJsonSchemas(): {
|
|
|
7485
9087
|
none: "none";
|
|
7486
9088
|
"upstash-redis": "upstash-redis";
|
|
7487
9089
|
}>;
|
|
9090
|
+
rateLimit: z.ZodEnum<{
|
|
9091
|
+
none: "none";
|
|
9092
|
+
arcjet: "arcjet";
|
|
9093
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
9094
|
+
}>;
|
|
7488
9095
|
i18n: z.ZodEnum<{
|
|
7489
9096
|
none: "none";
|
|
7490
9097
|
i18next: "i18next";
|
|
@@ -7565,12 +9172,12 @@ declare function getAllJsonSchemas(): {
|
|
|
7565
9172
|
ratatui: "ratatui";
|
|
7566
9173
|
}>;
|
|
7567
9174
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9175
|
+
config: "config";
|
|
7568
9176
|
none: "none";
|
|
7569
9177
|
serde: "serde";
|
|
7570
9178
|
uuid: "uuid";
|
|
7571
9179
|
chrono: "chrono";
|
|
7572
9180
|
reqwest: "reqwest";
|
|
7573
|
-
config: "config";
|
|
7574
9181
|
dashmap: "dashmap";
|
|
7575
9182
|
"parking-lot": "parking-lot";
|
|
7576
9183
|
secrecy: "secrecy";
|
|
@@ -7602,6 +9209,24 @@ declare function getAllJsonSchemas(): {
|
|
|
7602
9209
|
rustAuth: z.ZodEnum<{
|
|
7603
9210
|
none: "none";
|
|
7604
9211
|
oauth2: "oauth2";
|
|
9212
|
+
torii: "torii";
|
|
9213
|
+
}>;
|
|
9214
|
+
rustRealtime: z.ZodEnum<{
|
|
9215
|
+
none: "none";
|
|
9216
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
9217
|
+
}>;
|
|
9218
|
+
rustMessageQueue: z.ZodEnum<{
|
|
9219
|
+
none: "none";
|
|
9220
|
+
lapin: "lapin";
|
|
9221
|
+
}>;
|
|
9222
|
+
rustObservability: z.ZodEnum<{
|
|
9223
|
+
none: "none";
|
|
9224
|
+
opentelemetry: "opentelemetry";
|
|
9225
|
+
}>;
|
|
9226
|
+
rustTemplating: z.ZodEnum<{
|
|
9227
|
+
none: "none";
|
|
9228
|
+
askama: "askama";
|
|
9229
|
+
tera: "tera";
|
|
7605
9230
|
}>;
|
|
7606
9231
|
pythonWebFramework: z.ZodEnum<{
|
|
7607
9232
|
none: "none";
|
|
@@ -7609,12 +9234,14 @@ declare function getAllJsonSchemas(): {
|
|
|
7609
9234
|
django: "django";
|
|
7610
9235
|
flask: "flask";
|
|
7611
9236
|
litestar: "litestar";
|
|
9237
|
+
starlette: "starlette";
|
|
7612
9238
|
}>;
|
|
7613
9239
|
pythonOrm: z.ZodEnum<{
|
|
7614
9240
|
none: "none";
|
|
7615
9241
|
sqlalchemy: "sqlalchemy";
|
|
7616
9242
|
sqlmodel: "sqlmodel";
|
|
7617
9243
|
"tortoise-orm": "tortoise-orm";
|
|
9244
|
+
peewee: "peewee";
|
|
7618
9245
|
}>;
|
|
7619
9246
|
pythonValidation: z.ZodEnum<{
|
|
7620
9247
|
none: "none";
|
|
@@ -7623,17 +9250,21 @@ declare function getAllJsonSchemas(): {
|
|
|
7623
9250
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
7624
9251
|
none: "none";
|
|
7625
9252
|
langgraph: "langgraph";
|
|
9253
|
+
"google-adk": "google-adk";
|
|
7626
9254
|
langchain: "langchain";
|
|
7627
9255
|
llamaindex: "llamaindex";
|
|
7628
9256
|
"openai-sdk": "openai-sdk";
|
|
7629
9257
|
"anthropic-sdk": "anthropic-sdk";
|
|
7630
9258
|
crewai: "crewai";
|
|
7631
9259
|
haystack: "haystack";
|
|
9260
|
+
"pydantic-ai": "pydantic-ai";
|
|
9261
|
+
smolagents: "smolagents";
|
|
7632
9262
|
}>>;
|
|
7633
9263
|
pythonAuth: z.ZodEnum<{
|
|
7634
9264
|
none: "none";
|
|
7635
9265
|
authlib: "authlib";
|
|
7636
9266
|
jwt: "jwt";
|
|
9267
|
+
"fastapi-users": "fastapi-users";
|
|
7637
9268
|
}>;
|
|
7638
9269
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
7639
9270
|
none: "none";
|
|
@@ -7646,6 +9277,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7646
9277
|
rq: "rq";
|
|
7647
9278
|
dramatiq: "dramatiq";
|
|
7648
9279
|
huey: "huey";
|
|
9280
|
+
taskiq: "taskiq";
|
|
7649
9281
|
}>;
|
|
7650
9282
|
pythonGraphql: z.ZodEnum<{
|
|
7651
9283
|
none: "none";
|
|
@@ -7658,6 +9290,31 @@ declare function getAllJsonSchemas(): {
|
|
|
7658
9290
|
mypy: "mypy";
|
|
7659
9291
|
pyright: "pyright";
|
|
7660
9292
|
}>;
|
|
9293
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
9294
|
+
none: "none";
|
|
9295
|
+
pytest: "pytest";
|
|
9296
|
+
hypothesis: "hypothesis";
|
|
9297
|
+
}>>;
|
|
9298
|
+
pythonCaching: z.ZodEnum<{
|
|
9299
|
+
none: "none";
|
|
9300
|
+
redis: "redis";
|
|
9301
|
+
aiocache: "aiocache";
|
|
9302
|
+
}>;
|
|
9303
|
+
pythonRealtime: z.ZodEnum<{
|
|
9304
|
+
none: "none";
|
|
9305
|
+
"python-socketio": "python-socketio";
|
|
9306
|
+
websockets: "websockets";
|
|
9307
|
+
}>;
|
|
9308
|
+
pythonObservability: z.ZodEnum<{
|
|
9309
|
+
none: "none";
|
|
9310
|
+
opentelemetry: "opentelemetry";
|
|
9311
|
+
}>;
|
|
9312
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
9313
|
+
none: "none";
|
|
9314
|
+
typer: "typer";
|
|
9315
|
+
click: "click";
|
|
9316
|
+
rich: "rich";
|
|
9317
|
+
}>>;
|
|
7661
9318
|
goWebFramework: z.ZodEnum<{
|
|
7662
9319
|
none: "none";
|
|
7663
9320
|
gin: "gin";
|
|
@@ -7666,14 +9323,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7666
9323
|
chi: "chi";
|
|
7667
9324
|
}>;
|
|
7668
9325
|
goOrm: z.ZodEnum<{
|
|
7669
|
-
gorm: "gorm";
|
|
7670
9326
|
none: "none";
|
|
9327
|
+
gorm: "gorm";
|
|
7671
9328
|
sqlc: "sqlc";
|
|
7672
9329
|
ent: "ent";
|
|
7673
9330
|
}>;
|
|
7674
9331
|
goApi: z.ZodEnum<{
|
|
7675
9332
|
none: "none";
|
|
7676
9333
|
"grpc-go": "grpc-go";
|
|
9334
|
+
gqlgen: "gqlgen";
|
|
7677
9335
|
}>;
|
|
7678
9336
|
goCli: z.ZodEnum<{
|
|
7679
9337
|
none: "none";
|
|
@@ -7692,6 +9350,36 @@ declare function getAllJsonSchemas(): {
|
|
|
7692
9350
|
none: "none";
|
|
7693
9351
|
jwt: "jwt";
|
|
7694
9352
|
casbin: "casbin";
|
|
9353
|
+
goth: "goth";
|
|
9354
|
+
}>;
|
|
9355
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
9356
|
+
none: "none";
|
|
9357
|
+
testify: "testify";
|
|
9358
|
+
gomock: "gomock";
|
|
9359
|
+
}>>;
|
|
9360
|
+
goRealtime: z.ZodEnum<{
|
|
9361
|
+
none: "none";
|
|
9362
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
9363
|
+
centrifuge: "centrifuge";
|
|
9364
|
+
}>;
|
|
9365
|
+
goMessageQueue: z.ZodEnum<{
|
|
9366
|
+
none: "none";
|
|
9367
|
+
nats: "nats";
|
|
9368
|
+
watermill: "watermill";
|
|
9369
|
+
}>;
|
|
9370
|
+
goCaching: z.ZodEnum<{
|
|
9371
|
+
none: "none";
|
|
9372
|
+
redis: "redis";
|
|
9373
|
+
ristretto: "ristretto";
|
|
9374
|
+
}>;
|
|
9375
|
+
goConfig: z.ZodEnum<{
|
|
9376
|
+
none: "none";
|
|
9377
|
+
viper: "viper";
|
|
9378
|
+
koanf: "koanf";
|
|
9379
|
+
}>;
|
|
9380
|
+
goObservability: z.ZodEnum<{
|
|
9381
|
+
none: "none";
|
|
9382
|
+
opentelemetry: "opentelemetry";
|
|
7695
9383
|
}>;
|
|
7696
9384
|
javaWebFramework: z.ZodEnum<{
|
|
7697
9385
|
none: "none";
|
|
@@ -7706,10 +9394,21 @@ declare function getAllJsonSchemas(): {
|
|
|
7706
9394
|
javaOrm: z.ZodEnum<{
|
|
7707
9395
|
none: "none";
|
|
7708
9396
|
"spring-data-jpa": "spring-data-jpa";
|
|
9397
|
+
jooq: "jooq";
|
|
9398
|
+
mybatis: "mybatis";
|
|
7709
9399
|
}>;
|
|
7710
9400
|
javaAuth: z.ZodEnum<{
|
|
7711
9401
|
none: "none";
|
|
7712
9402
|
"spring-security": "spring-security";
|
|
9403
|
+
keycloak: "keycloak";
|
|
9404
|
+
}>;
|
|
9405
|
+
javaApi: z.ZodEnum<{
|
|
9406
|
+
none: "none";
|
|
9407
|
+
"spring-graphql": "spring-graphql";
|
|
9408
|
+
}>;
|
|
9409
|
+
javaLogging: z.ZodEnum<{
|
|
9410
|
+
none: "none";
|
|
9411
|
+
logback: "logback";
|
|
7713
9412
|
}>;
|
|
7714
9413
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7715
9414
|
none: "none";
|
|
@@ -7729,6 +9428,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7729
9428
|
"spring-devtools": "spring-devtools";
|
|
7730
9429
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
7731
9430
|
thymeleaf: "thymeleaf";
|
|
9431
|
+
"spring-amqp": "spring-amqp";
|
|
9432
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
7732
9433
|
}>>;
|
|
7733
9434
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
7734
9435
|
none: "none";
|
|
@@ -7742,6 +9443,70 @@ declare function getAllJsonSchemas(): {
|
|
|
7742
9443
|
archunit: "archunit";
|
|
7743
9444
|
jqwik: "jqwik";
|
|
7744
9445
|
}>>;
|
|
9446
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
9447
|
+
none: "none";
|
|
9448
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
9449
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
9450
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
9451
|
+
}>;
|
|
9452
|
+
dotnetOrm: z.ZodEnum<{
|
|
9453
|
+
none: "none";
|
|
9454
|
+
"ef-core": "ef-core";
|
|
9455
|
+
dapper: "dapper";
|
|
9456
|
+
linq2db: "linq2db";
|
|
9457
|
+
}>;
|
|
9458
|
+
dotnetAuth: z.ZodEnum<{
|
|
9459
|
+
none: "none";
|
|
9460
|
+
"aspnet-identity": "aspnet-identity";
|
|
9461
|
+
"duende-identityserver": "duende-identityserver";
|
|
9462
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
9463
|
+
}>;
|
|
9464
|
+
dotnetApi: z.ZodEnum<{
|
|
9465
|
+
none: "none";
|
|
9466
|
+
"minimal-api": "minimal-api";
|
|
9467
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
9468
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
9469
|
+
}>;
|
|
9470
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
9471
|
+
none: "none";
|
|
9472
|
+
xunit: "xunit";
|
|
9473
|
+
nunit: "nunit";
|
|
9474
|
+
moq: "moq";
|
|
9475
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
9476
|
+
}>>;
|
|
9477
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
9478
|
+
none: "none";
|
|
9479
|
+
hangfire: "hangfire";
|
|
9480
|
+
"quartz-net": "quartz-net";
|
|
9481
|
+
"hosted-services": "hosted-services";
|
|
9482
|
+
}>;
|
|
9483
|
+
dotnetRealtime: z.ZodEnum<{
|
|
9484
|
+
none: "none";
|
|
9485
|
+
signalr: "signalr";
|
|
9486
|
+
}>;
|
|
9487
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
9488
|
+
none: "none";
|
|
9489
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
9490
|
+
serilog: "serilog";
|
|
9491
|
+
nlog: "nlog";
|
|
9492
|
+
"health-checks": "health-checks";
|
|
9493
|
+
}>>;
|
|
9494
|
+
dotnetValidation: z.ZodEnum<{
|
|
9495
|
+
none: "none";
|
|
9496
|
+
fluentvalidation: "fluentvalidation";
|
|
9497
|
+
"data-annotations": "data-annotations";
|
|
9498
|
+
}>;
|
|
9499
|
+
dotnetCaching: z.ZodEnum<{
|
|
9500
|
+
none: "none";
|
|
9501
|
+
redis: "redis";
|
|
9502
|
+
"memory-cache": "memory-cache";
|
|
9503
|
+
}>;
|
|
9504
|
+
dotnetDeploy: z.ZodEnum<{
|
|
9505
|
+
none: "none";
|
|
9506
|
+
docker: "docker";
|
|
9507
|
+
azure: "azure";
|
|
9508
|
+
aws: "aws";
|
|
9509
|
+
}>;
|
|
7745
9510
|
elixirWebFramework: z.ZodEnum<{
|
|
7746
9511
|
none: "none";
|
|
7747
9512
|
phoenix: "phoenix";
|
|
@@ -7762,6 +9527,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7762
9527
|
none: "none";
|
|
7763
9528
|
rest: "rest";
|
|
7764
9529
|
absinthe: "absinthe";
|
|
9530
|
+
grpc: "grpc";
|
|
7765
9531
|
}>;
|
|
7766
9532
|
elixirRealtime: z.ZodEnum<{
|
|
7767
9533
|
none: "none";
|
|
@@ -7824,6 +9590,11 @@ declare function getAllJsonSchemas(): {
|
|
|
7824
9590
|
gigalixir: "gigalixir";
|
|
7825
9591
|
"mix-release": "mix-release";
|
|
7826
9592
|
}>;
|
|
9593
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
9594
|
+
none: "none";
|
|
9595
|
+
broadway: "broadway";
|
|
9596
|
+
nx: "nx";
|
|
9597
|
+
}>>;
|
|
7827
9598
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
7828
9599
|
none: "none";
|
|
7829
9600
|
"claude-md": "claude-md";
|
|
@@ -7833,37 +9604,55 @@ declare function getAllJsonSchemas(): {
|
|
|
7833
9604
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7834
9605
|
id: z.ZodString;
|
|
7835
9606
|
role: z.ZodEnum<{
|
|
7836
|
-
|
|
9607
|
+
frontend: "frontend";
|
|
7837
9608
|
backend: "backend";
|
|
9609
|
+
mobile: "mobile";
|
|
7838
9610
|
database: "database";
|
|
9611
|
+
api: "api";
|
|
7839
9612
|
orm: "orm";
|
|
7840
9613
|
auth: "auth";
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
9614
|
+
runtime: "runtime";
|
|
9615
|
+
deploy: "deploy";
|
|
9616
|
+
dbSetup: "dbSetup";
|
|
9617
|
+
realtime: "realtime";
|
|
9618
|
+
navigation: "navigation";
|
|
9619
|
+
caching: "caching";
|
|
7844
9620
|
observability: "observability";
|
|
7845
|
-
|
|
7846
|
-
|
|
9621
|
+
email: "email";
|
|
9622
|
+
search: "search";
|
|
9623
|
+
fileStorage: "fileStorage";
|
|
9624
|
+
jobQueue: "jobQueue";
|
|
9625
|
+
rateLimit: "rateLimit";
|
|
9626
|
+
testing: "testing";
|
|
7847
9627
|
stateManagement: "stateManagement";
|
|
7848
9628
|
forms: "forms";
|
|
9629
|
+
animation: "animation";
|
|
9630
|
+
fileUpload: "fileUpload";
|
|
7849
9631
|
validation: "validation";
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
9632
|
+
effect: "effect";
|
|
9633
|
+
ui: "ui";
|
|
9634
|
+
css: "css";
|
|
9635
|
+
storage: "storage";
|
|
9636
|
+
ai: "ai";
|
|
9637
|
+
payments: "payments";
|
|
9638
|
+
logging: "logging";
|
|
9639
|
+
featureFlags: "featureFlags";
|
|
9640
|
+
analytics: "analytics";
|
|
7853
9641
|
cms: "cms";
|
|
7854
9642
|
i18n: "i18n";
|
|
7855
|
-
search: "search";
|
|
7856
|
-
fileStorage: "fileStorage";
|
|
7857
|
-
codeQuality: "codeQuality";
|
|
7858
9643
|
documentation: "documentation";
|
|
7859
|
-
|
|
7860
|
-
ai: "ai";
|
|
7861
|
-
css: "css";
|
|
7862
|
-
ui: "ui";
|
|
7863
|
-
frontend: "frontend";
|
|
7864
|
-
mobile: "mobile";
|
|
7865
|
-
deploy: "deploy";
|
|
9644
|
+
codeQuality: "codeQuality";
|
|
7866
9645
|
appPlatform: "appPlatform";
|
|
9646
|
+
dataFetching: "dataFetching";
|
|
9647
|
+
workspaceTooling: "workspaceTooling";
|
|
9648
|
+
examples: "examples";
|
|
9649
|
+
buildTool: "buildTool";
|
|
9650
|
+
cli: "cli";
|
|
9651
|
+
errorHandling: "errorHandling";
|
|
9652
|
+
httpClient: "httpClient";
|
|
9653
|
+
libraries: "libraries";
|
|
9654
|
+
config: "config";
|
|
9655
|
+
templating: "templating";
|
|
7867
9656
|
}>;
|
|
7868
9657
|
toolId: z.ZodString;
|
|
7869
9658
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -7874,6 +9663,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7874
9663
|
go: "go";
|
|
7875
9664
|
java: "java";
|
|
7876
9665
|
elixir: "elixir";
|
|
9666
|
+
dotnet: "dotnet";
|
|
7877
9667
|
}>, z.ZodLiteral<"universal">]>;
|
|
7878
9668
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7879
9669
|
source: z.ZodEnum<{
|
|
@@ -7902,6 +9692,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7902
9692
|
go: "go";
|
|
7903
9693
|
java: "java";
|
|
7904
9694
|
elixir: "elixir";
|
|
9695
|
+
dotnet: "dotnet";
|
|
7905
9696
|
}>;
|
|
7906
9697
|
database: z.ZodEnum<{
|
|
7907
9698
|
none: "none";
|
|
@@ -7988,6 +9779,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7988
9779
|
"tanstack-virtual": "tanstack-virtual";
|
|
7989
9780
|
"tanstack-db": "tanstack-db";
|
|
7990
9781
|
"tanstack-pacer": "tanstack-pacer";
|
|
9782
|
+
"backend-utils": "backend-utils";
|
|
7991
9783
|
"docker-compose": "docker-compose";
|
|
7992
9784
|
}>>;
|
|
7993
9785
|
examples: z.ZodArray<z.ZodEnum<{
|
|
@@ -7999,12 +9791,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7999
9791
|
auth: z.ZodEnum<{
|
|
8000
9792
|
none: "none";
|
|
8001
9793
|
"better-auth": "better-auth";
|
|
9794
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
8002
9795
|
"go-better-auth": "go-better-auth";
|
|
8003
9796
|
clerk: "clerk";
|
|
8004
9797
|
nextauth: "nextauth";
|
|
8005
9798
|
"stack-auth": "stack-auth";
|
|
8006
9799
|
"supabase-auth": "supabase-auth";
|
|
8007
9800
|
auth0: "auth0";
|
|
9801
|
+
workos: "workos";
|
|
9802
|
+
kinde: "kinde";
|
|
8008
9803
|
}>;
|
|
8009
9804
|
payments: z.ZodEnum<{
|
|
8010
9805
|
none: "none";
|
|
@@ -8053,6 +9848,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8053
9848
|
cloudflare: "cloudflare";
|
|
8054
9849
|
fly: "fly";
|
|
8055
9850
|
railway: "railway";
|
|
9851
|
+
render: "render";
|
|
9852
|
+
netlify: "netlify";
|
|
8056
9853
|
sst: "sst";
|
|
8057
9854
|
vercel: "vercel";
|
|
8058
9855
|
}>;
|
|
@@ -8062,6 +9859,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8062
9859
|
cloudflare: "cloudflare";
|
|
8063
9860
|
fly: "fly";
|
|
8064
9861
|
railway: "railway";
|
|
9862
|
+
render: "render";
|
|
9863
|
+
netlify: "netlify";
|
|
8065
9864
|
sst: "sst";
|
|
8066
9865
|
vercel: "vercel";
|
|
8067
9866
|
}>;
|
|
@@ -8139,7 +9938,6 @@ declare function getAllJsonSchemas(): {
|
|
|
8139
9938
|
"postcss-only": "postcss-only";
|
|
8140
9939
|
}>;
|
|
8141
9940
|
uiLibrary: z.ZodEnum<{
|
|
8142
|
-
mui: "mui";
|
|
8143
9941
|
none: "none";
|
|
8144
9942
|
"shadcn-ui": "shadcn-ui";
|
|
8145
9943
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -8150,6 +9948,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8150
9948
|
"chakra-ui": "chakra-ui";
|
|
8151
9949
|
nextui: "nextui";
|
|
8152
9950
|
mantine: "mantine";
|
|
9951
|
+
mui: "mui";
|
|
8153
9952
|
antd: "antd";
|
|
8154
9953
|
"base-ui": "base-ui";
|
|
8155
9954
|
"ark-ui": "ark-ui";
|
|
@@ -8221,8 +10020,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8221
10020
|
"geist-mono": "geist-mono";
|
|
8222
10021
|
}>>;
|
|
8223
10022
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8224
|
-
none: "none";
|
|
8225
10023
|
default: "default";
|
|
10024
|
+
none: "none";
|
|
8226
10025
|
small: "small";
|
|
8227
10026
|
medium: "medium";
|
|
8228
10027
|
large: "large";
|
|
@@ -8278,6 +10077,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8278
10077
|
opentelemetry: "opentelemetry";
|
|
8279
10078
|
sentry: "sentry";
|
|
8280
10079
|
grafana: "grafana";
|
|
10080
|
+
datadog: "datadog";
|
|
10081
|
+
axiom: "axiom";
|
|
10082
|
+
betterstack: "betterstack";
|
|
8281
10083
|
}>;
|
|
8282
10084
|
featureFlags: z.ZodEnum<{
|
|
8283
10085
|
none: "none";
|
|
@@ -8304,6 +10106,11 @@ declare function getAllJsonSchemas(): {
|
|
|
8304
10106
|
none: "none";
|
|
8305
10107
|
"upstash-redis": "upstash-redis";
|
|
8306
10108
|
}>;
|
|
10109
|
+
rateLimit: z.ZodEnum<{
|
|
10110
|
+
none: "none";
|
|
10111
|
+
arcjet: "arcjet";
|
|
10112
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
10113
|
+
}>;
|
|
8307
10114
|
i18n: z.ZodEnum<{
|
|
8308
10115
|
none: "none";
|
|
8309
10116
|
i18next: "i18next";
|
|
@@ -8384,12 +10191,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8384
10191
|
ratatui: "ratatui";
|
|
8385
10192
|
}>;
|
|
8386
10193
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10194
|
+
config: "config";
|
|
8387
10195
|
none: "none";
|
|
8388
10196
|
serde: "serde";
|
|
8389
10197
|
uuid: "uuid";
|
|
8390
10198
|
chrono: "chrono";
|
|
8391
10199
|
reqwest: "reqwest";
|
|
8392
|
-
config: "config";
|
|
8393
10200
|
dashmap: "dashmap";
|
|
8394
10201
|
"parking-lot": "parking-lot";
|
|
8395
10202
|
secrecy: "secrecy";
|
|
@@ -8421,6 +10228,24 @@ declare function getAllJsonSchemas(): {
|
|
|
8421
10228
|
rustAuth: z.ZodEnum<{
|
|
8422
10229
|
none: "none";
|
|
8423
10230
|
oauth2: "oauth2";
|
|
10231
|
+
torii: "torii";
|
|
10232
|
+
}>;
|
|
10233
|
+
rustRealtime: z.ZodEnum<{
|
|
10234
|
+
none: "none";
|
|
10235
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
10236
|
+
}>;
|
|
10237
|
+
rustMessageQueue: z.ZodEnum<{
|
|
10238
|
+
none: "none";
|
|
10239
|
+
lapin: "lapin";
|
|
10240
|
+
}>;
|
|
10241
|
+
rustObservability: z.ZodEnum<{
|
|
10242
|
+
none: "none";
|
|
10243
|
+
opentelemetry: "opentelemetry";
|
|
10244
|
+
}>;
|
|
10245
|
+
rustTemplating: z.ZodEnum<{
|
|
10246
|
+
none: "none";
|
|
10247
|
+
askama: "askama";
|
|
10248
|
+
tera: "tera";
|
|
8424
10249
|
}>;
|
|
8425
10250
|
pythonWebFramework: z.ZodEnum<{
|
|
8426
10251
|
none: "none";
|
|
@@ -8428,12 +10253,14 @@ declare function getAllJsonSchemas(): {
|
|
|
8428
10253
|
django: "django";
|
|
8429
10254
|
flask: "flask";
|
|
8430
10255
|
litestar: "litestar";
|
|
10256
|
+
starlette: "starlette";
|
|
8431
10257
|
}>;
|
|
8432
10258
|
pythonOrm: z.ZodEnum<{
|
|
8433
10259
|
none: "none";
|
|
8434
10260
|
sqlalchemy: "sqlalchemy";
|
|
8435
10261
|
sqlmodel: "sqlmodel";
|
|
8436
10262
|
"tortoise-orm": "tortoise-orm";
|
|
10263
|
+
peewee: "peewee";
|
|
8437
10264
|
}>;
|
|
8438
10265
|
pythonValidation: z.ZodEnum<{
|
|
8439
10266
|
none: "none";
|
|
@@ -8442,17 +10269,21 @@ declare function getAllJsonSchemas(): {
|
|
|
8442
10269
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
8443
10270
|
none: "none";
|
|
8444
10271
|
langgraph: "langgraph";
|
|
10272
|
+
"google-adk": "google-adk";
|
|
8445
10273
|
langchain: "langchain";
|
|
8446
10274
|
llamaindex: "llamaindex";
|
|
8447
10275
|
"openai-sdk": "openai-sdk";
|
|
8448
10276
|
"anthropic-sdk": "anthropic-sdk";
|
|
8449
10277
|
crewai: "crewai";
|
|
8450
10278
|
haystack: "haystack";
|
|
10279
|
+
"pydantic-ai": "pydantic-ai";
|
|
10280
|
+
smolagents: "smolagents";
|
|
8451
10281
|
}>>;
|
|
8452
10282
|
pythonAuth: z.ZodEnum<{
|
|
8453
10283
|
none: "none";
|
|
8454
10284
|
authlib: "authlib";
|
|
8455
10285
|
jwt: "jwt";
|
|
10286
|
+
"fastapi-users": "fastapi-users";
|
|
8456
10287
|
}>;
|
|
8457
10288
|
pythonApi: z.ZodEnum<{
|
|
8458
10289
|
none: "none";
|
|
@@ -8465,6 +10296,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8465
10296
|
rq: "rq";
|
|
8466
10297
|
dramatiq: "dramatiq";
|
|
8467
10298
|
huey: "huey";
|
|
10299
|
+
taskiq: "taskiq";
|
|
8468
10300
|
}>;
|
|
8469
10301
|
pythonGraphql: z.ZodEnum<{
|
|
8470
10302
|
none: "none";
|
|
@@ -8477,6 +10309,31 @@ declare function getAllJsonSchemas(): {
|
|
|
8477
10309
|
mypy: "mypy";
|
|
8478
10310
|
pyright: "pyright";
|
|
8479
10311
|
}>;
|
|
10312
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
10313
|
+
none: "none";
|
|
10314
|
+
pytest: "pytest";
|
|
10315
|
+
hypothesis: "hypothesis";
|
|
10316
|
+
}>>;
|
|
10317
|
+
pythonCaching: z.ZodEnum<{
|
|
10318
|
+
none: "none";
|
|
10319
|
+
redis: "redis";
|
|
10320
|
+
aiocache: "aiocache";
|
|
10321
|
+
}>;
|
|
10322
|
+
pythonRealtime: z.ZodEnum<{
|
|
10323
|
+
none: "none";
|
|
10324
|
+
"python-socketio": "python-socketio";
|
|
10325
|
+
websockets: "websockets";
|
|
10326
|
+
}>;
|
|
10327
|
+
pythonObservability: z.ZodEnum<{
|
|
10328
|
+
none: "none";
|
|
10329
|
+
opentelemetry: "opentelemetry";
|
|
10330
|
+
}>;
|
|
10331
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
10332
|
+
none: "none";
|
|
10333
|
+
typer: "typer";
|
|
10334
|
+
click: "click";
|
|
10335
|
+
rich: "rich";
|
|
10336
|
+
}>>;
|
|
8480
10337
|
goWebFramework: z.ZodEnum<{
|
|
8481
10338
|
none: "none";
|
|
8482
10339
|
gin: "gin";
|
|
@@ -8485,14 +10342,15 @@ declare function getAllJsonSchemas(): {
|
|
|
8485
10342
|
chi: "chi";
|
|
8486
10343
|
}>;
|
|
8487
10344
|
goOrm: z.ZodEnum<{
|
|
8488
|
-
gorm: "gorm";
|
|
8489
10345
|
none: "none";
|
|
10346
|
+
gorm: "gorm";
|
|
8490
10347
|
sqlc: "sqlc";
|
|
8491
10348
|
ent: "ent";
|
|
8492
10349
|
}>;
|
|
8493
10350
|
goApi: z.ZodEnum<{
|
|
8494
10351
|
none: "none";
|
|
8495
10352
|
"grpc-go": "grpc-go";
|
|
10353
|
+
gqlgen: "gqlgen";
|
|
8496
10354
|
}>;
|
|
8497
10355
|
goCli: z.ZodEnum<{
|
|
8498
10356
|
none: "none";
|
|
@@ -8511,6 +10369,36 @@ declare function getAllJsonSchemas(): {
|
|
|
8511
10369
|
none: "none";
|
|
8512
10370
|
jwt: "jwt";
|
|
8513
10371
|
casbin: "casbin";
|
|
10372
|
+
goth: "goth";
|
|
10373
|
+
}>;
|
|
10374
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
10375
|
+
none: "none";
|
|
10376
|
+
testify: "testify";
|
|
10377
|
+
gomock: "gomock";
|
|
10378
|
+
}>>;
|
|
10379
|
+
goRealtime: z.ZodEnum<{
|
|
10380
|
+
none: "none";
|
|
10381
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
10382
|
+
centrifuge: "centrifuge";
|
|
10383
|
+
}>;
|
|
10384
|
+
goMessageQueue: z.ZodEnum<{
|
|
10385
|
+
none: "none";
|
|
10386
|
+
nats: "nats";
|
|
10387
|
+
watermill: "watermill";
|
|
10388
|
+
}>;
|
|
10389
|
+
goCaching: z.ZodEnum<{
|
|
10390
|
+
none: "none";
|
|
10391
|
+
redis: "redis";
|
|
10392
|
+
ristretto: "ristretto";
|
|
10393
|
+
}>;
|
|
10394
|
+
goConfig: z.ZodEnum<{
|
|
10395
|
+
none: "none";
|
|
10396
|
+
viper: "viper";
|
|
10397
|
+
koanf: "koanf";
|
|
10398
|
+
}>;
|
|
10399
|
+
goObservability: z.ZodEnum<{
|
|
10400
|
+
none: "none";
|
|
10401
|
+
opentelemetry: "opentelemetry";
|
|
8514
10402
|
}>;
|
|
8515
10403
|
javaWebFramework: z.ZodEnum<{
|
|
8516
10404
|
none: "none";
|
|
@@ -8525,10 +10413,21 @@ declare function getAllJsonSchemas(): {
|
|
|
8525
10413
|
javaOrm: z.ZodEnum<{
|
|
8526
10414
|
none: "none";
|
|
8527
10415
|
"spring-data-jpa": "spring-data-jpa";
|
|
10416
|
+
jooq: "jooq";
|
|
10417
|
+
mybatis: "mybatis";
|
|
8528
10418
|
}>;
|
|
8529
10419
|
javaAuth: z.ZodEnum<{
|
|
8530
10420
|
none: "none";
|
|
8531
10421
|
"spring-security": "spring-security";
|
|
10422
|
+
keycloak: "keycloak";
|
|
10423
|
+
}>;
|
|
10424
|
+
javaApi: z.ZodEnum<{
|
|
10425
|
+
none: "none";
|
|
10426
|
+
"spring-graphql": "spring-graphql";
|
|
10427
|
+
}>;
|
|
10428
|
+
javaLogging: z.ZodEnum<{
|
|
10429
|
+
none: "none";
|
|
10430
|
+
logback: "logback";
|
|
8532
10431
|
}>;
|
|
8533
10432
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
8534
10433
|
none: "none";
|
|
@@ -8548,6 +10447,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8548
10447
|
"spring-devtools": "spring-devtools";
|
|
8549
10448
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
8550
10449
|
thymeleaf: "thymeleaf";
|
|
10450
|
+
"spring-amqp": "spring-amqp";
|
|
10451
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
8551
10452
|
}>>;
|
|
8552
10453
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
8553
10454
|
none: "none";
|
|
@@ -8561,6 +10462,70 @@ declare function getAllJsonSchemas(): {
|
|
|
8561
10462
|
archunit: "archunit";
|
|
8562
10463
|
jqwik: "jqwik";
|
|
8563
10464
|
}>>;
|
|
10465
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
10466
|
+
none: "none";
|
|
10467
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
10468
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
10469
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
10470
|
+
}>;
|
|
10471
|
+
dotnetOrm: z.ZodEnum<{
|
|
10472
|
+
none: "none";
|
|
10473
|
+
"ef-core": "ef-core";
|
|
10474
|
+
dapper: "dapper";
|
|
10475
|
+
linq2db: "linq2db";
|
|
10476
|
+
}>;
|
|
10477
|
+
dotnetAuth: z.ZodEnum<{
|
|
10478
|
+
none: "none";
|
|
10479
|
+
"aspnet-identity": "aspnet-identity";
|
|
10480
|
+
"duende-identityserver": "duende-identityserver";
|
|
10481
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
10482
|
+
}>;
|
|
10483
|
+
dotnetApi: z.ZodEnum<{
|
|
10484
|
+
none: "none";
|
|
10485
|
+
"minimal-api": "minimal-api";
|
|
10486
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
10487
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
10488
|
+
}>;
|
|
10489
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
10490
|
+
none: "none";
|
|
10491
|
+
xunit: "xunit";
|
|
10492
|
+
nunit: "nunit";
|
|
10493
|
+
moq: "moq";
|
|
10494
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
10495
|
+
}>>;
|
|
10496
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
10497
|
+
none: "none";
|
|
10498
|
+
hangfire: "hangfire";
|
|
10499
|
+
"quartz-net": "quartz-net";
|
|
10500
|
+
"hosted-services": "hosted-services";
|
|
10501
|
+
}>;
|
|
10502
|
+
dotnetRealtime: z.ZodEnum<{
|
|
10503
|
+
none: "none";
|
|
10504
|
+
signalr: "signalr";
|
|
10505
|
+
}>;
|
|
10506
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
10507
|
+
none: "none";
|
|
10508
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
10509
|
+
serilog: "serilog";
|
|
10510
|
+
nlog: "nlog";
|
|
10511
|
+
"health-checks": "health-checks";
|
|
10512
|
+
}>>;
|
|
10513
|
+
dotnetValidation: z.ZodEnum<{
|
|
10514
|
+
none: "none";
|
|
10515
|
+
fluentvalidation: "fluentvalidation";
|
|
10516
|
+
"data-annotations": "data-annotations";
|
|
10517
|
+
}>;
|
|
10518
|
+
dotnetCaching: z.ZodEnum<{
|
|
10519
|
+
none: "none";
|
|
10520
|
+
redis: "redis";
|
|
10521
|
+
"memory-cache": "memory-cache";
|
|
10522
|
+
}>;
|
|
10523
|
+
dotnetDeploy: z.ZodEnum<{
|
|
10524
|
+
none: "none";
|
|
10525
|
+
docker: "docker";
|
|
10526
|
+
azure: "azure";
|
|
10527
|
+
aws: "aws";
|
|
10528
|
+
}>;
|
|
8564
10529
|
elixirWebFramework: z.ZodEnum<{
|
|
8565
10530
|
none: "none";
|
|
8566
10531
|
phoenix: "phoenix";
|
|
@@ -8581,6 +10546,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8581
10546
|
none: "none";
|
|
8582
10547
|
rest: "rest";
|
|
8583
10548
|
absinthe: "absinthe";
|
|
10549
|
+
grpc: "grpc";
|
|
8584
10550
|
}>;
|
|
8585
10551
|
elixirRealtime: z.ZodEnum<{
|
|
8586
10552
|
none: "none";
|
|
@@ -8643,6 +10609,11 @@ declare function getAllJsonSchemas(): {
|
|
|
8643
10609
|
gigalixir: "gigalixir";
|
|
8644
10610
|
"mix-release": "mix-release";
|
|
8645
10611
|
}>;
|
|
10612
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
10613
|
+
none: "none";
|
|
10614
|
+
broadway: "broadway";
|
|
10615
|
+
nx: "nx";
|
|
10616
|
+
}>>;
|
|
8646
10617
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
8647
10618
|
none: "none";
|
|
8648
10619
|
"claude-md": "claude-md";
|
|
@@ -8652,37 +10623,55 @@ declare function getAllJsonSchemas(): {
|
|
|
8652
10623
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8653
10624
|
id: z.ZodString;
|
|
8654
10625
|
role: z.ZodEnum<{
|
|
8655
|
-
|
|
10626
|
+
frontend: "frontend";
|
|
8656
10627
|
backend: "backend";
|
|
10628
|
+
mobile: "mobile";
|
|
8657
10629
|
database: "database";
|
|
10630
|
+
api: "api";
|
|
8658
10631
|
orm: "orm";
|
|
8659
10632
|
auth: "auth";
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
|
|
10633
|
+
runtime: "runtime";
|
|
10634
|
+
deploy: "deploy";
|
|
10635
|
+
dbSetup: "dbSetup";
|
|
10636
|
+
realtime: "realtime";
|
|
10637
|
+
navigation: "navigation";
|
|
10638
|
+
caching: "caching";
|
|
8663
10639
|
observability: "observability";
|
|
8664
|
-
|
|
8665
|
-
|
|
10640
|
+
email: "email";
|
|
10641
|
+
search: "search";
|
|
10642
|
+
fileStorage: "fileStorage";
|
|
10643
|
+
jobQueue: "jobQueue";
|
|
10644
|
+
rateLimit: "rateLimit";
|
|
10645
|
+
testing: "testing";
|
|
8666
10646
|
stateManagement: "stateManagement";
|
|
8667
10647
|
forms: "forms";
|
|
10648
|
+
animation: "animation";
|
|
10649
|
+
fileUpload: "fileUpload";
|
|
8668
10650
|
validation: "validation";
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
|
|
10651
|
+
effect: "effect";
|
|
10652
|
+
ui: "ui";
|
|
10653
|
+
css: "css";
|
|
10654
|
+
storage: "storage";
|
|
10655
|
+
ai: "ai";
|
|
10656
|
+
payments: "payments";
|
|
10657
|
+
logging: "logging";
|
|
10658
|
+
featureFlags: "featureFlags";
|
|
10659
|
+
analytics: "analytics";
|
|
8672
10660
|
cms: "cms";
|
|
8673
10661
|
i18n: "i18n";
|
|
8674
|
-
search: "search";
|
|
8675
|
-
fileStorage: "fileStorage";
|
|
8676
|
-
codeQuality: "codeQuality";
|
|
8677
10662
|
documentation: "documentation";
|
|
8678
|
-
|
|
8679
|
-
ai: "ai";
|
|
8680
|
-
css: "css";
|
|
8681
|
-
ui: "ui";
|
|
8682
|
-
frontend: "frontend";
|
|
8683
|
-
mobile: "mobile";
|
|
8684
|
-
deploy: "deploy";
|
|
10663
|
+
codeQuality: "codeQuality";
|
|
8685
10664
|
appPlatform: "appPlatform";
|
|
10665
|
+
dataFetching: "dataFetching";
|
|
10666
|
+
workspaceTooling: "workspaceTooling";
|
|
10667
|
+
examples: "examples";
|
|
10668
|
+
buildTool: "buildTool";
|
|
10669
|
+
cli: "cli";
|
|
10670
|
+
errorHandling: "errorHandling";
|
|
10671
|
+
httpClient: "httpClient";
|
|
10672
|
+
libraries: "libraries";
|
|
10673
|
+
config: "config";
|
|
10674
|
+
templating: "templating";
|
|
8686
10675
|
}>;
|
|
8687
10676
|
toolId: z.ZodString;
|
|
8688
10677
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -8693,6 +10682,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8693
10682
|
go: "go";
|
|
8694
10683
|
java: "java";
|
|
8695
10684
|
elixir: "elixir";
|
|
10685
|
+
dotnet: "dotnet";
|
|
8696
10686
|
}>, z.ZodLiteral<"universal">]>;
|
|
8697
10687
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
8698
10688
|
source: z.ZodEnum<{
|