@better-fullstack/types 2.2.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{defaults-DyNR1d-V.d.mts → defaults-BT-WhLPX.d.mts} +2 -2
- package/dist/defaults-BT-WhLPX.d.mts.map +1 -0
- package/dist/{defaults-DgL5YPQY.mjs → defaults-Cl16mM84.mjs} +10 -1
- package/dist/defaults-Cl16mM84.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +89 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +1261 -1
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +10 -2
- package/dist/json-schema.mjs.map +1 -1
- package/dist/{schemas-l7hOhH8U.mjs → schemas-CprYz5Sh.mjs} +142 -4
- package/dist/schemas-CprYz5Sh.mjs.map +1 -0
- package/dist/{schemas-D9kkuJz7.d.mts → schemas-q5-QVYJy.d.mts} +1146 -9
- package/dist/schemas-q5-QVYJy.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-F6UKYYR0.d.mts → stack-graph-CgFYIeir.d.mts} +2 -2
- package/dist/{stack-graph-F6UKYYR0.d.mts.map → stack-graph-CgFYIeir.d.mts.map} +1 -1
- package/dist/{stack-graph-C8r3fTh4.mjs → stack-graph-DiLi3WuL.mjs} +51 -9
- package/dist/stack-graph-DiLi3WuL.mjs.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-Kr0TyRAm.mjs → stack-translation-Ay-_1mNB.mjs} +418 -21
- package/dist/stack-translation-Ay-_1mNB.mjs.map +1 -0
- package/dist/{stack-translation-BNHNx5_b.d.mts → stack-translation-CU1kpqq3.d.mts} +26 -8
- package/dist/stack-translation-CU1kpqq3.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{types-C7RpHf2e.d.mts → types-Cp7krSdb.d.mts} +12 -3
- package/dist/types-Cp7krSdb.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-DgL5YPQY.mjs.map +0 -1
- package/dist/defaults-DyNR1d-V.d.mts.map +0 -1
- package/dist/schemas-D9kkuJz7.d.mts.map +0 -1
- package/dist/schemas-l7hOhH8U.mjs.map +0 -1
- package/dist/stack-graph-C8r3fTh4.mjs.map +0 -1
- package/dist/stack-translation-BNHNx5_b.d.mts.map +0 -1
- package/dist/stack-translation-Kr0TyRAm.mjs.map +0 -1
- package/dist/types-C7RpHf2e.d.mts.map +0 -1
|
@@ -30,6 +30,7 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
30
30
|
payments: "payments";
|
|
31
31
|
frontend: "frontend";
|
|
32
32
|
examples: "examples";
|
|
33
|
+
packageManager: "packageManager";
|
|
33
34
|
dbSetup: "dbSetup";
|
|
34
35
|
backend: "backend";
|
|
35
36
|
runtime: "runtime";
|
|
@@ -78,6 +79,11 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
78
79
|
httpClient: "httpClient";
|
|
79
80
|
libraries: "libraries";
|
|
80
81
|
templating: "templating";
|
|
82
|
+
cloudSdk: "cloudSdk";
|
|
83
|
+
data: "data";
|
|
84
|
+
media: "media";
|
|
85
|
+
server: "server";
|
|
86
|
+
messageQueue: "messageQueue";
|
|
81
87
|
}>;
|
|
82
88
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
83
89
|
selected: "selected";
|
|
@@ -97,6 +103,7 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
97
103
|
payments: "payments";
|
|
98
104
|
frontend: "frontend";
|
|
99
105
|
examples: "examples";
|
|
106
|
+
packageManager: "packageManager";
|
|
100
107
|
dbSetup: "dbSetup";
|
|
101
108
|
backend: "backend";
|
|
102
109
|
runtime: "runtime";
|
|
@@ -145,6 +152,11 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
145
152
|
httpClient: "httpClient";
|
|
146
153
|
libraries: "libraries";
|
|
147
154
|
templating: "templating";
|
|
155
|
+
cloudSdk: "cloudSdk";
|
|
156
|
+
data: "data";
|
|
157
|
+
media: "media";
|
|
158
|
+
server: "server";
|
|
159
|
+
messageQueue: "messageQueue";
|
|
148
160
|
}>;
|
|
149
161
|
toolId: z.ZodString;
|
|
150
162
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -595,6 +607,29 @@ declare const MobileDeepLinkingSchema: z.ZodEnum<{
|
|
|
595
607
|
none: "none";
|
|
596
608
|
"expo-linking": "expo-linking";
|
|
597
609
|
}>;
|
|
610
|
+
declare const MobileLibrariesSchema: z.ZodEnum<{
|
|
611
|
+
none: "none";
|
|
612
|
+
"expo-sqlite": "expo-sqlite";
|
|
613
|
+
"expo-camera": "expo-camera";
|
|
614
|
+
"expo-image-picker": "expo-image-picker";
|
|
615
|
+
"expo-location": "expo-location";
|
|
616
|
+
"expo-sensors": "expo-sensors";
|
|
617
|
+
"expo-file-system": "expo-file-system";
|
|
618
|
+
"expo-image": "expo-image";
|
|
619
|
+
"expo-audio": "expo-audio";
|
|
620
|
+
"expo-video": "expo-video";
|
|
621
|
+
"expo-contacts": "expo-contacts";
|
|
622
|
+
"expo-calendar": "expo-calendar";
|
|
623
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
624
|
+
"expo-sharing": "expo-sharing";
|
|
625
|
+
"expo-clipboard": "expo-clipboard";
|
|
626
|
+
"expo-task-manager": "expo-task-manager";
|
|
627
|
+
"expo-background-task": "expo-background-task";
|
|
628
|
+
"expo-maps": "expo-maps";
|
|
629
|
+
"expo-brightness": "expo-brightness";
|
|
630
|
+
"expo-battery": "expo-battery";
|
|
631
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
632
|
+
}>;
|
|
598
633
|
declare const RustWebFrameworkSchema: z.ZodEnum<{
|
|
599
634
|
none: "none";
|
|
600
635
|
axum: "axum";
|
|
@@ -708,6 +743,8 @@ declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
|
708
743
|
flask: "flask";
|
|
709
744
|
litestar: "litestar";
|
|
710
745
|
starlette: "starlette";
|
|
746
|
+
aiohttp: "aiohttp";
|
|
747
|
+
streamlit: "streamlit";
|
|
711
748
|
}>;
|
|
712
749
|
declare const PythonOrmSchema: z.ZodEnum<{
|
|
713
750
|
none: "none";
|
|
@@ -715,6 +752,7 @@ declare const PythonOrmSchema: z.ZodEnum<{
|
|
|
715
752
|
sqlmodel: "sqlmodel";
|
|
716
753
|
"tortoise-orm": "tortoise-orm";
|
|
717
754
|
peewee: "peewee";
|
|
755
|
+
pymongo: "pymongo";
|
|
718
756
|
}>;
|
|
719
757
|
declare const PythonValidationSchema: z.ZodEnum<{
|
|
720
758
|
none: "none";
|
|
@@ -722,6 +760,7 @@ declare const PythonValidationSchema: z.ZodEnum<{
|
|
|
722
760
|
}>;
|
|
723
761
|
declare const PythonAiSchema: z.ZodEnum<{
|
|
724
762
|
none: "none";
|
|
763
|
+
mcp: "mcp";
|
|
725
764
|
langgraph: "langgraph";
|
|
726
765
|
"openai-sdk": "openai-sdk";
|
|
727
766
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -732,11 +771,16 @@ declare const PythonAiSchema: z.ZodEnum<{
|
|
|
732
771
|
haystack: "haystack";
|
|
733
772
|
"pydantic-ai": "pydantic-ai";
|
|
734
773
|
smolagents: "smolagents";
|
|
774
|
+
pytorch: "pytorch";
|
|
775
|
+
transformers: "transformers";
|
|
776
|
+
"scikit-learn": "scikit-learn";
|
|
777
|
+
tensorflow: "tensorflow";
|
|
735
778
|
}>;
|
|
736
779
|
declare const PythonAuthSchema: z.ZodEnum<{
|
|
737
780
|
none: "none";
|
|
738
781
|
authlib: "authlib";
|
|
739
782
|
jwt: "jwt";
|
|
783
|
+
pyjwt: "pyjwt";
|
|
740
784
|
"fastapi-users": "fastapi-users";
|
|
741
785
|
}>;
|
|
742
786
|
declare const PythonApiSchema: z.ZodEnum<{
|
|
@@ -767,6 +811,7 @@ declare const PythonTestingSchema: z.ZodEnum<{
|
|
|
767
811
|
none: "none";
|
|
768
812
|
pytest: "pytest";
|
|
769
813
|
hypothesis: "hypothesis";
|
|
814
|
+
"pytest-cov": "pytest-cov";
|
|
770
815
|
}>;
|
|
771
816
|
declare const PythonCachingSchema: z.ZodEnum<{
|
|
772
817
|
none: "none";
|
|
@@ -781,6 +826,7 @@ declare const PythonRealtimeSchema: z.ZodEnum<{
|
|
|
781
826
|
declare const PythonObservabilitySchema: z.ZodEnum<{
|
|
782
827
|
none: "none";
|
|
783
828
|
opentelemetry: "opentelemetry";
|
|
829
|
+
"prometheus-client": "prometheus-client";
|
|
784
830
|
}>;
|
|
785
831
|
declare const PythonCliSchema: z.ZodEnum<{
|
|
786
832
|
none: "none";
|
|
@@ -788,6 +834,37 @@ declare const PythonCliSchema: z.ZodEnum<{
|
|
|
788
834
|
click: "click";
|
|
789
835
|
rich: "rich";
|
|
790
836
|
}>;
|
|
837
|
+
declare const PythonCloudSdkSchema: z.ZodEnum<{
|
|
838
|
+
none: "none";
|
|
839
|
+
boto3: "boto3";
|
|
840
|
+
}>;
|
|
841
|
+
declare const PythonHttpClientSchema: z.ZodEnum<{
|
|
842
|
+
none: "none";
|
|
843
|
+
requests: "requests";
|
|
844
|
+
}>;
|
|
845
|
+
declare const PythonDataSchema: z.ZodEnum<{
|
|
846
|
+
none: "none";
|
|
847
|
+
numpy: "numpy";
|
|
848
|
+
pandas: "pandas";
|
|
849
|
+
scipy: "scipy";
|
|
850
|
+
}>;
|
|
851
|
+
declare const PythonMediaSchema: z.ZodEnum<{
|
|
852
|
+
none: "none";
|
|
853
|
+
pillow: "pillow";
|
|
854
|
+
}>;
|
|
855
|
+
declare const PythonServerSchema: z.ZodEnum<{
|
|
856
|
+
none: "none";
|
|
857
|
+
gunicorn: "gunicorn";
|
|
858
|
+
}>;
|
|
859
|
+
declare const PythonPackageManagerSchema: z.ZodEnum<{
|
|
860
|
+
none: "none";
|
|
861
|
+
uv: "uv";
|
|
862
|
+
poetry: "poetry";
|
|
863
|
+
}>;
|
|
864
|
+
declare const PythonMessageQueueSchema: z.ZodEnum<{
|
|
865
|
+
none: "none";
|
|
866
|
+
"confluent-kafka": "confluent-kafka";
|
|
867
|
+
}>;
|
|
791
868
|
declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
792
869
|
none: "none";
|
|
793
870
|
gin: "gin";
|
|
@@ -951,6 +1028,26 @@ declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
|
951
1028
|
thymeleaf: "thymeleaf";
|
|
952
1029
|
"spring-amqp": "spring-amqp";
|
|
953
1030
|
"opentelemetry-java": "opentelemetry-java";
|
|
1031
|
+
"spring-data-redis": "spring-data-redis";
|
|
1032
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
1033
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
1034
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
1035
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
1036
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
1037
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
1038
|
+
"spring-data-rest": "spring-data-rest";
|
|
1039
|
+
"spring-quartz": "spring-quartz";
|
|
1040
|
+
"spring-pulsar": "spring-pulsar";
|
|
1041
|
+
"spring-integration": "spring-integration";
|
|
1042
|
+
"spring-websocket": "spring-websocket";
|
|
1043
|
+
"spring-rsocket": "spring-rsocket";
|
|
1044
|
+
"spring-hateoas": "spring-hateoas";
|
|
1045
|
+
"spring-session-redis": "spring-session-redis";
|
|
1046
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
1047
|
+
"spring-ldap": "spring-ldap";
|
|
1048
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
1049
|
+
"spring-saml2": "spring-saml2";
|
|
1050
|
+
"spring-restclient": "spring-restclient";
|
|
954
1051
|
}>;
|
|
955
1052
|
declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
956
1053
|
none: "none";
|
|
@@ -1028,6 +1125,29 @@ declare const DotnetDeploySchema: z.ZodEnum<{
|
|
|
1028
1125
|
azure: "azure";
|
|
1029
1126
|
aws: "aws";
|
|
1030
1127
|
}>;
|
|
1128
|
+
declare const DotnetLibrariesSchema: z.ZodEnum<{
|
|
1129
|
+
none: "none";
|
|
1130
|
+
sentry: "sentry";
|
|
1131
|
+
automapper: "automapper";
|
|
1132
|
+
mediatr: "mediatr";
|
|
1133
|
+
fastendpoints: "fastendpoints";
|
|
1134
|
+
"api-versioning": "api-versioning";
|
|
1135
|
+
scalar: "scalar";
|
|
1136
|
+
polly: "polly";
|
|
1137
|
+
masstransit: "masstransit";
|
|
1138
|
+
rebus: "rebus";
|
|
1139
|
+
coravel: "coravel";
|
|
1140
|
+
"magic-onion": "magic-onion";
|
|
1141
|
+
"prometheus-net": "prometheus-net";
|
|
1142
|
+
seq: "seq";
|
|
1143
|
+
"application-insights": "application-insights";
|
|
1144
|
+
"mongodb-driver": "mongodb-driver";
|
|
1145
|
+
nhibernate: "nhibernate";
|
|
1146
|
+
mapster: "mapster";
|
|
1147
|
+
scrutor: "scrutor";
|
|
1148
|
+
refit: "refit";
|
|
1149
|
+
"fluent-email": "fluent-email";
|
|
1150
|
+
}>;
|
|
1031
1151
|
declare const ElixirWebFrameworkSchema: z.ZodEnum<{
|
|
1032
1152
|
none: "none";
|
|
1033
1153
|
phoenix: "phoenix";
|
|
@@ -1822,6 +1942,29 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1822
1942
|
none: "none";
|
|
1823
1943
|
"expo-linking": "expo-linking";
|
|
1824
1944
|
}>>;
|
|
1945
|
+
mobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1946
|
+
none: "none";
|
|
1947
|
+
"expo-sqlite": "expo-sqlite";
|
|
1948
|
+
"expo-camera": "expo-camera";
|
|
1949
|
+
"expo-image-picker": "expo-image-picker";
|
|
1950
|
+
"expo-location": "expo-location";
|
|
1951
|
+
"expo-sensors": "expo-sensors";
|
|
1952
|
+
"expo-file-system": "expo-file-system";
|
|
1953
|
+
"expo-image": "expo-image";
|
|
1954
|
+
"expo-audio": "expo-audio";
|
|
1955
|
+
"expo-video": "expo-video";
|
|
1956
|
+
"expo-contacts": "expo-contacts";
|
|
1957
|
+
"expo-calendar": "expo-calendar";
|
|
1958
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
1959
|
+
"expo-sharing": "expo-sharing";
|
|
1960
|
+
"expo-clipboard": "expo-clipboard";
|
|
1961
|
+
"expo-task-manager": "expo-task-manager";
|
|
1962
|
+
"expo-background-task": "expo-background-task";
|
|
1963
|
+
"expo-maps": "expo-maps";
|
|
1964
|
+
"expo-brightness": "expo-brightness";
|
|
1965
|
+
"expo-battery": "expo-battery";
|
|
1966
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
1967
|
+
}>>>;
|
|
1825
1968
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1826
1969
|
none: "none";
|
|
1827
1970
|
axum: "axum";
|
|
@@ -1935,6 +2078,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1935
2078
|
flask: "flask";
|
|
1936
2079
|
litestar: "litestar";
|
|
1937
2080
|
starlette: "starlette";
|
|
2081
|
+
aiohttp: "aiohttp";
|
|
2082
|
+
streamlit: "streamlit";
|
|
1938
2083
|
}>>;
|
|
1939
2084
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1940
2085
|
none: "none";
|
|
@@ -1942,6 +2087,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1942
2087
|
sqlmodel: "sqlmodel";
|
|
1943
2088
|
"tortoise-orm": "tortoise-orm";
|
|
1944
2089
|
peewee: "peewee";
|
|
2090
|
+
pymongo: "pymongo";
|
|
1945
2091
|
}>>;
|
|
1946
2092
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
1947
2093
|
none: "none";
|
|
@@ -1949,6 +2095,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1949
2095
|
}>>;
|
|
1950
2096
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1951
2097
|
none: "none";
|
|
2098
|
+
mcp: "mcp";
|
|
1952
2099
|
langgraph: "langgraph";
|
|
1953
2100
|
"openai-sdk": "openai-sdk";
|
|
1954
2101
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -1959,11 +2106,16 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1959
2106
|
haystack: "haystack";
|
|
1960
2107
|
"pydantic-ai": "pydantic-ai";
|
|
1961
2108
|
smolagents: "smolagents";
|
|
2109
|
+
pytorch: "pytorch";
|
|
2110
|
+
transformers: "transformers";
|
|
2111
|
+
"scikit-learn": "scikit-learn";
|
|
2112
|
+
tensorflow: "tensorflow";
|
|
1962
2113
|
}>>>;
|
|
1963
2114
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1964
2115
|
none: "none";
|
|
1965
2116
|
authlib: "authlib";
|
|
1966
2117
|
jwt: "jwt";
|
|
2118
|
+
pyjwt: "pyjwt";
|
|
1967
2119
|
"fastapi-users": "fastapi-users";
|
|
1968
2120
|
}>>;
|
|
1969
2121
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1994,6 +2146,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1994
2146
|
none: "none";
|
|
1995
2147
|
pytest: "pytest";
|
|
1996
2148
|
hypothesis: "hypothesis";
|
|
2149
|
+
"pytest-cov": "pytest-cov";
|
|
1997
2150
|
}>>>;
|
|
1998
2151
|
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
1999
2152
|
none: "none";
|
|
@@ -2008,6 +2161,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2008
2161
|
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
2009
2162
|
none: "none";
|
|
2010
2163
|
opentelemetry: "opentelemetry";
|
|
2164
|
+
"prometheus-client": "prometheus-client";
|
|
2011
2165
|
}>>;
|
|
2012
2166
|
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2013
2167
|
none: "none";
|
|
@@ -2015,6 +2169,37 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2015
2169
|
click: "click";
|
|
2016
2170
|
rich: "rich";
|
|
2017
2171
|
}>>>;
|
|
2172
|
+
pythonCloudSdk: z.ZodOptional<z.ZodEnum<{
|
|
2173
|
+
none: "none";
|
|
2174
|
+
boto3: "boto3";
|
|
2175
|
+
}>>;
|
|
2176
|
+
pythonHttpClient: z.ZodOptional<z.ZodEnum<{
|
|
2177
|
+
none: "none";
|
|
2178
|
+
requests: "requests";
|
|
2179
|
+
}>>;
|
|
2180
|
+
pythonData: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2181
|
+
none: "none";
|
|
2182
|
+
numpy: "numpy";
|
|
2183
|
+
pandas: "pandas";
|
|
2184
|
+
scipy: "scipy";
|
|
2185
|
+
}>>>;
|
|
2186
|
+
pythonMedia: z.ZodOptional<z.ZodEnum<{
|
|
2187
|
+
none: "none";
|
|
2188
|
+
pillow: "pillow";
|
|
2189
|
+
}>>;
|
|
2190
|
+
pythonServer: z.ZodOptional<z.ZodEnum<{
|
|
2191
|
+
none: "none";
|
|
2192
|
+
gunicorn: "gunicorn";
|
|
2193
|
+
}>>;
|
|
2194
|
+
pythonPackageManager: z.ZodOptional<z.ZodEnum<{
|
|
2195
|
+
none: "none";
|
|
2196
|
+
uv: "uv";
|
|
2197
|
+
poetry: "poetry";
|
|
2198
|
+
}>>;
|
|
2199
|
+
pythonMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
2200
|
+
none: "none";
|
|
2201
|
+
"confluent-kafka": "confluent-kafka";
|
|
2202
|
+
}>>;
|
|
2018
2203
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2019
2204
|
none: "none";
|
|
2020
2205
|
gin: "gin";
|
|
@@ -2178,6 +2363,26 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2178
2363
|
thymeleaf: "thymeleaf";
|
|
2179
2364
|
"spring-amqp": "spring-amqp";
|
|
2180
2365
|
"opentelemetry-java": "opentelemetry-java";
|
|
2366
|
+
"spring-data-redis": "spring-data-redis";
|
|
2367
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
2368
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
2369
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
2370
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
2371
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
2372
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
2373
|
+
"spring-data-rest": "spring-data-rest";
|
|
2374
|
+
"spring-quartz": "spring-quartz";
|
|
2375
|
+
"spring-pulsar": "spring-pulsar";
|
|
2376
|
+
"spring-integration": "spring-integration";
|
|
2377
|
+
"spring-websocket": "spring-websocket";
|
|
2378
|
+
"spring-rsocket": "spring-rsocket";
|
|
2379
|
+
"spring-hateoas": "spring-hateoas";
|
|
2380
|
+
"spring-session-redis": "spring-session-redis";
|
|
2381
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
2382
|
+
"spring-ldap": "spring-ldap";
|
|
2383
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
2384
|
+
"spring-saml2": "spring-saml2";
|
|
2385
|
+
"spring-restclient": "spring-restclient";
|
|
2181
2386
|
}>>>;
|
|
2182
2387
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2183
2388
|
none: "none";
|
|
@@ -2255,6 +2460,29 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2255
2460
|
azure: "azure";
|
|
2256
2461
|
aws: "aws";
|
|
2257
2462
|
}>>;
|
|
2463
|
+
dotnetLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2464
|
+
none: "none";
|
|
2465
|
+
sentry: "sentry";
|
|
2466
|
+
automapper: "automapper";
|
|
2467
|
+
mediatr: "mediatr";
|
|
2468
|
+
fastendpoints: "fastendpoints";
|
|
2469
|
+
"api-versioning": "api-versioning";
|
|
2470
|
+
scalar: "scalar";
|
|
2471
|
+
polly: "polly";
|
|
2472
|
+
masstransit: "masstransit";
|
|
2473
|
+
rebus: "rebus";
|
|
2474
|
+
coravel: "coravel";
|
|
2475
|
+
"magic-onion": "magic-onion";
|
|
2476
|
+
"prometheus-net": "prometheus-net";
|
|
2477
|
+
seq: "seq";
|
|
2478
|
+
"application-insights": "application-insights";
|
|
2479
|
+
"mongodb-driver": "mongodb-driver";
|
|
2480
|
+
nhibernate: "nhibernate";
|
|
2481
|
+
mapster: "mapster";
|
|
2482
|
+
scrutor: "scrutor";
|
|
2483
|
+
refit: "refit";
|
|
2484
|
+
"fluent-email": "fluent-email";
|
|
2485
|
+
}>>>;
|
|
2258
2486
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2259
2487
|
none: "none";
|
|
2260
2488
|
phoenix: "phoenix";
|
|
@@ -2916,6 +3144,29 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2916
3144
|
none: "none";
|
|
2917
3145
|
"expo-linking": "expo-linking";
|
|
2918
3146
|
}>>;
|
|
3147
|
+
mobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3148
|
+
none: "none";
|
|
3149
|
+
"expo-sqlite": "expo-sqlite";
|
|
3150
|
+
"expo-camera": "expo-camera";
|
|
3151
|
+
"expo-image-picker": "expo-image-picker";
|
|
3152
|
+
"expo-location": "expo-location";
|
|
3153
|
+
"expo-sensors": "expo-sensors";
|
|
3154
|
+
"expo-file-system": "expo-file-system";
|
|
3155
|
+
"expo-image": "expo-image";
|
|
3156
|
+
"expo-audio": "expo-audio";
|
|
3157
|
+
"expo-video": "expo-video";
|
|
3158
|
+
"expo-contacts": "expo-contacts";
|
|
3159
|
+
"expo-calendar": "expo-calendar";
|
|
3160
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
3161
|
+
"expo-sharing": "expo-sharing";
|
|
3162
|
+
"expo-clipboard": "expo-clipboard";
|
|
3163
|
+
"expo-task-manager": "expo-task-manager";
|
|
3164
|
+
"expo-background-task": "expo-background-task";
|
|
3165
|
+
"expo-maps": "expo-maps";
|
|
3166
|
+
"expo-brightness": "expo-brightness";
|
|
3167
|
+
"expo-battery": "expo-battery";
|
|
3168
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
3169
|
+
}>>>;
|
|
2919
3170
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2920
3171
|
none: "none";
|
|
2921
3172
|
axum: "axum";
|
|
@@ -3029,6 +3280,8 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3029
3280
|
flask: "flask";
|
|
3030
3281
|
litestar: "litestar";
|
|
3031
3282
|
starlette: "starlette";
|
|
3283
|
+
aiohttp: "aiohttp";
|
|
3284
|
+
streamlit: "streamlit";
|
|
3032
3285
|
}>>;
|
|
3033
3286
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
3034
3287
|
none: "none";
|
|
@@ -3036,6 +3289,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3036
3289
|
sqlmodel: "sqlmodel";
|
|
3037
3290
|
"tortoise-orm": "tortoise-orm";
|
|
3038
3291
|
peewee: "peewee";
|
|
3292
|
+
pymongo: "pymongo";
|
|
3039
3293
|
}>>;
|
|
3040
3294
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
3041
3295
|
none: "none";
|
|
@@ -3043,6 +3297,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3043
3297
|
}>>;
|
|
3044
3298
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3045
3299
|
none: "none";
|
|
3300
|
+
mcp: "mcp";
|
|
3046
3301
|
langgraph: "langgraph";
|
|
3047
3302
|
"openai-sdk": "openai-sdk";
|
|
3048
3303
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -3053,11 +3308,16 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3053
3308
|
haystack: "haystack";
|
|
3054
3309
|
"pydantic-ai": "pydantic-ai";
|
|
3055
3310
|
smolagents: "smolagents";
|
|
3311
|
+
pytorch: "pytorch";
|
|
3312
|
+
transformers: "transformers";
|
|
3313
|
+
"scikit-learn": "scikit-learn";
|
|
3314
|
+
tensorflow: "tensorflow";
|
|
3056
3315
|
}>>>;
|
|
3057
3316
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
3058
3317
|
none: "none";
|
|
3059
3318
|
authlib: "authlib";
|
|
3060
3319
|
jwt: "jwt";
|
|
3320
|
+
pyjwt: "pyjwt";
|
|
3061
3321
|
"fastapi-users": "fastapi-users";
|
|
3062
3322
|
}>>;
|
|
3063
3323
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3088,6 +3348,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3088
3348
|
none: "none";
|
|
3089
3349
|
pytest: "pytest";
|
|
3090
3350
|
hypothesis: "hypothesis";
|
|
3351
|
+
"pytest-cov": "pytest-cov";
|
|
3091
3352
|
}>>>;
|
|
3092
3353
|
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
3093
3354
|
none: "none";
|
|
@@ -3102,6 +3363,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3102
3363
|
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
3103
3364
|
none: "none";
|
|
3104
3365
|
opentelemetry: "opentelemetry";
|
|
3366
|
+
"prometheus-client": "prometheus-client";
|
|
3105
3367
|
}>>;
|
|
3106
3368
|
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3107
3369
|
none: "none";
|
|
@@ -3109,6 +3371,37 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3109
3371
|
click: "click";
|
|
3110
3372
|
rich: "rich";
|
|
3111
3373
|
}>>>;
|
|
3374
|
+
pythonCloudSdk: z.ZodOptional<z.ZodEnum<{
|
|
3375
|
+
none: "none";
|
|
3376
|
+
boto3: "boto3";
|
|
3377
|
+
}>>;
|
|
3378
|
+
pythonHttpClient: z.ZodOptional<z.ZodEnum<{
|
|
3379
|
+
none: "none";
|
|
3380
|
+
requests: "requests";
|
|
3381
|
+
}>>;
|
|
3382
|
+
pythonData: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3383
|
+
none: "none";
|
|
3384
|
+
numpy: "numpy";
|
|
3385
|
+
pandas: "pandas";
|
|
3386
|
+
scipy: "scipy";
|
|
3387
|
+
}>>>;
|
|
3388
|
+
pythonMedia: z.ZodOptional<z.ZodEnum<{
|
|
3389
|
+
none: "none";
|
|
3390
|
+
pillow: "pillow";
|
|
3391
|
+
}>>;
|
|
3392
|
+
pythonServer: z.ZodOptional<z.ZodEnum<{
|
|
3393
|
+
none: "none";
|
|
3394
|
+
gunicorn: "gunicorn";
|
|
3395
|
+
}>>;
|
|
3396
|
+
pythonPackageManager: z.ZodOptional<z.ZodEnum<{
|
|
3397
|
+
none: "none";
|
|
3398
|
+
uv: "uv";
|
|
3399
|
+
poetry: "poetry";
|
|
3400
|
+
}>>;
|
|
3401
|
+
pythonMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
3402
|
+
none: "none";
|
|
3403
|
+
"confluent-kafka": "confluent-kafka";
|
|
3404
|
+
}>>;
|
|
3112
3405
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
3113
3406
|
none: "none";
|
|
3114
3407
|
gin: "gin";
|
|
@@ -3272,6 +3565,26 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3272
3565
|
thymeleaf: "thymeleaf";
|
|
3273
3566
|
"spring-amqp": "spring-amqp";
|
|
3274
3567
|
"opentelemetry-java": "opentelemetry-java";
|
|
3568
|
+
"spring-data-redis": "spring-data-redis";
|
|
3569
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
3570
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
3571
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
3572
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
3573
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
3574
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
3575
|
+
"spring-data-rest": "spring-data-rest";
|
|
3576
|
+
"spring-quartz": "spring-quartz";
|
|
3577
|
+
"spring-pulsar": "spring-pulsar";
|
|
3578
|
+
"spring-integration": "spring-integration";
|
|
3579
|
+
"spring-websocket": "spring-websocket";
|
|
3580
|
+
"spring-rsocket": "spring-rsocket";
|
|
3581
|
+
"spring-hateoas": "spring-hateoas";
|
|
3582
|
+
"spring-session-redis": "spring-session-redis";
|
|
3583
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
3584
|
+
"spring-ldap": "spring-ldap";
|
|
3585
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
3586
|
+
"spring-saml2": "spring-saml2";
|
|
3587
|
+
"spring-restclient": "spring-restclient";
|
|
3275
3588
|
}>>>;
|
|
3276
3589
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3277
3590
|
none: "none";
|
|
@@ -3349,6 +3662,29 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3349
3662
|
azure: "azure";
|
|
3350
3663
|
aws: "aws";
|
|
3351
3664
|
}>>;
|
|
3665
|
+
dotnetLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3666
|
+
none: "none";
|
|
3667
|
+
sentry: "sentry";
|
|
3668
|
+
automapper: "automapper";
|
|
3669
|
+
mediatr: "mediatr";
|
|
3670
|
+
fastendpoints: "fastendpoints";
|
|
3671
|
+
"api-versioning": "api-versioning";
|
|
3672
|
+
scalar: "scalar";
|
|
3673
|
+
polly: "polly";
|
|
3674
|
+
masstransit: "masstransit";
|
|
3675
|
+
rebus: "rebus";
|
|
3676
|
+
coravel: "coravel";
|
|
3677
|
+
"magic-onion": "magic-onion";
|
|
3678
|
+
"prometheus-net": "prometheus-net";
|
|
3679
|
+
seq: "seq";
|
|
3680
|
+
"application-insights": "application-insights";
|
|
3681
|
+
"mongodb-driver": "mongodb-driver";
|
|
3682
|
+
nhibernate: "nhibernate";
|
|
3683
|
+
mapster: "mapster";
|
|
3684
|
+
scrutor: "scrutor";
|
|
3685
|
+
refit: "refit";
|
|
3686
|
+
"fluent-email": "fluent-email";
|
|
3687
|
+
}>>>;
|
|
3352
3688
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
3353
3689
|
none: "none";
|
|
3354
3690
|
phoenix: "phoenix";
|
|
@@ -4035,6 +4371,29 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4035
4371
|
none: "none";
|
|
4036
4372
|
"expo-linking": "expo-linking";
|
|
4037
4373
|
}>>;
|
|
4374
|
+
mobileLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4375
|
+
none: "none";
|
|
4376
|
+
"expo-sqlite": "expo-sqlite";
|
|
4377
|
+
"expo-camera": "expo-camera";
|
|
4378
|
+
"expo-image-picker": "expo-image-picker";
|
|
4379
|
+
"expo-location": "expo-location";
|
|
4380
|
+
"expo-sensors": "expo-sensors";
|
|
4381
|
+
"expo-file-system": "expo-file-system";
|
|
4382
|
+
"expo-image": "expo-image";
|
|
4383
|
+
"expo-audio": "expo-audio";
|
|
4384
|
+
"expo-video": "expo-video";
|
|
4385
|
+
"expo-contacts": "expo-contacts";
|
|
4386
|
+
"expo-calendar": "expo-calendar";
|
|
4387
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
4388
|
+
"expo-sharing": "expo-sharing";
|
|
4389
|
+
"expo-clipboard": "expo-clipboard";
|
|
4390
|
+
"expo-task-manager": "expo-task-manager";
|
|
4391
|
+
"expo-background-task": "expo-background-task";
|
|
4392
|
+
"expo-maps": "expo-maps";
|
|
4393
|
+
"expo-brightness": "expo-brightness";
|
|
4394
|
+
"expo-battery": "expo-battery";
|
|
4395
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
4396
|
+
}>>>;
|
|
4038
4397
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
4039
4398
|
none: "none";
|
|
4040
4399
|
axum: "axum";
|
|
@@ -4148,6 +4507,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4148
4507
|
flask: "flask";
|
|
4149
4508
|
litestar: "litestar";
|
|
4150
4509
|
starlette: "starlette";
|
|
4510
|
+
aiohttp: "aiohttp";
|
|
4511
|
+
streamlit: "streamlit";
|
|
4151
4512
|
}>>;
|
|
4152
4513
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
4153
4514
|
none: "none";
|
|
@@ -4155,6 +4516,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4155
4516
|
sqlmodel: "sqlmodel";
|
|
4156
4517
|
"tortoise-orm": "tortoise-orm";
|
|
4157
4518
|
peewee: "peewee";
|
|
4519
|
+
pymongo: "pymongo";
|
|
4158
4520
|
}>>;
|
|
4159
4521
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
4160
4522
|
none: "none";
|
|
@@ -4162,6 +4524,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4162
4524
|
}>>;
|
|
4163
4525
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4164
4526
|
none: "none";
|
|
4527
|
+
mcp: "mcp";
|
|
4165
4528
|
langgraph: "langgraph";
|
|
4166
4529
|
"openai-sdk": "openai-sdk";
|
|
4167
4530
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -4172,11 +4535,16 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4172
4535
|
haystack: "haystack";
|
|
4173
4536
|
"pydantic-ai": "pydantic-ai";
|
|
4174
4537
|
smolagents: "smolagents";
|
|
4538
|
+
pytorch: "pytorch";
|
|
4539
|
+
transformers: "transformers";
|
|
4540
|
+
"scikit-learn": "scikit-learn";
|
|
4541
|
+
tensorflow: "tensorflow";
|
|
4175
4542
|
}>>>;
|
|
4176
4543
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
4177
4544
|
none: "none";
|
|
4178
4545
|
authlib: "authlib";
|
|
4179
4546
|
jwt: "jwt";
|
|
4547
|
+
pyjwt: "pyjwt";
|
|
4180
4548
|
"fastapi-users": "fastapi-users";
|
|
4181
4549
|
}>>;
|
|
4182
4550
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4207,6 +4575,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4207
4575
|
none: "none";
|
|
4208
4576
|
pytest: "pytest";
|
|
4209
4577
|
hypothesis: "hypothesis";
|
|
4578
|
+
"pytest-cov": "pytest-cov";
|
|
4210
4579
|
}>>>;
|
|
4211
4580
|
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
4212
4581
|
none: "none";
|
|
@@ -4221,6 +4590,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4221
4590
|
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
4222
4591
|
none: "none";
|
|
4223
4592
|
opentelemetry: "opentelemetry";
|
|
4593
|
+
"prometheus-client": "prometheus-client";
|
|
4224
4594
|
}>>;
|
|
4225
4595
|
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4226
4596
|
none: "none";
|
|
@@ -4228,6 +4598,37 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4228
4598
|
click: "click";
|
|
4229
4599
|
rich: "rich";
|
|
4230
4600
|
}>>>;
|
|
4601
|
+
pythonCloudSdk: z.ZodOptional<z.ZodEnum<{
|
|
4602
|
+
none: "none";
|
|
4603
|
+
boto3: "boto3";
|
|
4604
|
+
}>>;
|
|
4605
|
+
pythonHttpClient: z.ZodOptional<z.ZodEnum<{
|
|
4606
|
+
none: "none";
|
|
4607
|
+
requests: "requests";
|
|
4608
|
+
}>>;
|
|
4609
|
+
pythonData: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4610
|
+
none: "none";
|
|
4611
|
+
numpy: "numpy";
|
|
4612
|
+
pandas: "pandas";
|
|
4613
|
+
scipy: "scipy";
|
|
4614
|
+
}>>>;
|
|
4615
|
+
pythonMedia: z.ZodOptional<z.ZodEnum<{
|
|
4616
|
+
none: "none";
|
|
4617
|
+
pillow: "pillow";
|
|
4618
|
+
}>>;
|
|
4619
|
+
pythonServer: z.ZodOptional<z.ZodEnum<{
|
|
4620
|
+
none: "none";
|
|
4621
|
+
gunicorn: "gunicorn";
|
|
4622
|
+
}>>;
|
|
4623
|
+
pythonPackageManager: z.ZodOptional<z.ZodEnum<{
|
|
4624
|
+
none: "none";
|
|
4625
|
+
uv: "uv";
|
|
4626
|
+
poetry: "poetry";
|
|
4627
|
+
}>>;
|
|
4628
|
+
pythonMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
4629
|
+
none: "none";
|
|
4630
|
+
"confluent-kafka": "confluent-kafka";
|
|
4631
|
+
}>>;
|
|
4231
4632
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
4232
4633
|
none: "none";
|
|
4233
4634
|
gin: "gin";
|
|
@@ -4391,6 +4792,26 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4391
4792
|
thymeleaf: "thymeleaf";
|
|
4392
4793
|
"spring-amqp": "spring-amqp";
|
|
4393
4794
|
"opentelemetry-java": "opentelemetry-java";
|
|
4795
|
+
"spring-data-redis": "spring-data-redis";
|
|
4796
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
4797
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
4798
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
4799
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
4800
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
4801
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
4802
|
+
"spring-data-rest": "spring-data-rest";
|
|
4803
|
+
"spring-quartz": "spring-quartz";
|
|
4804
|
+
"spring-pulsar": "spring-pulsar";
|
|
4805
|
+
"spring-integration": "spring-integration";
|
|
4806
|
+
"spring-websocket": "spring-websocket";
|
|
4807
|
+
"spring-rsocket": "spring-rsocket";
|
|
4808
|
+
"spring-hateoas": "spring-hateoas";
|
|
4809
|
+
"spring-session-redis": "spring-session-redis";
|
|
4810
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
4811
|
+
"spring-ldap": "spring-ldap";
|
|
4812
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
4813
|
+
"spring-saml2": "spring-saml2";
|
|
4814
|
+
"spring-restclient": "spring-restclient";
|
|
4394
4815
|
}>>>;
|
|
4395
4816
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4396
4817
|
none: "none";
|
|
@@ -4468,6 +4889,29 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4468
4889
|
azure: "azure";
|
|
4469
4890
|
aws: "aws";
|
|
4470
4891
|
}>>;
|
|
4892
|
+
dotnetLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4893
|
+
none: "none";
|
|
4894
|
+
sentry: "sentry";
|
|
4895
|
+
automapper: "automapper";
|
|
4896
|
+
mediatr: "mediatr";
|
|
4897
|
+
fastendpoints: "fastendpoints";
|
|
4898
|
+
"api-versioning": "api-versioning";
|
|
4899
|
+
scalar: "scalar";
|
|
4900
|
+
polly: "polly";
|
|
4901
|
+
masstransit: "masstransit";
|
|
4902
|
+
rebus: "rebus";
|
|
4903
|
+
coravel: "coravel";
|
|
4904
|
+
"magic-onion": "magic-onion";
|
|
4905
|
+
"prometheus-net": "prometheus-net";
|
|
4906
|
+
seq: "seq";
|
|
4907
|
+
"application-insights": "application-insights";
|
|
4908
|
+
"mongodb-driver": "mongodb-driver";
|
|
4909
|
+
nhibernate: "nhibernate";
|
|
4910
|
+
mapster: "mapster";
|
|
4911
|
+
scrutor: "scrutor";
|
|
4912
|
+
refit: "refit";
|
|
4913
|
+
"fluent-email": "fluent-email";
|
|
4914
|
+
}>>>;
|
|
4471
4915
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
4472
4916
|
none: "none";
|
|
4473
4917
|
phoenix: "phoenix";
|
|
@@ -5133,6 +5577,29 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5133
5577
|
none: "none";
|
|
5134
5578
|
"expo-linking": "expo-linking";
|
|
5135
5579
|
}>;
|
|
5580
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
5581
|
+
none: "none";
|
|
5582
|
+
"expo-sqlite": "expo-sqlite";
|
|
5583
|
+
"expo-camera": "expo-camera";
|
|
5584
|
+
"expo-image-picker": "expo-image-picker";
|
|
5585
|
+
"expo-location": "expo-location";
|
|
5586
|
+
"expo-sensors": "expo-sensors";
|
|
5587
|
+
"expo-file-system": "expo-file-system";
|
|
5588
|
+
"expo-image": "expo-image";
|
|
5589
|
+
"expo-audio": "expo-audio";
|
|
5590
|
+
"expo-video": "expo-video";
|
|
5591
|
+
"expo-contacts": "expo-contacts";
|
|
5592
|
+
"expo-calendar": "expo-calendar";
|
|
5593
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
5594
|
+
"expo-sharing": "expo-sharing";
|
|
5595
|
+
"expo-clipboard": "expo-clipboard";
|
|
5596
|
+
"expo-task-manager": "expo-task-manager";
|
|
5597
|
+
"expo-background-task": "expo-background-task";
|
|
5598
|
+
"expo-maps": "expo-maps";
|
|
5599
|
+
"expo-brightness": "expo-brightness";
|
|
5600
|
+
"expo-battery": "expo-battery";
|
|
5601
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
5602
|
+
}>>;
|
|
5136
5603
|
rustWebFramework: z.ZodEnum<{
|
|
5137
5604
|
none: "none";
|
|
5138
5605
|
axum: "axum";
|
|
@@ -5246,6 +5713,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5246
5713
|
flask: "flask";
|
|
5247
5714
|
litestar: "litestar";
|
|
5248
5715
|
starlette: "starlette";
|
|
5716
|
+
aiohttp: "aiohttp";
|
|
5717
|
+
streamlit: "streamlit";
|
|
5249
5718
|
}>;
|
|
5250
5719
|
pythonOrm: z.ZodEnum<{
|
|
5251
5720
|
none: "none";
|
|
@@ -5253,6 +5722,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5253
5722
|
sqlmodel: "sqlmodel";
|
|
5254
5723
|
"tortoise-orm": "tortoise-orm";
|
|
5255
5724
|
peewee: "peewee";
|
|
5725
|
+
pymongo: "pymongo";
|
|
5256
5726
|
}>;
|
|
5257
5727
|
pythonValidation: z.ZodEnum<{
|
|
5258
5728
|
none: "none";
|
|
@@ -5260,6 +5730,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5260
5730
|
}>;
|
|
5261
5731
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
5262
5732
|
none: "none";
|
|
5733
|
+
mcp: "mcp";
|
|
5263
5734
|
langgraph: "langgraph";
|
|
5264
5735
|
"openai-sdk": "openai-sdk";
|
|
5265
5736
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -5270,11 +5741,16 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5270
5741
|
haystack: "haystack";
|
|
5271
5742
|
"pydantic-ai": "pydantic-ai";
|
|
5272
5743
|
smolagents: "smolagents";
|
|
5744
|
+
pytorch: "pytorch";
|
|
5745
|
+
transformers: "transformers";
|
|
5746
|
+
"scikit-learn": "scikit-learn";
|
|
5747
|
+
tensorflow: "tensorflow";
|
|
5273
5748
|
}>>;
|
|
5274
5749
|
pythonAuth: z.ZodEnum<{
|
|
5275
5750
|
none: "none";
|
|
5276
5751
|
authlib: "authlib";
|
|
5277
5752
|
jwt: "jwt";
|
|
5753
|
+
pyjwt: "pyjwt";
|
|
5278
5754
|
"fastapi-users": "fastapi-users";
|
|
5279
5755
|
}>;
|
|
5280
5756
|
pythonApi: z.ZodEnum<{
|
|
@@ -5305,6 +5781,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5305
5781
|
none: "none";
|
|
5306
5782
|
pytest: "pytest";
|
|
5307
5783
|
hypothesis: "hypothesis";
|
|
5784
|
+
"pytest-cov": "pytest-cov";
|
|
5308
5785
|
}>>;
|
|
5309
5786
|
pythonCaching: z.ZodEnum<{
|
|
5310
5787
|
none: "none";
|
|
@@ -5319,6 +5796,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5319
5796
|
pythonObservability: z.ZodEnum<{
|
|
5320
5797
|
none: "none";
|
|
5321
5798
|
opentelemetry: "opentelemetry";
|
|
5799
|
+
"prometheus-client": "prometheus-client";
|
|
5322
5800
|
}>;
|
|
5323
5801
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
5324
5802
|
none: "none";
|
|
@@ -5326,6 +5804,37 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5326
5804
|
click: "click";
|
|
5327
5805
|
rich: "rich";
|
|
5328
5806
|
}>>;
|
|
5807
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
5808
|
+
none: "none";
|
|
5809
|
+
boto3: "boto3";
|
|
5810
|
+
}>;
|
|
5811
|
+
pythonHttpClient: z.ZodEnum<{
|
|
5812
|
+
none: "none";
|
|
5813
|
+
requests: "requests";
|
|
5814
|
+
}>;
|
|
5815
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
5816
|
+
none: "none";
|
|
5817
|
+
numpy: "numpy";
|
|
5818
|
+
pandas: "pandas";
|
|
5819
|
+
scipy: "scipy";
|
|
5820
|
+
}>>;
|
|
5821
|
+
pythonMedia: z.ZodEnum<{
|
|
5822
|
+
none: "none";
|
|
5823
|
+
pillow: "pillow";
|
|
5824
|
+
}>;
|
|
5825
|
+
pythonServer: z.ZodEnum<{
|
|
5826
|
+
none: "none";
|
|
5827
|
+
gunicorn: "gunicorn";
|
|
5828
|
+
}>;
|
|
5829
|
+
pythonPackageManager: z.ZodEnum<{
|
|
5830
|
+
none: "none";
|
|
5831
|
+
uv: "uv";
|
|
5832
|
+
poetry: "poetry";
|
|
5833
|
+
}>;
|
|
5834
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
5835
|
+
none: "none";
|
|
5836
|
+
"confluent-kafka": "confluent-kafka";
|
|
5837
|
+
}>;
|
|
5329
5838
|
goWebFramework: z.ZodEnum<{
|
|
5330
5839
|
none: "none";
|
|
5331
5840
|
gin: "gin";
|
|
@@ -5489,6 +5998,26 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5489
5998
|
thymeleaf: "thymeleaf";
|
|
5490
5999
|
"spring-amqp": "spring-amqp";
|
|
5491
6000
|
"opentelemetry-java": "opentelemetry-java";
|
|
6001
|
+
"spring-data-redis": "spring-data-redis";
|
|
6002
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
6003
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
6004
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
6005
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
6006
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
6007
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
6008
|
+
"spring-data-rest": "spring-data-rest";
|
|
6009
|
+
"spring-quartz": "spring-quartz";
|
|
6010
|
+
"spring-pulsar": "spring-pulsar";
|
|
6011
|
+
"spring-integration": "spring-integration";
|
|
6012
|
+
"spring-websocket": "spring-websocket";
|
|
6013
|
+
"spring-rsocket": "spring-rsocket";
|
|
6014
|
+
"spring-hateoas": "spring-hateoas";
|
|
6015
|
+
"spring-session-redis": "spring-session-redis";
|
|
6016
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
6017
|
+
"spring-ldap": "spring-ldap";
|
|
6018
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
6019
|
+
"spring-saml2": "spring-saml2";
|
|
6020
|
+
"spring-restclient": "spring-restclient";
|
|
5492
6021
|
}>>;
|
|
5493
6022
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
5494
6023
|
none: "none";
|
|
@@ -5566,6 +6095,29 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5566
6095
|
azure: "azure";
|
|
5567
6096
|
aws: "aws";
|
|
5568
6097
|
}>;
|
|
6098
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
6099
|
+
none: "none";
|
|
6100
|
+
sentry: "sentry";
|
|
6101
|
+
automapper: "automapper";
|
|
6102
|
+
mediatr: "mediatr";
|
|
6103
|
+
fastendpoints: "fastendpoints";
|
|
6104
|
+
"api-versioning": "api-versioning";
|
|
6105
|
+
scalar: "scalar";
|
|
6106
|
+
polly: "polly";
|
|
6107
|
+
masstransit: "masstransit";
|
|
6108
|
+
rebus: "rebus";
|
|
6109
|
+
coravel: "coravel";
|
|
6110
|
+
"magic-onion": "magic-onion";
|
|
6111
|
+
"prometheus-net": "prometheus-net";
|
|
6112
|
+
seq: "seq";
|
|
6113
|
+
"application-insights": "application-insights";
|
|
6114
|
+
"mongodb-driver": "mongodb-driver";
|
|
6115
|
+
nhibernate: "nhibernate";
|
|
6116
|
+
mapster: "mapster";
|
|
6117
|
+
scrutor: "scrutor";
|
|
6118
|
+
refit: "refit";
|
|
6119
|
+
"fluent-email": "fluent-email";
|
|
6120
|
+
}>>;
|
|
5569
6121
|
elixirWebFramework: z.ZodEnum<{
|
|
5570
6122
|
none: "none";
|
|
5571
6123
|
phoenix: "phoenix";
|
|
@@ -5707,6 +6259,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5707
6259
|
payments: "payments";
|
|
5708
6260
|
frontend: "frontend";
|
|
5709
6261
|
examples: "examples";
|
|
6262
|
+
packageManager: "packageManager";
|
|
5710
6263
|
dbSetup: "dbSetup";
|
|
5711
6264
|
backend: "backend";
|
|
5712
6265
|
runtime: "runtime";
|
|
@@ -5755,6 +6308,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5755
6308
|
httpClient: "httpClient";
|
|
5756
6309
|
libraries: "libraries";
|
|
5757
6310
|
templating: "templating";
|
|
6311
|
+
cloudSdk: "cloudSdk";
|
|
6312
|
+
data: "data";
|
|
6313
|
+
media: "media";
|
|
6314
|
+
server: "server";
|
|
6315
|
+
messageQueue: "messageQueue";
|
|
5758
6316
|
}>;
|
|
5759
6317
|
toolId: z.ZodString;
|
|
5760
6318
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -6311,6 +6869,29 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6311
6869
|
none: "none";
|
|
6312
6870
|
"expo-linking": "expo-linking";
|
|
6313
6871
|
}>;
|
|
6872
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
6873
|
+
none: "none";
|
|
6874
|
+
"expo-sqlite": "expo-sqlite";
|
|
6875
|
+
"expo-camera": "expo-camera";
|
|
6876
|
+
"expo-image-picker": "expo-image-picker";
|
|
6877
|
+
"expo-location": "expo-location";
|
|
6878
|
+
"expo-sensors": "expo-sensors";
|
|
6879
|
+
"expo-file-system": "expo-file-system";
|
|
6880
|
+
"expo-image": "expo-image";
|
|
6881
|
+
"expo-audio": "expo-audio";
|
|
6882
|
+
"expo-video": "expo-video";
|
|
6883
|
+
"expo-contacts": "expo-contacts";
|
|
6884
|
+
"expo-calendar": "expo-calendar";
|
|
6885
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
6886
|
+
"expo-sharing": "expo-sharing";
|
|
6887
|
+
"expo-clipboard": "expo-clipboard";
|
|
6888
|
+
"expo-task-manager": "expo-task-manager";
|
|
6889
|
+
"expo-background-task": "expo-background-task";
|
|
6890
|
+
"expo-maps": "expo-maps";
|
|
6891
|
+
"expo-brightness": "expo-brightness";
|
|
6892
|
+
"expo-battery": "expo-battery";
|
|
6893
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
6894
|
+
}>>;
|
|
6314
6895
|
rustWebFramework: z.ZodEnum<{
|
|
6315
6896
|
none: "none";
|
|
6316
6897
|
axum: "axum";
|
|
@@ -6424,6 +7005,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6424
7005
|
flask: "flask";
|
|
6425
7006
|
litestar: "litestar";
|
|
6426
7007
|
starlette: "starlette";
|
|
7008
|
+
aiohttp: "aiohttp";
|
|
7009
|
+
streamlit: "streamlit";
|
|
6427
7010
|
}>;
|
|
6428
7011
|
pythonOrm: z.ZodEnum<{
|
|
6429
7012
|
none: "none";
|
|
@@ -6431,6 +7014,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6431
7014
|
sqlmodel: "sqlmodel";
|
|
6432
7015
|
"tortoise-orm": "tortoise-orm";
|
|
6433
7016
|
peewee: "peewee";
|
|
7017
|
+
pymongo: "pymongo";
|
|
6434
7018
|
}>;
|
|
6435
7019
|
pythonValidation: z.ZodEnum<{
|
|
6436
7020
|
none: "none";
|
|
@@ -6438,6 +7022,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6438
7022
|
}>;
|
|
6439
7023
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
6440
7024
|
none: "none";
|
|
7025
|
+
mcp: "mcp";
|
|
6441
7026
|
langgraph: "langgraph";
|
|
6442
7027
|
"openai-sdk": "openai-sdk";
|
|
6443
7028
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -6448,11 +7033,16 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6448
7033
|
haystack: "haystack";
|
|
6449
7034
|
"pydantic-ai": "pydantic-ai";
|
|
6450
7035
|
smolagents: "smolagents";
|
|
7036
|
+
pytorch: "pytorch";
|
|
7037
|
+
transformers: "transformers";
|
|
7038
|
+
"scikit-learn": "scikit-learn";
|
|
7039
|
+
tensorflow: "tensorflow";
|
|
6451
7040
|
}>>;
|
|
6452
7041
|
pythonAuth: z.ZodEnum<{
|
|
6453
7042
|
none: "none";
|
|
6454
7043
|
authlib: "authlib";
|
|
6455
7044
|
jwt: "jwt";
|
|
7045
|
+
pyjwt: "pyjwt";
|
|
6456
7046
|
"fastapi-users": "fastapi-users";
|
|
6457
7047
|
}>;
|
|
6458
7048
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6483,6 +7073,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6483
7073
|
none: "none";
|
|
6484
7074
|
pytest: "pytest";
|
|
6485
7075
|
hypothesis: "hypothesis";
|
|
7076
|
+
"pytest-cov": "pytest-cov";
|
|
6486
7077
|
}>>;
|
|
6487
7078
|
pythonCaching: z.ZodEnum<{
|
|
6488
7079
|
none: "none";
|
|
@@ -6497,6 +7088,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6497
7088
|
pythonObservability: z.ZodEnum<{
|
|
6498
7089
|
none: "none";
|
|
6499
7090
|
opentelemetry: "opentelemetry";
|
|
7091
|
+
"prometheus-client": "prometheus-client";
|
|
6500
7092
|
}>;
|
|
6501
7093
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
6502
7094
|
none: "none";
|
|
@@ -6504,6 +7096,37 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6504
7096
|
click: "click";
|
|
6505
7097
|
rich: "rich";
|
|
6506
7098
|
}>>;
|
|
7099
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
7100
|
+
none: "none";
|
|
7101
|
+
boto3: "boto3";
|
|
7102
|
+
}>;
|
|
7103
|
+
pythonHttpClient: z.ZodEnum<{
|
|
7104
|
+
none: "none";
|
|
7105
|
+
requests: "requests";
|
|
7106
|
+
}>;
|
|
7107
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
7108
|
+
none: "none";
|
|
7109
|
+
numpy: "numpy";
|
|
7110
|
+
pandas: "pandas";
|
|
7111
|
+
scipy: "scipy";
|
|
7112
|
+
}>>;
|
|
7113
|
+
pythonMedia: z.ZodEnum<{
|
|
7114
|
+
none: "none";
|
|
7115
|
+
pillow: "pillow";
|
|
7116
|
+
}>;
|
|
7117
|
+
pythonServer: z.ZodEnum<{
|
|
7118
|
+
none: "none";
|
|
7119
|
+
gunicorn: "gunicorn";
|
|
7120
|
+
}>;
|
|
7121
|
+
pythonPackageManager: z.ZodEnum<{
|
|
7122
|
+
none: "none";
|
|
7123
|
+
uv: "uv";
|
|
7124
|
+
poetry: "poetry";
|
|
7125
|
+
}>;
|
|
7126
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
7127
|
+
none: "none";
|
|
7128
|
+
"confluent-kafka": "confluent-kafka";
|
|
7129
|
+
}>;
|
|
6507
7130
|
goWebFramework: z.ZodEnum<{
|
|
6508
7131
|
none: "none";
|
|
6509
7132
|
gin: "gin";
|
|
@@ -6667,6 +7290,26 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6667
7290
|
thymeleaf: "thymeleaf";
|
|
6668
7291
|
"spring-amqp": "spring-amqp";
|
|
6669
7292
|
"opentelemetry-java": "opentelemetry-java";
|
|
7293
|
+
"spring-data-redis": "spring-data-redis";
|
|
7294
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
7295
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
7296
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
7297
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
7298
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
7299
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
7300
|
+
"spring-data-rest": "spring-data-rest";
|
|
7301
|
+
"spring-quartz": "spring-quartz";
|
|
7302
|
+
"spring-pulsar": "spring-pulsar";
|
|
7303
|
+
"spring-integration": "spring-integration";
|
|
7304
|
+
"spring-websocket": "spring-websocket";
|
|
7305
|
+
"spring-rsocket": "spring-rsocket";
|
|
7306
|
+
"spring-hateoas": "spring-hateoas";
|
|
7307
|
+
"spring-session-redis": "spring-session-redis";
|
|
7308
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
7309
|
+
"spring-ldap": "spring-ldap";
|
|
7310
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
7311
|
+
"spring-saml2": "spring-saml2";
|
|
7312
|
+
"spring-restclient": "spring-restclient";
|
|
6670
7313
|
}>>;
|
|
6671
7314
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
6672
7315
|
none: "none";
|
|
@@ -6744,6 +7387,29 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6744
7387
|
azure: "azure";
|
|
6745
7388
|
aws: "aws";
|
|
6746
7389
|
}>;
|
|
7390
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
7391
|
+
none: "none";
|
|
7392
|
+
sentry: "sentry";
|
|
7393
|
+
automapper: "automapper";
|
|
7394
|
+
mediatr: "mediatr";
|
|
7395
|
+
fastendpoints: "fastendpoints";
|
|
7396
|
+
"api-versioning": "api-versioning";
|
|
7397
|
+
scalar: "scalar";
|
|
7398
|
+
polly: "polly";
|
|
7399
|
+
masstransit: "masstransit";
|
|
7400
|
+
rebus: "rebus";
|
|
7401
|
+
coravel: "coravel";
|
|
7402
|
+
"magic-onion": "magic-onion";
|
|
7403
|
+
"prometheus-net": "prometheus-net";
|
|
7404
|
+
seq: "seq";
|
|
7405
|
+
"application-insights": "application-insights";
|
|
7406
|
+
"mongodb-driver": "mongodb-driver";
|
|
7407
|
+
nhibernate: "nhibernate";
|
|
7408
|
+
mapster: "mapster";
|
|
7409
|
+
scrutor: "scrutor";
|
|
7410
|
+
refit: "refit";
|
|
7411
|
+
"fluent-email": "fluent-email";
|
|
7412
|
+
}>>;
|
|
6747
7413
|
elixirWebFramework: z.ZodEnum<{
|
|
6748
7414
|
none: "none";
|
|
6749
7415
|
phoenix: "phoenix";
|
|
@@ -6885,6 +7551,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6885
7551
|
payments: "payments";
|
|
6886
7552
|
frontend: "frontend";
|
|
6887
7553
|
examples: "examples";
|
|
7554
|
+
packageManager: "packageManager";
|
|
6888
7555
|
dbSetup: "dbSetup";
|
|
6889
7556
|
backend: "backend";
|
|
6890
7557
|
runtime: "runtime";
|
|
@@ -6933,6 +7600,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6933
7600
|
httpClient: "httpClient";
|
|
6934
7601
|
libraries: "libraries";
|
|
6935
7602
|
templating: "templating";
|
|
7603
|
+
cloudSdk: "cloudSdk";
|
|
7604
|
+
data: "data";
|
|
7605
|
+
media: "media";
|
|
7606
|
+
server: "server";
|
|
7607
|
+
messageQueue: "messageQueue";
|
|
6936
7608
|
}>;
|
|
6937
7609
|
toolId: z.ZodString;
|
|
6938
7610
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -7489,6 +8161,29 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7489
8161
|
none: "none";
|
|
7490
8162
|
"expo-linking": "expo-linking";
|
|
7491
8163
|
}>;
|
|
8164
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
8165
|
+
none: "none";
|
|
8166
|
+
"expo-sqlite": "expo-sqlite";
|
|
8167
|
+
"expo-camera": "expo-camera";
|
|
8168
|
+
"expo-image-picker": "expo-image-picker";
|
|
8169
|
+
"expo-location": "expo-location";
|
|
8170
|
+
"expo-sensors": "expo-sensors";
|
|
8171
|
+
"expo-file-system": "expo-file-system";
|
|
8172
|
+
"expo-image": "expo-image";
|
|
8173
|
+
"expo-audio": "expo-audio";
|
|
8174
|
+
"expo-video": "expo-video";
|
|
8175
|
+
"expo-contacts": "expo-contacts";
|
|
8176
|
+
"expo-calendar": "expo-calendar";
|
|
8177
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
8178
|
+
"expo-sharing": "expo-sharing";
|
|
8179
|
+
"expo-clipboard": "expo-clipboard";
|
|
8180
|
+
"expo-task-manager": "expo-task-manager";
|
|
8181
|
+
"expo-background-task": "expo-background-task";
|
|
8182
|
+
"expo-maps": "expo-maps";
|
|
8183
|
+
"expo-brightness": "expo-brightness";
|
|
8184
|
+
"expo-battery": "expo-battery";
|
|
8185
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
8186
|
+
}>>;
|
|
7492
8187
|
rustWebFramework: z.ZodEnum<{
|
|
7493
8188
|
none: "none";
|
|
7494
8189
|
axum: "axum";
|
|
@@ -7602,6 +8297,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7602
8297
|
flask: "flask";
|
|
7603
8298
|
litestar: "litestar";
|
|
7604
8299
|
starlette: "starlette";
|
|
8300
|
+
aiohttp: "aiohttp";
|
|
8301
|
+
streamlit: "streamlit";
|
|
7605
8302
|
}>;
|
|
7606
8303
|
pythonOrm: z.ZodEnum<{
|
|
7607
8304
|
none: "none";
|
|
@@ -7609,6 +8306,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7609
8306
|
sqlmodel: "sqlmodel";
|
|
7610
8307
|
"tortoise-orm": "tortoise-orm";
|
|
7611
8308
|
peewee: "peewee";
|
|
8309
|
+
pymongo: "pymongo";
|
|
7612
8310
|
}>;
|
|
7613
8311
|
pythonValidation: z.ZodEnum<{
|
|
7614
8312
|
none: "none";
|
|
@@ -7616,6 +8314,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7616
8314
|
}>;
|
|
7617
8315
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
7618
8316
|
none: "none";
|
|
8317
|
+
mcp: "mcp";
|
|
7619
8318
|
langgraph: "langgraph";
|
|
7620
8319
|
"openai-sdk": "openai-sdk";
|
|
7621
8320
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -7626,11 +8325,16 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7626
8325
|
haystack: "haystack";
|
|
7627
8326
|
"pydantic-ai": "pydantic-ai";
|
|
7628
8327
|
smolagents: "smolagents";
|
|
8328
|
+
pytorch: "pytorch";
|
|
8329
|
+
transformers: "transformers";
|
|
8330
|
+
"scikit-learn": "scikit-learn";
|
|
8331
|
+
tensorflow: "tensorflow";
|
|
7629
8332
|
}>>;
|
|
7630
8333
|
pythonAuth: z.ZodEnum<{
|
|
7631
8334
|
none: "none";
|
|
7632
8335
|
authlib: "authlib";
|
|
7633
8336
|
jwt: "jwt";
|
|
8337
|
+
pyjwt: "pyjwt";
|
|
7634
8338
|
"fastapi-users": "fastapi-users";
|
|
7635
8339
|
}>;
|
|
7636
8340
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7661,6 +8365,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7661
8365
|
none: "none";
|
|
7662
8366
|
pytest: "pytest";
|
|
7663
8367
|
hypothesis: "hypothesis";
|
|
8368
|
+
"pytest-cov": "pytest-cov";
|
|
7664
8369
|
}>>;
|
|
7665
8370
|
pythonCaching: z.ZodEnum<{
|
|
7666
8371
|
none: "none";
|
|
@@ -7675,6 +8380,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7675
8380
|
pythonObservability: z.ZodEnum<{
|
|
7676
8381
|
none: "none";
|
|
7677
8382
|
opentelemetry: "opentelemetry";
|
|
8383
|
+
"prometheus-client": "prometheus-client";
|
|
7678
8384
|
}>;
|
|
7679
8385
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
7680
8386
|
none: "none";
|
|
@@ -7682,6 +8388,37 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7682
8388
|
click: "click";
|
|
7683
8389
|
rich: "rich";
|
|
7684
8390
|
}>>;
|
|
8391
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
8392
|
+
none: "none";
|
|
8393
|
+
boto3: "boto3";
|
|
8394
|
+
}>;
|
|
8395
|
+
pythonHttpClient: z.ZodEnum<{
|
|
8396
|
+
none: "none";
|
|
8397
|
+
requests: "requests";
|
|
8398
|
+
}>;
|
|
8399
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
8400
|
+
none: "none";
|
|
8401
|
+
numpy: "numpy";
|
|
8402
|
+
pandas: "pandas";
|
|
8403
|
+
scipy: "scipy";
|
|
8404
|
+
}>>;
|
|
8405
|
+
pythonMedia: z.ZodEnum<{
|
|
8406
|
+
none: "none";
|
|
8407
|
+
pillow: "pillow";
|
|
8408
|
+
}>;
|
|
8409
|
+
pythonServer: z.ZodEnum<{
|
|
8410
|
+
none: "none";
|
|
8411
|
+
gunicorn: "gunicorn";
|
|
8412
|
+
}>;
|
|
8413
|
+
pythonPackageManager: z.ZodEnum<{
|
|
8414
|
+
none: "none";
|
|
8415
|
+
uv: "uv";
|
|
8416
|
+
poetry: "poetry";
|
|
8417
|
+
}>;
|
|
8418
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
8419
|
+
none: "none";
|
|
8420
|
+
"confluent-kafka": "confluent-kafka";
|
|
8421
|
+
}>;
|
|
7685
8422
|
goWebFramework: z.ZodEnum<{
|
|
7686
8423
|
none: "none";
|
|
7687
8424
|
gin: "gin";
|
|
@@ -7845,6 +8582,26 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7845
8582
|
thymeleaf: "thymeleaf";
|
|
7846
8583
|
"spring-amqp": "spring-amqp";
|
|
7847
8584
|
"opentelemetry-java": "opentelemetry-java";
|
|
8585
|
+
"spring-data-redis": "spring-data-redis";
|
|
8586
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
8587
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
8588
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
8589
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
8590
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
8591
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
8592
|
+
"spring-data-rest": "spring-data-rest";
|
|
8593
|
+
"spring-quartz": "spring-quartz";
|
|
8594
|
+
"spring-pulsar": "spring-pulsar";
|
|
8595
|
+
"spring-integration": "spring-integration";
|
|
8596
|
+
"spring-websocket": "spring-websocket";
|
|
8597
|
+
"spring-rsocket": "spring-rsocket";
|
|
8598
|
+
"spring-hateoas": "spring-hateoas";
|
|
8599
|
+
"spring-session-redis": "spring-session-redis";
|
|
8600
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
8601
|
+
"spring-ldap": "spring-ldap";
|
|
8602
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
8603
|
+
"spring-saml2": "spring-saml2";
|
|
8604
|
+
"spring-restclient": "spring-restclient";
|
|
7848
8605
|
}>>;
|
|
7849
8606
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
7850
8607
|
none: "none";
|
|
@@ -7922,6 +8679,29 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7922
8679
|
azure: "azure";
|
|
7923
8680
|
aws: "aws";
|
|
7924
8681
|
}>;
|
|
8682
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
8683
|
+
none: "none";
|
|
8684
|
+
sentry: "sentry";
|
|
8685
|
+
automapper: "automapper";
|
|
8686
|
+
mediatr: "mediatr";
|
|
8687
|
+
fastendpoints: "fastendpoints";
|
|
8688
|
+
"api-versioning": "api-versioning";
|
|
8689
|
+
scalar: "scalar";
|
|
8690
|
+
polly: "polly";
|
|
8691
|
+
masstransit: "masstransit";
|
|
8692
|
+
rebus: "rebus";
|
|
8693
|
+
coravel: "coravel";
|
|
8694
|
+
"magic-onion": "magic-onion";
|
|
8695
|
+
"prometheus-net": "prometheus-net";
|
|
8696
|
+
seq: "seq";
|
|
8697
|
+
"application-insights": "application-insights";
|
|
8698
|
+
"mongodb-driver": "mongodb-driver";
|
|
8699
|
+
nhibernate: "nhibernate";
|
|
8700
|
+
mapster: "mapster";
|
|
8701
|
+
scrutor: "scrutor";
|
|
8702
|
+
refit: "refit";
|
|
8703
|
+
"fluent-email": "fluent-email";
|
|
8704
|
+
}>>;
|
|
7925
8705
|
elixirWebFramework: z.ZodEnum<{
|
|
7926
8706
|
none: "none";
|
|
7927
8707
|
phoenix: "phoenix";
|
|
@@ -8063,6 +8843,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8063
8843
|
payments: "payments";
|
|
8064
8844
|
frontend: "frontend";
|
|
8065
8845
|
examples: "examples";
|
|
8846
|
+
packageManager: "packageManager";
|
|
8066
8847
|
dbSetup: "dbSetup";
|
|
8067
8848
|
backend: "backend";
|
|
8068
8849
|
runtime: "runtime";
|
|
@@ -8111,6 +8892,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8111
8892
|
httpClient: "httpClient";
|
|
8112
8893
|
libraries: "libraries";
|
|
8113
8894
|
templating: "templating";
|
|
8895
|
+
cloudSdk: "cloudSdk";
|
|
8896
|
+
data: "data";
|
|
8897
|
+
media: "media";
|
|
8898
|
+
server: "server";
|
|
8899
|
+
messageQueue: "messageQueue";
|
|
8114
8900
|
}>;
|
|
8115
8901
|
toolId: z.ZodString;
|
|
8116
8902
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -8668,6 +9454,29 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8668
9454
|
none: "none";
|
|
8669
9455
|
"expo-linking": "expo-linking";
|
|
8670
9456
|
}>;
|
|
9457
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
9458
|
+
none: "none";
|
|
9459
|
+
"expo-sqlite": "expo-sqlite";
|
|
9460
|
+
"expo-camera": "expo-camera";
|
|
9461
|
+
"expo-image-picker": "expo-image-picker";
|
|
9462
|
+
"expo-location": "expo-location";
|
|
9463
|
+
"expo-sensors": "expo-sensors";
|
|
9464
|
+
"expo-file-system": "expo-file-system";
|
|
9465
|
+
"expo-image": "expo-image";
|
|
9466
|
+
"expo-audio": "expo-audio";
|
|
9467
|
+
"expo-video": "expo-video";
|
|
9468
|
+
"expo-contacts": "expo-contacts";
|
|
9469
|
+
"expo-calendar": "expo-calendar";
|
|
9470
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
9471
|
+
"expo-sharing": "expo-sharing";
|
|
9472
|
+
"expo-clipboard": "expo-clipboard";
|
|
9473
|
+
"expo-task-manager": "expo-task-manager";
|
|
9474
|
+
"expo-background-task": "expo-background-task";
|
|
9475
|
+
"expo-maps": "expo-maps";
|
|
9476
|
+
"expo-brightness": "expo-brightness";
|
|
9477
|
+
"expo-battery": "expo-battery";
|
|
9478
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
9479
|
+
}>>;
|
|
8671
9480
|
rustWebFramework: z.ZodEnum<{
|
|
8672
9481
|
none: "none";
|
|
8673
9482
|
axum: "axum";
|
|
@@ -8781,6 +9590,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8781
9590
|
flask: "flask";
|
|
8782
9591
|
litestar: "litestar";
|
|
8783
9592
|
starlette: "starlette";
|
|
9593
|
+
aiohttp: "aiohttp";
|
|
9594
|
+
streamlit: "streamlit";
|
|
8784
9595
|
}>;
|
|
8785
9596
|
pythonOrm: z.ZodEnum<{
|
|
8786
9597
|
none: "none";
|
|
@@ -8788,6 +9599,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8788
9599
|
sqlmodel: "sqlmodel";
|
|
8789
9600
|
"tortoise-orm": "tortoise-orm";
|
|
8790
9601
|
peewee: "peewee";
|
|
9602
|
+
pymongo: "pymongo";
|
|
8791
9603
|
}>;
|
|
8792
9604
|
pythonValidation: z.ZodEnum<{
|
|
8793
9605
|
none: "none";
|
|
@@ -8795,6 +9607,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8795
9607
|
}>;
|
|
8796
9608
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
8797
9609
|
none: "none";
|
|
9610
|
+
mcp: "mcp";
|
|
8798
9611
|
langgraph: "langgraph";
|
|
8799
9612
|
"openai-sdk": "openai-sdk";
|
|
8800
9613
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -8805,11 +9618,16 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8805
9618
|
haystack: "haystack";
|
|
8806
9619
|
"pydantic-ai": "pydantic-ai";
|
|
8807
9620
|
smolagents: "smolagents";
|
|
9621
|
+
pytorch: "pytorch";
|
|
9622
|
+
transformers: "transformers";
|
|
9623
|
+
"scikit-learn": "scikit-learn";
|
|
9624
|
+
tensorflow: "tensorflow";
|
|
8808
9625
|
}>>;
|
|
8809
9626
|
pythonAuth: z.ZodEnum<{
|
|
8810
9627
|
none: "none";
|
|
8811
9628
|
authlib: "authlib";
|
|
8812
9629
|
jwt: "jwt";
|
|
9630
|
+
pyjwt: "pyjwt";
|
|
8813
9631
|
"fastapi-users": "fastapi-users";
|
|
8814
9632
|
}>;
|
|
8815
9633
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8840,6 +9658,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8840
9658
|
none: "none";
|
|
8841
9659
|
pytest: "pytest";
|
|
8842
9660
|
hypothesis: "hypothesis";
|
|
9661
|
+
"pytest-cov": "pytest-cov";
|
|
8843
9662
|
}>>;
|
|
8844
9663
|
pythonCaching: z.ZodEnum<{
|
|
8845
9664
|
none: "none";
|
|
@@ -8854,6 +9673,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8854
9673
|
pythonObservability: z.ZodEnum<{
|
|
8855
9674
|
none: "none";
|
|
8856
9675
|
opentelemetry: "opentelemetry";
|
|
9676
|
+
"prometheus-client": "prometheus-client";
|
|
8857
9677
|
}>;
|
|
8858
9678
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
8859
9679
|
none: "none";
|
|
@@ -8861,6 +9681,37 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8861
9681
|
click: "click";
|
|
8862
9682
|
rich: "rich";
|
|
8863
9683
|
}>>;
|
|
9684
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
9685
|
+
none: "none";
|
|
9686
|
+
boto3: "boto3";
|
|
9687
|
+
}>;
|
|
9688
|
+
pythonHttpClient: z.ZodEnum<{
|
|
9689
|
+
none: "none";
|
|
9690
|
+
requests: "requests";
|
|
9691
|
+
}>;
|
|
9692
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
9693
|
+
none: "none";
|
|
9694
|
+
numpy: "numpy";
|
|
9695
|
+
pandas: "pandas";
|
|
9696
|
+
scipy: "scipy";
|
|
9697
|
+
}>>;
|
|
9698
|
+
pythonMedia: z.ZodEnum<{
|
|
9699
|
+
none: "none";
|
|
9700
|
+
pillow: "pillow";
|
|
9701
|
+
}>;
|
|
9702
|
+
pythonServer: z.ZodEnum<{
|
|
9703
|
+
none: "none";
|
|
9704
|
+
gunicorn: "gunicorn";
|
|
9705
|
+
}>;
|
|
9706
|
+
pythonPackageManager: z.ZodEnum<{
|
|
9707
|
+
none: "none";
|
|
9708
|
+
uv: "uv";
|
|
9709
|
+
poetry: "poetry";
|
|
9710
|
+
}>;
|
|
9711
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
9712
|
+
none: "none";
|
|
9713
|
+
"confluent-kafka": "confluent-kafka";
|
|
9714
|
+
}>;
|
|
8864
9715
|
goWebFramework: z.ZodEnum<{
|
|
8865
9716
|
none: "none";
|
|
8866
9717
|
gin: "gin";
|
|
@@ -9024,6 +9875,26 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9024
9875
|
thymeleaf: "thymeleaf";
|
|
9025
9876
|
"spring-amqp": "spring-amqp";
|
|
9026
9877
|
"opentelemetry-java": "opentelemetry-java";
|
|
9878
|
+
"spring-data-redis": "spring-data-redis";
|
|
9879
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
9880
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
9881
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
9882
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
9883
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
9884
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
9885
|
+
"spring-data-rest": "spring-data-rest";
|
|
9886
|
+
"spring-quartz": "spring-quartz";
|
|
9887
|
+
"spring-pulsar": "spring-pulsar";
|
|
9888
|
+
"spring-integration": "spring-integration";
|
|
9889
|
+
"spring-websocket": "spring-websocket";
|
|
9890
|
+
"spring-rsocket": "spring-rsocket";
|
|
9891
|
+
"spring-hateoas": "spring-hateoas";
|
|
9892
|
+
"spring-session-redis": "spring-session-redis";
|
|
9893
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
9894
|
+
"spring-ldap": "spring-ldap";
|
|
9895
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
9896
|
+
"spring-saml2": "spring-saml2";
|
|
9897
|
+
"spring-restclient": "spring-restclient";
|
|
9027
9898
|
}>>;
|
|
9028
9899
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
9029
9900
|
none: "none";
|
|
@@ -9101,6 +9972,29 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9101
9972
|
azure: "azure";
|
|
9102
9973
|
aws: "aws";
|
|
9103
9974
|
}>;
|
|
9975
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
9976
|
+
none: "none";
|
|
9977
|
+
sentry: "sentry";
|
|
9978
|
+
automapper: "automapper";
|
|
9979
|
+
mediatr: "mediatr";
|
|
9980
|
+
fastendpoints: "fastendpoints";
|
|
9981
|
+
"api-versioning": "api-versioning";
|
|
9982
|
+
scalar: "scalar";
|
|
9983
|
+
polly: "polly";
|
|
9984
|
+
masstransit: "masstransit";
|
|
9985
|
+
rebus: "rebus";
|
|
9986
|
+
coravel: "coravel";
|
|
9987
|
+
"magic-onion": "magic-onion";
|
|
9988
|
+
"prometheus-net": "prometheus-net";
|
|
9989
|
+
seq: "seq";
|
|
9990
|
+
"application-insights": "application-insights";
|
|
9991
|
+
"mongodb-driver": "mongodb-driver";
|
|
9992
|
+
nhibernate: "nhibernate";
|
|
9993
|
+
mapster: "mapster";
|
|
9994
|
+
scrutor: "scrutor";
|
|
9995
|
+
refit: "refit";
|
|
9996
|
+
"fluent-email": "fluent-email";
|
|
9997
|
+
}>>;
|
|
9104
9998
|
elixirWebFramework: z.ZodEnum<{
|
|
9105
9999
|
none: "none";
|
|
9106
10000
|
phoenix: "phoenix";
|
|
@@ -9242,6 +10136,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9242
10136
|
payments: "payments";
|
|
9243
10137
|
frontend: "frontend";
|
|
9244
10138
|
examples: "examples";
|
|
10139
|
+
packageManager: "packageManager";
|
|
9245
10140
|
dbSetup: "dbSetup";
|
|
9246
10141
|
backend: "backend";
|
|
9247
10142
|
runtime: "runtime";
|
|
@@ -9290,6 +10185,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9290
10185
|
httpClient: "httpClient";
|
|
9291
10186
|
libraries: "libraries";
|
|
9292
10187
|
templating: "templating";
|
|
10188
|
+
cloudSdk: "cloudSdk";
|
|
10189
|
+
data: "data";
|
|
10190
|
+
media: "media";
|
|
10191
|
+
server: "server";
|
|
10192
|
+
messageQueue: "messageQueue";
|
|
9293
10193
|
}>;
|
|
9294
10194
|
toolId: z.ZodString;
|
|
9295
10195
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -9847,6 +10747,29 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9847
10747
|
none: "none";
|
|
9848
10748
|
"expo-linking": "expo-linking";
|
|
9849
10749
|
}>;
|
|
10750
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
10751
|
+
none: "none";
|
|
10752
|
+
"expo-sqlite": "expo-sqlite";
|
|
10753
|
+
"expo-camera": "expo-camera";
|
|
10754
|
+
"expo-image-picker": "expo-image-picker";
|
|
10755
|
+
"expo-location": "expo-location";
|
|
10756
|
+
"expo-sensors": "expo-sensors";
|
|
10757
|
+
"expo-file-system": "expo-file-system";
|
|
10758
|
+
"expo-image": "expo-image";
|
|
10759
|
+
"expo-audio": "expo-audio";
|
|
10760
|
+
"expo-video": "expo-video";
|
|
10761
|
+
"expo-contacts": "expo-contacts";
|
|
10762
|
+
"expo-calendar": "expo-calendar";
|
|
10763
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
10764
|
+
"expo-sharing": "expo-sharing";
|
|
10765
|
+
"expo-clipboard": "expo-clipboard";
|
|
10766
|
+
"expo-task-manager": "expo-task-manager";
|
|
10767
|
+
"expo-background-task": "expo-background-task";
|
|
10768
|
+
"expo-maps": "expo-maps";
|
|
10769
|
+
"expo-brightness": "expo-brightness";
|
|
10770
|
+
"expo-battery": "expo-battery";
|
|
10771
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
10772
|
+
}>>;
|
|
9850
10773
|
rustWebFramework: z.ZodEnum<{
|
|
9851
10774
|
none: "none";
|
|
9852
10775
|
axum: "axum";
|
|
@@ -9960,6 +10883,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9960
10883
|
flask: "flask";
|
|
9961
10884
|
litestar: "litestar";
|
|
9962
10885
|
starlette: "starlette";
|
|
10886
|
+
aiohttp: "aiohttp";
|
|
10887
|
+
streamlit: "streamlit";
|
|
9963
10888
|
}>;
|
|
9964
10889
|
pythonOrm: z.ZodEnum<{
|
|
9965
10890
|
none: "none";
|
|
@@ -9967,6 +10892,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9967
10892
|
sqlmodel: "sqlmodel";
|
|
9968
10893
|
"tortoise-orm": "tortoise-orm";
|
|
9969
10894
|
peewee: "peewee";
|
|
10895
|
+
pymongo: "pymongo";
|
|
9970
10896
|
}>;
|
|
9971
10897
|
pythonValidation: z.ZodEnum<{
|
|
9972
10898
|
none: "none";
|
|
@@ -9974,6 +10900,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9974
10900
|
}>;
|
|
9975
10901
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
9976
10902
|
none: "none";
|
|
10903
|
+
mcp: "mcp";
|
|
9977
10904
|
langgraph: "langgraph";
|
|
9978
10905
|
"openai-sdk": "openai-sdk";
|
|
9979
10906
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -9984,11 +10911,16 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9984
10911
|
haystack: "haystack";
|
|
9985
10912
|
"pydantic-ai": "pydantic-ai";
|
|
9986
10913
|
smolagents: "smolagents";
|
|
10914
|
+
pytorch: "pytorch";
|
|
10915
|
+
transformers: "transformers";
|
|
10916
|
+
"scikit-learn": "scikit-learn";
|
|
10917
|
+
tensorflow: "tensorflow";
|
|
9987
10918
|
}>>;
|
|
9988
10919
|
pythonAuth: z.ZodEnum<{
|
|
9989
10920
|
none: "none";
|
|
9990
10921
|
authlib: "authlib";
|
|
9991
10922
|
jwt: "jwt";
|
|
10923
|
+
pyjwt: "pyjwt";
|
|
9992
10924
|
"fastapi-users": "fastapi-users";
|
|
9993
10925
|
}>;
|
|
9994
10926
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10019,6 +10951,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10019
10951
|
none: "none";
|
|
10020
10952
|
pytest: "pytest";
|
|
10021
10953
|
hypothesis: "hypothesis";
|
|
10954
|
+
"pytest-cov": "pytest-cov";
|
|
10022
10955
|
}>>;
|
|
10023
10956
|
pythonCaching: z.ZodEnum<{
|
|
10024
10957
|
none: "none";
|
|
@@ -10033,6 +10966,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10033
10966
|
pythonObservability: z.ZodEnum<{
|
|
10034
10967
|
none: "none";
|
|
10035
10968
|
opentelemetry: "opentelemetry";
|
|
10969
|
+
"prometheus-client": "prometheus-client";
|
|
10036
10970
|
}>;
|
|
10037
10971
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
10038
10972
|
none: "none";
|
|
@@ -10040,6 +10974,37 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10040
10974
|
click: "click";
|
|
10041
10975
|
rich: "rich";
|
|
10042
10976
|
}>>;
|
|
10977
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
10978
|
+
none: "none";
|
|
10979
|
+
boto3: "boto3";
|
|
10980
|
+
}>;
|
|
10981
|
+
pythonHttpClient: z.ZodEnum<{
|
|
10982
|
+
none: "none";
|
|
10983
|
+
requests: "requests";
|
|
10984
|
+
}>;
|
|
10985
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
10986
|
+
none: "none";
|
|
10987
|
+
numpy: "numpy";
|
|
10988
|
+
pandas: "pandas";
|
|
10989
|
+
scipy: "scipy";
|
|
10990
|
+
}>>;
|
|
10991
|
+
pythonMedia: z.ZodEnum<{
|
|
10992
|
+
none: "none";
|
|
10993
|
+
pillow: "pillow";
|
|
10994
|
+
}>;
|
|
10995
|
+
pythonServer: z.ZodEnum<{
|
|
10996
|
+
none: "none";
|
|
10997
|
+
gunicorn: "gunicorn";
|
|
10998
|
+
}>;
|
|
10999
|
+
pythonPackageManager: z.ZodEnum<{
|
|
11000
|
+
none: "none";
|
|
11001
|
+
uv: "uv";
|
|
11002
|
+
poetry: "poetry";
|
|
11003
|
+
}>;
|
|
11004
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
11005
|
+
none: "none";
|
|
11006
|
+
"confluent-kafka": "confluent-kafka";
|
|
11007
|
+
}>;
|
|
10043
11008
|
goWebFramework: z.ZodEnum<{
|
|
10044
11009
|
none: "none";
|
|
10045
11010
|
gin: "gin";
|
|
@@ -10203,6 +11168,26 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10203
11168
|
thymeleaf: "thymeleaf";
|
|
10204
11169
|
"spring-amqp": "spring-amqp";
|
|
10205
11170
|
"opentelemetry-java": "opentelemetry-java";
|
|
11171
|
+
"spring-data-redis": "spring-data-redis";
|
|
11172
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
11173
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
11174
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
11175
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
11176
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
11177
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
11178
|
+
"spring-data-rest": "spring-data-rest";
|
|
11179
|
+
"spring-quartz": "spring-quartz";
|
|
11180
|
+
"spring-pulsar": "spring-pulsar";
|
|
11181
|
+
"spring-integration": "spring-integration";
|
|
11182
|
+
"spring-websocket": "spring-websocket";
|
|
11183
|
+
"spring-rsocket": "spring-rsocket";
|
|
11184
|
+
"spring-hateoas": "spring-hateoas";
|
|
11185
|
+
"spring-session-redis": "spring-session-redis";
|
|
11186
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
11187
|
+
"spring-ldap": "spring-ldap";
|
|
11188
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
11189
|
+
"spring-saml2": "spring-saml2";
|
|
11190
|
+
"spring-restclient": "spring-restclient";
|
|
10206
11191
|
}>>;
|
|
10207
11192
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
10208
11193
|
none: "none";
|
|
@@ -10280,6 +11265,29 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10280
11265
|
azure: "azure";
|
|
10281
11266
|
aws: "aws";
|
|
10282
11267
|
}>;
|
|
11268
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
11269
|
+
none: "none";
|
|
11270
|
+
sentry: "sentry";
|
|
11271
|
+
automapper: "automapper";
|
|
11272
|
+
mediatr: "mediatr";
|
|
11273
|
+
fastendpoints: "fastendpoints";
|
|
11274
|
+
"api-versioning": "api-versioning";
|
|
11275
|
+
scalar: "scalar";
|
|
11276
|
+
polly: "polly";
|
|
11277
|
+
masstransit: "masstransit";
|
|
11278
|
+
rebus: "rebus";
|
|
11279
|
+
coravel: "coravel";
|
|
11280
|
+
"magic-onion": "magic-onion";
|
|
11281
|
+
"prometheus-net": "prometheus-net";
|
|
11282
|
+
seq: "seq";
|
|
11283
|
+
"application-insights": "application-insights";
|
|
11284
|
+
"mongodb-driver": "mongodb-driver";
|
|
11285
|
+
nhibernate: "nhibernate";
|
|
11286
|
+
mapster: "mapster";
|
|
11287
|
+
scrutor: "scrutor";
|
|
11288
|
+
refit: "refit";
|
|
11289
|
+
"fluent-email": "fluent-email";
|
|
11290
|
+
}>>;
|
|
10283
11291
|
elixirWebFramework: z.ZodEnum<{
|
|
10284
11292
|
none: "none";
|
|
10285
11293
|
phoenix: "phoenix";
|
|
@@ -10421,6 +11429,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10421
11429
|
payments: "payments";
|
|
10422
11430
|
frontend: "frontend";
|
|
10423
11431
|
examples: "examples";
|
|
11432
|
+
packageManager: "packageManager";
|
|
10424
11433
|
dbSetup: "dbSetup";
|
|
10425
11434
|
backend: "backend";
|
|
10426
11435
|
runtime: "runtime";
|
|
@@ -10469,6 +11478,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10469
11478
|
httpClient: "httpClient";
|
|
10470
11479
|
libraries: "libraries";
|
|
10471
11480
|
templating: "templating";
|
|
11481
|
+
cloudSdk: "cloudSdk";
|
|
11482
|
+
data: "data";
|
|
11483
|
+
media: "media";
|
|
11484
|
+
server: "server";
|
|
11485
|
+
messageQueue: "messageQueue";
|
|
10472
11486
|
}>;
|
|
10473
11487
|
toolId: z.ZodString;
|
|
10474
11488
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -11028,6 +12042,29 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11028
12042
|
none: "none";
|
|
11029
12043
|
"expo-linking": "expo-linking";
|
|
11030
12044
|
}>;
|
|
12045
|
+
mobileLibraries: z.ZodArray<z.ZodEnum<{
|
|
12046
|
+
none: "none";
|
|
12047
|
+
"expo-sqlite": "expo-sqlite";
|
|
12048
|
+
"expo-camera": "expo-camera";
|
|
12049
|
+
"expo-image-picker": "expo-image-picker";
|
|
12050
|
+
"expo-location": "expo-location";
|
|
12051
|
+
"expo-sensors": "expo-sensors";
|
|
12052
|
+
"expo-file-system": "expo-file-system";
|
|
12053
|
+
"expo-image": "expo-image";
|
|
12054
|
+
"expo-audio": "expo-audio";
|
|
12055
|
+
"expo-video": "expo-video";
|
|
12056
|
+
"expo-contacts": "expo-contacts";
|
|
12057
|
+
"expo-calendar": "expo-calendar";
|
|
12058
|
+
"expo-local-authentication": "expo-local-authentication";
|
|
12059
|
+
"expo-sharing": "expo-sharing";
|
|
12060
|
+
"expo-clipboard": "expo-clipboard";
|
|
12061
|
+
"expo-task-manager": "expo-task-manager";
|
|
12062
|
+
"expo-background-task": "expo-background-task";
|
|
12063
|
+
"expo-maps": "expo-maps";
|
|
12064
|
+
"expo-brightness": "expo-brightness";
|
|
12065
|
+
"expo-battery": "expo-battery";
|
|
12066
|
+
"expo-screen-capture": "expo-screen-capture";
|
|
12067
|
+
}>>;
|
|
11031
12068
|
rustWebFramework: z.ZodEnum<{
|
|
11032
12069
|
none: "none";
|
|
11033
12070
|
axum: "axum";
|
|
@@ -11141,6 +12178,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11141
12178
|
flask: "flask";
|
|
11142
12179
|
litestar: "litestar";
|
|
11143
12180
|
starlette: "starlette";
|
|
12181
|
+
aiohttp: "aiohttp";
|
|
12182
|
+
streamlit: "streamlit";
|
|
11144
12183
|
}>;
|
|
11145
12184
|
pythonOrm: z.ZodEnum<{
|
|
11146
12185
|
none: "none";
|
|
@@ -11148,6 +12187,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11148
12187
|
sqlmodel: "sqlmodel";
|
|
11149
12188
|
"tortoise-orm": "tortoise-orm";
|
|
11150
12189
|
peewee: "peewee";
|
|
12190
|
+
pymongo: "pymongo";
|
|
11151
12191
|
}>;
|
|
11152
12192
|
pythonValidation: z.ZodEnum<{
|
|
11153
12193
|
none: "none";
|
|
@@ -11155,6 +12195,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11155
12195
|
}>;
|
|
11156
12196
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
11157
12197
|
none: "none";
|
|
12198
|
+
mcp: "mcp";
|
|
11158
12199
|
langgraph: "langgraph";
|
|
11159
12200
|
"openai-sdk": "openai-sdk";
|
|
11160
12201
|
"anthropic-sdk": "anthropic-sdk";
|
|
@@ -11165,11 +12206,16 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11165
12206
|
haystack: "haystack";
|
|
11166
12207
|
"pydantic-ai": "pydantic-ai";
|
|
11167
12208
|
smolagents: "smolagents";
|
|
12209
|
+
pytorch: "pytorch";
|
|
12210
|
+
transformers: "transformers";
|
|
12211
|
+
"scikit-learn": "scikit-learn";
|
|
12212
|
+
tensorflow: "tensorflow";
|
|
11168
12213
|
}>>;
|
|
11169
12214
|
pythonAuth: z.ZodEnum<{
|
|
11170
12215
|
none: "none";
|
|
11171
12216
|
authlib: "authlib";
|
|
11172
12217
|
jwt: "jwt";
|
|
12218
|
+
pyjwt: "pyjwt";
|
|
11173
12219
|
"fastapi-users": "fastapi-users";
|
|
11174
12220
|
}>;
|
|
11175
12221
|
pythonApi: z.ZodEnum<{
|
|
@@ -11200,6 +12246,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11200
12246
|
none: "none";
|
|
11201
12247
|
pytest: "pytest";
|
|
11202
12248
|
hypothesis: "hypothesis";
|
|
12249
|
+
"pytest-cov": "pytest-cov";
|
|
11203
12250
|
}>>;
|
|
11204
12251
|
pythonCaching: z.ZodEnum<{
|
|
11205
12252
|
none: "none";
|
|
@@ -11214,6 +12261,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11214
12261
|
pythonObservability: z.ZodEnum<{
|
|
11215
12262
|
none: "none";
|
|
11216
12263
|
opentelemetry: "opentelemetry";
|
|
12264
|
+
"prometheus-client": "prometheus-client";
|
|
11217
12265
|
}>;
|
|
11218
12266
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
11219
12267
|
none: "none";
|
|
@@ -11221,6 +12269,37 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11221
12269
|
click: "click";
|
|
11222
12270
|
rich: "rich";
|
|
11223
12271
|
}>>;
|
|
12272
|
+
pythonCloudSdk: z.ZodEnum<{
|
|
12273
|
+
none: "none";
|
|
12274
|
+
boto3: "boto3";
|
|
12275
|
+
}>;
|
|
12276
|
+
pythonHttpClient: z.ZodEnum<{
|
|
12277
|
+
none: "none";
|
|
12278
|
+
requests: "requests";
|
|
12279
|
+
}>;
|
|
12280
|
+
pythonData: z.ZodArray<z.ZodEnum<{
|
|
12281
|
+
none: "none";
|
|
12282
|
+
numpy: "numpy";
|
|
12283
|
+
pandas: "pandas";
|
|
12284
|
+
scipy: "scipy";
|
|
12285
|
+
}>>;
|
|
12286
|
+
pythonMedia: z.ZodEnum<{
|
|
12287
|
+
none: "none";
|
|
12288
|
+
pillow: "pillow";
|
|
12289
|
+
}>;
|
|
12290
|
+
pythonServer: z.ZodEnum<{
|
|
12291
|
+
none: "none";
|
|
12292
|
+
gunicorn: "gunicorn";
|
|
12293
|
+
}>;
|
|
12294
|
+
pythonPackageManager: z.ZodEnum<{
|
|
12295
|
+
none: "none";
|
|
12296
|
+
uv: "uv";
|
|
12297
|
+
poetry: "poetry";
|
|
12298
|
+
}>;
|
|
12299
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
12300
|
+
none: "none";
|
|
12301
|
+
"confluent-kafka": "confluent-kafka";
|
|
12302
|
+
}>;
|
|
11224
12303
|
goWebFramework: z.ZodEnum<{
|
|
11225
12304
|
none: "none";
|
|
11226
12305
|
gin: "gin";
|
|
@@ -11384,6 +12463,26 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11384
12463
|
thymeleaf: "thymeleaf";
|
|
11385
12464
|
"spring-amqp": "spring-amqp";
|
|
11386
12465
|
"opentelemetry-java": "opentelemetry-java";
|
|
12466
|
+
"spring-data-redis": "spring-data-redis";
|
|
12467
|
+
"spring-data-mongodb": "spring-data-mongodb";
|
|
12468
|
+
"spring-data-elasticsearch": "spring-data-elasticsearch";
|
|
12469
|
+
"spring-data-neo4j": "spring-data-neo4j";
|
|
12470
|
+
"spring-data-cassandra": "spring-data-cassandra";
|
|
12471
|
+
"spring-data-couchbase": "spring-data-couchbase";
|
|
12472
|
+
"spring-data-jdbc": "spring-data-jdbc";
|
|
12473
|
+
"spring-data-rest": "spring-data-rest";
|
|
12474
|
+
"spring-quartz": "spring-quartz";
|
|
12475
|
+
"spring-pulsar": "spring-pulsar";
|
|
12476
|
+
"spring-integration": "spring-integration";
|
|
12477
|
+
"spring-websocket": "spring-websocket";
|
|
12478
|
+
"spring-rsocket": "spring-rsocket";
|
|
12479
|
+
"spring-hateoas": "spring-hateoas";
|
|
12480
|
+
"spring-session-redis": "spring-session-redis";
|
|
12481
|
+
"spring-session-jdbc": "spring-session-jdbc";
|
|
12482
|
+
"spring-ldap": "spring-ldap";
|
|
12483
|
+
"spring-oauth2-client": "spring-oauth2-client";
|
|
12484
|
+
"spring-saml2": "spring-saml2";
|
|
12485
|
+
"spring-restclient": "spring-restclient";
|
|
11387
12486
|
}>>;
|
|
11388
12487
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
11389
12488
|
none: "none";
|
|
@@ -11461,6 +12560,29 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11461
12560
|
azure: "azure";
|
|
11462
12561
|
aws: "aws";
|
|
11463
12562
|
}>;
|
|
12563
|
+
dotnetLibraries: z.ZodArray<z.ZodEnum<{
|
|
12564
|
+
none: "none";
|
|
12565
|
+
sentry: "sentry";
|
|
12566
|
+
automapper: "automapper";
|
|
12567
|
+
mediatr: "mediatr";
|
|
12568
|
+
fastendpoints: "fastendpoints";
|
|
12569
|
+
"api-versioning": "api-versioning";
|
|
12570
|
+
scalar: "scalar";
|
|
12571
|
+
polly: "polly";
|
|
12572
|
+
masstransit: "masstransit";
|
|
12573
|
+
rebus: "rebus";
|
|
12574
|
+
coravel: "coravel";
|
|
12575
|
+
"magic-onion": "magic-onion";
|
|
12576
|
+
"prometheus-net": "prometheus-net";
|
|
12577
|
+
seq: "seq";
|
|
12578
|
+
"application-insights": "application-insights";
|
|
12579
|
+
"mongodb-driver": "mongodb-driver";
|
|
12580
|
+
nhibernate: "nhibernate";
|
|
12581
|
+
mapster: "mapster";
|
|
12582
|
+
scrutor: "scrutor";
|
|
12583
|
+
refit: "refit";
|
|
12584
|
+
"fluent-email": "fluent-email";
|
|
12585
|
+
}>>;
|
|
11464
12586
|
elixirWebFramework: z.ZodEnum<{
|
|
11465
12587
|
none: "none";
|
|
11466
12588
|
phoenix: "phoenix";
|
|
@@ -11602,6 +12724,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11602
12724
|
payments: "payments";
|
|
11603
12725
|
frontend: "frontend";
|
|
11604
12726
|
examples: "examples";
|
|
12727
|
+
packageManager: "packageManager";
|
|
11605
12728
|
dbSetup: "dbSetup";
|
|
11606
12729
|
backend: "backend";
|
|
11607
12730
|
runtime: "runtime";
|
|
@@ -11650,6 +12773,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11650
12773
|
httpClient: "httpClient";
|
|
11651
12774
|
libraries: "libraries";
|
|
11652
12775
|
templating: "templating";
|
|
12776
|
+
cloudSdk: "cloudSdk";
|
|
12777
|
+
data: "data";
|
|
12778
|
+
media: "media";
|
|
12779
|
+
server: "server";
|
|
12780
|
+
messageQueue: "messageQueue";
|
|
11653
12781
|
}>;
|
|
11654
12782
|
toolId: z.ZodString;
|
|
11655
12783
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -11729,6 +12857,7 @@ declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing
|
|
|
11729
12857
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
11730
12858
|
declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
|
|
11731
12859
|
declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
|
|
12860
|
+
declare const MOBILE_LIBRARIES_VALUES: ("none" | "expo-sqlite" | "expo-camera" | "expo-image-picker" | "expo-location" | "expo-sensors" | "expo-file-system" | "expo-image" | "expo-audio" | "expo-video" | "expo-contacts" | "expo-calendar" | "expo-local-authentication" | "expo-sharing" | "expo-clipboard" | "expo-task-manager" | "expo-background-task" | "expo-maps" | "expo-brightness" | "expo-battery" | "expo-screen-capture")[];
|
|
11732
12861
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic" | "contentful")[];
|
|
11733
12862
|
declare const CACHING_VALUES: ("none" | "redis" | "upstash-redis")[];
|
|
11734
12863
|
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
@@ -11751,20 +12880,27 @@ declare const RUST_REALTIME_VALUES: ("none" | "tokio-tungstenite")[];
|
|
|
11751
12880
|
declare const RUST_MESSAGE_QUEUE_VALUES: ("none" | "lapin" | "rdkafka" | "async-nats")[];
|
|
11752
12881
|
declare const RUST_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "metrics")[];
|
|
11753
12882
|
declare const RUST_TEMPLATING_VALUES: ("none" | "askama" | "tera" | "minijinja")[];
|
|
11754
|
-
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar" | "starlette")[];
|
|
11755
|
-
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm" | "peewee")[];
|
|
12883
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar" | "starlette" | "aiohttp" | "streamlit")[];
|
|
12884
|
+
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm" | "peewee" | "pymongo")[];
|
|
11756
12885
|
declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
|
|
11757
|
-
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "langchain" | "llamaindex" | "crewai" | "haystack" | "pydantic-ai" | "smolagents")[];
|
|
11758
|
-
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt" | "fastapi-users")[];
|
|
12886
|
+
declare const PYTHON_AI_VALUES: ("none" | "mcp" | "langgraph" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "langchain" | "llamaindex" | "crewai" | "haystack" | "pydantic-ai" | "smolagents" | "pytorch" | "transformers" | "scikit-learn" | "tensorflow")[];
|
|
12887
|
+
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt" | "pyjwt" | "fastapi-users")[];
|
|
11759
12888
|
declare const PYTHON_API_VALUES: ("none" | "django-rest-framework" | "django-ninja")[];
|
|
11760
12889
|
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" | "huey" | "taskiq")[];
|
|
11761
12890
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
11762
12891
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
11763
|
-
declare const PYTHON_TESTING_VALUES: ("none" | "pytest" | "hypothesis")[];
|
|
12892
|
+
declare const PYTHON_TESTING_VALUES: ("none" | "pytest" | "hypothesis" | "pytest-cov")[];
|
|
11764
12893
|
declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
|
|
11765
12894
|
declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
|
|
11766
|
-
declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
12895
|
+
declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "prometheus-client")[];
|
|
11767
12896
|
declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
|
|
12897
|
+
declare const PYTHON_CLOUD_SDK_VALUES: ("none" | "boto3")[];
|
|
12898
|
+
declare const PYTHON_HTTP_CLIENT_VALUES: ("none" | "requests")[];
|
|
12899
|
+
declare const PYTHON_DATA_VALUES: ("none" | "numpy" | "pandas" | "scipy")[];
|
|
12900
|
+
declare const PYTHON_MEDIA_VALUES: ("none" | "pillow")[];
|
|
12901
|
+
declare const PYTHON_SERVER_VALUES: ("none" | "gunicorn")[];
|
|
12902
|
+
declare const PYTHON_PACKAGE_MANAGER_VALUES: ("none" | "uv" | "poetry")[];
|
|
12903
|
+
declare const PYTHON_MESSAGE_QUEUE_VALUES: ("none" | "confluent-kafka")[];
|
|
11768
12904
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi" | "stdlib" | "go-zero" | "kratos" | "httprouter")[];
|
|
11769
12905
|
declare const GO_ORM_VALUES: ("none" | "bun" | "sqlx" | "gorm" | "sqlc" | "ent")[];
|
|
11770
12906
|
declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen" | "grpc-gateway" | "connect-go" | "oapi-codegen")[];
|
|
@@ -11790,7 +12926,7 @@ declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")
|
|
|
11790
12926
|
declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
|
|
11791
12927
|
declare const JAVA_API_VALUES: ("none" | "spring-graphql" | "openapi-generator" | "grpc")[];
|
|
11792
12928
|
declare const JAVA_LOGGING_VALUES: ("none" | "logback" | "log4j2")[];
|
|
11793
|
-
declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway" | "liquibase" | "springdoc-openapi" | "lombok" | "mapstruct" | "caffeine" | "resilience4j" | "spring-webflux" | "spring-batch" | "spring-kafka" | "spring-mail" | "spring-devtools" | "micrometer-prometheus" | "thymeleaf" | "spring-amqp" | "opentelemetry-java")[];
|
|
12929
|
+
declare const JAVA_LIBRARIES_VALUES: ("none" | "spring-actuator" | "spring-validation" | "flyway" | "liquibase" | "springdoc-openapi" | "lombok" | "mapstruct" | "caffeine" | "resilience4j" | "spring-webflux" | "spring-batch" | "spring-kafka" | "spring-mail" | "spring-devtools" | "micrometer-prometheus" | "thymeleaf" | "spring-amqp" | "opentelemetry-java" | "spring-data-redis" | "spring-data-mongodb" | "spring-data-elasticsearch" | "spring-data-neo4j" | "spring-data-cassandra" | "spring-data-couchbase" | "spring-data-jdbc" | "spring-data-rest" | "spring-quartz" | "spring-pulsar" | "spring-integration" | "spring-websocket" | "spring-rsocket" | "spring-hateoas" | "spring-session-redis" | "spring-session-jdbc" | "spring-ldap" | "spring-oauth2-client" | "spring-saml2" | "spring-restclient")[];
|
|
11794
12930
|
declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "testcontainers" | "junit5" | "mockito" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
|
|
11795
12931
|
declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
|
|
11796
12932
|
declare const DOTNET_ORM_VALUES: ("none" | "ef-core" | "dapper" | "linq2db")[];
|
|
@@ -11803,6 +12939,7 @@ declare const DOTNET_OBSERVABILITY_VALUES: ("none" | "opentelemetry-dotnet" | "s
|
|
|
11803
12939
|
declare const DOTNET_VALIDATION_VALUES: ("none" | "fluentvalidation" | "data-annotations")[];
|
|
11804
12940
|
declare const DOTNET_CACHING_VALUES: ("none" | "redis" | "memory-cache")[];
|
|
11805
12941
|
declare const DOTNET_DEPLOY_VALUES: ("none" | "docker" | "azure" | "aws")[];
|
|
12942
|
+
declare const DOTNET_LIBRARIES_VALUES: ("none" | "sentry" | "automapper" | "mediatr" | "fastendpoints" | "api-versioning" | "scalar" | "polly" | "masstransit" | "rebus" | "coravel" | "magic-onion" | "prometheus-net" | "seq" | "application-insights" | "mongodb-driver" | "nhibernate" | "mapster" | "scrutor" | "refit" | "fluent-email")[];
|
|
11806
12943
|
declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
|
|
11807
12944
|
declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql" | "myxql" | "ecto_sqlite3")[];
|
|
11808
12945
|
declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian" | "pow")[];
|
|
@@ -11833,5 +12970,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
11833
12970
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
11834
12971
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
11835
12972
|
//#endregion
|
|
11836
|
-
export {
|
|
11837
|
-
//# sourceMappingURL=schemas-
|
|
12973
|
+
export { DotnetCachingSchema as $, WORKSPACE_SHAPE_VALUES as $a, RateLimitSchema as $i, InitResultSchema as $n, PYTHON_MEDIA_VALUES as $r, ElixirRealtimeSchema as $t, CSS_FRAMEWORK_VALUES as A, ShadcnColorThemeSchema as Aa, PythonRealtimeSchema as Ai, GO_TESTING_VALUES as An, MobileDeepLinkingSchema as Ar, ELIXIR_VALIDATION_VALUES as At, DOTNET_JOB_QUEUE_VALUES as B, TEMPLATE_VALUES as Ba, RUST_AUTH_VALUES as Bi, GoMessageQueueSchema as Bn, ORM_VALUES as Br, ElixirClusteringSchema as Bt, BetterTStackConfigFileSchema as C, SHADCN_RADIUS_VALUES as Ca, PythonHttpClientSchema as Ci, GO_MIGRATIONS_VALUES as Cn, MOBILE_LIBRARIES_VALUES as Cr, ELIXIR_JSON_VALUES as Ct, CMSSchema as D, ServerDeploySchema as Da, PythonOrmSchema as Di, GO_QUALITY_VALUES as Dn, MOBILE_STORAGE_VALUES as Dr, ELIXIR_QUALITY_VALUES as Dt, CLIInputSchema as E, SearchSchema as Ea, PythonObservabilitySchema as Ei, GO_PROTO_TOOLING_VALUES as En, MOBILE_PUSH_VALUES as Er, ELIXIR_ORM_VALUES as Et, DIRECTORY_CONFLICT_VALUES as F, StackPartEcosystemSchema as Fa, PythonWebFrameworkSchema as Fi, GoCachingSchema as Fn, MobileStorageSchema as Fr, EffectSchema as Ft, DOTNET_TESTING_VALUES as G, UI_LIBRARY_VALUES as Ga, RUST_LIBRARIES_VALUES as Gi, GoQualitySchema as Gn, PYTHON_API_VALUES as Gr, ElixirHttpServerSchema as Gt, DOTNET_OBSERVABILITY_VALUES as H, TemplateSchema as Ha, RUST_CLI_VALUES as Hi, GoObservabilitySchema as Hn, PACKAGE_MANAGER_VALUES as Hr, ElixirDocumentationSchema as Ht, DOTNET_API_VALUES as I, StackPartRoleSchema as Ia, RATE_LIMIT_VALUES as Ii, GoCliSchema as In, MobileTestingSchema as Ir, ElixirApiSchema as It, DatabaseSchema as J, VERSION_CHANNEL_VALUES as Ja, RUST_OBSERVABILITY_VALUES as Ji, GoTestingSchema as Jn, PYTHON_CLI_VALUES as Jr, ElixirJsonSchema as Jt, DOTNET_VALIDATION_VALUES as K, VALIDATION_VALUES as Ka, RUST_LOGGING_VALUES as Ki, GoRealtimeSchema as Kn, PYTHON_AUTH_VALUES as Kr, ElixirI18nSchema as Kt, DOTNET_AUTH_VALUES as L, StackPartSchema as La, REALTIME_VALUES as Li, GoConfigSchema as Ln, MobileUISchema as Lr, ElixirApplicationFrameworkSchema as Lt, CreateInputSchema as M, ShadcnIconLibrarySchema as Ma, PythonTaskQueueSchema as Mi, GO_WEB_FRAMEWORK_VALUES as Mn, MobileNavigationSchema as Mr, EMAIL_VALUES as Mt, DATABASE_SETUP_VALUES as N, ShadcnRadiusSchema as Na, PythonTestingSchema as Ni, GoApiSchema as Nn, MobileOTASchema as Nr, EXAMPLES_VALUES as Nt, CMS_VALUES as O, ShadcnBaseColorSchema as Oa, PythonPackageManagerSchema as Oi, GO_REALTIME_VALUES as On, MOBILE_TESTING_VALUES as Or, ELIXIR_REALTIME_VALUES as Ot, DATABASE_VALUES as P, ShadcnStyleSchema as Pa, PythonValidationSchema as Pi, GoAuthSchema as Pn, MobilePushSchema as Pr, EcosystemSchema as Pt, DotnetAuthSchema as Q, WEB_DEPLOY_VALUES as Qa, RUST_WEB_FRAMEWORK_VALUES as Qi, I18nSchema as Qn, PYTHON_HTTP_CLIENT_VALUES as Qr, ElixirQualitySchema as Qt, DOTNET_CACHING_VALUES as R, StackPartSourceSchema as Ra, RUNTIME_VALUES as Ri, GoDISchema as Rn, OBSERVABILITY_VALUES as Rr, ElixirAuthSchema as Rt, BetterFullstackConfigSchema as S, SHADCN_ICON_LIBRARY_VALUES as Sa, PythonGraphqlSchema as Si, GO_MESSAGE_QUEUE_VALUES as Sn, MOBILE_DEEP_LINKING_VALUES as Sr, ELIXIR_JOBS_VALUES as St, CACHING_VALUES as T, STATE_MANAGEMENT_VALUES as Ta, PythonMessageQueueSchema as Ti, GO_ORM_VALUES as Tn, MOBILE_OTA_VALUES as Tr, ELIXIR_OBSERVABILITY_VALUES as Tt, DOTNET_ORM_VALUES as U, TestingSchema as Ua, RUST_ERROR_HANDLING_VALUES as Ui, GoOrmSchema as Un, PAYMENTS_VALUES as Ur, ElixirEmailSchema as Ut, DOTNET_LIBRARIES_VALUES as V, TESTING_VALUES as Va, RUST_CACHING_VALUES as Vi, GoMigrationsSchema as Vn, ObservabilitySchema as Vr, ElixirDeploySchema as Vt, DOTNET_REALTIME_VALUES as W, UILibrarySchema as Wa, RUST_FRONTEND_VALUES as Wi, GoProtoToolingSchema as Wn, PYTHON_AI_VALUES as Wr, ElixirHttpSchema as Wt, DirectoryConflictSchema as X, VectorDbSchema as Xa, RUST_REALTIME_VALUES as Xi, GoWebFrameworkSchema as Xn, PYTHON_DATA_VALUES as Xr, ElixirObservabilitySchema as Xt, DatabaseSetupSchema as Y, ValidationSchema as Ya, RUST_ORM_VALUES as Yi, GoValidationSchema as Yn, PYTHON_CLOUD_SDK_VALUES as Yr, ElixirLibrariesSchema as Yt, DotnetApiSchema as Z, VersionChannelSchema as Za, RUST_TEMPLATING_VALUES as Zi, I18N_VALUES as Zn, PYTHON_GRAPHQL_VALUES as Zr, ElixirOrmSchema as Zt, AstroIntegrationSchema as _, SERVER_DEPLOY_VALUES as _a, PythonAuthSchema as _i, GO_CACHING_VALUES as _n, JavaTestingLibrariesSchema as _r, ELIXIR_DOCUMENTATION_VALUES as _t, ANALYTICS_VALUES as a, RustCliSchema as aa, PYTHON_REALTIME_VALUES as ai, FEATURE_FLAGS_VALUES as an, JAVA_LOGGING_VALUES as ar, DotnetRealtimeSchema as at, BackendSchema as b, SHADCN_COLOR_THEME_VALUES as ba, PythonCloudSdkSchema as bi, GO_DI_VALUES as bn, LOGGING_VALUES as br, ELIXIR_HTTP_VALUES as bt, API_VALUES as c, RustLibrariesSchema as ca, PYTHON_TESTING_VALUES as ci, FORMS_VALUES as cn, JAVA_WEB_FRAMEWORK_VALUES as cr, DotnetWebFrameworkSchema as ct, AUTH_VALUES as d, RustObservabilitySchema as da, PackageManagerSchema as di, FileStorageSchema as dn, JavaAuthSchema as dr, ELIXIR_API_VALUES as dt, RealtimeSchema as ea, PYTHON_MESSAGE_QUEUE_VALUES as ei, ElixirTestingSchema as en, WebDeploySchema as eo, JAVA_API_VALUES as er, DotnetDeploySchema as et, AddInputSchema as f, RustOrmSchema as fa, PaymentsSchema as fi, FileUploadSchema as fn, JavaBuildToolSchema as fr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as ft, AnimationSchema as g, SEARCH_VALUES as ga, PythonApiSchema as gi, GO_AUTH_VALUES as gn, JavaOrmSchema as gr, ELIXIR_DEPLOY_VALUES as gt, AnalyticsSchema as h, RustWebFrameworkSchema as ha, PythonAiSchema as hi, GO_API_VALUES as hn, JavaLoggingSchema as hr, ELIXIR_CLUSTERING_VALUES as ht, AI_VALUES as i, RustCachingSchema as ia, PYTHON_QUALITY_VALUES as ii, ExamplesSchema as in, JAVA_LIBRARIES_VALUES as ir, DotnetOrmSchema as it, CachingSchema as j, ShadcnFontSchema as ja, PythonServerSchema as ji, GO_VALIDATION_VALUES as jn, MobileLibrariesSchema as jr, ELIXIR_WEB_FRAMEWORK_VALUES as jt, CSSFrameworkSchema as k, ShadcnBaseSchema as ka, PythonQualitySchema as ki, GO_TEMPLATING_VALUES as kn, MOBILE_UI_VALUES as kr, ELIXIR_TESTING_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RustLoggingSchema as la, PYTHON_VALIDATION_VALUES as li, FRONTEND_VALUES as ln, JOB_QUEUE_VALUES as lr, ECOSYSTEM_VALUES as lt, AiDocsSchema as m, RustTemplatingSchema as ma, ProjectNameSchema as mi, FrontendSchema as mn, JavaLibrariesSchema as mr, ELIXIR_CACHING_VALUES as mt, AISchema as n, RustApiSchema as na, PYTHON_ORM_VALUES as ni, ElixirWebFrameworkSchema as nn, JAVA_BUILD_TOOL_VALUES as nr, DotnetLibrariesSchema as nt, ANIMATION_VALUES as o, RustErrorHandlingSchema as oa, PYTHON_SERVER_VALUES as oi, FILE_STORAGE_VALUES as on, JAVA_ORM_VALUES as or, DotnetTestingSchema as ot, AddonsSchema as p, RustRealtimeSchema as pa, ProjectConfigSchema as pi, FormsSchema as pn, JavaLanguageSchema as pr, ELIXIR_AUTH_VALUES as pt, DOTNET_WEB_FRAMEWORK_VALUES as q, VECTOR_DB_VALUES as qa, RUST_MESSAGE_QUEUE_VALUES as qi, GoTemplatingSchema as qn, PYTHON_CACHING_VALUES as qr, ElixirJobsSchema as qt, AI_DOCS_VALUES as r, RustAuthSchema as ra, PYTHON_PACKAGE_MANAGER_VALUES as ri, EmailSchema as rn, JAVA_LANGUAGE_VALUES as rr, DotnetObservabilitySchema as rt, APISchema as s, RustFrontendSchema as sa, PYTHON_TASK_QUEUE_VALUES as si, FILE_UPLOAD_VALUES as sn, JAVA_TESTING_LIBRARIES_VALUES as sr, DotnetValidationSchema as st, ADDONS_VALUES as t, RuntimeSchema as ta, PYTHON_OBSERVABILITY_VALUES as ti, ElixirValidationSchema as tn, WorkspaceShapeSchema as to, JAVA_AUTH_VALUES as tr, DotnetJobQueueSchema as tt, ASTRO_INTEGRATION_VALUES as u, RustMessageQueueSchema as ua, PYTHON_WEB_FRAMEWORK_VALUES as ui, FeatureFlagsSchema as un, JavaApiSchema as ur, EFFECT_VALUES as ut, AuthSchema as v, SHADCN_BASE_COLOR_VALUES as va, PythonCachingSchema as vi, GO_CLI_VALUES as vn, JavaWebFrameworkSchema as vr, ELIXIR_EMAIL_VALUES as vt, BetterTStackConfigSchema as w, SHADCN_STYLE_VALUES as wa, PythonMediaSchema as wi, GO_OBSERVABILITY_VALUES as wn, MOBILE_NAVIGATION_VALUES as wr, ELIXIR_LIBRARIES_VALUES as wt, BetterFullstackConfigFileSchema as x, SHADCN_FONT_VALUES as xa, PythonDataSchema as xi, GO_LOGGING_VALUES as xn, LoggingSchema as xr, ELIXIR_I18N_VALUES as xt, BACKEND_VALUES as y, SHADCN_BASE_VALUES as ya, PythonCliSchema as yi, GO_CONFIG_VALUES as yn, JobQueueSchema as yr, ELIXIR_HTTP_SERVER_VALUES as yt, DOTNET_DEPLOY_VALUES as z, StateManagementSchema as za, RUST_API_VALUES as zi, GoLoggingSchema as zn, ORMSchema as zr, ElixirCachingSchema as zt };
|
|
12974
|
+
//# sourceMappingURL=schemas-q5-QVYJy.d.mts.map
|