@better-fullstack/types 2.2.0 → 2.3.1
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-BCprHCB6.d.mts} +2 -2
- package/dist/defaults-BCprHCB6.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 +1573 -313
- 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-D9kkuJz7.d.mts → schemas-B79HRN5e.d.mts} +1751 -614
- package/dist/schemas-B79HRN5e.d.mts.map +1 -0
- package/dist/{schemas-l7hOhH8U.mjs → schemas-CprYz5Sh.mjs} +142 -4
- package/dist/schemas-CprYz5Sh.mjs.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-BkHZlyKH.d.mts} +2 -2
- package/dist/{stack-graph-F6UKYYR0.d.mts.map → stack-graph-BkHZlyKH.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-BmsX82IA.d.mts} +26 -8
- package/dist/stack-translation-BmsX82IA.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-BuRzqsRV.d.mts} +12 -3
- package/dist/types-BuRzqsRV.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
|
@@ -22,62 +22,68 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
22
22
|
dotnet: "dotnet";
|
|
23
23
|
}>, z.ZodLiteral<"universal">]>;
|
|
24
24
|
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
push: "push";
|
|
26
|
+
frontend: "frontend";
|
|
27
|
+
backend: "backend";
|
|
28
|
+
mobile: "mobile";
|
|
27
29
|
database: "database";
|
|
30
|
+
api: "api";
|
|
31
|
+
graphql: "graphql";
|
|
28
32
|
orm: "orm";
|
|
29
33
|
auth: "auth";
|
|
30
|
-
payments: "payments";
|
|
31
|
-
frontend: "frontend";
|
|
32
|
-
examples: "examples";
|
|
33
|
-
dbSetup: "dbSetup";
|
|
34
|
-
backend: "backend";
|
|
35
34
|
runtime: "runtime";
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
testing: "testing";
|
|
40
|
-
email: "email";
|
|
41
|
-
validation: "validation";
|
|
35
|
+
deploy: "deploy";
|
|
36
|
+
dbSetup: "dbSetup";
|
|
37
|
+
migrations: "migrations";
|
|
42
38
|
realtime: "realtime";
|
|
43
|
-
|
|
44
|
-
animation: "animation";
|
|
45
|
-
fileUpload: "fileUpload";
|
|
46
|
-
logging: "logging";
|
|
47
|
-
observability: "observability";
|
|
48
|
-
featureFlags: "featureFlags";
|
|
49
|
-
analytics: "analytics";
|
|
50
|
-
cms: "cms";
|
|
39
|
+
navigation: "navigation";
|
|
51
40
|
caching: "caching";
|
|
52
|
-
|
|
53
|
-
|
|
41
|
+
observability: "observability";
|
|
42
|
+
email: "email";
|
|
54
43
|
search: "search";
|
|
55
44
|
vectorDb: "vectorDb";
|
|
56
45
|
fileStorage: "fileStorage";
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
46
|
+
jobQueue: "jobQueue";
|
|
47
|
+
rateLimit: "rateLimit";
|
|
48
|
+
testing: "testing";
|
|
49
|
+
stateManagement: "stateManagement";
|
|
50
|
+
forms: "forms";
|
|
51
|
+
animation: "animation";
|
|
52
|
+
fileUpload: "fileUpload";
|
|
53
|
+
validation: "validation";
|
|
54
|
+
effect: "effect";
|
|
63
55
|
ui: "ui";
|
|
64
56
|
css: "css";
|
|
65
57
|
storage: "storage";
|
|
66
|
-
push: "push";
|
|
67
58
|
ota: "ota";
|
|
68
59
|
deepLinking: "deepLinking";
|
|
60
|
+
ai: "ai";
|
|
61
|
+
payments: "payments";
|
|
62
|
+
logging: "logging";
|
|
63
|
+
featureFlags: "featureFlags";
|
|
64
|
+
analytics: "analytics";
|
|
65
|
+
cms: "cms";
|
|
66
|
+
i18n: "i18n";
|
|
69
67
|
documentation: "documentation";
|
|
70
68
|
codeQuality: "codeQuality";
|
|
71
69
|
appPlatform: "appPlatform";
|
|
72
70
|
dataFetching: "dataFetching";
|
|
73
71
|
workspaceTooling: "workspaceTooling";
|
|
72
|
+
examples: "examples";
|
|
74
73
|
language: "language";
|
|
75
74
|
buildTool: "buildTool";
|
|
76
75
|
cli: "cli";
|
|
77
76
|
errorHandling: "errorHandling";
|
|
78
77
|
httpClient: "httpClient";
|
|
79
78
|
libraries: "libraries";
|
|
79
|
+
config: "config";
|
|
80
80
|
templating: "templating";
|
|
81
|
+
cloudSdk: "cloudSdk";
|
|
82
|
+
data: "data";
|
|
83
|
+
media: "media";
|
|
84
|
+
server: "server";
|
|
85
|
+
packageManager: "packageManager";
|
|
86
|
+
messageQueue: "messageQueue";
|
|
81
87
|
}>;
|
|
82
88
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
83
89
|
selected: "selected";
|
|
@@ -89,62 +95,68 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
89
95
|
declare const StackPartSchema: z.ZodObject<{
|
|
90
96
|
id: z.ZodString;
|
|
91
97
|
role: z.ZodEnum<{
|
|
92
|
-
|
|
93
|
-
|
|
98
|
+
push: "push";
|
|
99
|
+
frontend: "frontend";
|
|
100
|
+
backend: "backend";
|
|
101
|
+
mobile: "mobile";
|
|
94
102
|
database: "database";
|
|
103
|
+
api: "api";
|
|
104
|
+
graphql: "graphql";
|
|
95
105
|
orm: "orm";
|
|
96
106
|
auth: "auth";
|
|
97
|
-
payments: "payments";
|
|
98
|
-
frontend: "frontend";
|
|
99
|
-
examples: "examples";
|
|
100
|
-
dbSetup: "dbSetup";
|
|
101
|
-
backend: "backend";
|
|
102
107
|
runtime: "runtime";
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
testing: "testing";
|
|
107
|
-
email: "email";
|
|
108
|
-
validation: "validation";
|
|
108
|
+
deploy: "deploy";
|
|
109
|
+
dbSetup: "dbSetup";
|
|
110
|
+
migrations: "migrations";
|
|
109
111
|
realtime: "realtime";
|
|
110
|
-
|
|
111
|
-
animation: "animation";
|
|
112
|
-
fileUpload: "fileUpload";
|
|
113
|
-
logging: "logging";
|
|
114
|
-
observability: "observability";
|
|
115
|
-
featureFlags: "featureFlags";
|
|
116
|
-
analytics: "analytics";
|
|
117
|
-
cms: "cms";
|
|
112
|
+
navigation: "navigation";
|
|
118
113
|
caching: "caching";
|
|
119
|
-
|
|
120
|
-
|
|
114
|
+
observability: "observability";
|
|
115
|
+
email: "email";
|
|
121
116
|
search: "search";
|
|
122
117
|
vectorDb: "vectorDb";
|
|
123
118
|
fileStorage: "fileStorage";
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
119
|
+
jobQueue: "jobQueue";
|
|
120
|
+
rateLimit: "rateLimit";
|
|
121
|
+
testing: "testing";
|
|
122
|
+
stateManagement: "stateManagement";
|
|
123
|
+
forms: "forms";
|
|
124
|
+
animation: "animation";
|
|
125
|
+
fileUpload: "fileUpload";
|
|
126
|
+
validation: "validation";
|
|
127
|
+
effect: "effect";
|
|
130
128
|
ui: "ui";
|
|
131
129
|
css: "css";
|
|
132
130
|
storage: "storage";
|
|
133
|
-
push: "push";
|
|
134
131
|
ota: "ota";
|
|
135
132
|
deepLinking: "deepLinking";
|
|
133
|
+
ai: "ai";
|
|
134
|
+
payments: "payments";
|
|
135
|
+
logging: "logging";
|
|
136
|
+
featureFlags: "featureFlags";
|
|
137
|
+
analytics: "analytics";
|
|
138
|
+
cms: "cms";
|
|
139
|
+
i18n: "i18n";
|
|
136
140
|
documentation: "documentation";
|
|
137
141
|
codeQuality: "codeQuality";
|
|
138
142
|
appPlatform: "appPlatform";
|
|
139
143
|
dataFetching: "dataFetching";
|
|
140
144
|
workspaceTooling: "workspaceTooling";
|
|
145
|
+
examples: "examples";
|
|
141
146
|
language: "language";
|
|
142
147
|
buildTool: "buildTool";
|
|
143
148
|
cli: "cli";
|
|
144
149
|
errorHandling: "errorHandling";
|
|
145
150
|
httpClient: "httpClient";
|
|
146
151
|
libraries: "libraries";
|
|
152
|
+
config: "config";
|
|
147
153
|
templating: "templating";
|
|
154
|
+
cloudSdk: "cloudSdk";
|
|
155
|
+
data: "data";
|
|
156
|
+
media: "media";
|
|
157
|
+
server: "server";
|
|
158
|
+
packageManager: "packageManager";
|
|
159
|
+
messageQueue: "messageQueue";
|
|
148
160
|
}>;
|
|
149
161
|
toolId: z.ZodString;
|
|
150
162
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -189,13 +201,13 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
189
201
|
sequelize: "sequelize";
|
|
190
202
|
}>;
|
|
191
203
|
declare const BackendSchema: z.ZodEnum<{
|
|
204
|
+
effect: "effect";
|
|
192
205
|
none: "none";
|
|
193
206
|
hono: "hono";
|
|
194
207
|
express: "express";
|
|
195
208
|
fastify: "fastify";
|
|
196
209
|
elysia: "elysia";
|
|
197
210
|
fets: "fets";
|
|
198
|
-
effect: "effect";
|
|
199
211
|
nestjs: "nestjs";
|
|
200
212
|
adonisjs: "adonisjs";
|
|
201
213
|
nitro: "nitro";
|
|
@@ -287,8 +299,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
287
299
|
*/
|
|
288
300
|
declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
|
|
289
301
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
290
|
-
none: "none";
|
|
291
302
|
ai: "ai";
|
|
303
|
+
none: "none";
|
|
292
304
|
"chat-sdk": "chat-sdk";
|
|
293
305
|
"tanstack-showcase": "tanstack-showcase";
|
|
294
306
|
}>;
|
|
@@ -395,8 +407,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
395
407
|
"ai-cli": "ai-cli";
|
|
396
408
|
}>;
|
|
397
409
|
declare const EffectSchema: z.ZodEnum<{
|
|
398
|
-
none: "none";
|
|
399
410
|
effect: "effect";
|
|
411
|
+
none: "none";
|
|
400
412
|
"effect-full": "effect-full";
|
|
401
413
|
}>;
|
|
402
414
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -568,9 +580,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
568
580
|
}>;
|
|
569
581
|
declare const MobileUISchema: z.ZodEnum<{
|
|
570
582
|
none: "none";
|
|
571
|
-
uniwind: "uniwind";
|
|
572
583
|
tamagui: "tamagui";
|
|
573
584
|
"gluestack-ui": "gluestack-ui";
|
|
585
|
+
uniwind: "uniwind";
|
|
574
586
|
unistyles: "unistyles";
|
|
575
587
|
}>;
|
|
576
588
|
declare const MobileStorageSchema: 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";
|
|
@@ -632,12 +667,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
632
667
|
ratatui: "ratatui";
|
|
633
668
|
}>;
|
|
634
669
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
670
|
+
config: "config";
|
|
635
671
|
none: "none";
|
|
636
672
|
serde: "serde";
|
|
637
673
|
uuid: "uuid";
|
|
638
674
|
chrono: "chrono";
|
|
639
675
|
reqwest: "reqwest";
|
|
640
|
-
config: "config";
|
|
641
676
|
dashmap: "dashmap";
|
|
642
677
|
"parking-lot": "parking-lot";
|
|
643
678
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -1249,36 +1369,36 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
1249
1369
|
"geist-mono": "geist-mono";
|
|
1250
1370
|
}>;
|
|
1251
1371
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
1252
|
-
none: "none";
|
|
1253
1372
|
default: "default";
|
|
1373
|
+
none: "none";
|
|
1254
1374
|
small: "small";
|
|
1255
1375
|
medium: "medium";
|
|
1256
1376
|
large: "large";
|
|
1257
1377
|
}>;
|
|
1258
1378
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1379
|
+
error: "error";
|
|
1259
1380
|
merge: "merge";
|
|
1260
1381
|
overwrite: "overwrite";
|
|
1261
1382
|
increment: "increment";
|
|
1262
|
-
error: "error";
|
|
1263
1383
|
}>;
|
|
1264
1384
|
declare const TemplateSchema: z.ZodEnum<{
|
|
1265
1385
|
none: "none";
|
|
1386
|
+
uniwind: "uniwind";
|
|
1266
1387
|
mern: "mern";
|
|
1267
1388
|
pern: "pern";
|
|
1268
1389
|
t3: "t3";
|
|
1269
1390
|
saas: "saas";
|
|
1270
|
-
uniwind: "uniwind";
|
|
1271
1391
|
}>;
|
|
1272
1392
|
declare const ProjectNameSchema: z.ZodString;
|
|
1273
1393
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1274
1394
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1275
1395
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1276
1396
|
none: "none";
|
|
1397
|
+
uniwind: "uniwind";
|
|
1277
1398
|
mern: "mern";
|
|
1278
1399
|
pern: "pern";
|
|
1279
1400
|
t3: "t3";
|
|
1280
1401
|
saas: "saas";
|
|
1281
|
-
uniwind: "uniwind";
|
|
1282
1402
|
}>>;
|
|
1283
1403
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1284
1404
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1405,8 +1525,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1405
1525
|
capacitor: "capacitor";
|
|
1406
1526
|
}>>>;
|
|
1407
1527
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1408
|
-
none: "none";
|
|
1409
1528
|
ai: "ai";
|
|
1529
|
+
none: "none";
|
|
1410
1530
|
"chat-sdk": "chat-sdk";
|
|
1411
1531
|
"tanstack-showcase": "tanstack-showcase";
|
|
1412
1532
|
}>>>;
|
|
@@ -1440,13 +1560,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1440
1560
|
docker: "docker";
|
|
1441
1561
|
}>>;
|
|
1442
1562
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
1563
|
+
effect: "effect";
|
|
1443
1564
|
none: "none";
|
|
1444
1565
|
hono: "hono";
|
|
1445
1566
|
express: "express";
|
|
1446
1567
|
fastify: "fastify";
|
|
1447
1568
|
elysia: "elysia";
|
|
1448
1569
|
fets: "fets";
|
|
1449
|
-
effect: "effect";
|
|
1450
1570
|
nestjs: "nestjs";
|
|
1451
1571
|
adonisjs: "adonisjs";
|
|
1452
1572
|
nitro: "nitro";
|
|
@@ -1493,10 +1613,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1493
1613
|
vercel: "vercel";
|
|
1494
1614
|
}>>;
|
|
1495
1615
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1616
|
+
error: "error";
|
|
1496
1617
|
merge: "merge";
|
|
1497
1618
|
overwrite: "overwrite";
|
|
1498
1619
|
increment: "increment";
|
|
1499
|
-
error: "error";
|
|
1500
1620
|
}>>;
|
|
1501
1621
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1502
1622
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1525,8 +1645,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1525
1645
|
"ai-cli": "ai-cli";
|
|
1526
1646
|
}>>;
|
|
1527
1647
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1528
|
-
none: "none";
|
|
1529
1648
|
effect: "effect";
|
|
1649
|
+
none: "none";
|
|
1530
1650
|
"effect-full": "effect-full";
|
|
1531
1651
|
}>>;
|
|
1532
1652
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1661,8 +1781,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1661
1781
|
"geist-mono": "geist-mono";
|
|
1662
1782
|
}>>;
|
|
1663
1783
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1664
|
-
none: "none";
|
|
1665
1784
|
default: "default";
|
|
1785
|
+
none: "none";
|
|
1666
1786
|
small: "small";
|
|
1667
1787
|
medium: "medium";
|
|
1668
1788
|
large: "large";
|
|
@@ -1795,9 +1915,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1795
1915
|
}>>;
|
|
1796
1916
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1797
1917
|
none: "none";
|
|
1798
|
-
uniwind: "uniwind";
|
|
1799
1918
|
tamagui: "tamagui";
|
|
1800
1919
|
"gluestack-ui": "gluestack-ui";
|
|
1920
|
+
uniwind: "uniwind";
|
|
1801
1921
|
unistyles: "unistyles";
|
|
1802
1922
|
}>>;
|
|
1803
1923
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -1859,12 +2002,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1859
2002
|
ratatui: "ratatui";
|
|
1860
2003
|
}>>;
|
|
1861
2004
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2005
|
+
config: "config";
|
|
1862
2006
|
none: "none";
|
|
1863
2007
|
serde: "serde";
|
|
1864
2008
|
uuid: "uuid";
|
|
1865
2009
|
chrono: "chrono";
|
|
1866
2010
|
reqwest: "reqwest";
|
|
1867
|
-
config: "config";
|
|
1868
2011
|
dashmap: "dashmap";
|
|
1869
2012
|
"parking-lot": "parking-lot";
|
|
1870
2013
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -2388,37 +2616,43 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2388
2616
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2389
2617
|
}, z.core.$strip>;
|
|
2390
2618
|
declare const AddInputSchema: z.ZodObject<{
|
|
2391
|
-
|
|
2619
|
+
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2392
2620
|
none: "none";
|
|
2621
|
+
"tanstack-router": "tanstack-router";
|
|
2622
|
+
"react-router": "react-router";
|
|
2623
|
+
"react-vite": "react-vite";
|
|
2624
|
+
"vanilla-vite": "vanilla-vite";
|
|
2625
|
+
vue: "vue";
|
|
2626
|
+
"tanstack-start": "tanstack-start";
|
|
2627
|
+
next: "next";
|
|
2628
|
+
vinext: "vinext";
|
|
2629
|
+
nuxt: "nuxt";
|
|
2630
|
+
"native-bare": "native-bare";
|
|
2631
|
+
"native-uniwind": "native-uniwind";
|
|
2632
|
+
"native-unistyles": "native-unistyles";
|
|
2633
|
+
svelte: "svelte";
|
|
2634
|
+
solid: "solid";
|
|
2635
|
+
"solid-start": "solid-start";
|
|
2636
|
+
astro: "astro";
|
|
2637
|
+
qwik: "qwik";
|
|
2638
|
+
angular: "angular";
|
|
2639
|
+
redwood: "redwood";
|
|
2640
|
+
fresh: "fresh";
|
|
2641
|
+
}>>>;
|
|
2642
|
+
backend: z.ZodOptional<z.ZodEnum<{
|
|
2393
2643
|
effect: "effect";
|
|
2394
|
-
"effect-full": "effect-full";
|
|
2395
|
-
}>>;
|
|
2396
|
-
ai: z.ZodOptional<z.ZodEnum<{
|
|
2397
2644
|
none: "none";
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
"tanstack-ai": "tanstack-ai";
|
|
2410
|
-
"ai-cli": "ai-cli";
|
|
2411
|
-
}>>;
|
|
2412
|
-
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2413
|
-
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2414
|
-
typescript: "typescript";
|
|
2415
|
-
"react-native": "react-native";
|
|
2416
|
-
rust: "rust";
|
|
2417
|
-
python: "python";
|
|
2418
|
-
go: "go";
|
|
2419
|
-
java: "java";
|
|
2420
|
-
elixir: "elixir";
|
|
2421
|
-
dotnet: "dotnet";
|
|
2645
|
+
hono: "hono";
|
|
2646
|
+
express: "express";
|
|
2647
|
+
fastify: "fastify";
|
|
2648
|
+
elysia: "elysia";
|
|
2649
|
+
fets: "fets";
|
|
2650
|
+
nestjs: "nestjs";
|
|
2651
|
+
adonisjs: "adonisjs";
|
|
2652
|
+
nitro: "nitro";
|
|
2653
|
+
encore: "encore";
|
|
2654
|
+
convex: "convex";
|
|
2655
|
+
self: "self";
|
|
2422
2656
|
}>>;
|
|
2423
2657
|
database: z.ZodOptional<z.ZodEnum<{
|
|
2424
2658
|
none: "none";
|
|
@@ -2429,10 +2663,20 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2429
2663
|
edgedb: "edgedb";
|
|
2430
2664
|
redis: "redis";
|
|
2431
2665
|
}>>;
|
|
2432
|
-
|
|
2666
|
+
api: z.ZodOptional<z.ZodEnum<{
|
|
2433
2667
|
none: "none";
|
|
2434
|
-
|
|
2435
|
-
|
|
2668
|
+
trpc: "trpc";
|
|
2669
|
+
orpc: "orpc";
|
|
2670
|
+
"ts-rest": "ts-rest";
|
|
2671
|
+
garph: "garph";
|
|
2672
|
+
"graphql-yoga": "graphql-yoga";
|
|
2673
|
+
"apollo-server": "apollo-server";
|
|
2674
|
+
openapi: "openapi";
|
|
2675
|
+
}>>;
|
|
2676
|
+
orm: z.ZodOptional<z.ZodEnum<{
|
|
2677
|
+
none: "none";
|
|
2678
|
+
drizzle: "drizzle";
|
|
2679
|
+
prisma: "prisma";
|
|
2436
2680
|
mongoose: "mongoose";
|
|
2437
2681
|
typeorm: "typeorm";
|
|
2438
2682
|
kysely: "kysely";
|
|
@@ -2453,6 +2697,169 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2453
2697
|
kinde: "kinde";
|
|
2454
2698
|
passport: "passport";
|
|
2455
2699
|
}>>;
|
|
2700
|
+
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2701
|
+
none: "none";
|
|
2702
|
+
bun: "bun";
|
|
2703
|
+
node: "node";
|
|
2704
|
+
workers: "workers";
|
|
2705
|
+
}>>;
|
|
2706
|
+
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2707
|
+
none: "none";
|
|
2708
|
+
turso: "turso";
|
|
2709
|
+
neon: "neon";
|
|
2710
|
+
"prisma-postgres": "prisma-postgres";
|
|
2711
|
+
planetscale: "planetscale";
|
|
2712
|
+
"mongodb-atlas": "mongodb-atlas";
|
|
2713
|
+
supabase: "supabase";
|
|
2714
|
+
upstash: "upstash";
|
|
2715
|
+
d1: "d1";
|
|
2716
|
+
docker: "docker";
|
|
2717
|
+
}>>;
|
|
2718
|
+
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2719
|
+
none: "none";
|
|
2720
|
+
"socket-io": "socket-io";
|
|
2721
|
+
ws: "ws";
|
|
2722
|
+
partykit: "partykit";
|
|
2723
|
+
ably: "ably";
|
|
2724
|
+
pusher: "pusher";
|
|
2725
|
+
liveblocks: "liveblocks";
|
|
2726
|
+
yjs: "yjs";
|
|
2727
|
+
}>>;
|
|
2728
|
+
caching: z.ZodOptional<z.ZodEnum<{
|
|
2729
|
+
none: "none";
|
|
2730
|
+
redis: "redis";
|
|
2731
|
+
"upstash-redis": "upstash-redis";
|
|
2732
|
+
}>>;
|
|
2733
|
+
observability: z.ZodOptional<z.ZodEnum<{
|
|
2734
|
+
none: "none";
|
|
2735
|
+
opentelemetry: "opentelemetry";
|
|
2736
|
+
sentry: "sentry";
|
|
2737
|
+
grafana: "grafana";
|
|
2738
|
+
datadog: "datadog";
|
|
2739
|
+
axiom: "axiom";
|
|
2740
|
+
betterstack: "betterstack";
|
|
2741
|
+
}>>;
|
|
2742
|
+
email: z.ZodOptional<z.ZodEnum<{
|
|
2743
|
+
none: "none";
|
|
2744
|
+
"react-email": "react-email";
|
|
2745
|
+
resend: "resend";
|
|
2746
|
+
nodemailer: "nodemailer";
|
|
2747
|
+
postmark: "postmark";
|
|
2748
|
+
sendgrid: "sendgrid";
|
|
2749
|
+
"aws-ses": "aws-ses";
|
|
2750
|
+
mailgun: "mailgun";
|
|
2751
|
+
plunk: "plunk";
|
|
2752
|
+
}>>;
|
|
2753
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
2754
|
+
none: "none";
|
|
2755
|
+
meilisearch: "meilisearch";
|
|
2756
|
+
typesense: "typesense";
|
|
2757
|
+
elasticsearch: "elasticsearch";
|
|
2758
|
+
opensearch: "opensearch";
|
|
2759
|
+
algolia: "algolia";
|
|
2760
|
+
bleve: "bleve";
|
|
2761
|
+
}>>;
|
|
2762
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2763
|
+
none: "none";
|
|
2764
|
+
pgvector: "pgvector";
|
|
2765
|
+
qdrant: "qdrant";
|
|
2766
|
+
chroma: "chroma";
|
|
2767
|
+
pinecone: "pinecone";
|
|
2768
|
+
}>>;
|
|
2769
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
2770
|
+
none: "none";
|
|
2771
|
+
s3: "s3";
|
|
2772
|
+
r2: "r2";
|
|
2773
|
+
cloudinary: "cloudinary";
|
|
2774
|
+
"supabase-storage": "supabase-storage";
|
|
2775
|
+
}>>;
|
|
2776
|
+
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2777
|
+
none: "none";
|
|
2778
|
+
bullmq: "bullmq";
|
|
2779
|
+
"trigger-dev": "trigger-dev";
|
|
2780
|
+
inngest: "inngest";
|
|
2781
|
+
temporal: "temporal";
|
|
2782
|
+
}>>;
|
|
2783
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2784
|
+
none: "none";
|
|
2785
|
+
arcjet: "arcjet";
|
|
2786
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2787
|
+
}>>;
|
|
2788
|
+
testing: z.ZodOptional<z.ZodEnum<{
|
|
2789
|
+
none: "none";
|
|
2790
|
+
vitest: "vitest";
|
|
2791
|
+
playwright: "playwright";
|
|
2792
|
+
"vitest-playwright": "vitest-playwright";
|
|
2793
|
+
jest: "jest";
|
|
2794
|
+
mocha: "mocha";
|
|
2795
|
+
cypress: "cypress";
|
|
2796
|
+
}>>;
|
|
2797
|
+
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2798
|
+
none: "none";
|
|
2799
|
+
zustand: "zustand";
|
|
2800
|
+
jotai: "jotai";
|
|
2801
|
+
nanostores: "nanostores";
|
|
2802
|
+
"redux-toolkit": "redux-toolkit";
|
|
2803
|
+
mobx: "mobx";
|
|
2804
|
+
xstate: "xstate";
|
|
2805
|
+
valtio: "valtio";
|
|
2806
|
+
"tanstack-store": "tanstack-store";
|
|
2807
|
+
"legend-state": "legend-state";
|
|
2808
|
+
}>>;
|
|
2809
|
+
forms: z.ZodOptional<z.ZodEnum<{
|
|
2810
|
+
none: "none";
|
|
2811
|
+
"tanstack-form": "tanstack-form";
|
|
2812
|
+
"react-hook-form": "react-hook-form";
|
|
2813
|
+
formik: "formik";
|
|
2814
|
+
"final-form": "final-form";
|
|
2815
|
+
conform: "conform";
|
|
2816
|
+
"modular-forms": "modular-forms";
|
|
2817
|
+
}>>;
|
|
2818
|
+
animation: z.ZodOptional<z.ZodEnum<{
|
|
2819
|
+
none: "none";
|
|
2820
|
+
"framer-motion": "framer-motion";
|
|
2821
|
+
gsap: "gsap";
|
|
2822
|
+
"react-spring": "react-spring";
|
|
2823
|
+
"auto-animate": "auto-animate";
|
|
2824
|
+
lottie: "lottie";
|
|
2825
|
+
}>>;
|
|
2826
|
+
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2827
|
+
none: "none";
|
|
2828
|
+
uploadthing: "uploadthing";
|
|
2829
|
+
filepond: "filepond";
|
|
2830
|
+
uppy: "uppy";
|
|
2831
|
+
}>>;
|
|
2832
|
+
validation: z.ZodOptional<z.ZodEnum<{
|
|
2833
|
+
none: "none";
|
|
2834
|
+
zod: "zod";
|
|
2835
|
+
valibot: "valibot";
|
|
2836
|
+
arktype: "arktype";
|
|
2837
|
+
typebox: "typebox";
|
|
2838
|
+
typia: "typia";
|
|
2839
|
+
runtypes: "runtypes";
|
|
2840
|
+
"effect-schema": "effect-schema";
|
|
2841
|
+
}>>;
|
|
2842
|
+
effect: z.ZodOptional<z.ZodEnum<{
|
|
2843
|
+
effect: "effect";
|
|
2844
|
+
none: "none";
|
|
2845
|
+
"effect-full": "effect-full";
|
|
2846
|
+
}>>;
|
|
2847
|
+
ai: z.ZodOptional<z.ZodEnum<{
|
|
2848
|
+
none: "none";
|
|
2849
|
+
"vercel-ai": "vercel-ai";
|
|
2850
|
+
mastra: "mastra";
|
|
2851
|
+
voltagent: "voltagent";
|
|
2852
|
+
langgraph: "langgraph";
|
|
2853
|
+
"openai-agents": "openai-agents";
|
|
2854
|
+
"openai-sdk": "openai-sdk";
|
|
2855
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
2856
|
+
"google-adk": "google-adk";
|
|
2857
|
+
modelfusion: "modelfusion";
|
|
2858
|
+
langchain: "langchain";
|
|
2859
|
+
llamaindex: "llamaindex";
|
|
2860
|
+
"tanstack-ai": "tanstack-ai";
|
|
2861
|
+
"ai-cli": "ai-cli";
|
|
2862
|
+
}>>;
|
|
2456
2863
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
2457
2864
|
none: "none";
|
|
2458
2865
|
revenuecat: "revenuecat";
|
|
@@ -2466,29 +2873,67 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2466
2873
|
autumn: "autumn";
|
|
2467
2874
|
commet: "commet";
|
|
2468
2875
|
}>>;
|
|
2469
|
-
|
|
2876
|
+
logging: z.ZodOptional<z.ZodEnum<{
|
|
2470
2877
|
none: "none";
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2878
|
+
pino: "pino";
|
|
2879
|
+
winston: "winston";
|
|
2880
|
+
evlog: "evlog";
|
|
2881
|
+
}>>;
|
|
2882
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2883
|
+
none: "none";
|
|
2884
|
+
growthbook: "growthbook";
|
|
2885
|
+
posthog: "posthog";
|
|
2886
|
+
launchdarkly: "launchdarkly";
|
|
2887
|
+
flagsmith: "flagsmith";
|
|
2888
|
+
unleash: "unleash";
|
|
2889
|
+
}>>;
|
|
2890
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
2891
|
+
none: "none";
|
|
2892
|
+
posthog: "posthog";
|
|
2893
|
+
plausible: "plausible";
|
|
2894
|
+
umami: "umami";
|
|
2895
|
+
ga4: "ga4";
|
|
2896
|
+
}>>;
|
|
2897
|
+
cms: z.ZodOptional<z.ZodEnum<{
|
|
2898
|
+
none: "none";
|
|
2899
|
+
payload: "payload";
|
|
2900
|
+
sanity: "sanity";
|
|
2901
|
+
strapi: "strapi";
|
|
2902
|
+
tinacms: "tinacms";
|
|
2903
|
+
directus: "directus";
|
|
2904
|
+
keystatic: "keystatic";
|
|
2905
|
+
contentful: "contentful";
|
|
2906
|
+
}>>;
|
|
2907
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2908
|
+
none: "none";
|
|
2909
|
+
paraglide: "paraglide";
|
|
2910
|
+
i18next: "i18next";
|
|
2911
|
+
"next-intl": "next-intl";
|
|
2912
|
+
intlayer: "intlayer";
|
|
2913
|
+
}>>;
|
|
2914
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2915
|
+
ai: "ai";
|
|
2916
|
+
none: "none";
|
|
2917
|
+
"chat-sdk": "chat-sdk";
|
|
2918
|
+
"tanstack-showcase": "tanstack-showcase";
|
|
2491
2919
|
}>>>;
|
|
2920
|
+
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
2921
|
+
bun: "bun";
|
|
2922
|
+
npm: "npm";
|
|
2923
|
+
pnpm: "pnpm";
|
|
2924
|
+
yarn: "yarn";
|
|
2925
|
+
}>>;
|
|
2926
|
+
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2927
|
+
typescript: "typescript";
|
|
2928
|
+
"react-native": "react-native";
|
|
2929
|
+
rust: "rust";
|
|
2930
|
+
python: "python";
|
|
2931
|
+
go: "go";
|
|
2932
|
+
java: "java";
|
|
2933
|
+
elixir: "elixir";
|
|
2934
|
+
dotnet: "dotnet";
|
|
2935
|
+
}>>;
|
|
2936
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
2492
2937
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2493
2938
|
none: "none";
|
|
2494
2939
|
pwa: "pwa";
|
|
@@ -2529,18 +2974,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2529
2974
|
electron: "electron";
|
|
2530
2975
|
capacitor: "capacitor";
|
|
2531
2976
|
}>>>;
|
|
2532
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2533
|
-
none: "none";
|
|
2534
|
-
ai: "ai";
|
|
2535
|
-
"chat-sdk": "chat-sdk";
|
|
2536
|
-
"tanstack-showcase": "tanstack-showcase";
|
|
2537
|
-
}>>>;
|
|
2538
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
2539
|
-
bun: "bun";
|
|
2540
|
-
npm: "npm";
|
|
2541
|
-
pnpm: "pnpm";
|
|
2542
|
-
yarn: "yarn";
|
|
2543
|
-
}>>;
|
|
2544
2977
|
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
2545
2978
|
monorepo: "monorepo";
|
|
2546
2979
|
"single-app": "single-app";
|
|
@@ -2551,49 +2984,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2551
2984
|
beta: "beta";
|
|
2552
2985
|
}>>;
|
|
2553
2986
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
2554
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2555
|
-
none: "none";
|
|
2556
|
-
turso: "turso";
|
|
2557
|
-
neon: "neon";
|
|
2558
|
-
"prisma-postgres": "prisma-postgres";
|
|
2559
|
-
planetscale: "planetscale";
|
|
2560
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
2561
|
-
supabase: "supabase";
|
|
2562
|
-
upstash: "upstash";
|
|
2563
|
-
d1: "d1";
|
|
2564
|
-
docker: "docker";
|
|
2565
|
-
}>>;
|
|
2566
|
-
backend: z.ZodOptional<z.ZodEnum<{
|
|
2567
|
-
none: "none";
|
|
2568
|
-
hono: "hono";
|
|
2569
|
-
express: "express";
|
|
2570
|
-
fastify: "fastify";
|
|
2571
|
-
elysia: "elysia";
|
|
2572
|
-
fets: "fets";
|
|
2573
|
-
effect: "effect";
|
|
2574
|
-
nestjs: "nestjs";
|
|
2575
|
-
adonisjs: "adonisjs";
|
|
2576
|
-
nitro: "nitro";
|
|
2577
|
-
encore: "encore";
|
|
2578
|
-
convex: "convex";
|
|
2579
|
-
self: "self";
|
|
2580
|
-
}>>;
|
|
2581
|
-
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2582
|
-
none: "none";
|
|
2583
|
-
bun: "bun";
|
|
2584
|
-
node: "node";
|
|
2585
|
-
workers: "workers";
|
|
2586
|
-
}>>;
|
|
2587
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
2588
|
-
none: "none";
|
|
2589
|
-
trpc: "trpc";
|
|
2590
|
-
orpc: "orpc";
|
|
2591
|
-
"ts-rest": "ts-rest";
|
|
2592
|
-
garph: "garph";
|
|
2593
|
-
"graphql-yoga": "graphql-yoga";
|
|
2594
|
-
"apollo-server": "apollo-server";
|
|
2595
|
-
openapi: "openapi";
|
|
2596
|
-
}>>;
|
|
2597
2987
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2598
2988
|
none: "none";
|
|
2599
2989
|
docker: "docker";
|
|
@@ -2613,56 +3003,15 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2613
3003
|
railway: "railway";
|
|
2614
3004
|
render: "render";
|
|
2615
3005
|
netlify: "netlify";
|
|
2616
|
-
sst: "sst";
|
|
2617
|
-
vercel: "vercel";
|
|
2618
|
-
}>>;
|
|
2619
|
-
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2620
|
-
none: "none";
|
|
2621
|
-
vue: "vue";
|
|
2622
|
-
svelte: "svelte";
|
|
2623
|
-
solid: "solid";
|
|
2624
|
-
react: "react";
|
|
2625
|
-
}>>;
|
|
2626
|
-
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2627
|
-
none: "none";
|
|
2628
|
-
zustand: "zustand";
|
|
2629
|
-
jotai: "jotai";
|
|
2630
|
-
nanostores: "nanostores";
|
|
2631
|
-
"redux-toolkit": "redux-toolkit";
|
|
2632
|
-
mobx: "mobx";
|
|
2633
|
-
xstate: "xstate";
|
|
2634
|
-
valtio: "valtio";
|
|
2635
|
-
"tanstack-store": "tanstack-store";
|
|
2636
|
-
"legend-state": "legend-state";
|
|
2637
|
-
}>>;
|
|
2638
|
-
forms: z.ZodOptional<z.ZodEnum<{
|
|
2639
|
-
none: "none";
|
|
2640
|
-
"tanstack-form": "tanstack-form";
|
|
2641
|
-
"react-hook-form": "react-hook-form";
|
|
2642
|
-
formik: "formik";
|
|
2643
|
-
"final-form": "final-form";
|
|
2644
|
-
conform: "conform";
|
|
2645
|
-
"modular-forms": "modular-forms";
|
|
2646
|
-
}>>;
|
|
2647
|
-
testing: z.ZodOptional<z.ZodEnum<{
|
|
2648
|
-
none: "none";
|
|
2649
|
-
vitest: "vitest";
|
|
2650
|
-
playwright: "playwright";
|
|
2651
|
-
"vitest-playwright": "vitest-playwright";
|
|
2652
|
-
jest: "jest";
|
|
2653
|
-
mocha: "mocha";
|
|
2654
|
-
cypress: "cypress";
|
|
2655
|
-
}>>;
|
|
2656
|
-
email: z.ZodOptional<z.ZodEnum<{
|
|
2657
|
-
none: "none";
|
|
2658
|
-
"react-email": "react-email";
|
|
2659
|
-
resend: "resend";
|
|
2660
|
-
nodemailer: "nodemailer";
|
|
2661
|
-
postmark: "postmark";
|
|
2662
|
-
sendgrid: "sendgrid";
|
|
2663
|
-
"aws-ses": "aws-ses";
|
|
2664
|
-
mailgun: "mailgun";
|
|
2665
|
-
plunk: "plunk";
|
|
3006
|
+
sst: "sst";
|
|
3007
|
+
vercel: "vercel";
|
|
3008
|
+
}>>;
|
|
3009
|
+
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
3010
|
+
none: "none";
|
|
3011
|
+
vue: "vue";
|
|
3012
|
+
svelte: "svelte";
|
|
3013
|
+
solid: "solid";
|
|
3014
|
+
react: "react";
|
|
2666
3015
|
}>>;
|
|
2667
3016
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
2668
3017
|
none: "none";
|
|
@@ -2755,133 +3104,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2755
3104
|
"geist-mono": "geist-mono";
|
|
2756
3105
|
}>>;
|
|
2757
3106
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2758
|
-
none: "none";
|
|
2759
3107
|
default: "default";
|
|
3108
|
+
none: "none";
|
|
2760
3109
|
small: "small";
|
|
2761
3110
|
medium: "medium";
|
|
2762
3111
|
large: "large";
|
|
2763
3112
|
}>>;
|
|
2764
|
-
validation: z.ZodOptional<z.ZodEnum<{
|
|
2765
|
-
none: "none";
|
|
2766
|
-
zod: "zod";
|
|
2767
|
-
valibot: "valibot";
|
|
2768
|
-
arktype: "arktype";
|
|
2769
|
-
typebox: "typebox";
|
|
2770
|
-
typia: "typia";
|
|
2771
|
-
runtypes: "runtypes";
|
|
2772
|
-
"effect-schema": "effect-schema";
|
|
2773
|
-
}>>;
|
|
2774
|
-
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2775
|
-
none: "none";
|
|
2776
|
-
"socket-io": "socket-io";
|
|
2777
|
-
ws: "ws";
|
|
2778
|
-
partykit: "partykit";
|
|
2779
|
-
ably: "ably";
|
|
2780
|
-
pusher: "pusher";
|
|
2781
|
-
liveblocks: "liveblocks";
|
|
2782
|
-
yjs: "yjs";
|
|
2783
|
-
}>>;
|
|
2784
|
-
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2785
|
-
none: "none";
|
|
2786
|
-
bullmq: "bullmq";
|
|
2787
|
-
"trigger-dev": "trigger-dev";
|
|
2788
|
-
inngest: "inngest";
|
|
2789
|
-
temporal: "temporal";
|
|
2790
|
-
}>>;
|
|
2791
|
-
animation: z.ZodOptional<z.ZodEnum<{
|
|
2792
|
-
none: "none";
|
|
2793
|
-
"framer-motion": "framer-motion";
|
|
2794
|
-
gsap: "gsap";
|
|
2795
|
-
"react-spring": "react-spring";
|
|
2796
|
-
"auto-animate": "auto-animate";
|
|
2797
|
-
lottie: "lottie";
|
|
2798
|
-
}>>;
|
|
2799
|
-
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2800
|
-
none: "none";
|
|
2801
|
-
uploadthing: "uploadthing";
|
|
2802
|
-
filepond: "filepond";
|
|
2803
|
-
uppy: "uppy";
|
|
2804
|
-
}>>;
|
|
2805
|
-
logging: z.ZodOptional<z.ZodEnum<{
|
|
2806
|
-
none: "none";
|
|
2807
|
-
pino: "pino";
|
|
2808
|
-
winston: "winston";
|
|
2809
|
-
evlog: "evlog";
|
|
2810
|
-
}>>;
|
|
2811
|
-
observability: z.ZodOptional<z.ZodEnum<{
|
|
2812
|
-
none: "none";
|
|
2813
|
-
opentelemetry: "opentelemetry";
|
|
2814
|
-
sentry: "sentry";
|
|
2815
|
-
grafana: "grafana";
|
|
2816
|
-
datadog: "datadog";
|
|
2817
|
-
axiom: "axiom";
|
|
2818
|
-
betterstack: "betterstack";
|
|
2819
|
-
}>>;
|
|
2820
|
-
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2821
|
-
none: "none";
|
|
2822
|
-
growthbook: "growthbook";
|
|
2823
|
-
posthog: "posthog";
|
|
2824
|
-
launchdarkly: "launchdarkly";
|
|
2825
|
-
flagsmith: "flagsmith";
|
|
2826
|
-
unleash: "unleash";
|
|
2827
|
-
}>>;
|
|
2828
|
-
analytics: z.ZodOptional<z.ZodEnum<{
|
|
2829
|
-
none: "none";
|
|
2830
|
-
posthog: "posthog";
|
|
2831
|
-
plausible: "plausible";
|
|
2832
|
-
umami: "umami";
|
|
2833
|
-
ga4: "ga4";
|
|
2834
|
-
}>>;
|
|
2835
|
-
cms: z.ZodOptional<z.ZodEnum<{
|
|
2836
|
-
none: "none";
|
|
2837
|
-
payload: "payload";
|
|
2838
|
-
sanity: "sanity";
|
|
2839
|
-
strapi: "strapi";
|
|
2840
|
-
tinacms: "tinacms";
|
|
2841
|
-
directus: "directus";
|
|
2842
|
-
keystatic: "keystatic";
|
|
2843
|
-
contentful: "contentful";
|
|
2844
|
-
}>>;
|
|
2845
|
-
caching: z.ZodOptional<z.ZodEnum<{
|
|
2846
|
-
none: "none";
|
|
2847
|
-
redis: "redis";
|
|
2848
|
-
"upstash-redis": "upstash-redis";
|
|
2849
|
-
}>>;
|
|
2850
|
-
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2851
|
-
none: "none";
|
|
2852
|
-
arcjet: "arcjet";
|
|
2853
|
-
"upstash-ratelimit": "upstash-ratelimit";
|
|
2854
|
-
}>>;
|
|
2855
|
-
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2856
|
-
none: "none";
|
|
2857
|
-
paraglide: "paraglide";
|
|
2858
|
-
i18next: "i18next";
|
|
2859
|
-
"next-intl": "next-intl";
|
|
2860
|
-
intlayer: "intlayer";
|
|
2861
|
-
}>>;
|
|
2862
|
-
search: z.ZodOptional<z.ZodEnum<{
|
|
2863
|
-
none: "none";
|
|
2864
|
-
meilisearch: "meilisearch";
|
|
2865
|
-
typesense: "typesense";
|
|
2866
|
-
elasticsearch: "elasticsearch";
|
|
2867
|
-
opensearch: "opensearch";
|
|
2868
|
-
algolia: "algolia";
|
|
2869
|
-
bleve: "bleve";
|
|
2870
|
-
}>>;
|
|
2871
|
-
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2872
|
-
none: "none";
|
|
2873
|
-
pgvector: "pgvector";
|
|
2874
|
-
qdrant: "qdrant";
|
|
2875
|
-
chroma: "chroma";
|
|
2876
|
-
pinecone: "pinecone";
|
|
2877
|
-
}>>;
|
|
2878
|
-
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
2879
|
-
none: "none";
|
|
2880
|
-
s3: "s3";
|
|
2881
|
-
r2: "r2";
|
|
2882
|
-
cloudinary: "cloudinary";
|
|
2883
|
-
"supabase-storage": "supabase-storage";
|
|
2884
|
-
}>>;
|
|
2885
3113
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
2886
3114
|
none: "none";
|
|
2887
3115
|
"expo-router": "expo-router";
|
|
@@ -2889,9 +3117,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2889
3117
|
}>>;
|
|
2890
3118
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2891
3119
|
none: "none";
|
|
2892
|
-
uniwind: "uniwind";
|
|
2893
3120
|
tamagui: "tamagui";
|
|
2894
3121
|
"gluestack-ui": "gluestack-ui";
|
|
3122
|
+
uniwind: "uniwind";
|
|
2895
3123
|
unistyles: "unistyles";
|
|
2896
3124
|
}>>;
|
|
2897
3125
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -2953,12 +3204,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2953
3204
|
ratatui: "ratatui";
|
|
2954
3205
|
}>>;
|
|
2955
3206
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3207
|
+
config: "config";
|
|
2956
3208
|
none: "none";
|
|
2957
3209
|
serde: "serde";
|
|
2958
3210
|
uuid: "uuid";
|
|
2959
3211
|
chrono: "chrono";
|
|
2960
3212
|
reqwest: "reqwest";
|
|
2961
|
-
config: "config";
|
|
2962
3213
|
dashmap: "dashmap";
|
|
2963
3214
|
"parking-lot": "parking-lot";
|
|
2964
3215
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -3487,11 +3823,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3487
3823
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3488
3824
|
template: z.ZodOptional<z.ZodEnum<{
|
|
3489
3825
|
none: "none";
|
|
3826
|
+
uniwind: "uniwind";
|
|
3490
3827
|
mern: "mern";
|
|
3491
3828
|
pern: "pern";
|
|
3492
3829
|
t3: "t3";
|
|
3493
3830
|
saas: "saas";
|
|
3494
|
-
uniwind: "uniwind";
|
|
3495
3831
|
}>>;
|
|
3496
3832
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
3497
3833
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3618,8 +3954,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3618
3954
|
capacitor: "capacitor";
|
|
3619
3955
|
}>>>;
|
|
3620
3956
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3621
|
-
none: "none";
|
|
3622
3957
|
ai: "ai";
|
|
3958
|
+
none: "none";
|
|
3623
3959
|
"chat-sdk": "chat-sdk";
|
|
3624
3960
|
"tanstack-showcase": "tanstack-showcase";
|
|
3625
3961
|
}>>>;
|
|
@@ -3653,13 +3989,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3653
3989
|
docker: "docker";
|
|
3654
3990
|
}>>;
|
|
3655
3991
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
3992
|
+
effect: "effect";
|
|
3656
3993
|
none: "none";
|
|
3657
3994
|
hono: "hono";
|
|
3658
3995
|
express: "express";
|
|
3659
3996
|
fastify: "fastify";
|
|
3660
3997
|
elysia: "elysia";
|
|
3661
3998
|
fets: "fets";
|
|
3662
|
-
effect: "effect";
|
|
3663
3999
|
nestjs: "nestjs";
|
|
3664
4000
|
adonisjs: "adonisjs";
|
|
3665
4001
|
nitro: "nitro";
|
|
@@ -3706,10 +4042,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3706
4042
|
vercel: "vercel";
|
|
3707
4043
|
}>>;
|
|
3708
4044
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
4045
|
+
error: "error";
|
|
3709
4046
|
merge: "merge";
|
|
3710
4047
|
overwrite: "overwrite";
|
|
3711
4048
|
increment: "increment";
|
|
3712
|
-
error: "error";
|
|
3713
4049
|
}>>;
|
|
3714
4050
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
3715
4051
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3738,8 +4074,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3738
4074
|
"ai-cli": "ai-cli";
|
|
3739
4075
|
}>>;
|
|
3740
4076
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
3741
|
-
none: "none";
|
|
3742
4077
|
effect: "effect";
|
|
4078
|
+
none: "none";
|
|
3743
4079
|
"effect-full": "effect-full";
|
|
3744
4080
|
}>>;
|
|
3745
4081
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3874,8 +4210,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3874
4210
|
"geist-mono": "geist-mono";
|
|
3875
4211
|
}>>;
|
|
3876
4212
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3877
|
-
none: "none";
|
|
3878
4213
|
default: "default";
|
|
4214
|
+
none: "none";
|
|
3879
4215
|
small: "small";
|
|
3880
4216
|
medium: "medium";
|
|
3881
4217
|
large: "large";
|
|
@@ -4008,9 +4344,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4008
4344
|
}>>;
|
|
4009
4345
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
4010
4346
|
none: "none";
|
|
4011
|
-
uniwind: "uniwind";
|
|
4012
4347
|
tamagui: "tamagui";
|
|
4013
4348
|
"gluestack-ui": "gluestack-ui";
|
|
4349
|
+
uniwind: "uniwind";
|
|
4014
4350
|
unistyles: "unistyles";
|
|
4015
4351
|
}>>;
|
|
4016
4352
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -4072,12 +4431,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4072
4431
|
ratatui: "ratatui";
|
|
4073
4432
|
}>>;
|
|
4074
4433
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4434
|
+
config: "config";
|
|
4075
4435
|
none: "none";
|
|
4076
4436
|
serde: "serde";
|
|
4077
4437
|
uuid: "uuid";
|
|
4078
4438
|
chrono: "chrono";
|
|
4079
4439
|
reqwest: "reqwest";
|
|
4080
|
-
config: "config";
|
|
4081
4440
|
dashmap: "dashmap";
|
|
4082
4441
|
"parking-lot": "parking-lot";
|
|
4083
4442
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -4635,13 +5079,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4635
5079
|
sequelize: "sequelize";
|
|
4636
5080
|
}>;
|
|
4637
5081
|
backend: z.ZodEnum<{
|
|
5082
|
+
effect: "effect";
|
|
4638
5083
|
none: "none";
|
|
4639
5084
|
hono: "hono";
|
|
4640
5085
|
express: "express";
|
|
4641
5086
|
fastify: "fastify";
|
|
4642
5087
|
elysia: "elysia";
|
|
4643
5088
|
fets: "fets";
|
|
4644
|
-
effect: "effect";
|
|
4645
5089
|
nestjs: "nestjs";
|
|
4646
5090
|
adonisjs: "adonisjs";
|
|
4647
5091
|
nitro: "nitro";
|
|
@@ -4719,8 +5163,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4719
5163
|
capacitor: "capacitor";
|
|
4720
5164
|
}>>;
|
|
4721
5165
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4722
|
-
none: "none";
|
|
4723
5166
|
ai: "ai";
|
|
5167
|
+
none: "none";
|
|
4724
5168
|
"chat-sdk": "chat-sdk";
|
|
4725
5169
|
"tanstack-showcase": "tanstack-showcase";
|
|
4726
5170
|
}>>;
|
|
@@ -4836,8 +5280,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4836
5280
|
"ai-cli": "ai-cli";
|
|
4837
5281
|
}>;
|
|
4838
5282
|
effect: z.ZodEnum<{
|
|
4839
|
-
none: "none";
|
|
4840
5283
|
effect: "effect";
|
|
5284
|
+
none: "none";
|
|
4841
5285
|
"effect-full": "effect-full";
|
|
4842
5286
|
}>;
|
|
4843
5287
|
stateManagement: z.ZodEnum<{
|
|
@@ -4972,8 +5416,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4972
5416
|
"geist-mono": "geist-mono";
|
|
4973
5417
|
}>>;
|
|
4974
5418
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4975
|
-
none: "none";
|
|
4976
5419
|
default: "default";
|
|
5420
|
+
none: "none";
|
|
4977
5421
|
small: "small";
|
|
4978
5422
|
medium: "medium";
|
|
4979
5423
|
large: "large";
|
|
@@ -5106,9 +5550,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5106
5550
|
}>;
|
|
5107
5551
|
mobileUI: z.ZodEnum<{
|
|
5108
5552
|
none: "none";
|
|
5109
|
-
uniwind: "uniwind";
|
|
5110
5553
|
tamagui: "tamagui";
|
|
5111
5554
|
"gluestack-ui": "gluestack-ui";
|
|
5555
|
+
uniwind: "uniwind";
|
|
5112
5556
|
unistyles: "unistyles";
|
|
5113
5557
|
}>;
|
|
5114
5558
|
mobileStorage: z.ZodEnum<{
|
|
@@ -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";
|
|
@@ -5170,12 +5637,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5170
5637
|
ratatui: "ratatui";
|
|
5171
5638
|
}>;
|
|
5172
5639
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5640
|
+
config: "config";
|
|
5173
5641
|
none: "none";
|
|
5174
5642
|
serde: "serde";
|
|
5175
5643
|
uuid: "uuid";
|
|
5176
5644
|
chrono: "chrono";
|
|
5177
5645
|
reqwest: "reqwest";
|
|
5178
|
-
config: "config";
|
|
5179
5646
|
dashmap: "dashmap";
|
|
5180
5647
|
"parking-lot": "parking-lot";
|
|
5181
5648
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -5697,64 +6249,70 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5697
6249
|
cursorrules: "cursorrules";
|
|
5698
6250
|
}>>;
|
|
5699
6251
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5700
|
-
id: z.ZodString;
|
|
5701
|
-
role: z.ZodEnum<{
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
orm: "orm";
|
|
5706
|
-
auth: "auth";
|
|
5707
|
-
payments: "payments";
|
|
5708
|
-
frontend: "frontend";
|
|
5709
|
-
examples: "examples";
|
|
5710
|
-
dbSetup: "dbSetup";
|
|
5711
|
-
backend: "backend";
|
|
5712
|
-
runtime: "runtime";
|
|
5713
|
-
api: "api";
|
|
5714
|
-
stateManagement: "stateManagement";
|
|
5715
|
-
forms: "forms";
|
|
5716
|
-
testing: "testing";
|
|
5717
|
-
email: "email";
|
|
5718
|
-
validation: "validation";
|
|
5719
|
-
realtime: "realtime";
|
|
5720
|
-
jobQueue: "jobQueue";
|
|
5721
|
-
animation: "animation";
|
|
5722
|
-
fileUpload: "fileUpload";
|
|
5723
|
-
logging: "logging";
|
|
5724
|
-
observability: "observability";
|
|
5725
|
-
featureFlags: "featureFlags";
|
|
5726
|
-
analytics: "analytics";
|
|
5727
|
-
cms: "cms";
|
|
5728
|
-
caching: "caching";
|
|
5729
|
-
rateLimit: "rateLimit";
|
|
5730
|
-
i18n: "i18n";
|
|
5731
|
-
search: "search";
|
|
5732
|
-
vectorDb: "vectorDb";
|
|
5733
|
-
fileStorage: "fileStorage";
|
|
5734
|
-
config: "config";
|
|
6252
|
+
id: z.ZodString;
|
|
6253
|
+
role: z.ZodEnum<{
|
|
6254
|
+
push: "push";
|
|
6255
|
+
frontend: "frontend";
|
|
6256
|
+
backend: "backend";
|
|
5735
6257
|
mobile: "mobile";
|
|
6258
|
+
database: "database";
|
|
6259
|
+
api: "api";
|
|
5736
6260
|
graphql: "graphql";
|
|
6261
|
+
orm: "orm";
|
|
6262
|
+
auth: "auth";
|
|
6263
|
+
runtime: "runtime";
|
|
5737
6264
|
deploy: "deploy";
|
|
6265
|
+
dbSetup: "dbSetup";
|
|
5738
6266
|
migrations: "migrations";
|
|
6267
|
+
realtime: "realtime";
|
|
5739
6268
|
navigation: "navigation";
|
|
6269
|
+
caching: "caching";
|
|
6270
|
+
observability: "observability";
|
|
6271
|
+
email: "email";
|
|
6272
|
+
search: "search";
|
|
6273
|
+
vectorDb: "vectorDb";
|
|
6274
|
+
fileStorage: "fileStorage";
|
|
6275
|
+
jobQueue: "jobQueue";
|
|
6276
|
+
rateLimit: "rateLimit";
|
|
6277
|
+
testing: "testing";
|
|
6278
|
+
stateManagement: "stateManagement";
|
|
6279
|
+
forms: "forms";
|
|
6280
|
+
animation: "animation";
|
|
6281
|
+
fileUpload: "fileUpload";
|
|
6282
|
+
validation: "validation";
|
|
6283
|
+
effect: "effect";
|
|
5740
6284
|
ui: "ui";
|
|
5741
6285
|
css: "css";
|
|
5742
6286
|
storage: "storage";
|
|
5743
|
-
push: "push";
|
|
5744
6287
|
ota: "ota";
|
|
5745
6288
|
deepLinking: "deepLinking";
|
|
6289
|
+
ai: "ai";
|
|
6290
|
+
payments: "payments";
|
|
6291
|
+
logging: "logging";
|
|
6292
|
+
featureFlags: "featureFlags";
|
|
6293
|
+
analytics: "analytics";
|
|
6294
|
+
cms: "cms";
|
|
6295
|
+
i18n: "i18n";
|
|
5746
6296
|
documentation: "documentation";
|
|
5747
6297
|
codeQuality: "codeQuality";
|
|
5748
6298
|
appPlatform: "appPlatform";
|
|
5749
6299
|
dataFetching: "dataFetching";
|
|
5750
6300
|
workspaceTooling: "workspaceTooling";
|
|
6301
|
+
examples: "examples";
|
|
5751
6302
|
language: "language";
|
|
5752
6303
|
buildTool: "buildTool";
|
|
5753
6304
|
cli: "cli";
|
|
5754
6305
|
errorHandling: "errorHandling";
|
|
5755
6306
|
httpClient: "httpClient";
|
|
5756
6307
|
libraries: "libraries";
|
|
6308
|
+
config: "config";
|
|
5757
6309
|
templating: "templating";
|
|
6310
|
+
cloudSdk: "cloudSdk";
|
|
6311
|
+
data: "data";
|
|
6312
|
+
media: "media";
|
|
6313
|
+
server: "server";
|
|
6314
|
+
packageManager: "packageManager";
|
|
6315
|
+
messageQueue: "messageQueue";
|
|
5758
6316
|
}>;
|
|
5759
6317
|
toolId: z.ZodString;
|
|
5760
6318
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -5815,13 +6373,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5815
6373
|
sequelize: "sequelize";
|
|
5816
6374
|
}>;
|
|
5817
6375
|
backend: z.ZodEnum<{
|
|
6376
|
+
effect: "effect";
|
|
5818
6377
|
none: "none";
|
|
5819
6378
|
hono: "hono";
|
|
5820
6379
|
express: "express";
|
|
5821
6380
|
fastify: "fastify";
|
|
5822
6381
|
elysia: "elysia";
|
|
5823
6382
|
fets: "fets";
|
|
5824
|
-
effect: "effect";
|
|
5825
6383
|
nestjs: "nestjs";
|
|
5826
6384
|
adonisjs: "adonisjs";
|
|
5827
6385
|
nitro: "nitro";
|
|
@@ -5899,8 +6457,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5899
6457
|
capacitor: "capacitor";
|
|
5900
6458
|
}>>;
|
|
5901
6459
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5902
|
-
none: "none";
|
|
5903
6460
|
ai: "ai";
|
|
6461
|
+
none: "none";
|
|
5904
6462
|
"chat-sdk": "chat-sdk";
|
|
5905
6463
|
"tanstack-showcase": "tanstack-showcase";
|
|
5906
6464
|
}>>;
|
|
@@ -6014,8 +6572,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6014
6572
|
"ai-cli": "ai-cli";
|
|
6015
6573
|
}>;
|
|
6016
6574
|
effect: z.ZodEnum<{
|
|
6017
|
-
none: "none";
|
|
6018
6575
|
effect: "effect";
|
|
6576
|
+
none: "none";
|
|
6019
6577
|
"effect-full": "effect-full";
|
|
6020
6578
|
}>;
|
|
6021
6579
|
stateManagement: z.ZodEnum<{
|
|
@@ -6150,8 +6708,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6150
6708
|
"geist-mono": "geist-mono";
|
|
6151
6709
|
}>>;
|
|
6152
6710
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6153
|
-
none: "none";
|
|
6154
6711
|
default: "default";
|
|
6712
|
+
none: "none";
|
|
6155
6713
|
small: "small";
|
|
6156
6714
|
medium: "medium";
|
|
6157
6715
|
large: "large";
|
|
@@ -6284,9 +6842,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6284
6842
|
}>;
|
|
6285
6843
|
mobileUI: z.ZodEnum<{
|
|
6286
6844
|
none: "none";
|
|
6287
|
-
uniwind: "uniwind";
|
|
6288
6845
|
tamagui: "tamagui";
|
|
6289
6846
|
"gluestack-ui": "gluestack-ui";
|
|
6847
|
+
uniwind: "uniwind";
|
|
6290
6848
|
unistyles: "unistyles";
|
|
6291
6849
|
}>;
|
|
6292
6850
|
mobileStorage: 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";
|
|
@@ -6348,12 +6929,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6348
6929
|
ratatui: "ratatui";
|
|
6349
6930
|
}>;
|
|
6350
6931
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
6932
|
+
config: "config";
|
|
6351
6933
|
none: "none";
|
|
6352
6934
|
serde: "serde";
|
|
6353
6935
|
uuid: "uuid";
|
|
6354
6936
|
chrono: "chrono";
|
|
6355
6937
|
reqwest: "reqwest";
|
|
6356
|
-
config: "config";
|
|
6357
6938
|
dashmap: "dashmap";
|
|
6358
6939
|
"parking-lot": "parking-lot";
|
|
6359
6940
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -6877,62 +7543,68 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6877
7543
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6878
7544
|
id: z.ZodString;
|
|
6879
7545
|
role: z.ZodEnum<{
|
|
6880
|
-
|
|
6881
|
-
|
|
7546
|
+
push: "push";
|
|
7547
|
+
frontend: "frontend";
|
|
7548
|
+
backend: "backend";
|
|
7549
|
+
mobile: "mobile";
|
|
6882
7550
|
database: "database";
|
|
7551
|
+
api: "api";
|
|
7552
|
+
graphql: "graphql";
|
|
6883
7553
|
orm: "orm";
|
|
6884
7554
|
auth: "auth";
|
|
6885
|
-
payments: "payments";
|
|
6886
|
-
frontend: "frontend";
|
|
6887
|
-
examples: "examples";
|
|
6888
|
-
dbSetup: "dbSetup";
|
|
6889
|
-
backend: "backend";
|
|
6890
7555
|
runtime: "runtime";
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
6894
|
-
testing: "testing";
|
|
6895
|
-
email: "email";
|
|
6896
|
-
validation: "validation";
|
|
7556
|
+
deploy: "deploy";
|
|
7557
|
+
dbSetup: "dbSetup";
|
|
7558
|
+
migrations: "migrations";
|
|
6897
7559
|
realtime: "realtime";
|
|
6898
|
-
|
|
6899
|
-
animation: "animation";
|
|
6900
|
-
fileUpload: "fileUpload";
|
|
6901
|
-
logging: "logging";
|
|
6902
|
-
observability: "observability";
|
|
6903
|
-
featureFlags: "featureFlags";
|
|
6904
|
-
analytics: "analytics";
|
|
6905
|
-
cms: "cms";
|
|
7560
|
+
navigation: "navigation";
|
|
6906
7561
|
caching: "caching";
|
|
6907
|
-
|
|
6908
|
-
|
|
7562
|
+
observability: "observability";
|
|
7563
|
+
email: "email";
|
|
6909
7564
|
search: "search";
|
|
6910
7565
|
vectorDb: "vectorDb";
|
|
6911
7566
|
fileStorage: "fileStorage";
|
|
6912
|
-
|
|
6913
|
-
|
|
6914
|
-
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
7567
|
+
jobQueue: "jobQueue";
|
|
7568
|
+
rateLimit: "rateLimit";
|
|
7569
|
+
testing: "testing";
|
|
7570
|
+
stateManagement: "stateManagement";
|
|
7571
|
+
forms: "forms";
|
|
7572
|
+
animation: "animation";
|
|
7573
|
+
fileUpload: "fileUpload";
|
|
7574
|
+
validation: "validation";
|
|
7575
|
+
effect: "effect";
|
|
6918
7576
|
ui: "ui";
|
|
6919
7577
|
css: "css";
|
|
6920
7578
|
storage: "storage";
|
|
6921
|
-
push: "push";
|
|
6922
7579
|
ota: "ota";
|
|
6923
7580
|
deepLinking: "deepLinking";
|
|
7581
|
+
ai: "ai";
|
|
7582
|
+
payments: "payments";
|
|
7583
|
+
logging: "logging";
|
|
7584
|
+
featureFlags: "featureFlags";
|
|
7585
|
+
analytics: "analytics";
|
|
7586
|
+
cms: "cms";
|
|
7587
|
+
i18n: "i18n";
|
|
6924
7588
|
documentation: "documentation";
|
|
6925
7589
|
codeQuality: "codeQuality";
|
|
6926
7590
|
appPlatform: "appPlatform";
|
|
6927
7591
|
dataFetching: "dataFetching";
|
|
6928
7592
|
workspaceTooling: "workspaceTooling";
|
|
7593
|
+
examples: "examples";
|
|
6929
7594
|
language: "language";
|
|
6930
7595
|
buildTool: "buildTool";
|
|
6931
7596
|
cli: "cli";
|
|
6932
7597
|
errorHandling: "errorHandling";
|
|
6933
7598
|
httpClient: "httpClient";
|
|
6934
7599
|
libraries: "libraries";
|
|
7600
|
+
config: "config";
|
|
6935
7601
|
templating: "templating";
|
|
7602
|
+
cloudSdk: "cloudSdk";
|
|
7603
|
+
data: "data";
|
|
7604
|
+
media: "media";
|
|
7605
|
+
server: "server";
|
|
7606
|
+
packageManager: "packageManager";
|
|
7607
|
+
messageQueue: "messageQueue";
|
|
6936
7608
|
}>;
|
|
6937
7609
|
toolId: z.ZodString;
|
|
6938
7610
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -6993,13 +7665,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6993
7665
|
sequelize: "sequelize";
|
|
6994
7666
|
}>;
|
|
6995
7667
|
backend: z.ZodEnum<{
|
|
7668
|
+
effect: "effect";
|
|
6996
7669
|
none: "none";
|
|
6997
7670
|
hono: "hono";
|
|
6998
7671
|
express: "express";
|
|
6999
7672
|
fastify: "fastify";
|
|
7000
7673
|
elysia: "elysia";
|
|
7001
7674
|
fets: "fets";
|
|
7002
|
-
effect: "effect";
|
|
7003
7675
|
nestjs: "nestjs";
|
|
7004
7676
|
adonisjs: "adonisjs";
|
|
7005
7677
|
nitro: "nitro";
|
|
@@ -7077,8 +7749,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7077
7749
|
capacitor: "capacitor";
|
|
7078
7750
|
}>>;
|
|
7079
7751
|
examples: z.ZodArray<z.ZodEnum<{
|
|
7080
|
-
none: "none";
|
|
7081
7752
|
ai: "ai";
|
|
7753
|
+
none: "none";
|
|
7082
7754
|
"chat-sdk": "chat-sdk";
|
|
7083
7755
|
"tanstack-showcase": "tanstack-showcase";
|
|
7084
7756
|
}>>;
|
|
@@ -7192,8 +7864,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7192
7864
|
"ai-cli": "ai-cli";
|
|
7193
7865
|
}>;
|
|
7194
7866
|
effect: z.ZodEnum<{
|
|
7195
|
-
none: "none";
|
|
7196
7867
|
effect: "effect";
|
|
7868
|
+
none: "none";
|
|
7197
7869
|
"effect-full": "effect-full";
|
|
7198
7870
|
}>;
|
|
7199
7871
|
stateManagement: z.ZodEnum<{
|
|
@@ -7328,8 +8000,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7328
8000
|
"geist-mono": "geist-mono";
|
|
7329
8001
|
}>>;
|
|
7330
8002
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7331
|
-
none: "none";
|
|
7332
8003
|
default: "default";
|
|
8004
|
+
none: "none";
|
|
7333
8005
|
small: "small";
|
|
7334
8006
|
medium: "medium";
|
|
7335
8007
|
large: "large";
|
|
@@ -7462,9 +8134,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7462
8134
|
}>;
|
|
7463
8135
|
mobileUI: z.ZodEnum<{
|
|
7464
8136
|
none: "none";
|
|
7465
|
-
uniwind: "uniwind";
|
|
7466
8137
|
tamagui: "tamagui";
|
|
7467
8138
|
"gluestack-ui": "gluestack-ui";
|
|
8139
|
+
uniwind: "uniwind";
|
|
7468
8140
|
unistyles: "unistyles";
|
|
7469
8141
|
}>;
|
|
7470
8142
|
mobileStorage: 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";
|
|
@@ -7526,12 +8221,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7526
8221
|
ratatui: "ratatui";
|
|
7527
8222
|
}>;
|
|
7528
8223
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8224
|
+
config: "config";
|
|
7529
8225
|
none: "none";
|
|
7530
8226
|
serde: "serde";
|
|
7531
8227
|
uuid: "uuid";
|
|
7532
8228
|
chrono: "chrono";
|
|
7533
8229
|
reqwest: "reqwest";
|
|
7534
|
-
config: "config";
|
|
7535
8230
|
dashmap: "dashmap";
|
|
7536
8231
|
"parking-lot": "parking-lot";
|
|
7537
8232
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -8055,62 +8835,68 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8055
8835
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8056
8836
|
id: z.ZodString;
|
|
8057
8837
|
role: z.ZodEnum<{
|
|
8058
|
-
|
|
8059
|
-
|
|
8838
|
+
push: "push";
|
|
8839
|
+
frontend: "frontend";
|
|
8840
|
+
backend: "backend";
|
|
8841
|
+
mobile: "mobile";
|
|
8060
8842
|
database: "database";
|
|
8843
|
+
api: "api";
|
|
8844
|
+
graphql: "graphql";
|
|
8061
8845
|
orm: "orm";
|
|
8062
8846
|
auth: "auth";
|
|
8063
|
-
payments: "payments";
|
|
8064
|
-
frontend: "frontend";
|
|
8065
|
-
examples: "examples";
|
|
8066
|
-
dbSetup: "dbSetup";
|
|
8067
|
-
backend: "backend";
|
|
8068
8847
|
runtime: "runtime";
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
testing: "testing";
|
|
8073
|
-
email: "email";
|
|
8074
|
-
validation: "validation";
|
|
8848
|
+
deploy: "deploy";
|
|
8849
|
+
dbSetup: "dbSetup";
|
|
8850
|
+
migrations: "migrations";
|
|
8075
8851
|
realtime: "realtime";
|
|
8076
|
-
|
|
8077
|
-
animation: "animation";
|
|
8078
|
-
fileUpload: "fileUpload";
|
|
8079
|
-
logging: "logging";
|
|
8080
|
-
observability: "observability";
|
|
8081
|
-
featureFlags: "featureFlags";
|
|
8082
|
-
analytics: "analytics";
|
|
8083
|
-
cms: "cms";
|
|
8852
|
+
navigation: "navigation";
|
|
8084
8853
|
caching: "caching";
|
|
8085
|
-
|
|
8086
|
-
|
|
8854
|
+
observability: "observability";
|
|
8855
|
+
email: "email";
|
|
8087
8856
|
search: "search";
|
|
8088
8857
|
vectorDb: "vectorDb";
|
|
8089
8858
|
fileStorage: "fileStorage";
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8859
|
+
jobQueue: "jobQueue";
|
|
8860
|
+
rateLimit: "rateLimit";
|
|
8861
|
+
testing: "testing";
|
|
8862
|
+
stateManagement: "stateManagement";
|
|
8863
|
+
forms: "forms";
|
|
8864
|
+
animation: "animation";
|
|
8865
|
+
fileUpload: "fileUpload";
|
|
8866
|
+
validation: "validation";
|
|
8867
|
+
effect: "effect";
|
|
8096
8868
|
ui: "ui";
|
|
8097
8869
|
css: "css";
|
|
8098
8870
|
storage: "storage";
|
|
8099
|
-
push: "push";
|
|
8100
8871
|
ota: "ota";
|
|
8101
8872
|
deepLinking: "deepLinking";
|
|
8873
|
+
ai: "ai";
|
|
8874
|
+
payments: "payments";
|
|
8875
|
+
logging: "logging";
|
|
8876
|
+
featureFlags: "featureFlags";
|
|
8877
|
+
analytics: "analytics";
|
|
8878
|
+
cms: "cms";
|
|
8879
|
+
i18n: "i18n";
|
|
8102
8880
|
documentation: "documentation";
|
|
8103
8881
|
codeQuality: "codeQuality";
|
|
8104
8882
|
appPlatform: "appPlatform";
|
|
8105
8883
|
dataFetching: "dataFetching";
|
|
8106
8884
|
workspaceTooling: "workspaceTooling";
|
|
8885
|
+
examples: "examples";
|
|
8107
8886
|
language: "language";
|
|
8108
8887
|
buildTool: "buildTool";
|
|
8109
8888
|
cli: "cli";
|
|
8110
8889
|
errorHandling: "errorHandling";
|
|
8111
8890
|
httpClient: "httpClient";
|
|
8112
8891
|
libraries: "libraries";
|
|
8892
|
+
config: "config";
|
|
8113
8893
|
templating: "templating";
|
|
8894
|
+
cloudSdk: "cloudSdk";
|
|
8895
|
+
data: "data";
|
|
8896
|
+
media: "media";
|
|
8897
|
+
server: "server";
|
|
8898
|
+
packageManager: "packageManager";
|
|
8899
|
+
messageQueue: "messageQueue";
|
|
8114
8900
|
}>;
|
|
8115
8901
|
toolId: z.ZodString;
|
|
8116
8902
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -8172,13 +8958,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8172
8958
|
sequelize: "sequelize";
|
|
8173
8959
|
}>;
|
|
8174
8960
|
backend: z.ZodEnum<{
|
|
8961
|
+
effect: "effect";
|
|
8175
8962
|
none: "none";
|
|
8176
8963
|
hono: "hono";
|
|
8177
8964
|
express: "express";
|
|
8178
8965
|
fastify: "fastify";
|
|
8179
8966
|
elysia: "elysia";
|
|
8180
8967
|
fets: "fets";
|
|
8181
|
-
effect: "effect";
|
|
8182
8968
|
nestjs: "nestjs";
|
|
8183
8969
|
adonisjs: "adonisjs";
|
|
8184
8970
|
nitro: "nitro";
|
|
@@ -8256,8 +9042,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8256
9042
|
capacitor: "capacitor";
|
|
8257
9043
|
}>>;
|
|
8258
9044
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8259
|
-
none: "none";
|
|
8260
9045
|
ai: "ai";
|
|
9046
|
+
none: "none";
|
|
8261
9047
|
"chat-sdk": "chat-sdk";
|
|
8262
9048
|
"tanstack-showcase": "tanstack-showcase";
|
|
8263
9049
|
}>>;
|
|
@@ -8371,8 +9157,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8371
9157
|
"ai-cli": "ai-cli";
|
|
8372
9158
|
}>;
|
|
8373
9159
|
effect: z.ZodEnum<{
|
|
8374
|
-
none: "none";
|
|
8375
9160
|
effect: "effect";
|
|
9161
|
+
none: "none";
|
|
8376
9162
|
"effect-full": "effect-full";
|
|
8377
9163
|
}>;
|
|
8378
9164
|
stateManagement: z.ZodEnum<{
|
|
@@ -8507,8 +9293,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8507
9293
|
"geist-mono": "geist-mono";
|
|
8508
9294
|
}>>;
|
|
8509
9295
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8510
|
-
none: "none";
|
|
8511
9296
|
default: "default";
|
|
9297
|
+
none: "none";
|
|
8512
9298
|
small: "small";
|
|
8513
9299
|
medium: "medium";
|
|
8514
9300
|
large: "large";
|
|
@@ -8641,9 +9427,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8641
9427
|
}>;
|
|
8642
9428
|
mobileUI: z.ZodEnum<{
|
|
8643
9429
|
none: "none";
|
|
8644
|
-
uniwind: "uniwind";
|
|
8645
9430
|
tamagui: "tamagui";
|
|
8646
9431
|
"gluestack-ui": "gluestack-ui";
|
|
9432
|
+
uniwind: "uniwind";
|
|
8647
9433
|
unistyles: "unistyles";
|
|
8648
9434
|
}>;
|
|
8649
9435
|
mobileStorage: 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";
|
|
@@ -8705,12 +9514,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8705
9514
|
ratatui: "ratatui";
|
|
8706
9515
|
}>;
|
|
8707
9516
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9517
|
+
config: "config";
|
|
8708
9518
|
none: "none";
|
|
8709
9519
|
serde: "serde";
|
|
8710
9520
|
uuid: "uuid";
|
|
8711
9521
|
chrono: "chrono";
|
|
8712
9522
|
reqwest: "reqwest";
|
|
8713
|
-
config: "config";
|
|
8714
9523
|
dashmap: "dashmap";
|
|
8715
9524
|
"parking-lot": "parking-lot";
|
|
8716
9525
|
secrecy: "secrecy";
|
|
@@ -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,27 +9658,60 @@ 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";
|
|
8846
9665
|
redis: "redis";
|
|
8847
9666
|
aiocache: "aiocache";
|
|
8848
9667
|
}>;
|
|
8849
|
-
pythonRealtime: z.ZodEnum<{
|
|
9668
|
+
pythonRealtime: z.ZodEnum<{
|
|
9669
|
+
none: "none";
|
|
9670
|
+
"python-socketio": "python-socketio";
|
|
9671
|
+
websockets: "websockets";
|
|
9672
|
+
}>;
|
|
9673
|
+
pythonObservability: z.ZodEnum<{
|
|
9674
|
+
none: "none";
|
|
9675
|
+
opentelemetry: "opentelemetry";
|
|
9676
|
+
"prometheus-client": "prometheus-client";
|
|
9677
|
+
}>;
|
|
9678
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
9679
|
+
none: "none";
|
|
9680
|
+
typer: "typer";
|
|
9681
|
+
click: "click";
|
|
9682
|
+
rich: "rich";
|
|
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<{
|
|
8850
9703
|
none: "none";
|
|
8851
|
-
|
|
8852
|
-
websockets: "websockets";
|
|
9704
|
+
gunicorn: "gunicorn";
|
|
8853
9705
|
}>;
|
|
8854
|
-
|
|
9706
|
+
pythonPackageManager: z.ZodEnum<{
|
|
8855
9707
|
none: "none";
|
|
8856
|
-
|
|
9708
|
+
uv: "uv";
|
|
9709
|
+
poetry: "poetry";
|
|
8857
9710
|
}>;
|
|
8858
|
-
|
|
9711
|
+
pythonMessageQueue: z.ZodEnum<{
|
|
8859
9712
|
none: "none";
|
|
8860
|
-
|
|
8861
|
-
|
|
8862
|
-
rich: "rich";
|
|
8863
|
-
}>>;
|
|
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";
|
|
@@ -9234,62 +10128,68 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9234
10128
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9235
10129
|
id: z.ZodString;
|
|
9236
10130
|
role: z.ZodEnum<{
|
|
9237
|
-
|
|
9238
|
-
|
|
10131
|
+
push: "push";
|
|
10132
|
+
frontend: "frontend";
|
|
10133
|
+
backend: "backend";
|
|
10134
|
+
mobile: "mobile";
|
|
9239
10135
|
database: "database";
|
|
10136
|
+
api: "api";
|
|
10137
|
+
graphql: "graphql";
|
|
9240
10138
|
orm: "orm";
|
|
9241
10139
|
auth: "auth";
|
|
9242
|
-
payments: "payments";
|
|
9243
|
-
frontend: "frontend";
|
|
9244
|
-
examples: "examples";
|
|
9245
|
-
dbSetup: "dbSetup";
|
|
9246
|
-
backend: "backend";
|
|
9247
10140
|
runtime: "runtime";
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
9251
|
-
testing: "testing";
|
|
9252
|
-
email: "email";
|
|
9253
|
-
validation: "validation";
|
|
10141
|
+
deploy: "deploy";
|
|
10142
|
+
dbSetup: "dbSetup";
|
|
10143
|
+
migrations: "migrations";
|
|
9254
10144
|
realtime: "realtime";
|
|
9255
|
-
|
|
9256
|
-
animation: "animation";
|
|
9257
|
-
fileUpload: "fileUpload";
|
|
9258
|
-
logging: "logging";
|
|
9259
|
-
observability: "observability";
|
|
9260
|
-
featureFlags: "featureFlags";
|
|
9261
|
-
analytics: "analytics";
|
|
9262
|
-
cms: "cms";
|
|
10145
|
+
navigation: "navigation";
|
|
9263
10146
|
caching: "caching";
|
|
9264
|
-
|
|
9265
|
-
|
|
10147
|
+
observability: "observability";
|
|
10148
|
+
email: "email";
|
|
9266
10149
|
search: "search";
|
|
9267
10150
|
vectorDb: "vectorDb";
|
|
9268
10151
|
fileStorage: "fileStorage";
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
10152
|
+
jobQueue: "jobQueue";
|
|
10153
|
+
rateLimit: "rateLimit";
|
|
10154
|
+
testing: "testing";
|
|
10155
|
+
stateManagement: "stateManagement";
|
|
10156
|
+
forms: "forms";
|
|
10157
|
+
animation: "animation";
|
|
10158
|
+
fileUpload: "fileUpload";
|
|
10159
|
+
validation: "validation";
|
|
10160
|
+
effect: "effect";
|
|
9275
10161
|
ui: "ui";
|
|
9276
10162
|
css: "css";
|
|
9277
10163
|
storage: "storage";
|
|
9278
|
-
push: "push";
|
|
9279
10164
|
ota: "ota";
|
|
9280
10165
|
deepLinking: "deepLinking";
|
|
10166
|
+
ai: "ai";
|
|
10167
|
+
payments: "payments";
|
|
10168
|
+
logging: "logging";
|
|
10169
|
+
featureFlags: "featureFlags";
|
|
10170
|
+
analytics: "analytics";
|
|
10171
|
+
cms: "cms";
|
|
10172
|
+
i18n: "i18n";
|
|
9281
10173
|
documentation: "documentation";
|
|
9282
10174
|
codeQuality: "codeQuality";
|
|
9283
10175
|
appPlatform: "appPlatform";
|
|
9284
10176
|
dataFetching: "dataFetching";
|
|
9285
10177
|
workspaceTooling: "workspaceTooling";
|
|
10178
|
+
examples: "examples";
|
|
9286
10179
|
language: "language";
|
|
9287
10180
|
buildTool: "buildTool";
|
|
9288
10181
|
cli: "cli";
|
|
9289
10182
|
errorHandling: "errorHandling";
|
|
9290
10183
|
httpClient: "httpClient";
|
|
9291
10184
|
libraries: "libraries";
|
|
10185
|
+
config: "config";
|
|
9292
10186
|
templating: "templating";
|
|
10187
|
+
cloudSdk: "cloudSdk";
|
|
10188
|
+
data: "data";
|
|
10189
|
+
media: "media";
|
|
10190
|
+
server: "server";
|
|
10191
|
+
packageManager: "packageManager";
|
|
10192
|
+
messageQueue: "messageQueue";
|
|
9293
10193
|
}>;
|
|
9294
10194
|
toolId: z.ZodString;
|
|
9295
10195
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -9351,13 +10251,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9351
10251
|
sequelize: "sequelize";
|
|
9352
10252
|
}>;
|
|
9353
10253
|
backend: z.ZodEnum<{
|
|
10254
|
+
effect: "effect";
|
|
9354
10255
|
none: "none";
|
|
9355
10256
|
hono: "hono";
|
|
9356
10257
|
express: "express";
|
|
9357
10258
|
fastify: "fastify";
|
|
9358
10259
|
elysia: "elysia";
|
|
9359
10260
|
fets: "fets";
|
|
9360
|
-
effect: "effect";
|
|
9361
10261
|
nestjs: "nestjs";
|
|
9362
10262
|
adonisjs: "adonisjs";
|
|
9363
10263
|
nitro: "nitro";
|
|
@@ -9435,8 +10335,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9435
10335
|
capacitor: "capacitor";
|
|
9436
10336
|
}>>;
|
|
9437
10337
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9438
|
-
none: "none";
|
|
9439
10338
|
ai: "ai";
|
|
10339
|
+
none: "none";
|
|
9440
10340
|
"chat-sdk": "chat-sdk";
|
|
9441
10341
|
"tanstack-showcase": "tanstack-showcase";
|
|
9442
10342
|
}>>;
|
|
@@ -9550,8 +10450,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9550
10450
|
"ai-cli": "ai-cli";
|
|
9551
10451
|
}>;
|
|
9552
10452
|
effect: z.ZodEnum<{
|
|
9553
|
-
none: "none";
|
|
9554
10453
|
effect: "effect";
|
|
10454
|
+
none: "none";
|
|
9555
10455
|
"effect-full": "effect-full";
|
|
9556
10456
|
}>;
|
|
9557
10457
|
stateManagement: z.ZodEnum<{
|
|
@@ -9686,8 +10586,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9686
10586
|
"geist-mono": "geist-mono";
|
|
9687
10587
|
}>>;
|
|
9688
10588
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9689
|
-
none: "none";
|
|
9690
10589
|
default: "default";
|
|
10590
|
+
none: "none";
|
|
9691
10591
|
small: "small";
|
|
9692
10592
|
medium: "medium";
|
|
9693
10593
|
large: "large";
|
|
@@ -9820,9 +10720,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9820
10720
|
}>;
|
|
9821
10721
|
mobileUI: z.ZodEnum<{
|
|
9822
10722
|
none: "none";
|
|
9823
|
-
uniwind: "uniwind";
|
|
9824
10723
|
tamagui: "tamagui";
|
|
9825
10724
|
"gluestack-ui": "gluestack-ui";
|
|
10725
|
+
uniwind: "uniwind";
|
|
9826
10726
|
unistyles: "unistyles";
|
|
9827
10727
|
}>;
|
|
9828
10728
|
mobileStorage: 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";
|
|
@@ -9884,12 +10807,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9884
10807
|
ratatui: "ratatui";
|
|
9885
10808
|
}>;
|
|
9886
10809
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10810
|
+
config: "config";
|
|
9887
10811
|
none: "none";
|
|
9888
10812
|
serde: "serde";
|
|
9889
10813
|
uuid: "uuid";
|
|
9890
10814
|
chrono: "chrono";
|
|
9891
10815
|
reqwest: "reqwest";
|
|
9892
|
-
config: "config";
|
|
9893
10816
|
dashmap: "dashmap";
|
|
9894
10817
|
"parking-lot": "parking-lot";
|
|
9895
10818
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -10413,62 +11421,68 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10413
11421
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10414
11422
|
id: z.ZodString;
|
|
10415
11423
|
role: z.ZodEnum<{
|
|
10416
|
-
|
|
10417
|
-
|
|
11424
|
+
push: "push";
|
|
11425
|
+
frontend: "frontend";
|
|
11426
|
+
backend: "backend";
|
|
11427
|
+
mobile: "mobile";
|
|
10418
11428
|
database: "database";
|
|
11429
|
+
api: "api";
|
|
11430
|
+
graphql: "graphql";
|
|
10419
11431
|
orm: "orm";
|
|
10420
11432
|
auth: "auth";
|
|
10421
|
-
payments: "payments";
|
|
10422
|
-
frontend: "frontend";
|
|
10423
|
-
examples: "examples";
|
|
10424
|
-
dbSetup: "dbSetup";
|
|
10425
|
-
backend: "backend";
|
|
10426
11433
|
runtime: "runtime";
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
testing: "testing";
|
|
10431
|
-
email: "email";
|
|
10432
|
-
validation: "validation";
|
|
11434
|
+
deploy: "deploy";
|
|
11435
|
+
dbSetup: "dbSetup";
|
|
11436
|
+
migrations: "migrations";
|
|
10433
11437
|
realtime: "realtime";
|
|
10434
|
-
|
|
10435
|
-
animation: "animation";
|
|
10436
|
-
fileUpload: "fileUpload";
|
|
10437
|
-
logging: "logging";
|
|
10438
|
-
observability: "observability";
|
|
10439
|
-
featureFlags: "featureFlags";
|
|
10440
|
-
analytics: "analytics";
|
|
10441
|
-
cms: "cms";
|
|
11438
|
+
navigation: "navigation";
|
|
10442
11439
|
caching: "caching";
|
|
10443
|
-
|
|
10444
|
-
|
|
11440
|
+
observability: "observability";
|
|
11441
|
+
email: "email";
|
|
10445
11442
|
search: "search";
|
|
10446
11443
|
vectorDb: "vectorDb";
|
|
10447
11444
|
fileStorage: "fileStorage";
|
|
10448
|
-
|
|
10449
|
-
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
11445
|
+
jobQueue: "jobQueue";
|
|
11446
|
+
rateLimit: "rateLimit";
|
|
11447
|
+
testing: "testing";
|
|
11448
|
+
stateManagement: "stateManagement";
|
|
11449
|
+
forms: "forms";
|
|
11450
|
+
animation: "animation";
|
|
11451
|
+
fileUpload: "fileUpload";
|
|
11452
|
+
validation: "validation";
|
|
11453
|
+
effect: "effect";
|
|
10454
11454
|
ui: "ui";
|
|
10455
11455
|
css: "css";
|
|
10456
11456
|
storage: "storage";
|
|
10457
|
-
push: "push";
|
|
10458
11457
|
ota: "ota";
|
|
10459
11458
|
deepLinking: "deepLinking";
|
|
11459
|
+
ai: "ai";
|
|
11460
|
+
payments: "payments";
|
|
11461
|
+
logging: "logging";
|
|
11462
|
+
featureFlags: "featureFlags";
|
|
11463
|
+
analytics: "analytics";
|
|
11464
|
+
cms: "cms";
|
|
11465
|
+
i18n: "i18n";
|
|
10460
11466
|
documentation: "documentation";
|
|
10461
11467
|
codeQuality: "codeQuality";
|
|
10462
11468
|
appPlatform: "appPlatform";
|
|
10463
11469
|
dataFetching: "dataFetching";
|
|
10464
11470
|
workspaceTooling: "workspaceTooling";
|
|
11471
|
+
examples: "examples";
|
|
10465
11472
|
language: "language";
|
|
10466
11473
|
buildTool: "buildTool";
|
|
10467
11474
|
cli: "cli";
|
|
10468
11475
|
errorHandling: "errorHandling";
|
|
10469
11476
|
httpClient: "httpClient";
|
|
10470
11477
|
libraries: "libraries";
|
|
11478
|
+
config: "config";
|
|
10471
11479
|
templating: "templating";
|
|
11480
|
+
cloudSdk: "cloudSdk";
|
|
11481
|
+
data: "data";
|
|
11482
|
+
media: "media";
|
|
11483
|
+
server: "server";
|
|
11484
|
+
packageManager: "packageManager";
|
|
11485
|
+
messageQueue: "messageQueue";
|
|
10472
11486
|
}>;
|
|
10473
11487
|
toolId: z.ZodString;
|
|
10474
11488
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -10530,13 +11544,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10530
11544
|
sequelize: "sequelize";
|
|
10531
11545
|
}>;
|
|
10532
11546
|
backend: z.ZodEnum<{
|
|
11547
|
+
effect: "effect";
|
|
10533
11548
|
none: "none";
|
|
10534
11549
|
hono: "hono";
|
|
10535
11550
|
express: "express";
|
|
10536
11551
|
fastify: "fastify";
|
|
10537
11552
|
elysia: "elysia";
|
|
10538
11553
|
fets: "fets";
|
|
10539
|
-
effect: "effect";
|
|
10540
11554
|
nestjs: "nestjs";
|
|
10541
11555
|
adonisjs: "adonisjs";
|
|
10542
11556
|
nitro: "nitro";
|
|
@@ -10614,8 +11628,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10614
11628
|
capacitor: "capacitor";
|
|
10615
11629
|
}>>;
|
|
10616
11630
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10617
|
-
none: "none";
|
|
10618
11631
|
ai: "ai";
|
|
11632
|
+
none: "none";
|
|
10619
11633
|
"chat-sdk": "chat-sdk";
|
|
10620
11634
|
"tanstack-showcase": "tanstack-showcase";
|
|
10621
11635
|
}>>;
|
|
@@ -10731,8 +11745,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10731
11745
|
"ai-cli": "ai-cli";
|
|
10732
11746
|
}>;
|
|
10733
11747
|
effect: z.ZodEnum<{
|
|
10734
|
-
none: "none";
|
|
10735
11748
|
effect: "effect";
|
|
11749
|
+
none: "none";
|
|
10736
11750
|
"effect-full": "effect-full";
|
|
10737
11751
|
}>;
|
|
10738
11752
|
stateManagement: z.ZodEnum<{
|
|
@@ -10867,8 +11881,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10867
11881
|
"geist-mono": "geist-mono";
|
|
10868
11882
|
}>>;
|
|
10869
11883
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10870
|
-
none: "none";
|
|
10871
11884
|
default: "default";
|
|
11885
|
+
none: "none";
|
|
10872
11886
|
small: "small";
|
|
10873
11887
|
medium: "medium";
|
|
10874
11888
|
large: "large";
|
|
@@ -11001,9 +12015,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11001
12015
|
}>;
|
|
11002
12016
|
mobileUI: z.ZodEnum<{
|
|
11003
12017
|
none: "none";
|
|
11004
|
-
uniwind: "uniwind";
|
|
11005
12018
|
tamagui: "tamagui";
|
|
11006
12019
|
"gluestack-ui": "gluestack-ui";
|
|
12020
|
+
uniwind: "uniwind";
|
|
11007
12021
|
unistyles: "unistyles";
|
|
11008
12022
|
}>;
|
|
11009
12023
|
mobileStorage: 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";
|
|
@@ -11065,12 +12102,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11065
12102
|
ratatui: "ratatui";
|
|
11066
12103
|
}>;
|
|
11067
12104
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
12105
|
+
config: "config";
|
|
11068
12106
|
none: "none";
|
|
11069
12107
|
serde: "serde";
|
|
11070
12108
|
uuid: "uuid";
|
|
11071
12109
|
chrono: "chrono";
|
|
11072
12110
|
reqwest: "reqwest";
|
|
11073
|
-
config: "config";
|
|
11074
12111
|
dashmap: "dashmap";
|
|
11075
12112
|
"parking-lot": "parking-lot";
|
|
11076
12113
|
secrecy: "secrecy";
|
|
@@ -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";
|
|
@@ -11594,62 +12716,68 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11594
12716
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11595
12717
|
id: z.ZodString;
|
|
11596
12718
|
role: z.ZodEnum<{
|
|
11597
|
-
|
|
11598
|
-
|
|
12719
|
+
push: "push";
|
|
12720
|
+
frontend: "frontend";
|
|
12721
|
+
backend: "backend";
|
|
12722
|
+
mobile: "mobile";
|
|
11599
12723
|
database: "database";
|
|
12724
|
+
api: "api";
|
|
12725
|
+
graphql: "graphql";
|
|
11600
12726
|
orm: "orm";
|
|
11601
12727
|
auth: "auth";
|
|
11602
|
-
payments: "payments";
|
|
11603
|
-
frontend: "frontend";
|
|
11604
|
-
examples: "examples";
|
|
11605
|
-
dbSetup: "dbSetup";
|
|
11606
|
-
backend: "backend";
|
|
11607
12728
|
runtime: "runtime";
|
|
11608
|
-
|
|
11609
|
-
|
|
11610
|
-
|
|
11611
|
-
testing: "testing";
|
|
11612
|
-
email: "email";
|
|
11613
|
-
validation: "validation";
|
|
12729
|
+
deploy: "deploy";
|
|
12730
|
+
dbSetup: "dbSetup";
|
|
12731
|
+
migrations: "migrations";
|
|
11614
12732
|
realtime: "realtime";
|
|
11615
|
-
|
|
11616
|
-
animation: "animation";
|
|
11617
|
-
fileUpload: "fileUpload";
|
|
11618
|
-
logging: "logging";
|
|
11619
|
-
observability: "observability";
|
|
11620
|
-
featureFlags: "featureFlags";
|
|
11621
|
-
analytics: "analytics";
|
|
11622
|
-
cms: "cms";
|
|
12733
|
+
navigation: "navigation";
|
|
11623
12734
|
caching: "caching";
|
|
11624
|
-
|
|
11625
|
-
|
|
12735
|
+
observability: "observability";
|
|
12736
|
+
email: "email";
|
|
11626
12737
|
search: "search";
|
|
11627
12738
|
vectorDb: "vectorDb";
|
|
11628
12739
|
fileStorage: "fileStorage";
|
|
11629
|
-
|
|
11630
|
-
|
|
11631
|
-
|
|
11632
|
-
|
|
11633
|
-
|
|
11634
|
-
|
|
12740
|
+
jobQueue: "jobQueue";
|
|
12741
|
+
rateLimit: "rateLimit";
|
|
12742
|
+
testing: "testing";
|
|
12743
|
+
stateManagement: "stateManagement";
|
|
12744
|
+
forms: "forms";
|
|
12745
|
+
animation: "animation";
|
|
12746
|
+
fileUpload: "fileUpload";
|
|
12747
|
+
validation: "validation";
|
|
12748
|
+
effect: "effect";
|
|
11635
12749
|
ui: "ui";
|
|
11636
12750
|
css: "css";
|
|
11637
12751
|
storage: "storage";
|
|
11638
|
-
push: "push";
|
|
11639
12752
|
ota: "ota";
|
|
11640
12753
|
deepLinking: "deepLinking";
|
|
12754
|
+
ai: "ai";
|
|
12755
|
+
payments: "payments";
|
|
12756
|
+
logging: "logging";
|
|
12757
|
+
featureFlags: "featureFlags";
|
|
12758
|
+
analytics: "analytics";
|
|
12759
|
+
cms: "cms";
|
|
12760
|
+
i18n: "i18n";
|
|
11641
12761
|
documentation: "documentation";
|
|
11642
12762
|
codeQuality: "codeQuality";
|
|
11643
12763
|
appPlatform: "appPlatform";
|
|
11644
12764
|
dataFetching: "dataFetching";
|
|
11645
12765
|
workspaceTooling: "workspaceTooling";
|
|
12766
|
+
examples: "examples";
|
|
11646
12767
|
language: "language";
|
|
11647
12768
|
buildTool: "buildTool";
|
|
11648
12769
|
cli: "cli";
|
|
11649
12770
|
errorHandling: "errorHandling";
|
|
11650
12771
|
httpClient: "httpClient";
|
|
11651
12772
|
libraries: "libraries";
|
|
12773
|
+
config: "config";
|
|
11652
12774
|
templating: "templating";
|
|
12775
|
+
cloudSdk: "cloudSdk";
|
|
12776
|
+
data: "data";
|
|
12777
|
+
media: "media";
|
|
12778
|
+
server: "server";
|
|
12779
|
+
packageManager: "packageManager";
|
|
12780
|
+
messageQueue: "messageQueue";
|
|
11653
12781
|
}>;
|
|
11654
12782
|
toolId: z.ZodString;
|
|
11655
12783
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -11688,11 +12816,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
11688
12816
|
}, z.core.$strip>;
|
|
11689
12817
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
11690
12818
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
11691
|
-
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "
|
|
12819
|
+
declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
11692
12820
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
11693
12821
|
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "vanilla-vite" | "vue" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
11694
12822
|
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
|
|
11695
|
-
declare const EXAMPLES_VALUES: ("
|
|
12823
|
+
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
11696
12824
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
11697
12825
|
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
11698
12826
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
@@ -11702,11 +12830,11 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations"
|
|
|
11702
12830
|
declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet")[];
|
|
11703
12831
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
11704
12832
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
11705
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
11706
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
12833
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
12834
|
+
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3" | "saas")[];
|
|
11707
12835
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
|
|
11708
12836
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
11709
|
-
declare const EFFECT_VALUES: ("
|
|
12837
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
11710
12838
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
11711
12839
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
11712
12840
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "mocha" | "cypress")[];
|
|
@@ -11723,12 +12851,13 @@ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "graf
|
|
|
11723
12851
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
11724
12852
|
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4")[];
|
|
11725
12853
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
11726
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
12854
|
+
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
11727
12855
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
11728
12856
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
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")[];
|
|
@@ -11742,7 +12871,7 @@ declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus" | "yew")[];
|
|
|
11742
12871
|
declare const RUST_ORM_VALUES: ("none" | "mongodb" | "sea-orm" | "sqlx" | "diesel" | "rusqlite" | "tokio-postgres")[];
|
|
11743
12872
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql" | "jsonrpsee")[];
|
|
11744
12873
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
11745
|
-
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "
|
|
12874
|
+
declare const RUST_LIBRARIES_VALUES: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta" | "rand" | "regex" | "rayon" | "itertools" | "rstest" | "cargo-nextest" | "cargo-audit")[];
|
|
11746
12875
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
11747
12876
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
11748
12877
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
@@ -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")[];
|
|
@@ -11831,7 +12968,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
11831
12968
|
declare const SHADCN_COLOR_THEME_VALUES: ("neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow")[];
|
|
11832
12969
|
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
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
12971
|
+
declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "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-B79HRN5e.d.mts.map
|