@better-fullstack/types 2.0.1 → 2.0.3
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-ByJzfP7_.d.mts → defaults-CGUDVwYW.d.mts} +2 -2
- package/dist/defaults-CGUDVwYW.d.mts.map +1 -0
- package/dist/{defaults-DNmNiuxG.mjs → defaults-Cy0_ttEE.mjs} +31 -1
- package/dist/defaults-Cy0_ttEE.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 +5 -5
- package/dist/json-schema.d.mts +2200 -186
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-DnEGgQzA.mjs → schemas-D1fG1cXJ.mjs} +323 -14
- package/dist/schemas-D1fG1cXJ.mjs.map +1 -0
- package/dist/{schemas-62dqb8iS.d.mts → schemas-DVyeJ5g_.d.mts} +2039 -204
- package/dist/schemas-DVyeJ5g_.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/stack-graph-DIXiAwrZ.mjs +2115 -0
- package/dist/stack-graph-DIXiAwrZ.mjs.map +1 -0
- package/dist/{stack-graph-UgPd4sup.d.mts → stack-graph-DxbVgmAd.d.mts} +19 -4
- package/dist/stack-graph-DxbVgmAd.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-COVG5IPm.mjs → stack-translation-9PxvYAJB.mjs} +4084 -3024
- package/dist/stack-translation-9PxvYAJB.mjs.map +1 -0
- package/dist/{stack-translation-CYNMQUUu.d.mts → stack-translation-DQfT1jwM.d.mts} +117 -35
- package/dist/stack-translation-DQfT1jwM.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/types-j0tqBnAt.d.mts +153 -0
- package/dist/types-j0tqBnAt.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-ByJzfP7_.d.mts.map +0 -1
- package/dist/defaults-DNmNiuxG.mjs.map +0 -1
- package/dist/schemas-62dqb8iS.d.mts.map +0 -1
- package/dist/schemas-DnEGgQzA.mjs.map +0 -1
- package/dist/stack-graph-C2tzuzRe.mjs +0 -585
- package/dist/stack-graph-C2tzuzRe.mjs.map +0 -1
- package/dist/stack-graph-UgPd4sup.d.mts.map +0 -1
- package/dist/stack-translation-COVG5IPm.mjs.map +0 -1
- package/dist/stack-translation-CYNMQUUu.d.mts.map +0 -1
- package/dist/types-CWpfWGSN.d.mts +0 -123
- package/dist/types-CWpfWGSN.d.mts.map +0 -1
|
@@ -9,6 +9,7 @@ declare const EcosystemSchema: z.ZodEnum<{
|
|
|
9
9
|
go: "go";
|
|
10
10
|
java: "java";
|
|
11
11
|
elixir: "elixir";
|
|
12
|
+
dotnet: "dotnet";
|
|
12
13
|
}>;
|
|
13
14
|
declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
14
15
|
typescript: "typescript";
|
|
@@ -18,39 +19,58 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
18
19
|
go: "go";
|
|
19
20
|
java: "java";
|
|
20
21
|
elixir: "elixir";
|
|
22
|
+
dotnet: "dotnet";
|
|
21
23
|
}>, z.ZodLiteral<"universal">]>;
|
|
22
24
|
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
23
|
-
|
|
24
|
-
backend: "backend";
|
|
25
|
+
ai: "ai";
|
|
25
26
|
database: "database";
|
|
26
27
|
orm: "orm";
|
|
27
28
|
auth: "auth";
|
|
28
29
|
payments: "payments";
|
|
30
|
+
frontend: "frontend";
|
|
31
|
+
examples: "examples";
|
|
32
|
+
dbSetup: "dbSetup";
|
|
33
|
+
backend: "backend";
|
|
34
|
+
runtime: "runtime";
|
|
35
|
+
api: "api";
|
|
36
|
+
effect: "effect";
|
|
37
|
+
stateManagement: "stateManagement";
|
|
38
|
+
forms: "forms";
|
|
39
|
+
testing: "testing";
|
|
29
40
|
email: "email";
|
|
41
|
+
validation: "validation";
|
|
42
|
+
realtime: "realtime";
|
|
43
|
+
jobQueue: "jobQueue";
|
|
44
|
+
animation: "animation";
|
|
45
|
+
fileUpload: "fileUpload";
|
|
30
46
|
logging: "logging";
|
|
31
47
|
observability: "observability";
|
|
32
48
|
featureFlags: "featureFlags";
|
|
33
49
|
analytics: "analytics";
|
|
34
|
-
stateManagement: "stateManagement";
|
|
35
|
-
forms: "forms";
|
|
36
|
-
validation: "validation";
|
|
37
|
-
testing: "testing";
|
|
38
|
-
jobQueue: "jobQueue";
|
|
39
|
-
caching: "caching";
|
|
40
50
|
cms: "cms";
|
|
51
|
+
caching: "caching";
|
|
52
|
+
rateLimit: "rateLimit";
|
|
41
53
|
i18n: "i18n";
|
|
42
54
|
search: "search";
|
|
43
55
|
fileStorage: "fileStorage";
|
|
44
|
-
|
|
45
|
-
documentation: "documentation";
|
|
46
|
-
api: "api";
|
|
47
|
-
ai: "ai";
|
|
48
|
-
css: "css";
|
|
49
|
-
ui: "ui";
|
|
50
|
-
frontend: "frontend";
|
|
56
|
+
config: "config";
|
|
51
57
|
mobile: "mobile";
|
|
52
58
|
deploy: "deploy";
|
|
59
|
+
navigation: "navigation";
|
|
60
|
+
ui: "ui";
|
|
61
|
+
css: "css";
|
|
62
|
+
storage: "storage";
|
|
63
|
+
documentation: "documentation";
|
|
64
|
+
codeQuality: "codeQuality";
|
|
53
65
|
appPlatform: "appPlatform";
|
|
66
|
+
dataFetching: "dataFetching";
|
|
67
|
+
workspaceTooling: "workspaceTooling";
|
|
68
|
+
buildTool: "buildTool";
|
|
69
|
+
cli: "cli";
|
|
70
|
+
errorHandling: "errorHandling";
|
|
71
|
+
httpClient: "httpClient";
|
|
72
|
+
libraries: "libraries";
|
|
73
|
+
templating: "templating";
|
|
54
74
|
}>;
|
|
55
75
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
56
76
|
selected: "selected";
|
|
@@ -62,37 +82,55 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
62
82
|
declare const StackPartSchema: z.ZodObject<{
|
|
63
83
|
id: z.ZodString;
|
|
64
84
|
role: z.ZodEnum<{
|
|
65
|
-
|
|
66
|
-
backend: "backend";
|
|
85
|
+
ai: "ai";
|
|
67
86
|
database: "database";
|
|
68
87
|
orm: "orm";
|
|
69
88
|
auth: "auth";
|
|
70
89
|
payments: "payments";
|
|
90
|
+
frontend: "frontend";
|
|
91
|
+
examples: "examples";
|
|
92
|
+
dbSetup: "dbSetup";
|
|
93
|
+
backend: "backend";
|
|
94
|
+
runtime: "runtime";
|
|
95
|
+
api: "api";
|
|
96
|
+
effect: "effect";
|
|
97
|
+
stateManagement: "stateManagement";
|
|
98
|
+
forms: "forms";
|
|
99
|
+
testing: "testing";
|
|
71
100
|
email: "email";
|
|
101
|
+
validation: "validation";
|
|
102
|
+
realtime: "realtime";
|
|
103
|
+
jobQueue: "jobQueue";
|
|
104
|
+
animation: "animation";
|
|
105
|
+
fileUpload: "fileUpload";
|
|
72
106
|
logging: "logging";
|
|
73
107
|
observability: "observability";
|
|
74
108
|
featureFlags: "featureFlags";
|
|
75
109
|
analytics: "analytics";
|
|
76
|
-
stateManagement: "stateManagement";
|
|
77
|
-
forms: "forms";
|
|
78
|
-
validation: "validation";
|
|
79
|
-
testing: "testing";
|
|
80
|
-
jobQueue: "jobQueue";
|
|
81
|
-
caching: "caching";
|
|
82
110
|
cms: "cms";
|
|
111
|
+
caching: "caching";
|
|
112
|
+
rateLimit: "rateLimit";
|
|
83
113
|
i18n: "i18n";
|
|
84
114
|
search: "search";
|
|
85
115
|
fileStorage: "fileStorage";
|
|
86
|
-
|
|
87
|
-
documentation: "documentation";
|
|
88
|
-
api: "api";
|
|
89
|
-
ai: "ai";
|
|
90
|
-
css: "css";
|
|
91
|
-
ui: "ui";
|
|
92
|
-
frontend: "frontend";
|
|
116
|
+
config: "config";
|
|
93
117
|
mobile: "mobile";
|
|
94
118
|
deploy: "deploy";
|
|
119
|
+
navigation: "navigation";
|
|
120
|
+
ui: "ui";
|
|
121
|
+
css: "css";
|
|
122
|
+
storage: "storage";
|
|
123
|
+
documentation: "documentation";
|
|
124
|
+
codeQuality: "codeQuality";
|
|
95
125
|
appPlatform: "appPlatform";
|
|
126
|
+
dataFetching: "dataFetching";
|
|
127
|
+
workspaceTooling: "workspaceTooling";
|
|
128
|
+
buildTool: "buildTool";
|
|
129
|
+
cli: "cli";
|
|
130
|
+
errorHandling: "errorHandling";
|
|
131
|
+
httpClient: "httpClient";
|
|
132
|
+
libraries: "libraries";
|
|
133
|
+
templating: "templating";
|
|
96
134
|
}>;
|
|
97
135
|
toolId: z.ZodString;
|
|
98
136
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -103,6 +141,7 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
103
141
|
go: "go";
|
|
104
142
|
java: "java";
|
|
105
143
|
elixir: "elixir";
|
|
144
|
+
dotnet: "dotnet";
|
|
106
145
|
}>, z.ZodLiteral<"universal">]>;
|
|
107
146
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
108
147
|
source: z.ZodEnum<{
|
|
@@ -195,6 +234,7 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
195
234
|
mcp: "mcp";
|
|
196
235
|
skills: "skills";
|
|
197
236
|
turborepo: "turborepo";
|
|
237
|
+
nx: "nx";
|
|
198
238
|
fumadocs: "fumadocs";
|
|
199
239
|
ultracite: "ultracite";
|
|
200
240
|
oxlint: "oxlint";
|
|
@@ -208,11 +248,12 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
208
248
|
"tanstack-virtual": "tanstack-virtual";
|
|
209
249
|
"tanstack-db": "tanstack-db";
|
|
210
250
|
"tanstack-pacer": "tanstack-pacer";
|
|
251
|
+
"backend-utils": "backend-utils";
|
|
211
252
|
"docker-compose": "docker-compose";
|
|
212
253
|
}>;
|
|
213
254
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
214
|
-
ai: "ai";
|
|
215
255
|
none: "none";
|
|
256
|
+
ai: "ai";
|
|
216
257
|
"chat-sdk": "chat-sdk";
|
|
217
258
|
"tanstack-showcase": "tanstack-showcase";
|
|
218
259
|
}>;
|
|
@@ -246,16 +287,20 @@ declare const APISchema: z.ZodEnum<{
|
|
|
246
287
|
"ts-rest": "ts-rest";
|
|
247
288
|
garph: "garph";
|
|
248
289
|
"graphql-yoga": "graphql-yoga";
|
|
290
|
+
openapi: "openapi";
|
|
249
291
|
}>;
|
|
250
292
|
declare const AuthSchema: z.ZodEnum<{
|
|
251
293
|
none: "none";
|
|
252
294
|
"better-auth": "better-auth";
|
|
295
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
253
296
|
"go-better-auth": "go-better-auth";
|
|
254
297
|
clerk: "clerk";
|
|
255
298
|
nextauth: "nextauth";
|
|
256
299
|
"stack-auth": "stack-auth";
|
|
257
300
|
"supabase-auth": "supabase-auth";
|
|
258
301
|
auth0: "auth0";
|
|
302
|
+
workos: "workos";
|
|
303
|
+
kinde: "kinde";
|
|
259
304
|
}>;
|
|
260
305
|
declare const PaymentsSchema: z.ZodEnum<{
|
|
261
306
|
none: "none";
|
|
@@ -271,6 +316,8 @@ declare const WebDeploySchema: z.ZodEnum<{
|
|
|
271
316
|
cloudflare: "cloudflare";
|
|
272
317
|
fly: "fly";
|
|
273
318
|
railway: "railway";
|
|
319
|
+
render: "render";
|
|
320
|
+
netlify: "netlify";
|
|
274
321
|
sst: "sst";
|
|
275
322
|
vercel: "vercel";
|
|
276
323
|
}>;
|
|
@@ -280,6 +327,8 @@ declare const ServerDeploySchema: z.ZodEnum<{
|
|
|
280
327
|
cloudflare: "cloudflare";
|
|
281
328
|
fly: "fly";
|
|
282
329
|
railway: "railway";
|
|
330
|
+
render: "render";
|
|
331
|
+
netlify: "netlify";
|
|
283
332
|
sst: "sst";
|
|
284
333
|
vercel: "vercel";
|
|
285
334
|
}>;
|
|
@@ -298,8 +347,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
298
347
|
"ai-cli": "ai-cli";
|
|
299
348
|
}>;
|
|
300
349
|
declare const EffectSchema: z.ZodEnum<{
|
|
301
|
-
effect: "effect";
|
|
302
350
|
none: "none";
|
|
351
|
+
effect: "effect";
|
|
303
352
|
"effect-full": "effect-full";
|
|
304
353
|
}>;
|
|
305
354
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -380,6 +429,11 @@ declare const CachingSchema: z.ZodEnum<{
|
|
|
380
429
|
none: "none";
|
|
381
430
|
"upstash-redis": "upstash-redis";
|
|
382
431
|
}>;
|
|
432
|
+
declare const RateLimitSchema: z.ZodEnum<{
|
|
433
|
+
none: "none";
|
|
434
|
+
arcjet: "arcjet";
|
|
435
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
436
|
+
}>;
|
|
383
437
|
declare const I18nSchema: z.ZodEnum<{
|
|
384
438
|
none: "none";
|
|
385
439
|
i18next: "i18next";
|
|
@@ -423,6 +477,9 @@ declare const ObservabilitySchema: z.ZodEnum<{
|
|
|
423
477
|
opentelemetry: "opentelemetry";
|
|
424
478
|
sentry: "sentry";
|
|
425
479
|
grafana: "grafana";
|
|
480
|
+
datadog: "datadog";
|
|
481
|
+
axiom: "axiom";
|
|
482
|
+
betterstack: "betterstack";
|
|
426
483
|
}>;
|
|
427
484
|
declare const FeatureFlagsSchema: z.ZodEnum<{
|
|
428
485
|
none: "none";
|
|
@@ -444,9 +501,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
444
501
|
}>;
|
|
445
502
|
declare const MobileUISchema: z.ZodEnum<{
|
|
446
503
|
none: "none";
|
|
504
|
+
uniwind: "uniwind";
|
|
447
505
|
tamagui: "tamagui";
|
|
448
506
|
"gluestack-ui": "gluestack-ui";
|
|
449
|
-
uniwind: "uniwind";
|
|
450
507
|
unistyles: "unistyles";
|
|
451
508
|
}>;
|
|
452
509
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -536,6 +593,24 @@ declare const RustCachingSchema: z.ZodEnum<{
|
|
|
536
593
|
declare const RustAuthSchema: z.ZodEnum<{
|
|
537
594
|
none: "none";
|
|
538
595
|
oauth2: "oauth2";
|
|
596
|
+
torii: "torii";
|
|
597
|
+
}>;
|
|
598
|
+
declare const RustRealtimeSchema: z.ZodEnum<{
|
|
599
|
+
none: "none";
|
|
600
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
601
|
+
}>;
|
|
602
|
+
declare const RustMessageQueueSchema: z.ZodEnum<{
|
|
603
|
+
none: "none";
|
|
604
|
+
lapin: "lapin";
|
|
605
|
+
}>;
|
|
606
|
+
declare const RustObservabilitySchema: z.ZodEnum<{
|
|
607
|
+
none: "none";
|
|
608
|
+
opentelemetry: "opentelemetry";
|
|
609
|
+
}>;
|
|
610
|
+
declare const RustTemplatingSchema: z.ZodEnum<{
|
|
611
|
+
none: "none";
|
|
612
|
+
askama: "askama";
|
|
613
|
+
tera: "tera";
|
|
539
614
|
}>;
|
|
540
615
|
declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
541
616
|
none: "none";
|
|
@@ -543,12 +618,14 @@ declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
|
543
618
|
django: "django";
|
|
544
619
|
flask: "flask";
|
|
545
620
|
litestar: "litestar";
|
|
621
|
+
starlette: "starlette";
|
|
546
622
|
}>;
|
|
547
623
|
declare const PythonOrmSchema: z.ZodEnum<{
|
|
548
624
|
none: "none";
|
|
549
625
|
sqlalchemy: "sqlalchemy";
|
|
550
626
|
sqlmodel: "sqlmodel";
|
|
551
627
|
"tortoise-orm": "tortoise-orm";
|
|
628
|
+
peewee: "peewee";
|
|
552
629
|
}>;
|
|
553
630
|
declare const PythonValidationSchema: z.ZodEnum<{
|
|
554
631
|
none: "none";
|
|
@@ -557,17 +634,21 @@ declare const PythonValidationSchema: z.ZodEnum<{
|
|
|
557
634
|
declare const PythonAiSchema: z.ZodEnum<{
|
|
558
635
|
none: "none";
|
|
559
636
|
langgraph: "langgraph";
|
|
637
|
+
"google-adk": "google-adk";
|
|
560
638
|
langchain: "langchain";
|
|
561
639
|
llamaindex: "llamaindex";
|
|
562
640
|
"openai-sdk": "openai-sdk";
|
|
563
641
|
"anthropic-sdk": "anthropic-sdk";
|
|
564
642
|
crewai: "crewai";
|
|
565
643
|
haystack: "haystack";
|
|
644
|
+
"pydantic-ai": "pydantic-ai";
|
|
645
|
+
smolagents: "smolagents";
|
|
566
646
|
}>;
|
|
567
647
|
declare const PythonAuthSchema: z.ZodEnum<{
|
|
568
648
|
none: "none";
|
|
569
649
|
authlib: "authlib";
|
|
570
650
|
jwt: "jwt";
|
|
651
|
+
"fastapi-users": "fastapi-users";
|
|
571
652
|
}>;
|
|
572
653
|
declare const PythonApiSchema: z.ZodEnum<{
|
|
573
654
|
none: "none";
|
|
@@ -580,6 +661,7 @@ declare const PythonTaskQueueSchema: z.ZodEnum<{
|
|
|
580
661
|
rq: "rq";
|
|
581
662
|
dramatiq: "dramatiq";
|
|
582
663
|
huey: "huey";
|
|
664
|
+
taskiq: "taskiq";
|
|
583
665
|
}>;
|
|
584
666
|
declare const PythonGraphqlSchema: z.ZodEnum<{
|
|
585
667
|
none: "none";
|
|
@@ -592,6 +674,31 @@ declare const PythonQualitySchema: z.ZodEnum<{
|
|
|
592
674
|
mypy: "mypy";
|
|
593
675
|
pyright: "pyright";
|
|
594
676
|
}>;
|
|
677
|
+
declare const PythonTestingSchema: z.ZodEnum<{
|
|
678
|
+
none: "none";
|
|
679
|
+
pytest: "pytest";
|
|
680
|
+
hypothesis: "hypothesis";
|
|
681
|
+
}>;
|
|
682
|
+
declare const PythonCachingSchema: z.ZodEnum<{
|
|
683
|
+
none: "none";
|
|
684
|
+
redis: "redis";
|
|
685
|
+
aiocache: "aiocache";
|
|
686
|
+
}>;
|
|
687
|
+
declare const PythonRealtimeSchema: z.ZodEnum<{
|
|
688
|
+
none: "none";
|
|
689
|
+
"python-socketio": "python-socketio";
|
|
690
|
+
websockets: "websockets";
|
|
691
|
+
}>;
|
|
692
|
+
declare const PythonObservabilitySchema: z.ZodEnum<{
|
|
693
|
+
none: "none";
|
|
694
|
+
opentelemetry: "opentelemetry";
|
|
695
|
+
}>;
|
|
696
|
+
declare const PythonCliSchema: z.ZodEnum<{
|
|
697
|
+
none: "none";
|
|
698
|
+
typer: "typer";
|
|
699
|
+
click: "click";
|
|
700
|
+
rich: "rich";
|
|
701
|
+
}>;
|
|
595
702
|
declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
596
703
|
none: "none";
|
|
597
704
|
gin: "gin";
|
|
@@ -600,14 +707,15 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
600
707
|
chi: "chi";
|
|
601
708
|
}>;
|
|
602
709
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
603
|
-
gorm: "gorm";
|
|
604
710
|
none: "none";
|
|
711
|
+
gorm: "gorm";
|
|
605
712
|
sqlc: "sqlc";
|
|
606
713
|
ent: "ent";
|
|
607
714
|
}>;
|
|
608
715
|
declare const GoApiSchema: z.ZodEnum<{
|
|
609
716
|
none: "none";
|
|
610
717
|
"grpc-go": "grpc-go";
|
|
718
|
+
gqlgen: "gqlgen";
|
|
611
719
|
}>;
|
|
612
720
|
declare const GoCliSchema: z.ZodEnum<{
|
|
613
721
|
none: "none";
|
|
@@ -626,6 +734,36 @@ declare const GoAuthSchema: z.ZodEnum<{
|
|
|
626
734
|
none: "none";
|
|
627
735
|
jwt: "jwt";
|
|
628
736
|
casbin: "casbin";
|
|
737
|
+
goth: "goth";
|
|
738
|
+
}>;
|
|
739
|
+
declare const GoTestingSchema: z.ZodEnum<{
|
|
740
|
+
none: "none";
|
|
741
|
+
testify: "testify";
|
|
742
|
+
gomock: "gomock";
|
|
743
|
+
}>;
|
|
744
|
+
declare const GoRealtimeSchema: z.ZodEnum<{
|
|
745
|
+
none: "none";
|
|
746
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
747
|
+
centrifuge: "centrifuge";
|
|
748
|
+
}>;
|
|
749
|
+
declare const GoMessageQueueSchema: z.ZodEnum<{
|
|
750
|
+
none: "none";
|
|
751
|
+
nats: "nats";
|
|
752
|
+
watermill: "watermill";
|
|
753
|
+
}>;
|
|
754
|
+
declare const GoCachingSchema: z.ZodEnum<{
|
|
755
|
+
none: "none";
|
|
756
|
+
redis: "redis";
|
|
757
|
+
ristretto: "ristretto";
|
|
758
|
+
}>;
|
|
759
|
+
declare const GoConfigSchema: z.ZodEnum<{
|
|
760
|
+
none: "none";
|
|
761
|
+
viper: "viper";
|
|
762
|
+
koanf: "koanf";
|
|
763
|
+
}>;
|
|
764
|
+
declare const GoObservabilitySchema: z.ZodEnum<{
|
|
765
|
+
none: "none";
|
|
766
|
+
opentelemetry: "opentelemetry";
|
|
629
767
|
}>;
|
|
630
768
|
declare const JavaWebFrameworkSchema: z.ZodEnum<{
|
|
631
769
|
none: "none";
|
|
@@ -640,10 +778,21 @@ declare const JavaBuildToolSchema: z.ZodEnum<{
|
|
|
640
778
|
declare const JavaOrmSchema: z.ZodEnum<{
|
|
641
779
|
none: "none";
|
|
642
780
|
"spring-data-jpa": "spring-data-jpa";
|
|
781
|
+
jooq: "jooq";
|
|
782
|
+
mybatis: "mybatis";
|
|
643
783
|
}>;
|
|
644
784
|
declare const JavaAuthSchema: z.ZodEnum<{
|
|
645
785
|
none: "none";
|
|
646
786
|
"spring-security": "spring-security";
|
|
787
|
+
keycloak: "keycloak";
|
|
788
|
+
}>;
|
|
789
|
+
declare const JavaApiSchema: z.ZodEnum<{
|
|
790
|
+
none: "none";
|
|
791
|
+
"spring-graphql": "spring-graphql";
|
|
792
|
+
}>;
|
|
793
|
+
declare const JavaLoggingSchema: z.ZodEnum<{
|
|
794
|
+
none: "none";
|
|
795
|
+
logback: "logback";
|
|
647
796
|
}>;
|
|
648
797
|
declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
649
798
|
none: "none";
|
|
@@ -663,6 +812,8 @@ declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
|
663
812
|
"spring-devtools": "spring-devtools";
|
|
664
813
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
665
814
|
thymeleaf: "thymeleaf";
|
|
815
|
+
"spring-amqp": "spring-amqp";
|
|
816
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
666
817
|
}>;
|
|
667
818
|
declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
668
819
|
none: "none";
|
|
@@ -676,6 +827,70 @@ declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
|
676
827
|
archunit: "archunit";
|
|
677
828
|
jqwik: "jqwik";
|
|
678
829
|
}>;
|
|
830
|
+
declare const DotnetWebFrameworkSchema: z.ZodEnum<{
|
|
831
|
+
none: "none";
|
|
832
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
833
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
834
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
835
|
+
}>;
|
|
836
|
+
declare const DotnetOrmSchema: z.ZodEnum<{
|
|
837
|
+
none: "none";
|
|
838
|
+
"ef-core": "ef-core";
|
|
839
|
+
dapper: "dapper";
|
|
840
|
+
linq2db: "linq2db";
|
|
841
|
+
}>;
|
|
842
|
+
declare const DotnetAuthSchema: z.ZodEnum<{
|
|
843
|
+
none: "none";
|
|
844
|
+
"aspnet-identity": "aspnet-identity";
|
|
845
|
+
"duende-identityserver": "duende-identityserver";
|
|
846
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
847
|
+
}>;
|
|
848
|
+
declare const DotnetApiSchema: z.ZodEnum<{
|
|
849
|
+
none: "none";
|
|
850
|
+
"minimal-api": "minimal-api";
|
|
851
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
852
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
853
|
+
}>;
|
|
854
|
+
declare const DotnetTestingSchema: z.ZodEnum<{
|
|
855
|
+
none: "none";
|
|
856
|
+
xunit: "xunit";
|
|
857
|
+
nunit: "nunit";
|
|
858
|
+
moq: "moq";
|
|
859
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
860
|
+
}>;
|
|
861
|
+
declare const DotnetJobQueueSchema: z.ZodEnum<{
|
|
862
|
+
none: "none";
|
|
863
|
+
hangfire: "hangfire";
|
|
864
|
+
"quartz-net": "quartz-net";
|
|
865
|
+
"hosted-services": "hosted-services";
|
|
866
|
+
}>;
|
|
867
|
+
declare const DotnetRealtimeSchema: z.ZodEnum<{
|
|
868
|
+
none: "none";
|
|
869
|
+
signalr: "signalr";
|
|
870
|
+
}>;
|
|
871
|
+
declare const DotnetObservabilitySchema: z.ZodEnum<{
|
|
872
|
+
none: "none";
|
|
873
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
874
|
+
serilog: "serilog";
|
|
875
|
+
nlog: "nlog";
|
|
876
|
+
"health-checks": "health-checks";
|
|
877
|
+
}>;
|
|
878
|
+
declare const DotnetValidationSchema: z.ZodEnum<{
|
|
879
|
+
none: "none";
|
|
880
|
+
fluentvalidation: "fluentvalidation";
|
|
881
|
+
"data-annotations": "data-annotations";
|
|
882
|
+
}>;
|
|
883
|
+
declare const DotnetCachingSchema: z.ZodEnum<{
|
|
884
|
+
none: "none";
|
|
885
|
+
redis: "redis";
|
|
886
|
+
"memory-cache": "memory-cache";
|
|
887
|
+
}>;
|
|
888
|
+
declare const DotnetDeploySchema: z.ZodEnum<{
|
|
889
|
+
none: "none";
|
|
890
|
+
docker: "docker";
|
|
891
|
+
azure: "azure";
|
|
892
|
+
aws: "aws";
|
|
893
|
+
}>;
|
|
679
894
|
declare const ElixirWebFrameworkSchema: z.ZodEnum<{
|
|
680
895
|
none: "none";
|
|
681
896
|
phoenix: "phoenix";
|
|
@@ -696,6 +911,12 @@ declare const ElixirApiSchema: z.ZodEnum<{
|
|
|
696
911
|
none: "none";
|
|
697
912
|
rest: "rest";
|
|
698
913
|
absinthe: "absinthe";
|
|
914
|
+
grpc: "grpc";
|
|
915
|
+
}>;
|
|
916
|
+
declare const ElixirLibrariesSchema: z.ZodEnum<{
|
|
917
|
+
none: "none";
|
|
918
|
+
nx: "nx";
|
|
919
|
+
broadway: "broadway";
|
|
699
920
|
}>;
|
|
700
921
|
declare const ElixirRealtimeSchema: z.ZodEnum<{
|
|
701
922
|
none: "none";
|
|
@@ -772,7 +993,6 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
|
772
993
|
"postcss-only": "postcss-only";
|
|
773
994
|
}>;
|
|
774
995
|
declare const UILibrarySchema: z.ZodEnum<{
|
|
775
|
-
mui: "mui";
|
|
776
996
|
none: "none";
|
|
777
997
|
"shadcn-ui": "shadcn-ui";
|
|
778
998
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -783,6 +1003,7 @@ declare const UILibrarySchema: z.ZodEnum<{
|
|
|
783
1003
|
"chakra-ui": "chakra-ui";
|
|
784
1004
|
nextui: "nextui";
|
|
785
1005
|
mantine: "mantine";
|
|
1006
|
+
mui: "mui";
|
|
786
1007
|
antd: "antd";
|
|
787
1008
|
"base-ui": "base-ui";
|
|
788
1009
|
"ark-ui": "ark-ui";
|
|
@@ -861,27 +1082,27 @@ declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
|
861
1082
|
large: "large";
|
|
862
1083
|
}>;
|
|
863
1084
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
864
|
-
error: "error";
|
|
865
1085
|
merge: "merge";
|
|
866
1086
|
overwrite: "overwrite";
|
|
867
1087
|
increment: "increment";
|
|
1088
|
+
error: "error";
|
|
868
1089
|
}>;
|
|
869
1090
|
declare const TemplateSchema: z.ZodEnum<{
|
|
870
1091
|
none: "none";
|
|
871
|
-
uniwind: "uniwind";
|
|
872
1092
|
mern: "mern";
|
|
873
1093
|
pern: "pern";
|
|
874
1094
|
t3: "t3";
|
|
1095
|
+
uniwind: "uniwind";
|
|
875
1096
|
}>;
|
|
876
1097
|
declare const ProjectNameSchema: z.ZodString;
|
|
877
1098
|
declare const CreateInputSchema: z.ZodObject<{
|
|
878
1099
|
projectName: z.ZodOptional<z.ZodString>;
|
|
879
1100
|
template: z.ZodOptional<z.ZodEnum<{
|
|
880
1101
|
none: "none";
|
|
881
|
-
uniwind: "uniwind";
|
|
882
1102
|
mern: "mern";
|
|
883
1103
|
pern: "pern";
|
|
884
1104
|
t3: "t3";
|
|
1105
|
+
uniwind: "uniwind";
|
|
885
1106
|
}>>;
|
|
886
1107
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
887
1108
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -896,6 +1117,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
896
1117
|
go: "go";
|
|
897
1118
|
java: "java";
|
|
898
1119
|
elixir: "elixir";
|
|
1120
|
+
dotnet: "dotnet";
|
|
899
1121
|
}>>;
|
|
900
1122
|
database: z.ZodOptional<z.ZodEnum<{
|
|
901
1123
|
none: "none";
|
|
@@ -919,12 +1141,15 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
919
1141
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
920
1142
|
none: "none";
|
|
921
1143
|
"better-auth": "better-auth";
|
|
1144
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
922
1145
|
"go-better-auth": "go-better-auth";
|
|
923
1146
|
clerk: "clerk";
|
|
924
1147
|
nextauth: "nextauth";
|
|
925
1148
|
"stack-auth": "stack-auth";
|
|
926
1149
|
"supabase-auth": "supabase-auth";
|
|
927
1150
|
auth0: "auth0";
|
|
1151
|
+
workos: "workos";
|
|
1152
|
+
kinde: "kinde";
|
|
928
1153
|
}>>;
|
|
929
1154
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
930
1155
|
none: "none";
|
|
@@ -967,6 +1192,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
967
1192
|
mcp: "mcp";
|
|
968
1193
|
skills: "skills";
|
|
969
1194
|
turborepo: "turborepo";
|
|
1195
|
+
nx: "nx";
|
|
970
1196
|
fumadocs: "fumadocs";
|
|
971
1197
|
ultracite: "ultracite";
|
|
972
1198
|
oxlint: "oxlint";
|
|
@@ -980,11 +1206,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
980
1206
|
"tanstack-virtual": "tanstack-virtual";
|
|
981
1207
|
"tanstack-db": "tanstack-db";
|
|
982
1208
|
"tanstack-pacer": "tanstack-pacer";
|
|
1209
|
+
"backend-utils": "backend-utils";
|
|
983
1210
|
"docker-compose": "docker-compose";
|
|
984
1211
|
}>>>;
|
|
985
1212
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
986
|
-
ai: "ai";
|
|
987
1213
|
none: "none";
|
|
1214
|
+
ai: "ai";
|
|
988
1215
|
"chat-sdk": "chat-sdk";
|
|
989
1216
|
"tanstack-showcase": "tanstack-showcase";
|
|
990
1217
|
}>>>;
|
|
@@ -1040,6 +1267,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1040
1267
|
"ts-rest": "ts-rest";
|
|
1041
1268
|
garph: "garph";
|
|
1042
1269
|
"graphql-yoga": "graphql-yoga";
|
|
1270
|
+
openapi: "openapi";
|
|
1043
1271
|
}>>;
|
|
1044
1272
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1045
1273
|
none: "none";
|
|
@@ -1047,6 +1275,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1047
1275
|
cloudflare: "cloudflare";
|
|
1048
1276
|
fly: "fly";
|
|
1049
1277
|
railway: "railway";
|
|
1278
|
+
render: "render";
|
|
1279
|
+
netlify: "netlify";
|
|
1050
1280
|
sst: "sst";
|
|
1051
1281
|
vercel: "vercel";
|
|
1052
1282
|
}>>;
|
|
@@ -1056,14 +1286,16 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1056
1286
|
cloudflare: "cloudflare";
|
|
1057
1287
|
fly: "fly";
|
|
1058
1288
|
railway: "railway";
|
|
1289
|
+
render: "render";
|
|
1290
|
+
netlify: "netlify";
|
|
1059
1291
|
sst: "sst";
|
|
1060
1292
|
vercel: "vercel";
|
|
1061
1293
|
}>>;
|
|
1062
1294
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1063
|
-
error: "error";
|
|
1064
1295
|
merge: "merge";
|
|
1065
1296
|
overwrite: "overwrite";
|
|
1066
1297
|
increment: "increment";
|
|
1298
|
+
error: "error";
|
|
1067
1299
|
}>>;
|
|
1068
1300
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1301
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1090,8 +1322,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1090
1322
|
"ai-cli": "ai-cli";
|
|
1091
1323
|
}>>;
|
|
1092
1324
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1093
|
-
effect: "effect";
|
|
1094
1325
|
none: "none";
|
|
1326
|
+
effect: "effect";
|
|
1095
1327
|
"effect-full": "effect-full";
|
|
1096
1328
|
}>>;
|
|
1097
1329
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1142,7 +1374,6 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1142
1374
|
"postcss-only": "postcss-only";
|
|
1143
1375
|
}>>;
|
|
1144
1376
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1145
|
-
mui: "mui";
|
|
1146
1377
|
none: "none";
|
|
1147
1378
|
"shadcn-ui": "shadcn-ui";
|
|
1148
1379
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1153,6 +1384,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1153
1384
|
"chakra-ui": "chakra-ui";
|
|
1154
1385
|
nextui: "nextui";
|
|
1155
1386
|
mantine: "mantine";
|
|
1387
|
+
mui: "mui";
|
|
1156
1388
|
antd: "antd";
|
|
1157
1389
|
"base-ui": "base-ui";
|
|
1158
1390
|
"ark-ui": "ark-ui";
|
|
@@ -1281,6 +1513,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1281
1513
|
opentelemetry: "opentelemetry";
|
|
1282
1514
|
sentry: "sentry";
|
|
1283
1515
|
grafana: "grafana";
|
|
1516
|
+
datadog: "datadog";
|
|
1517
|
+
axiom: "axiom";
|
|
1518
|
+
betterstack: "betterstack";
|
|
1284
1519
|
}>>;
|
|
1285
1520
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
1286
1521
|
none: "none";
|
|
@@ -1307,6 +1542,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1307
1542
|
none: "none";
|
|
1308
1543
|
"upstash-redis": "upstash-redis";
|
|
1309
1544
|
}>>;
|
|
1545
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
1546
|
+
none: "none";
|
|
1547
|
+
arcjet: "arcjet";
|
|
1548
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
1549
|
+
}>>;
|
|
1310
1550
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1311
1551
|
none: "none";
|
|
1312
1552
|
i18next: "i18next";
|
|
@@ -1332,9 +1572,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1332
1572
|
}>>;
|
|
1333
1573
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1334
1574
|
none: "none";
|
|
1575
|
+
uniwind: "uniwind";
|
|
1335
1576
|
tamagui: "tamagui";
|
|
1336
1577
|
"gluestack-ui": "gluestack-ui";
|
|
1337
|
-
uniwind: "uniwind";
|
|
1338
1578
|
unistyles: "unistyles";
|
|
1339
1579
|
}>>;
|
|
1340
1580
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1424,6 +1664,24 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1424
1664
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
1425
1665
|
none: "none";
|
|
1426
1666
|
oauth2: "oauth2";
|
|
1667
|
+
torii: "torii";
|
|
1668
|
+
}>>;
|
|
1669
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1670
|
+
none: "none";
|
|
1671
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
1672
|
+
}>>;
|
|
1673
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
1674
|
+
none: "none";
|
|
1675
|
+
lapin: "lapin";
|
|
1676
|
+
}>>;
|
|
1677
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
1678
|
+
none: "none";
|
|
1679
|
+
opentelemetry: "opentelemetry";
|
|
1680
|
+
}>>;
|
|
1681
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
1682
|
+
none: "none";
|
|
1683
|
+
askama: "askama";
|
|
1684
|
+
tera: "tera";
|
|
1427
1685
|
}>>;
|
|
1428
1686
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1429
1687
|
none: "none";
|
|
@@ -1431,12 +1689,14 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1431
1689
|
django: "django";
|
|
1432
1690
|
flask: "flask";
|
|
1433
1691
|
litestar: "litestar";
|
|
1692
|
+
starlette: "starlette";
|
|
1434
1693
|
}>>;
|
|
1435
1694
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1436
1695
|
none: "none";
|
|
1437
1696
|
sqlalchemy: "sqlalchemy";
|
|
1438
1697
|
sqlmodel: "sqlmodel";
|
|
1439
1698
|
"tortoise-orm": "tortoise-orm";
|
|
1699
|
+
peewee: "peewee";
|
|
1440
1700
|
}>>;
|
|
1441
1701
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
1442
1702
|
none: "none";
|
|
@@ -1445,17 +1705,21 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1445
1705
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1446
1706
|
none: "none";
|
|
1447
1707
|
langgraph: "langgraph";
|
|
1708
|
+
"google-adk": "google-adk";
|
|
1448
1709
|
langchain: "langchain";
|
|
1449
1710
|
llamaindex: "llamaindex";
|
|
1450
1711
|
"openai-sdk": "openai-sdk";
|
|
1451
1712
|
"anthropic-sdk": "anthropic-sdk";
|
|
1452
1713
|
crewai: "crewai";
|
|
1453
1714
|
haystack: "haystack";
|
|
1715
|
+
"pydantic-ai": "pydantic-ai";
|
|
1716
|
+
smolagents: "smolagents";
|
|
1454
1717
|
}>>>;
|
|
1455
1718
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1456
1719
|
none: "none";
|
|
1457
1720
|
authlib: "authlib";
|
|
1458
1721
|
jwt: "jwt";
|
|
1722
|
+
"fastapi-users": "fastapi-users";
|
|
1459
1723
|
}>>;
|
|
1460
1724
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
1461
1725
|
none: "none";
|
|
@@ -1468,6 +1732,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1468
1732
|
rq: "rq";
|
|
1469
1733
|
dramatiq: "dramatiq";
|
|
1470
1734
|
huey: "huey";
|
|
1735
|
+
taskiq: "taskiq";
|
|
1471
1736
|
}>>;
|
|
1472
1737
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1473
1738
|
none: "none";
|
|
@@ -1480,6 +1745,31 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1480
1745
|
mypy: "mypy";
|
|
1481
1746
|
pyright: "pyright";
|
|
1482
1747
|
}>>;
|
|
1748
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1749
|
+
none: "none";
|
|
1750
|
+
pytest: "pytest";
|
|
1751
|
+
hypothesis: "hypothesis";
|
|
1752
|
+
}>>>;
|
|
1753
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
1754
|
+
none: "none";
|
|
1755
|
+
redis: "redis";
|
|
1756
|
+
aiocache: "aiocache";
|
|
1757
|
+
}>>;
|
|
1758
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1759
|
+
none: "none";
|
|
1760
|
+
"python-socketio": "python-socketio";
|
|
1761
|
+
websockets: "websockets";
|
|
1762
|
+
}>>;
|
|
1763
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
1764
|
+
none: "none";
|
|
1765
|
+
opentelemetry: "opentelemetry";
|
|
1766
|
+
}>>;
|
|
1767
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1768
|
+
none: "none";
|
|
1769
|
+
typer: "typer";
|
|
1770
|
+
click: "click";
|
|
1771
|
+
rich: "rich";
|
|
1772
|
+
}>>>;
|
|
1483
1773
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1484
1774
|
none: "none";
|
|
1485
1775
|
gin: "gin";
|
|
@@ -1488,14 +1778,15 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1488
1778
|
chi: "chi";
|
|
1489
1779
|
}>>;
|
|
1490
1780
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1491
|
-
gorm: "gorm";
|
|
1492
1781
|
none: "none";
|
|
1782
|
+
gorm: "gorm";
|
|
1493
1783
|
sqlc: "sqlc";
|
|
1494
1784
|
ent: "ent";
|
|
1495
1785
|
}>>;
|
|
1496
1786
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1497
1787
|
none: "none";
|
|
1498
1788
|
"grpc-go": "grpc-go";
|
|
1789
|
+
gqlgen: "gqlgen";
|
|
1499
1790
|
}>>;
|
|
1500
1791
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
1501
1792
|
none: "none";
|
|
@@ -1514,6 +1805,36 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1514
1805
|
none: "none";
|
|
1515
1806
|
jwt: "jwt";
|
|
1516
1807
|
casbin: "casbin";
|
|
1808
|
+
goth: "goth";
|
|
1809
|
+
}>>;
|
|
1810
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1811
|
+
none: "none";
|
|
1812
|
+
testify: "testify";
|
|
1813
|
+
gomock: "gomock";
|
|
1814
|
+
}>>>;
|
|
1815
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1816
|
+
none: "none";
|
|
1817
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
1818
|
+
centrifuge: "centrifuge";
|
|
1819
|
+
}>>;
|
|
1820
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
1821
|
+
none: "none";
|
|
1822
|
+
nats: "nats";
|
|
1823
|
+
watermill: "watermill";
|
|
1824
|
+
}>>;
|
|
1825
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
1826
|
+
none: "none";
|
|
1827
|
+
redis: "redis";
|
|
1828
|
+
ristretto: "ristretto";
|
|
1829
|
+
}>>;
|
|
1830
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
1831
|
+
none: "none";
|
|
1832
|
+
viper: "viper";
|
|
1833
|
+
koanf: "koanf";
|
|
1834
|
+
}>>;
|
|
1835
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
1836
|
+
none: "none";
|
|
1837
|
+
opentelemetry: "opentelemetry";
|
|
1517
1838
|
}>>;
|
|
1518
1839
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1519
1840
|
none: "none";
|
|
@@ -1528,10 +1849,21 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1528
1849
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
1529
1850
|
none: "none";
|
|
1530
1851
|
"spring-data-jpa": "spring-data-jpa";
|
|
1852
|
+
jooq: "jooq";
|
|
1853
|
+
mybatis: "mybatis";
|
|
1531
1854
|
}>>;
|
|
1532
1855
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
1533
1856
|
none: "none";
|
|
1534
1857
|
"spring-security": "spring-security";
|
|
1858
|
+
keycloak: "keycloak";
|
|
1859
|
+
}>>;
|
|
1860
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
1861
|
+
none: "none";
|
|
1862
|
+
"spring-graphql": "spring-graphql";
|
|
1863
|
+
}>>;
|
|
1864
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
1865
|
+
none: "none";
|
|
1866
|
+
logback: "logback";
|
|
1535
1867
|
}>>;
|
|
1536
1868
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1537
1869
|
none: "none";
|
|
@@ -1551,6 +1883,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1551
1883
|
"spring-devtools": "spring-devtools";
|
|
1552
1884
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
1553
1885
|
thymeleaf: "thymeleaf";
|
|
1886
|
+
"spring-amqp": "spring-amqp";
|
|
1887
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
1554
1888
|
}>>>;
|
|
1555
1889
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1556
1890
|
none: "none";
|
|
@@ -1564,6 +1898,70 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1564
1898
|
archunit: "archunit";
|
|
1565
1899
|
jqwik: "jqwik";
|
|
1566
1900
|
}>>>;
|
|
1901
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1902
|
+
none: "none";
|
|
1903
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
1904
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
1905
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
1906
|
+
}>>;
|
|
1907
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
1908
|
+
none: "none";
|
|
1909
|
+
"ef-core": "ef-core";
|
|
1910
|
+
dapper: "dapper";
|
|
1911
|
+
linq2db: "linq2db";
|
|
1912
|
+
}>>;
|
|
1913
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
1914
|
+
none: "none";
|
|
1915
|
+
"aspnet-identity": "aspnet-identity";
|
|
1916
|
+
"duende-identityserver": "duende-identityserver";
|
|
1917
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
1918
|
+
}>>;
|
|
1919
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
1920
|
+
none: "none";
|
|
1921
|
+
"minimal-api": "minimal-api";
|
|
1922
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
1923
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
1924
|
+
}>>;
|
|
1925
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1926
|
+
none: "none";
|
|
1927
|
+
xunit: "xunit";
|
|
1928
|
+
nunit: "nunit";
|
|
1929
|
+
moq: "moq";
|
|
1930
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
1931
|
+
}>>>;
|
|
1932
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
+
none: "none";
|
|
1934
|
+
hangfire: "hangfire";
|
|
1935
|
+
"quartz-net": "quartz-net";
|
|
1936
|
+
"hosted-services": "hosted-services";
|
|
1937
|
+
}>>;
|
|
1938
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1939
|
+
none: "none";
|
|
1940
|
+
signalr: "signalr";
|
|
1941
|
+
}>>;
|
|
1942
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1943
|
+
none: "none";
|
|
1944
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
1945
|
+
serilog: "serilog";
|
|
1946
|
+
nlog: "nlog";
|
|
1947
|
+
"health-checks": "health-checks";
|
|
1948
|
+
}>>>;
|
|
1949
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
1950
|
+
none: "none";
|
|
1951
|
+
fluentvalidation: "fluentvalidation";
|
|
1952
|
+
"data-annotations": "data-annotations";
|
|
1953
|
+
}>>;
|
|
1954
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
1955
|
+
none: "none";
|
|
1956
|
+
redis: "redis";
|
|
1957
|
+
"memory-cache": "memory-cache";
|
|
1958
|
+
}>>;
|
|
1959
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1960
|
+
none: "none";
|
|
1961
|
+
docker: "docker";
|
|
1962
|
+
azure: "azure";
|
|
1963
|
+
aws: "aws";
|
|
1964
|
+
}>>;
|
|
1567
1965
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1568
1966
|
none: "none";
|
|
1569
1967
|
phoenix: "phoenix";
|
|
@@ -1584,6 +1982,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1584
1982
|
none: "none";
|
|
1585
1983
|
rest: "rest";
|
|
1586
1984
|
absinthe: "absinthe";
|
|
1985
|
+
grpc: "grpc";
|
|
1587
1986
|
}>>;
|
|
1588
1987
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1589
1988
|
none: "none";
|
|
@@ -1646,6 +2045,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1646
2045
|
gigalixir: "gigalixir";
|
|
1647
2046
|
"mix-release": "mix-release";
|
|
1648
2047
|
}>>;
|
|
2048
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2049
|
+
none: "none";
|
|
2050
|
+
nx: "nx";
|
|
2051
|
+
broadway: "broadway";
|
|
2052
|
+
}>>>;
|
|
1649
2053
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1650
2054
|
none: "none";
|
|
1651
2055
|
"claude-md": "claude-md";
|
|
@@ -1667,6 +2071,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1667
2071
|
mcp: "mcp";
|
|
1668
2072
|
skills: "skills";
|
|
1669
2073
|
turborepo: "turborepo";
|
|
2074
|
+
nx: "nx";
|
|
1670
2075
|
fumadocs: "fumadocs";
|
|
1671
2076
|
ultracite: "ultracite";
|
|
1672
2077
|
oxlint: "oxlint";
|
|
@@ -1680,6 +2085,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1680
2085
|
"tanstack-virtual": "tanstack-virtual";
|
|
1681
2086
|
"tanstack-db": "tanstack-db";
|
|
1682
2087
|
"tanstack-pacer": "tanstack-pacer";
|
|
2088
|
+
"backend-utils": "backend-utils";
|
|
1683
2089
|
"docker-compose": "docker-compose";
|
|
1684
2090
|
}>>>;
|
|
1685
2091
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1688,6 +2094,8 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1688
2094
|
cloudflare: "cloudflare";
|
|
1689
2095
|
fly: "fly";
|
|
1690
2096
|
railway: "railway";
|
|
2097
|
+
render: "render";
|
|
2098
|
+
netlify: "netlify";
|
|
1691
2099
|
sst: "sst";
|
|
1692
2100
|
vercel: "vercel";
|
|
1693
2101
|
}>>;
|
|
@@ -1697,6 +2105,8 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1697
2105
|
cloudflare: "cloudflare";
|
|
1698
2106
|
fly: "fly";
|
|
1699
2107
|
railway: "railway";
|
|
2108
|
+
render: "render";
|
|
2109
|
+
netlify: "netlify";
|
|
1700
2110
|
sst: "sst";
|
|
1701
2111
|
vercel: "vercel";
|
|
1702
2112
|
}>>;
|
|
@@ -1713,10 +2123,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1713
2123
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1714
2124
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1715
2125
|
none: "none";
|
|
1716
|
-
uniwind: "uniwind";
|
|
1717
2126
|
mern: "mern";
|
|
1718
2127
|
pern: "pern";
|
|
1719
2128
|
t3: "t3";
|
|
2129
|
+
uniwind: "uniwind";
|
|
1720
2130
|
}>>;
|
|
1721
2131
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1722
2132
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1731,6 +2141,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1731
2141
|
go: "go";
|
|
1732
2142
|
java: "java";
|
|
1733
2143
|
elixir: "elixir";
|
|
2144
|
+
dotnet: "dotnet";
|
|
1734
2145
|
}>>;
|
|
1735
2146
|
database: z.ZodOptional<z.ZodEnum<{
|
|
1736
2147
|
none: "none";
|
|
@@ -1754,12 +2165,15 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1754
2165
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
1755
2166
|
none: "none";
|
|
1756
2167
|
"better-auth": "better-auth";
|
|
2168
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
1757
2169
|
"go-better-auth": "go-better-auth";
|
|
1758
2170
|
clerk: "clerk";
|
|
1759
2171
|
nextauth: "nextauth";
|
|
1760
2172
|
"stack-auth": "stack-auth";
|
|
1761
2173
|
"supabase-auth": "supabase-auth";
|
|
1762
2174
|
auth0: "auth0";
|
|
2175
|
+
workos: "workos";
|
|
2176
|
+
kinde: "kinde";
|
|
1763
2177
|
}>>;
|
|
1764
2178
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
1765
2179
|
none: "none";
|
|
@@ -1802,6 +2216,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1802
2216
|
mcp: "mcp";
|
|
1803
2217
|
skills: "skills";
|
|
1804
2218
|
turborepo: "turborepo";
|
|
2219
|
+
nx: "nx";
|
|
1805
2220
|
fumadocs: "fumadocs";
|
|
1806
2221
|
ultracite: "ultracite";
|
|
1807
2222
|
oxlint: "oxlint";
|
|
@@ -1815,11 +2230,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1815
2230
|
"tanstack-virtual": "tanstack-virtual";
|
|
1816
2231
|
"tanstack-db": "tanstack-db";
|
|
1817
2232
|
"tanstack-pacer": "tanstack-pacer";
|
|
2233
|
+
"backend-utils": "backend-utils";
|
|
1818
2234
|
"docker-compose": "docker-compose";
|
|
1819
2235
|
}>>>;
|
|
1820
2236
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1821
|
-
ai: "ai";
|
|
1822
2237
|
none: "none";
|
|
2238
|
+
ai: "ai";
|
|
1823
2239
|
"chat-sdk": "chat-sdk";
|
|
1824
2240
|
"tanstack-showcase": "tanstack-showcase";
|
|
1825
2241
|
}>>>;
|
|
@@ -1875,6 +2291,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1875
2291
|
"ts-rest": "ts-rest";
|
|
1876
2292
|
garph: "garph";
|
|
1877
2293
|
"graphql-yoga": "graphql-yoga";
|
|
2294
|
+
openapi: "openapi";
|
|
1878
2295
|
}>>;
|
|
1879
2296
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1880
2297
|
none: "none";
|
|
@@ -1882,6 +2299,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1882
2299
|
cloudflare: "cloudflare";
|
|
1883
2300
|
fly: "fly";
|
|
1884
2301
|
railway: "railway";
|
|
2302
|
+
render: "render";
|
|
2303
|
+
netlify: "netlify";
|
|
1885
2304
|
sst: "sst";
|
|
1886
2305
|
vercel: "vercel";
|
|
1887
2306
|
}>>;
|
|
@@ -1891,14 +2310,16 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1891
2310
|
cloudflare: "cloudflare";
|
|
1892
2311
|
fly: "fly";
|
|
1893
2312
|
railway: "railway";
|
|
2313
|
+
render: "render";
|
|
2314
|
+
netlify: "netlify";
|
|
1894
2315
|
sst: "sst";
|
|
1895
2316
|
vercel: "vercel";
|
|
1896
2317
|
}>>;
|
|
1897
2318
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1898
|
-
error: "error";
|
|
1899
2319
|
merge: "merge";
|
|
1900
2320
|
overwrite: "overwrite";
|
|
1901
2321
|
increment: "increment";
|
|
2322
|
+
error: "error";
|
|
1902
2323
|
}>>;
|
|
1903
2324
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1904
2325
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1925,8 +2346,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1925
2346
|
"ai-cli": "ai-cli";
|
|
1926
2347
|
}>>;
|
|
1927
2348
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1928
|
-
effect: "effect";
|
|
1929
2349
|
none: "none";
|
|
2350
|
+
effect: "effect";
|
|
1930
2351
|
"effect-full": "effect-full";
|
|
1931
2352
|
}>>;
|
|
1932
2353
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1977,7 +2398,6 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1977
2398
|
"postcss-only": "postcss-only";
|
|
1978
2399
|
}>>;
|
|
1979
2400
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1980
|
-
mui: "mui";
|
|
1981
2401
|
none: "none";
|
|
1982
2402
|
"shadcn-ui": "shadcn-ui";
|
|
1983
2403
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1988,6 +2408,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1988
2408
|
"chakra-ui": "chakra-ui";
|
|
1989
2409
|
nextui: "nextui";
|
|
1990
2410
|
mantine: "mantine";
|
|
2411
|
+
mui: "mui";
|
|
1991
2412
|
antd: "antd";
|
|
1992
2413
|
"base-ui": "base-ui";
|
|
1993
2414
|
"ark-ui": "ark-ui";
|
|
@@ -2116,6 +2537,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2116
2537
|
opentelemetry: "opentelemetry";
|
|
2117
2538
|
sentry: "sentry";
|
|
2118
2539
|
grafana: "grafana";
|
|
2540
|
+
datadog: "datadog";
|
|
2541
|
+
axiom: "axiom";
|
|
2542
|
+
betterstack: "betterstack";
|
|
2119
2543
|
}>>;
|
|
2120
2544
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2121
2545
|
none: "none";
|
|
@@ -2142,6 +2566,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2142
2566
|
none: "none";
|
|
2143
2567
|
"upstash-redis": "upstash-redis";
|
|
2144
2568
|
}>>;
|
|
2569
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2570
|
+
none: "none";
|
|
2571
|
+
arcjet: "arcjet";
|
|
2572
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2573
|
+
}>>;
|
|
2145
2574
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2146
2575
|
none: "none";
|
|
2147
2576
|
i18next: "i18next";
|
|
@@ -2167,9 +2596,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2167
2596
|
}>>;
|
|
2168
2597
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2169
2598
|
none: "none";
|
|
2599
|
+
uniwind: "uniwind";
|
|
2170
2600
|
tamagui: "tamagui";
|
|
2171
2601
|
"gluestack-ui": "gluestack-ui";
|
|
2172
|
-
uniwind: "uniwind";
|
|
2173
2602
|
unistyles: "unistyles";
|
|
2174
2603
|
}>>;
|
|
2175
2604
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2259,6 +2688,24 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2259
2688
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
2260
2689
|
none: "none";
|
|
2261
2690
|
oauth2: "oauth2";
|
|
2691
|
+
torii: "torii";
|
|
2692
|
+
}>>;
|
|
2693
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2694
|
+
none: "none";
|
|
2695
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
2696
|
+
}>>;
|
|
2697
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
2698
|
+
none: "none";
|
|
2699
|
+
lapin: "lapin";
|
|
2700
|
+
}>>;
|
|
2701
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
2702
|
+
none: "none";
|
|
2703
|
+
opentelemetry: "opentelemetry";
|
|
2704
|
+
}>>;
|
|
2705
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
2706
|
+
none: "none";
|
|
2707
|
+
askama: "askama";
|
|
2708
|
+
tera: "tera";
|
|
2262
2709
|
}>>;
|
|
2263
2710
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2264
2711
|
none: "none";
|
|
@@ -2266,12 +2713,14 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2266
2713
|
django: "django";
|
|
2267
2714
|
flask: "flask";
|
|
2268
2715
|
litestar: "litestar";
|
|
2716
|
+
starlette: "starlette";
|
|
2269
2717
|
}>>;
|
|
2270
2718
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
2271
2719
|
none: "none";
|
|
2272
2720
|
sqlalchemy: "sqlalchemy";
|
|
2273
2721
|
sqlmodel: "sqlmodel";
|
|
2274
2722
|
"tortoise-orm": "tortoise-orm";
|
|
2723
|
+
peewee: "peewee";
|
|
2275
2724
|
}>>;
|
|
2276
2725
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
2277
2726
|
none: "none";
|
|
@@ -2280,17 +2729,21 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2280
2729
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2281
2730
|
none: "none";
|
|
2282
2731
|
langgraph: "langgraph";
|
|
2732
|
+
"google-adk": "google-adk";
|
|
2283
2733
|
langchain: "langchain";
|
|
2284
2734
|
llamaindex: "llamaindex";
|
|
2285
2735
|
"openai-sdk": "openai-sdk";
|
|
2286
2736
|
"anthropic-sdk": "anthropic-sdk";
|
|
2287
2737
|
crewai: "crewai";
|
|
2288
2738
|
haystack: "haystack";
|
|
2739
|
+
"pydantic-ai": "pydantic-ai";
|
|
2740
|
+
smolagents: "smolagents";
|
|
2289
2741
|
}>>>;
|
|
2290
2742
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
2291
2743
|
none: "none";
|
|
2292
2744
|
authlib: "authlib";
|
|
2293
2745
|
jwt: "jwt";
|
|
2746
|
+
"fastapi-users": "fastapi-users";
|
|
2294
2747
|
}>>;
|
|
2295
2748
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
2296
2749
|
none: "none";
|
|
@@ -2303,6 +2756,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2303
2756
|
rq: "rq";
|
|
2304
2757
|
dramatiq: "dramatiq";
|
|
2305
2758
|
huey: "huey";
|
|
2759
|
+
taskiq: "taskiq";
|
|
2306
2760
|
}>>;
|
|
2307
2761
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
2308
2762
|
none: "none";
|
|
@@ -2315,22 +2769,48 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2315
2769
|
mypy: "mypy";
|
|
2316
2770
|
pyright: "pyright";
|
|
2317
2771
|
}>>;
|
|
2318
|
-
|
|
2772
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2319
2773
|
none: "none";
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2774
|
+
pytest: "pytest";
|
|
2775
|
+
hypothesis: "hypothesis";
|
|
2776
|
+
}>>>;
|
|
2777
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
2778
|
+
none: "none";
|
|
2779
|
+
redis: "redis";
|
|
2780
|
+
aiocache: "aiocache";
|
|
2781
|
+
}>>;
|
|
2782
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2783
|
+
none: "none";
|
|
2784
|
+
"python-socketio": "python-socketio";
|
|
2785
|
+
websockets: "websockets";
|
|
2786
|
+
}>>;
|
|
2787
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
2788
|
+
none: "none";
|
|
2789
|
+
opentelemetry: "opentelemetry";
|
|
2790
|
+
}>>;
|
|
2791
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2792
|
+
none: "none";
|
|
2793
|
+
typer: "typer";
|
|
2794
|
+
click: "click";
|
|
2795
|
+
rich: "rich";
|
|
2796
|
+
}>>>;
|
|
2797
|
+
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2798
|
+
none: "none";
|
|
2799
|
+
gin: "gin";
|
|
2800
|
+
echo: "echo";
|
|
2801
|
+
fiber: "fiber";
|
|
2323
2802
|
chi: "chi";
|
|
2324
2803
|
}>>;
|
|
2325
2804
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2326
|
-
gorm: "gorm";
|
|
2327
2805
|
none: "none";
|
|
2806
|
+
gorm: "gorm";
|
|
2328
2807
|
sqlc: "sqlc";
|
|
2329
2808
|
ent: "ent";
|
|
2330
2809
|
}>>;
|
|
2331
2810
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
2332
2811
|
none: "none";
|
|
2333
2812
|
"grpc-go": "grpc-go";
|
|
2813
|
+
gqlgen: "gqlgen";
|
|
2334
2814
|
}>>;
|
|
2335
2815
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
2336
2816
|
none: "none";
|
|
@@ -2349,6 +2829,36 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2349
2829
|
none: "none";
|
|
2350
2830
|
jwt: "jwt";
|
|
2351
2831
|
casbin: "casbin";
|
|
2832
|
+
goth: "goth";
|
|
2833
|
+
}>>;
|
|
2834
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2835
|
+
none: "none";
|
|
2836
|
+
testify: "testify";
|
|
2837
|
+
gomock: "gomock";
|
|
2838
|
+
}>>>;
|
|
2839
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2840
|
+
none: "none";
|
|
2841
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
2842
|
+
centrifuge: "centrifuge";
|
|
2843
|
+
}>>;
|
|
2844
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
2845
|
+
none: "none";
|
|
2846
|
+
nats: "nats";
|
|
2847
|
+
watermill: "watermill";
|
|
2848
|
+
}>>;
|
|
2849
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
2850
|
+
none: "none";
|
|
2851
|
+
redis: "redis";
|
|
2852
|
+
ristretto: "ristretto";
|
|
2853
|
+
}>>;
|
|
2854
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
2855
|
+
none: "none";
|
|
2856
|
+
viper: "viper";
|
|
2857
|
+
koanf: "koanf";
|
|
2858
|
+
}>>;
|
|
2859
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
2860
|
+
none: "none";
|
|
2861
|
+
opentelemetry: "opentelemetry";
|
|
2352
2862
|
}>>;
|
|
2353
2863
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2354
2864
|
none: "none";
|
|
@@ -2363,10 +2873,21 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2363
2873
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
2364
2874
|
none: "none";
|
|
2365
2875
|
"spring-data-jpa": "spring-data-jpa";
|
|
2876
|
+
jooq: "jooq";
|
|
2877
|
+
mybatis: "mybatis";
|
|
2366
2878
|
}>>;
|
|
2367
2879
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
2368
2880
|
none: "none";
|
|
2369
2881
|
"spring-security": "spring-security";
|
|
2882
|
+
keycloak: "keycloak";
|
|
2883
|
+
}>>;
|
|
2884
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
2885
|
+
none: "none";
|
|
2886
|
+
"spring-graphql": "spring-graphql";
|
|
2887
|
+
}>>;
|
|
2888
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
2889
|
+
none: "none";
|
|
2890
|
+
logback: "logback";
|
|
2370
2891
|
}>>;
|
|
2371
2892
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2372
2893
|
none: "none";
|
|
@@ -2386,6 +2907,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2386
2907
|
"spring-devtools": "spring-devtools";
|
|
2387
2908
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
2388
2909
|
thymeleaf: "thymeleaf";
|
|
2910
|
+
"spring-amqp": "spring-amqp";
|
|
2911
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
2389
2912
|
}>>>;
|
|
2390
2913
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2391
2914
|
none: "none";
|
|
@@ -2399,6 +2922,70 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2399
2922
|
archunit: "archunit";
|
|
2400
2923
|
jqwik: "jqwik";
|
|
2401
2924
|
}>>>;
|
|
2925
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2926
|
+
none: "none";
|
|
2927
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
2928
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
2929
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
2930
|
+
}>>;
|
|
2931
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
2932
|
+
none: "none";
|
|
2933
|
+
"ef-core": "ef-core";
|
|
2934
|
+
dapper: "dapper";
|
|
2935
|
+
linq2db: "linq2db";
|
|
2936
|
+
}>>;
|
|
2937
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
2938
|
+
none: "none";
|
|
2939
|
+
"aspnet-identity": "aspnet-identity";
|
|
2940
|
+
"duende-identityserver": "duende-identityserver";
|
|
2941
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
2942
|
+
}>>;
|
|
2943
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
2944
|
+
none: "none";
|
|
2945
|
+
"minimal-api": "minimal-api";
|
|
2946
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
2947
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
2948
|
+
}>>;
|
|
2949
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2950
|
+
none: "none";
|
|
2951
|
+
xunit: "xunit";
|
|
2952
|
+
nunit: "nunit";
|
|
2953
|
+
moq: "moq";
|
|
2954
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
2955
|
+
}>>>;
|
|
2956
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2957
|
+
none: "none";
|
|
2958
|
+
hangfire: "hangfire";
|
|
2959
|
+
"quartz-net": "quartz-net";
|
|
2960
|
+
"hosted-services": "hosted-services";
|
|
2961
|
+
}>>;
|
|
2962
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2963
|
+
none: "none";
|
|
2964
|
+
signalr: "signalr";
|
|
2965
|
+
}>>;
|
|
2966
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2967
|
+
none: "none";
|
|
2968
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
2969
|
+
serilog: "serilog";
|
|
2970
|
+
nlog: "nlog";
|
|
2971
|
+
"health-checks": "health-checks";
|
|
2972
|
+
}>>>;
|
|
2973
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
2974
|
+
none: "none";
|
|
2975
|
+
fluentvalidation: "fluentvalidation";
|
|
2976
|
+
"data-annotations": "data-annotations";
|
|
2977
|
+
}>>;
|
|
2978
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
2979
|
+
none: "none";
|
|
2980
|
+
redis: "redis";
|
|
2981
|
+
"memory-cache": "memory-cache";
|
|
2982
|
+
}>>;
|
|
2983
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2984
|
+
none: "none";
|
|
2985
|
+
docker: "docker";
|
|
2986
|
+
azure: "azure";
|
|
2987
|
+
aws: "aws";
|
|
2988
|
+
}>>;
|
|
2402
2989
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2403
2990
|
none: "none";
|
|
2404
2991
|
phoenix: "phoenix";
|
|
@@ -2419,6 +3006,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2419
3006
|
none: "none";
|
|
2420
3007
|
rest: "rest";
|
|
2421
3008
|
absinthe: "absinthe";
|
|
3009
|
+
grpc: "grpc";
|
|
2422
3010
|
}>>;
|
|
2423
3011
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2424
3012
|
none: "none";
|
|
@@ -2481,6 +3069,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2481
3069
|
gigalixir: "gigalixir";
|
|
2482
3070
|
"mix-release": "mix-release";
|
|
2483
3071
|
}>>;
|
|
3072
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3073
|
+
none: "none";
|
|
3074
|
+
nx: "nx";
|
|
3075
|
+
broadway: "broadway";
|
|
3076
|
+
}>>>;
|
|
2484
3077
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2485
3078
|
none: "none";
|
|
2486
3079
|
"claude-md": "claude-md";
|
|
@@ -2502,6 +3095,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2502
3095
|
go: "go";
|
|
2503
3096
|
java: "java";
|
|
2504
3097
|
elixir: "elixir";
|
|
3098
|
+
dotnet: "dotnet";
|
|
2505
3099
|
}>;
|
|
2506
3100
|
database: z.ZodEnum<{
|
|
2507
3101
|
none: "none";
|
|
@@ -2575,6 +3169,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2575
3169
|
mcp: "mcp";
|
|
2576
3170
|
skills: "skills";
|
|
2577
3171
|
turborepo: "turborepo";
|
|
3172
|
+
nx: "nx";
|
|
2578
3173
|
fumadocs: "fumadocs";
|
|
2579
3174
|
ultracite: "ultracite";
|
|
2580
3175
|
oxlint: "oxlint";
|
|
@@ -2588,23 +3183,27 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2588
3183
|
"tanstack-virtual": "tanstack-virtual";
|
|
2589
3184
|
"tanstack-db": "tanstack-db";
|
|
2590
3185
|
"tanstack-pacer": "tanstack-pacer";
|
|
3186
|
+
"backend-utils": "backend-utils";
|
|
2591
3187
|
"docker-compose": "docker-compose";
|
|
2592
3188
|
}>>;
|
|
2593
3189
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2594
|
-
ai: "ai";
|
|
2595
3190
|
none: "none";
|
|
3191
|
+
ai: "ai";
|
|
2596
3192
|
"chat-sdk": "chat-sdk";
|
|
2597
3193
|
"tanstack-showcase": "tanstack-showcase";
|
|
2598
3194
|
}>>;
|
|
2599
3195
|
auth: z.ZodEnum<{
|
|
2600
3196
|
none: "none";
|
|
2601
3197
|
"better-auth": "better-auth";
|
|
3198
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
2602
3199
|
"go-better-auth": "go-better-auth";
|
|
2603
3200
|
clerk: "clerk";
|
|
2604
3201
|
nextauth: "nextauth";
|
|
2605
3202
|
"stack-auth": "stack-auth";
|
|
2606
3203
|
"supabase-auth": "supabase-auth";
|
|
2607
3204
|
auth0: "auth0";
|
|
3205
|
+
workos: "workos";
|
|
3206
|
+
kinde: "kinde";
|
|
2608
3207
|
}>;
|
|
2609
3208
|
payments: z.ZodEnum<{
|
|
2610
3209
|
none: "none";
|
|
@@ -2646,6 +3245,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2646
3245
|
"ts-rest": "ts-rest";
|
|
2647
3246
|
garph: "garph";
|
|
2648
3247
|
"graphql-yoga": "graphql-yoga";
|
|
3248
|
+
openapi: "openapi";
|
|
2649
3249
|
}>;
|
|
2650
3250
|
webDeploy: z.ZodEnum<{
|
|
2651
3251
|
none: "none";
|
|
@@ -2653,6 +3253,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2653
3253
|
cloudflare: "cloudflare";
|
|
2654
3254
|
fly: "fly";
|
|
2655
3255
|
railway: "railway";
|
|
3256
|
+
render: "render";
|
|
3257
|
+
netlify: "netlify";
|
|
2656
3258
|
sst: "sst";
|
|
2657
3259
|
vercel: "vercel";
|
|
2658
3260
|
}>;
|
|
@@ -2662,6 +3264,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2662
3264
|
cloudflare: "cloudflare";
|
|
2663
3265
|
fly: "fly";
|
|
2664
3266
|
railway: "railway";
|
|
3267
|
+
render: "render";
|
|
3268
|
+
netlify: "netlify";
|
|
2665
3269
|
sst: "sst";
|
|
2666
3270
|
vercel: "vercel";
|
|
2667
3271
|
}>;
|
|
@@ -2687,8 +3291,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2687
3291
|
"ai-cli": "ai-cli";
|
|
2688
3292
|
}>;
|
|
2689
3293
|
effect: z.ZodEnum<{
|
|
2690
|
-
effect: "effect";
|
|
2691
3294
|
none: "none";
|
|
3295
|
+
effect: "effect";
|
|
2692
3296
|
"effect-full": "effect-full";
|
|
2693
3297
|
}>;
|
|
2694
3298
|
stateManagement: z.ZodEnum<{
|
|
@@ -2739,7 +3343,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2739
3343
|
"postcss-only": "postcss-only";
|
|
2740
3344
|
}>;
|
|
2741
3345
|
uiLibrary: z.ZodEnum<{
|
|
2742
|
-
mui: "mui";
|
|
2743
3346
|
none: "none";
|
|
2744
3347
|
"shadcn-ui": "shadcn-ui";
|
|
2745
3348
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2750,6 +3353,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2750
3353
|
"chakra-ui": "chakra-ui";
|
|
2751
3354
|
nextui: "nextui";
|
|
2752
3355
|
mantine: "mantine";
|
|
3356
|
+
mui: "mui";
|
|
2753
3357
|
antd: "antd";
|
|
2754
3358
|
"base-ui": "base-ui";
|
|
2755
3359
|
"ark-ui": "ark-ui";
|
|
@@ -2878,6 +3482,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2878
3482
|
opentelemetry: "opentelemetry";
|
|
2879
3483
|
sentry: "sentry";
|
|
2880
3484
|
grafana: "grafana";
|
|
3485
|
+
datadog: "datadog";
|
|
3486
|
+
axiom: "axiom";
|
|
3487
|
+
betterstack: "betterstack";
|
|
2881
3488
|
}>;
|
|
2882
3489
|
featureFlags: z.ZodEnum<{
|
|
2883
3490
|
none: "none";
|
|
@@ -2904,6 +3511,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2904
3511
|
none: "none";
|
|
2905
3512
|
"upstash-redis": "upstash-redis";
|
|
2906
3513
|
}>;
|
|
3514
|
+
rateLimit: z.ZodEnum<{
|
|
3515
|
+
none: "none";
|
|
3516
|
+
arcjet: "arcjet";
|
|
3517
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
3518
|
+
}>;
|
|
2907
3519
|
i18n: z.ZodEnum<{
|
|
2908
3520
|
none: "none";
|
|
2909
3521
|
i18next: "i18next";
|
|
@@ -2929,9 +3541,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2929
3541
|
}>;
|
|
2930
3542
|
mobileUI: z.ZodEnum<{
|
|
2931
3543
|
none: "none";
|
|
3544
|
+
uniwind: "uniwind";
|
|
2932
3545
|
tamagui: "tamagui";
|
|
2933
3546
|
"gluestack-ui": "gluestack-ui";
|
|
2934
|
-
uniwind: "uniwind";
|
|
2935
3547
|
unistyles: "unistyles";
|
|
2936
3548
|
}>;
|
|
2937
3549
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3021,6 +3633,24 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3021
3633
|
rustAuth: z.ZodEnum<{
|
|
3022
3634
|
none: "none";
|
|
3023
3635
|
oauth2: "oauth2";
|
|
3636
|
+
torii: "torii";
|
|
3637
|
+
}>;
|
|
3638
|
+
rustRealtime: z.ZodEnum<{
|
|
3639
|
+
none: "none";
|
|
3640
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
3641
|
+
}>;
|
|
3642
|
+
rustMessageQueue: z.ZodEnum<{
|
|
3643
|
+
none: "none";
|
|
3644
|
+
lapin: "lapin";
|
|
3645
|
+
}>;
|
|
3646
|
+
rustObservability: z.ZodEnum<{
|
|
3647
|
+
none: "none";
|
|
3648
|
+
opentelemetry: "opentelemetry";
|
|
3649
|
+
}>;
|
|
3650
|
+
rustTemplating: z.ZodEnum<{
|
|
3651
|
+
none: "none";
|
|
3652
|
+
askama: "askama";
|
|
3653
|
+
tera: "tera";
|
|
3024
3654
|
}>;
|
|
3025
3655
|
pythonWebFramework: z.ZodEnum<{
|
|
3026
3656
|
none: "none";
|
|
@@ -3028,12 +3658,14 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3028
3658
|
django: "django";
|
|
3029
3659
|
flask: "flask";
|
|
3030
3660
|
litestar: "litestar";
|
|
3661
|
+
starlette: "starlette";
|
|
3031
3662
|
}>;
|
|
3032
3663
|
pythonOrm: z.ZodEnum<{
|
|
3033
3664
|
none: "none";
|
|
3034
3665
|
sqlalchemy: "sqlalchemy";
|
|
3035
3666
|
sqlmodel: "sqlmodel";
|
|
3036
3667
|
"tortoise-orm": "tortoise-orm";
|
|
3668
|
+
peewee: "peewee";
|
|
3037
3669
|
}>;
|
|
3038
3670
|
pythonValidation: z.ZodEnum<{
|
|
3039
3671
|
none: "none";
|
|
@@ -3042,17 +3674,21 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3042
3674
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3043
3675
|
none: "none";
|
|
3044
3676
|
langgraph: "langgraph";
|
|
3677
|
+
"google-adk": "google-adk";
|
|
3045
3678
|
langchain: "langchain";
|
|
3046
3679
|
llamaindex: "llamaindex";
|
|
3047
3680
|
"openai-sdk": "openai-sdk";
|
|
3048
3681
|
"anthropic-sdk": "anthropic-sdk";
|
|
3049
3682
|
crewai: "crewai";
|
|
3050
3683
|
haystack: "haystack";
|
|
3684
|
+
"pydantic-ai": "pydantic-ai";
|
|
3685
|
+
smolagents: "smolagents";
|
|
3051
3686
|
}>>;
|
|
3052
3687
|
pythonAuth: z.ZodEnum<{
|
|
3053
3688
|
none: "none";
|
|
3054
3689
|
authlib: "authlib";
|
|
3055
3690
|
jwt: "jwt";
|
|
3691
|
+
"fastapi-users": "fastapi-users";
|
|
3056
3692
|
}>;
|
|
3057
3693
|
pythonApi: z.ZodEnum<{
|
|
3058
3694
|
none: "none";
|
|
@@ -3065,6 +3701,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3065
3701
|
rq: "rq";
|
|
3066
3702
|
dramatiq: "dramatiq";
|
|
3067
3703
|
huey: "huey";
|
|
3704
|
+
taskiq: "taskiq";
|
|
3068
3705
|
}>;
|
|
3069
3706
|
pythonGraphql: z.ZodEnum<{
|
|
3070
3707
|
none: "none";
|
|
@@ -3077,6 +3714,31 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3077
3714
|
mypy: "mypy";
|
|
3078
3715
|
pyright: "pyright";
|
|
3079
3716
|
}>;
|
|
3717
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
3718
|
+
none: "none";
|
|
3719
|
+
pytest: "pytest";
|
|
3720
|
+
hypothesis: "hypothesis";
|
|
3721
|
+
}>>;
|
|
3722
|
+
pythonCaching: z.ZodEnum<{
|
|
3723
|
+
none: "none";
|
|
3724
|
+
redis: "redis";
|
|
3725
|
+
aiocache: "aiocache";
|
|
3726
|
+
}>;
|
|
3727
|
+
pythonRealtime: z.ZodEnum<{
|
|
3728
|
+
none: "none";
|
|
3729
|
+
"python-socketio": "python-socketio";
|
|
3730
|
+
websockets: "websockets";
|
|
3731
|
+
}>;
|
|
3732
|
+
pythonObservability: z.ZodEnum<{
|
|
3733
|
+
none: "none";
|
|
3734
|
+
opentelemetry: "opentelemetry";
|
|
3735
|
+
}>;
|
|
3736
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
3737
|
+
none: "none";
|
|
3738
|
+
typer: "typer";
|
|
3739
|
+
click: "click";
|
|
3740
|
+
rich: "rich";
|
|
3741
|
+
}>>;
|
|
3080
3742
|
goWebFramework: z.ZodEnum<{
|
|
3081
3743
|
none: "none";
|
|
3082
3744
|
gin: "gin";
|
|
@@ -3085,14 +3747,15 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3085
3747
|
chi: "chi";
|
|
3086
3748
|
}>;
|
|
3087
3749
|
goOrm: z.ZodEnum<{
|
|
3088
|
-
gorm: "gorm";
|
|
3089
3750
|
none: "none";
|
|
3751
|
+
gorm: "gorm";
|
|
3090
3752
|
sqlc: "sqlc";
|
|
3091
3753
|
ent: "ent";
|
|
3092
3754
|
}>;
|
|
3093
3755
|
goApi: z.ZodEnum<{
|
|
3094
3756
|
none: "none";
|
|
3095
3757
|
"grpc-go": "grpc-go";
|
|
3758
|
+
gqlgen: "gqlgen";
|
|
3096
3759
|
}>;
|
|
3097
3760
|
goCli: z.ZodEnum<{
|
|
3098
3761
|
none: "none";
|
|
@@ -3111,6 +3774,36 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3111
3774
|
none: "none";
|
|
3112
3775
|
jwt: "jwt";
|
|
3113
3776
|
casbin: "casbin";
|
|
3777
|
+
goth: "goth";
|
|
3778
|
+
}>;
|
|
3779
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
3780
|
+
none: "none";
|
|
3781
|
+
testify: "testify";
|
|
3782
|
+
gomock: "gomock";
|
|
3783
|
+
}>>;
|
|
3784
|
+
goRealtime: z.ZodEnum<{
|
|
3785
|
+
none: "none";
|
|
3786
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
3787
|
+
centrifuge: "centrifuge";
|
|
3788
|
+
}>;
|
|
3789
|
+
goMessageQueue: z.ZodEnum<{
|
|
3790
|
+
none: "none";
|
|
3791
|
+
nats: "nats";
|
|
3792
|
+
watermill: "watermill";
|
|
3793
|
+
}>;
|
|
3794
|
+
goCaching: z.ZodEnum<{
|
|
3795
|
+
none: "none";
|
|
3796
|
+
redis: "redis";
|
|
3797
|
+
ristretto: "ristretto";
|
|
3798
|
+
}>;
|
|
3799
|
+
goConfig: z.ZodEnum<{
|
|
3800
|
+
none: "none";
|
|
3801
|
+
viper: "viper";
|
|
3802
|
+
koanf: "koanf";
|
|
3803
|
+
}>;
|
|
3804
|
+
goObservability: z.ZodEnum<{
|
|
3805
|
+
none: "none";
|
|
3806
|
+
opentelemetry: "opentelemetry";
|
|
3114
3807
|
}>;
|
|
3115
3808
|
javaWebFramework: z.ZodEnum<{
|
|
3116
3809
|
none: "none";
|
|
@@ -3125,10 +3818,21 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3125
3818
|
javaOrm: z.ZodEnum<{
|
|
3126
3819
|
none: "none";
|
|
3127
3820
|
"spring-data-jpa": "spring-data-jpa";
|
|
3821
|
+
jooq: "jooq";
|
|
3822
|
+
mybatis: "mybatis";
|
|
3128
3823
|
}>;
|
|
3129
3824
|
javaAuth: z.ZodEnum<{
|
|
3130
3825
|
none: "none";
|
|
3131
3826
|
"spring-security": "spring-security";
|
|
3827
|
+
keycloak: "keycloak";
|
|
3828
|
+
}>;
|
|
3829
|
+
javaApi: z.ZodEnum<{
|
|
3830
|
+
none: "none";
|
|
3831
|
+
"spring-graphql": "spring-graphql";
|
|
3832
|
+
}>;
|
|
3833
|
+
javaLogging: z.ZodEnum<{
|
|
3834
|
+
none: "none";
|
|
3835
|
+
logback: "logback";
|
|
3132
3836
|
}>;
|
|
3133
3837
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3134
3838
|
none: "none";
|
|
@@ -3148,6 +3852,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3148
3852
|
"spring-devtools": "spring-devtools";
|
|
3149
3853
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
3150
3854
|
thymeleaf: "thymeleaf";
|
|
3855
|
+
"spring-amqp": "spring-amqp";
|
|
3856
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
3151
3857
|
}>>;
|
|
3152
3858
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3153
3859
|
none: "none";
|
|
@@ -3161,6 +3867,70 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3161
3867
|
archunit: "archunit";
|
|
3162
3868
|
jqwik: "jqwik";
|
|
3163
3869
|
}>>;
|
|
3870
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
3871
|
+
none: "none";
|
|
3872
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
3873
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
3874
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
3875
|
+
}>;
|
|
3876
|
+
dotnetOrm: z.ZodEnum<{
|
|
3877
|
+
none: "none";
|
|
3878
|
+
"ef-core": "ef-core";
|
|
3879
|
+
dapper: "dapper";
|
|
3880
|
+
linq2db: "linq2db";
|
|
3881
|
+
}>;
|
|
3882
|
+
dotnetAuth: z.ZodEnum<{
|
|
3883
|
+
none: "none";
|
|
3884
|
+
"aspnet-identity": "aspnet-identity";
|
|
3885
|
+
"duende-identityserver": "duende-identityserver";
|
|
3886
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
3887
|
+
}>;
|
|
3888
|
+
dotnetApi: z.ZodEnum<{
|
|
3889
|
+
none: "none";
|
|
3890
|
+
"minimal-api": "minimal-api";
|
|
3891
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
3892
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
3893
|
+
}>;
|
|
3894
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
3895
|
+
none: "none";
|
|
3896
|
+
xunit: "xunit";
|
|
3897
|
+
nunit: "nunit";
|
|
3898
|
+
moq: "moq";
|
|
3899
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
3900
|
+
}>>;
|
|
3901
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
3902
|
+
none: "none";
|
|
3903
|
+
hangfire: "hangfire";
|
|
3904
|
+
"quartz-net": "quartz-net";
|
|
3905
|
+
"hosted-services": "hosted-services";
|
|
3906
|
+
}>;
|
|
3907
|
+
dotnetRealtime: z.ZodEnum<{
|
|
3908
|
+
none: "none";
|
|
3909
|
+
signalr: "signalr";
|
|
3910
|
+
}>;
|
|
3911
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
3912
|
+
none: "none";
|
|
3913
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
3914
|
+
serilog: "serilog";
|
|
3915
|
+
nlog: "nlog";
|
|
3916
|
+
"health-checks": "health-checks";
|
|
3917
|
+
}>>;
|
|
3918
|
+
dotnetValidation: z.ZodEnum<{
|
|
3919
|
+
none: "none";
|
|
3920
|
+
fluentvalidation: "fluentvalidation";
|
|
3921
|
+
"data-annotations": "data-annotations";
|
|
3922
|
+
}>;
|
|
3923
|
+
dotnetCaching: z.ZodEnum<{
|
|
3924
|
+
none: "none";
|
|
3925
|
+
redis: "redis";
|
|
3926
|
+
"memory-cache": "memory-cache";
|
|
3927
|
+
}>;
|
|
3928
|
+
dotnetDeploy: z.ZodEnum<{
|
|
3929
|
+
none: "none";
|
|
3930
|
+
docker: "docker";
|
|
3931
|
+
azure: "azure";
|
|
3932
|
+
aws: "aws";
|
|
3933
|
+
}>;
|
|
3164
3934
|
elixirWebFramework: z.ZodEnum<{
|
|
3165
3935
|
none: "none";
|
|
3166
3936
|
phoenix: "phoenix";
|
|
@@ -3181,6 +3951,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3181
3951
|
none: "none";
|
|
3182
3952
|
rest: "rest";
|
|
3183
3953
|
absinthe: "absinthe";
|
|
3954
|
+
grpc: "grpc";
|
|
3184
3955
|
}>;
|
|
3185
3956
|
elixirRealtime: z.ZodEnum<{
|
|
3186
3957
|
none: "none";
|
|
@@ -3243,6 +4014,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3243
4014
|
gigalixir: "gigalixir";
|
|
3244
4015
|
"mix-release": "mix-release";
|
|
3245
4016
|
}>;
|
|
4017
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
4018
|
+
none: "none";
|
|
4019
|
+
nx: "nx";
|
|
4020
|
+
broadway: "broadway";
|
|
4021
|
+
}>>;
|
|
3246
4022
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3247
4023
|
none: "none";
|
|
3248
4024
|
"claude-md": "claude-md";
|
|
@@ -3252,37 +4028,55 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3252
4028
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
4029
|
id: z.ZodString;
|
|
3254
4030
|
role: z.ZodEnum<{
|
|
3255
|
-
|
|
3256
|
-
backend: "backend";
|
|
4031
|
+
ai: "ai";
|
|
3257
4032
|
database: "database";
|
|
3258
4033
|
orm: "orm";
|
|
3259
4034
|
auth: "auth";
|
|
3260
4035
|
payments: "payments";
|
|
4036
|
+
frontend: "frontend";
|
|
4037
|
+
examples: "examples";
|
|
4038
|
+
dbSetup: "dbSetup";
|
|
4039
|
+
backend: "backend";
|
|
4040
|
+
runtime: "runtime";
|
|
4041
|
+
api: "api";
|
|
4042
|
+
effect: "effect";
|
|
4043
|
+
stateManagement: "stateManagement";
|
|
4044
|
+
forms: "forms";
|
|
4045
|
+
testing: "testing";
|
|
3261
4046
|
email: "email";
|
|
4047
|
+
validation: "validation";
|
|
4048
|
+
realtime: "realtime";
|
|
4049
|
+
jobQueue: "jobQueue";
|
|
4050
|
+
animation: "animation";
|
|
4051
|
+
fileUpload: "fileUpload";
|
|
3262
4052
|
logging: "logging";
|
|
3263
4053
|
observability: "observability";
|
|
3264
4054
|
featureFlags: "featureFlags";
|
|
3265
4055
|
analytics: "analytics";
|
|
3266
|
-
stateManagement: "stateManagement";
|
|
3267
|
-
forms: "forms";
|
|
3268
|
-
validation: "validation";
|
|
3269
|
-
testing: "testing";
|
|
3270
|
-
jobQueue: "jobQueue";
|
|
3271
|
-
caching: "caching";
|
|
3272
4056
|
cms: "cms";
|
|
4057
|
+
caching: "caching";
|
|
4058
|
+
rateLimit: "rateLimit";
|
|
3273
4059
|
i18n: "i18n";
|
|
3274
4060
|
search: "search";
|
|
3275
4061
|
fileStorage: "fileStorage";
|
|
3276
|
-
|
|
3277
|
-
documentation: "documentation";
|
|
3278
|
-
api: "api";
|
|
3279
|
-
ai: "ai";
|
|
3280
|
-
css: "css";
|
|
3281
|
-
ui: "ui";
|
|
3282
|
-
frontend: "frontend";
|
|
4062
|
+
config: "config";
|
|
3283
4063
|
mobile: "mobile";
|
|
3284
4064
|
deploy: "deploy";
|
|
4065
|
+
navigation: "navigation";
|
|
4066
|
+
ui: "ui";
|
|
4067
|
+
css: "css";
|
|
4068
|
+
storage: "storage";
|
|
4069
|
+
documentation: "documentation";
|
|
4070
|
+
codeQuality: "codeQuality";
|
|
3285
4071
|
appPlatform: "appPlatform";
|
|
4072
|
+
dataFetching: "dataFetching";
|
|
4073
|
+
workspaceTooling: "workspaceTooling";
|
|
4074
|
+
buildTool: "buildTool";
|
|
4075
|
+
cli: "cli";
|
|
4076
|
+
errorHandling: "errorHandling";
|
|
4077
|
+
httpClient: "httpClient";
|
|
4078
|
+
libraries: "libraries";
|
|
4079
|
+
templating: "templating";
|
|
3286
4080
|
}>;
|
|
3287
4081
|
toolId: z.ZodString;
|
|
3288
4082
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -3293,6 +4087,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3293
4087
|
go: "go";
|
|
3294
4088
|
java: "java";
|
|
3295
4089
|
elixir: "elixir";
|
|
4090
|
+
dotnet: "dotnet";
|
|
3296
4091
|
}>, z.ZodLiteral<"universal">]>;
|
|
3297
4092
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3298
4093
|
source: z.ZodEnum<{
|
|
@@ -3320,6 +4115,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3320
4115
|
go: "go";
|
|
3321
4116
|
java: "java";
|
|
3322
4117
|
elixir: "elixir";
|
|
4118
|
+
dotnet: "dotnet";
|
|
3323
4119
|
}>;
|
|
3324
4120
|
database: z.ZodEnum<{
|
|
3325
4121
|
none: "none";
|
|
@@ -3393,6 +4189,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3393
4189
|
mcp: "mcp";
|
|
3394
4190
|
skills: "skills";
|
|
3395
4191
|
turborepo: "turborepo";
|
|
4192
|
+
nx: "nx";
|
|
3396
4193
|
fumadocs: "fumadocs";
|
|
3397
4194
|
ultracite: "ultracite";
|
|
3398
4195
|
oxlint: "oxlint";
|
|
@@ -3406,23 +4203,27 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3406
4203
|
"tanstack-virtual": "tanstack-virtual";
|
|
3407
4204
|
"tanstack-db": "tanstack-db";
|
|
3408
4205
|
"tanstack-pacer": "tanstack-pacer";
|
|
4206
|
+
"backend-utils": "backend-utils";
|
|
3409
4207
|
"docker-compose": "docker-compose";
|
|
3410
4208
|
}>>;
|
|
3411
4209
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3412
|
-
ai: "ai";
|
|
3413
4210
|
none: "none";
|
|
4211
|
+
ai: "ai";
|
|
3414
4212
|
"chat-sdk": "chat-sdk";
|
|
3415
4213
|
"tanstack-showcase": "tanstack-showcase";
|
|
3416
4214
|
}>>;
|
|
3417
4215
|
auth: z.ZodEnum<{
|
|
3418
4216
|
none: "none";
|
|
3419
4217
|
"better-auth": "better-auth";
|
|
4218
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
3420
4219
|
"go-better-auth": "go-better-auth";
|
|
3421
4220
|
clerk: "clerk";
|
|
3422
4221
|
nextauth: "nextauth";
|
|
3423
4222
|
"stack-auth": "stack-auth";
|
|
3424
4223
|
"supabase-auth": "supabase-auth";
|
|
3425
4224
|
auth0: "auth0";
|
|
4225
|
+
workos: "workos";
|
|
4226
|
+
kinde: "kinde";
|
|
3426
4227
|
}>;
|
|
3427
4228
|
payments: z.ZodEnum<{
|
|
3428
4229
|
none: "none";
|
|
@@ -3462,6 +4263,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3462
4263
|
"ts-rest": "ts-rest";
|
|
3463
4264
|
garph: "garph";
|
|
3464
4265
|
"graphql-yoga": "graphql-yoga";
|
|
4266
|
+
openapi: "openapi";
|
|
3465
4267
|
}>;
|
|
3466
4268
|
webDeploy: z.ZodEnum<{
|
|
3467
4269
|
none: "none";
|
|
@@ -3469,6 +4271,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3469
4271
|
cloudflare: "cloudflare";
|
|
3470
4272
|
fly: "fly";
|
|
3471
4273
|
railway: "railway";
|
|
4274
|
+
render: "render";
|
|
4275
|
+
netlify: "netlify";
|
|
3472
4276
|
sst: "sst";
|
|
3473
4277
|
vercel: "vercel";
|
|
3474
4278
|
}>;
|
|
@@ -3478,6 +4282,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3478
4282
|
cloudflare: "cloudflare";
|
|
3479
4283
|
fly: "fly";
|
|
3480
4284
|
railway: "railway";
|
|
4285
|
+
render: "render";
|
|
4286
|
+
netlify: "netlify";
|
|
3481
4287
|
sst: "sst";
|
|
3482
4288
|
vercel: "vercel";
|
|
3483
4289
|
}>;
|
|
@@ -3503,8 +4309,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3503
4309
|
"ai-cli": "ai-cli";
|
|
3504
4310
|
}>;
|
|
3505
4311
|
effect: z.ZodEnum<{
|
|
3506
|
-
effect: "effect";
|
|
3507
4312
|
none: "none";
|
|
4313
|
+
effect: "effect";
|
|
3508
4314
|
"effect-full": "effect-full";
|
|
3509
4315
|
}>;
|
|
3510
4316
|
stateManagement: z.ZodEnum<{
|
|
@@ -3555,7 +4361,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3555
4361
|
"postcss-only": "postcss-only";
|
|
3556
4362
|
}>;
|
|
3557
4363
|
uiLibrary: z.ZodEnum<{
|
|
3558
|
-
mui: "mui";
|
|
3559
4364
|
none: "none";
|
|
3560
4365
|
"shadcn-ui": "shadcn-ui";
|
|
3561
4366
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3566,6 +4371,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3566
4371
|
"chakra-ui": "chakra-ui";
|
|
3567
4372
|
nextui: "nextui";
|
|
3568
4373
|
mantine: "mantine";
|
|
4374
|
+
mui: "mui";
|
|
3569
4375
|
antd: "antd";
|
|
3570
4376
|
"base-ui": "base-ui";
|
|
3571
4377
|
"ark-ui": "ark-ui";
|
|
@@ -3694,6 +4500,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3694
4500
|
opentelemetry: "opentelemetry";
|
|
3695
4501
|
sentry: "sentry";
|
|
3696
4502
|
grafana: "grafana";
|
|
4503
|
+
datadog: "datadog";
|
|
4504
|
+
axiom: "axiom";
|
|
4505
|
+
betterstack: "betterstack";
|
|
3697
4506
|
}>;
|
|
3698
4507
|
featureFlags: z.ZodEnum<{
|
|
3699
4508
|
none: "none";
|
|
@@ -3720,6 +4529,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3720
4529
|
none: "none";
|
|
3721
4530
|
"upstash-redis": "upstash-redis";
|
|
3722
4531
|
}>;
|
|
4532
|
+
rateLimit: z.ZodEnum<{
|
|
4533
|
+
none: "none";
|
|
4534
|
+
arcjet: "arcjet";
|
|
4535
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
4536
|
+
}>;
|
|
3723
4537
|
i18n: z.ZodEnum<{
|
|
3724
4538
|
none: "none";
|
|
3725
4539
|
i18next: "i18next";
|
|
@@ -3745,9 +4559,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3745
4559
|
}>;
|
|
3746
4560
|
mobileUI: z.ZodEnum<{
|
|
3747
4561
|
none: "none";
|
|
4562
|
+
uniwind: "uniwind";
|
|
3748
4563
|
tamagui: "tamagui";
|
|
3749
4564
|
"gluestack-ui": "gluestack-ui";
|
|
3750
|
-
uniwind: "uniwind";
|
|
3751
4565
|
unistyles: "unistyles";
|
|
3752
4566
|
}>;
|
|
3753
4567
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3837,6 +4651,24 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3837
4651
|
rustAuth: z.ZodEnum<{
|
|
3838
4652
|
none: "none";
|
|
3839
4653
|
oauth2: "oauth2";
|
|
4654
|
+
torii: "torii";
|
|
4655
|
+
}>;
|
|
4656
|
+
rustRealtime: z.ZodEnum<{
|
|
4657
|
+
none: "none";
|
|
4658
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
4659
|
+
}>;
|
|
4660
|
+
rustMessageQueue: z.ZodEnum<{
|
|
4661
|
+
none: "none";
|
|
4662
|
+
lapin: "lapin";
|
|
4663
|
+
}>;
|
|
4664
|
+
rustObservability: z.ZodEnum<{
|
|
4665
|
+
none: "none";
|
|
4666
|
+
opentelemetry: "opentelemetry";
|
|
4667
|
+
}>;
|
|
4668
|
+
rustTemplating: z.ZodEnum<{
|
|
4669
|
+
none: "none";
|
|
4670
|
+
askama: "askama";
|
|
4671
|
+
tera: "tera";
|
|
3840
4672
|
}>;
|
|
3841
4673
|
pythonWebFramework: z.ZodEnum<{
|
|
3842
4674
|
none: "none";
|
|
@@ -3844,12 +4676,14 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3844
4676
|
django: "django";
|
|
3845
4677
|
flask: "flask";
|
|
3846
4678
|
litestar: "litestar";
|
|
4679
|
+
starlette: "starlette";
|
|
3847
4680
|
}>;
|
|
3848
4681
|
pythonOrm: z.ZodEnum<{
|
|
3849
4682
|
none: "none";
|
|
3850
4683
|
sqlalchemy: "sqlalchemy";
|
|
3851
4684
|
sqlmodel: "sqlmodel";
|
|
3852
4685
|
"tortoise-orm": "tortoise-orm";
|
|
4686
|
+
peewee: "peewee";
|
|
3853
4687
|
}>;
|
|
3854
4688
|
pythonValidation: z.ZodEnum<{
|
|
3855
4689
|
none: "none";
|
|
@@ -3858,17 +4692,21 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3858
4692
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3859
4693
|
none: "none";
|
|
3860
4694
|
langgraph: "langgraph";
|
|
4695
|
+
"google-adk": "google-adk";
|
|
3861
4696
|
langchain: "langchain";
|
|
3862
4697
|
llamaindex: "llamaindex";
|
|
3863
4698
|
"openai-sdk": "openai-sdk";
|
|
3864
4699
|
"anthropic-sdk": "anthropic-sdk";
|
|
3865
4700
|
crewai: "crewai";
|
|
3866
4701
|
haystack: "haystack";
|
|
4702
|
+
"pydantic-ai": "pydantic-ai";
|
|
4703
|
+
smolagents: "smolagents";
|
|
3867
4704
|
}>>;
|
|
3868
4705
|
pythonAuth: z.ZodEnum<{
|
|
3869
4706
|
none: "none";
|
|
3870
4707
|
authlib: "authlib";
|
|
3871
4708
|
jwt: "jwt";
|
|
4709
|
+
"fastapi-users": "fastapi-users";
|
|
3872
4710
|
}>;
|
|
3873
4711
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
3874
4712
|
none: "none";
|
|
@@ -3881,6 +4719,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3881
4719
|
rq: "rq";
|
|
3882
4720
|
dramatiq: "dramatiq";
|
|
3883
4721
|
huey: "huey";
|
|
4722
|
+
taskiq: "taskiq";
|
|
3884
4723
|
}>;
|
|
3885
4724
|
pythonGraphql: z.ZodEnum<{
|
|
3886
4725
|
none: "none";
|
|
@@ -3893,6 +4732,31 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3893
4732
|
mypy: "mypy";
|
|
3894
4733
|
pyright: "pyright";
|
|
3895
4734
|
}>;
|
|
4735
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
4736
|
+
none: "none";
|
|
4737
|
+
pytest: "pytest";
|
|
4738
|
+
hypothesis: "hypothesis";
|
|
4739
|
+
}>>;
|
|
4740
|
+
pythonCaching: z.ZodEnum<{
|
|
4741
|
+
none: "none";
|
|
4742
|
+
redis: "redis";
|
|
4743
|
+
aiocache: "aiocache";
|
|
4744
|
+
}>;
|
|
4745
|
+
pythonRealtime: z.ZodEnum<{
|
|
4746
|
+
none: "none";
|
|
4747
|
+
"python-socketio": "python-socketio";
|
|
4748
|
+
websockets: "websockets";
|
|
4749
|
+
}>;
|
|
4750
|
+
pythonObservability: z.ZodEnum<{
|
|
4751
|
+
none: "none";
|
|
4752
|
+
opentelemetry: "opentelemetry";
|
|
4753
|
+
}>;
|
|
4754
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
4755
|
+
none: "none";
|
|
4756
|
+
typer: "typer";
|
|
4757
|
+
click: "click";
|
|
4758
|
+
rich: "rich";
|
|
4759
|
+
}>>;
|
|
3896
4760
|
goWebFramework: z.ZodEnum<{
|
|
3897
4761
|
none: "none";
|
|
3898
4762
|
gin: "gin";
|
|
@@ -3901,14 +4765,15 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3901
4765
|
chi: "chi";
|
|
3902
4766
|
}>;
|
|
3903
4767
|
goOrm: z.ZodEnum<{
|
|
3904
|
-
gorm: "gorm";
|
|
3905
4768
|
none: "none";
|
|
4769
|
+
gorm: "gorm";
|
|
3906
4770
|
sqlc: "sqlc";
|
|
3907
4771
|
ent: "ent";
|
|
3908
4772
|
}>;
|
|
3909
4773
|
goApi: z.ZodEnum<{
|
|
3910
4774
|
none: "none";
|
|
3911
4775
|
"grpc-go": "grpc-go";
|
|
4776
|
+
gqlgen: "gqlgen";
|
|
3912
4777
|
}>;
|
|
3913
4778
|
goCli: z.ZodEnum<{
|
|
3914
4779
|
none: "none";
|
|
@@ -3927,6 +4792,36 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3927
4792
|
none: "none";
|
|
3928
4793
|
jwt: "jwt";
|
|
3929
4794
|
casbin: "casbin";
|
|
4795
|
+
goth: "goth";
|
|
4796
|
+
}>;
|
|
4797
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
4798
|
+
none: "none";
|
|
4799
|
+
testify: "testify";
|
|
4800
|
+
gomock: "gomock";
|
|
4801
|
+
}>>;
|
|
4802
|
+
goRealtime: z.ZodEnum<{
|
|
4803
|
+
none: "none";
|
|
4804
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
4805
|
+
centrifuge: "centrifuge";
|
|
4806
|
+
}>;
|
|
4807
|
+
goMessageQueue: z.ZodEnum<{
|
|
4808
|
+
none: "none";
|
|
4809
|
+
nats: "nats";
|
|
4810
|
+
watermill: "watermill";
|
|
4811
|
+
}>;
|
|
4812
|
+
goCaching: z.ZodEnum<{
|
|
4813
|
+
none: "none";
|
|
4814
|
+
redis: "redis";
|
|
4815
|
+
ristretto: "ristretto";
|
|
4816
|
+
}>;
|
|
4817
|
+
goConfig: z.ZodEnum<{
|
|
4818
|
+
none: "none";
|
|
4819
|
+
viper: "viper";
|
|
4820
|
+
koanf: "koanf";
|
|
4821
|
+
}>;
|
|
4822
|
+
goObservability: z.ZodEnum<{
|
|
4823
|
+
none: "none";
|
|
4824
|
+
opentelemetry: "opentelemetry";
|
|
3930
4825
|
}>;
|
|
3931
4826
|
javaWebFramework: z.ZodEnum<{
|
|
3932
4827
|
none: "none";
|
|
@@ -3941,10 +4836,21 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3941
4836
|
javaOrm: z.ZodEnum<{
|
|
3942
4837
|
none: "none";
|
|
3943
4838
|
"spring-data-jpa": "spring-data-jpa";
|
|
4839
|
+
jooq: "jooq";
|
|
4840
|
+
mybatis: "mybatis";
|
|
3944
4841
|
}>;
|
|
3945
4842
|
javaAuth: z.ZodEnum<{
|
|
3946
4843
|
none: "none";
|
|
3947
4844
|
"spring-security": "spring-security";
|
|
4845
|
+
keycloak: "keycloak";
|
|
4846
|
+
}>;
|
|
4847
|
+
javaApi: z.ZodEnum<{
|
|
4848
|
+
none: "none";
|
|
4849
|
+
"spring-graphql": "spring-graphql";
|
|
4850
|
+
}>;
|
|
4851
|
+
javaLogging: z.ZodEnum<{
|
|
4852
|
+
none: "none";
|
|
4853
|
+
logback: "logback";
|
|
3948
4854
|
}>;
|
|
3949
4855
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3950
4856
|
none: "none";
|
|
@@ -3964,6 +4870,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3964
4870
|
"spring-devtools": "spring-devtools";
|
|
3965
4871
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
3966
4872
|
thymeleaf: "thymeleaf";
|
|
4873
|
+
"spring-amqp": "spring-amqp";
|
|
4874
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
3967
4875
|
}>>;
|
|
3968
4876
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3969
4877
|
none: "none";
|
|
@@ -3977,6 +4885,70 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3977
4885
|
archunit: "archunit";
|
|
3978
4886
|
jqwik: "jqwik";
|
|
3979
4887
|
}>>;
|
|
4888
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
4889
|
+
none: "none";
|
|
4890
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
4891
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
4892
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
4893
|
+
}>;
|
|
4894
|
+
dotnetOrm: z.ZodEnum<{
|
|
4895
|
+
none: "none";
|
|
4896
|
+
"ef-core": "ef-core";
|
|
4897
|
+
dapper: "dapper";
|
|
4898
|
+
linq2db: "linq2db";
|
|
4899
|
+
}>;
|
|
4900
|
+
dotnetAuth: z.ZodEnum<{
|
|
4901
|
+
none: "none";
|
|
4902
|
+
"aspnet-identity": "aspnet-identity";
|
|
4903
|
+
"duende-identityserver": "duende-identityserver";
|
|
4904
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
4905
|
+
}>;
|
|
4906
|
+
dotnetApi: z.ZodEnum<{
|
|
4907
|
+
none: "none";
|
|
4908
|
+
"minimal-api": "minimal-api";
|
|
4909
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
4910
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
4911
|
+
}>;
|
|
4912
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
4913
|
+
none: "none";
|
|
4914
|
+
xunit: "xunit";
|
|
4915
|
+
nunit: "nunit";
|
|
4916
|
+
moq: "moq";
|
|
4917
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
4918
|
+
}>>;
|
|
4919
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
4920
|
+
none: "none";
|
|
4921
|
+
hangfire: "hangfire";
|
|
4922
|
+
"quartz-net": "quartz-net";
|
|
4923
|
+
"hosted-services": "hosted-services";
|
|
4924
|
+
}>;
|
|
4925
|
+
dotnetRealtime: z.ZodEnum<{
|
|
4926
|
+
none: "none";
|
|
4927
|
+
signalr: "signalr";
|
|
4928
|
+
}>;
|
|
4929
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
4930
|
+
none: "none";
|
|
4931
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
4932
|
+
serilog: "serilog";
|
|
4933
|
+
nlog: "nlog";
|
|
4934
|
+
"health-checks": "health-checks";
|
|
4935
|
+
}>>;
|
|
4936
|
+
dotnetValidation: z.ZodEnum<{
|
|
4937
|
+
none: "none";
|
|
4938
|
+
fluentvalidation: "fluentvalidation";
|
|
4939
|
+
"data-annotations": "data-annotations";
|
|
4940
|
+
}>;
|
|
4941
|
+
dotnetCaching: z.ZodEnum<{
|
|
4942
|
+
none: "none";
|
|
4943
|
+
redis: "redis";
|
|
4944
|
+
"memory-cache": "memory-cache";
|
|
4945
|
+
}>;
|
|
4946
|
+
dotnetDeploy: z.ZodEnum<{
|
|
4947
|
+
none: "none";
|
|
4948
|
+
docker: "docker";
|
|
4949
|
+
azure: "azure";
|
|
4950
|
+
aws: "aws";
|
|
4951
|
+
}>;
|
|
3980
4952
|
elixirWebFramework: z.ZodEnum<{
|
|
3981
4953
|
none: "none";
|
|
3982
4954
|
phoenix: "phoenix";
|
|
@@ -3997,6 +4969,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3997
4969
|
none: "none";
|
|
3998
4970
|
rest: "rest";
|
|
3999
4971
|
absinthe: "absinthe";
|
|
4972
|
+
grpc: "grpc";
|
|
4000
4973
|
}>;
|
|
4001
4974
|
elixirRealtime: z.ZodEnum<{
|
|
4002
4975
|
none: "none";
|
|
@@ -4059,6 +5032,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4059
5032
|
gigalixir: "gigalixir";
|
|
4060
5033
|
"mix-release": "mix-release";
|
|
4061
5034
|
}>;
|
|
5035
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
5036
|
+
none: "none";
|
|
5037
|
+
nx: "nx";
|
|
5038
|
+
broadway: "broadway";
|
|
5039
|
+
}>>;
|
|
4062
5040
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4063
5041
|
none: "none";
|
|
4064
5042
|
"claude-md": "claude-md";
|
|
@@ -4068,37 +5046,55 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4068
5046
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
5047
|
id: z.ZodString;
|
|
4070
5048
|
role: z.ZodEnum<{
|
|
4071
|
-
|
|
4072
|
-
backend: "backend";
|
|
5049
|
+
ai: "ai";
|
|
4073
5050
|
database: "database";
|
|
4074
5051
|
orm: "orm";
|
|
4075
5052
|
auth: "auth";
|
|
4076
5053
|
payments: "payments";
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
5054
|
+
frontend: "frontend";
|
|
5055
|
+
examples: "examples";
|
|
5056
|
+
dbSetup: "dbSetup";
|
|
5057
|
+
backend: "backend";
|
|
5058
|
+
runtime: "runtime";
|
|
5059
|
+
api: "api";
|
|
5060
|
+
effect: "effect";
|
|
4082
5061
|
stateManagement: "stateManagement";
|
|
4083
5062
|
forms: "forms";
|
|
4084
|
-
validation: "validation";
|
|
4085
5063
|
testing: "testing";
|
|
5064
|
+
email: "email";
|
|
5065
|
+
validation: "validation";
|
|
5066
|
+
realtime: "realtime";
|
|
4086
5067
|
jobQueue: "jobQueue";
|
|
4087
|
-
|
|
5068
|
+
animation: "animation";
|
|
5069
|
+
fileUpload: "fileUpload";
|
|
5070
|
+
logging: "logging";
|
|
5071
|
+
observability: "observability";
|
|
5072
|
+
featureFlags: "featureFlags";
|
|
5073
|
+
analytics: "analytics";
|
|
4088
5074
|
cms: "cms";
|
|
5075
|
+
caching: "caching";
|
|
5076
|
+
rateLimit: "rateLimit";
|
|
4089
5077
|
i18n: "i18n";
|
|
4090
5078
|
search: "search";
|
|
4091
5079
|
fileStorage: "fileStorage";
|
|
4092
|
-
|
|
4093
|
-
documentation: "documentation";
|
|
4094
|
-
api: "api";
|
|
4095
|
-
ai: "ai";
|
|
4096
|
-
css: "css";
|
|
4097
|
-
ui: "ui";
|
|
4098
|
-
frontend: "frontend";
|
|
5080
|
+
config: "config";
|
|
4099
5081
|
mobile: "mobile";
|
|
4100
5082
|
deploy: "deploy";
|
|
5083
|
+
navigation: "navigation";
|
|
5084
|
+
ui: "ui";
|
|
5085
|
+
css: "css";
|
|
5086
|
+
storage: "storage";
|
|
5087
|
+
documentation: "documentation";
|
|
5088
|
+
codeQuality: "codeQuality";
|
|
4101
5089
|
appPlatform: "appPlatform";
|
|
5090
|
+
dataFetching: "dataFetching";
|
|
5091
|
+
workspaceTooling: "workspaceTooling";
|
|
5092
|
+
buildTool: "buildTool";
|
|
5093
|
+
cli: "cli";
|
|
5094
|
+
errorHandling: "errorHandling";
|
|
5095
|
+
httpClient: "httpClient";
|
|
5096
|
+
libraries: "libraries";
|
|
5097
|
+
templating: "templating";
|
|
4102
5098
|
}>;
|
|
4103
5099
|
toolId: z.ZodString;
|
|
4104
5100
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -4109,6 +5105,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4109
5105
|
go: "go";
|
|
4110
5106
|
java: "java";
|
|
4111
5107
|
elixir: "elixir";
|
|
5108
|
+
dotnet: "dotnet";
|
|
4112
5109
|
}>, z.ZodLiteral<"universal">]>;
|
|
4113
5110
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4114
5111
|
source: z.ZodEnum<{
|
|
@@ -4136,6 +5133,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4136
5133
|
go: "go";
|
|
4137
5134
|
java: "java";
|
|
4138
5135
|
elixir: "elixir";
|
|
5136
|
+
dotnet: "dotnet";
|
|
4139
5137
|
}>;
|
|
4140
5138
|
database: z.ZodEnum<{
|
|
4141
5139
|
none: "none";
|
|
@@ -4209,6 +5207,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4209
5207
|
mcp: "mcp";
|
|
4210
5208
|
skills: "skills";
|
|
4211
5209
|
turborepo: "turborepo";
|
|
5210
|
+
nx: "nx";
|
|
4212
5211
|
fumadocs: "fumadocs";
|
|
4213
5212
|
ultracite: "ultracite";
|
|
4214
5213
|
oxlint: "oxlint";
|
|
@@ -4222,23 +5221,27 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4222
5221
|
"tanstack-virtual": "tanstack-virtual";
|
|
4223
5222
|
"tanstack-db": "tanstack-db";
|
|
4224
5223
|
"tanstack-pacer": "tanstack-pacer";
|
|
5224
|
+
"backend-utils": "backend-utils";
|
|
4225
5225
|
"docker-compose": "docker-compose";
|
|
4226
5226
|
}>>;
|
|
4227
5227
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4228
|
-
ai: "ai";
|
|
4229
5228
|
none: "none";
|
|
5229
|
+
ai: "ai";
|
|
4230
5230
|
"chat-sdk": "chat-sdk";
|
|
4231
5231
|
"tanstack-showcase": "tanstack-showcase";
|
|
4232
5232
|
}>>;
|
|
4233
5233
|
auth: z.ZodEnum<{
|
|
4234
5234
|
none: "none";
|
|
4235
5235
|
"better-auth": "better-auth";
|
|
5236
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
4236
5237
|
"go-better-auth": "go-better-auth";
|
|
4237
5238
|
clerk: "clerk";
|
|
4238
5239
|
nextauth: "nextauth";
|
|
4239
5240
|
"stack-auth": "stack-auth";
|
|
4240
5241
|
"supabase-auth": "supabase-auth";
|
|
4241
5242
|
auth0: "auth0";
|
|
5243
|
+
workos: "workos";
|
|
5244
|
+
kinde: "kinde";
|
|
4242
5245
|
}>;
|
|
4243
5246
|
payments: z.ZodEnum<{
|
|
4244
5247
|
none: "none";
|
|
@@ -4278,6 +5281,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4278
5281
|
"ts-rest": "ts-rest";
|
|
4279
5282
|
garph: "garph";
|
|
4280
5283
|
"graphql-yoga": "graphql-yoga";
|
|
5284
|
+
openapi: "openapi";
|
|
4281
5285
|
}>;
|
|
4282
5286
|
webDeploy: z.ZodEnum<{
|
|
4283
5287
|
none: "none";
|
|
@@ -4285,6 +5289,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4285
5289
|
cloudflare: "cloudflare";
|
|
4286
5290
|
fly: "fly";
|
|
4287
5291
|
railway: "railway";
|
|
5292
|
+
render: "render";
|
|
5293
|
+
netlify: "netlify";
|
|
4288
5294
|
sst: "sst";
|
|
4289
5295
|
vercel: "vercel";
|
|
4290
5296
|
}>;
|
|
@@ -4294,6 +5300,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4294
5300
|
cloudflare: "cloudflare";
|
|
4295
5301
|
fly: "fly";
|
|
4296
5302
|
railway: "railway";
|
|
5303
|
+
render: "render";
|
|
5304
|
+
netlify: "netlify";
|
|
4297
5305
|
sst: "sst";
|
|
4298
5306
|
vercel: "vercel";
|
|
4299
5307
|
}>;
|
|
@@ -4319,8 +5327,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4319
5327
|
"ai-cli": "ai-cli";
|
|
4320
5328
|
}>;
|
|
4321
5329
|
effect: z.ZodEnum<{
|
|
4322
|
-
effect: "effect";
|
|
4323
5330
|
none: "none";
|
|
5331
|
+
effect: "effect";
|
|
4324
5332
|
"effect-full": "effect-full";
|
|
4325
5333
|
}>;
|
|
4326
5334
|
stateManagement: z.ZodEnum<{
|
|
@@ -4371,7 +5379,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4371
5379
|
"postcss-only": "postcss-only";
|
|
4372
5380
|
}>;
|
|
4373
5381
|
uiLibrary: z.ZodEnum<{
|
|
4374
|
-
mui: "mui";
|
|
4375
5382
|
none: "none";
|
|
4376
5383
|
"shadcn-ui": "shadcn-ui";
|
|
4377
5384
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4382,6 +5389,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4382
5389
|
"chakra-ui": "chakra-ui";
|
|
4383
5390
|
nextui: "nextui";
|
|
4384
5391
|
mantine: "mantine";
|
|
5392
|
+
mui: "mui";
|
|
4385
5393
|
antd: "antd";
|
|
4386
5394
|
"base-ui": "base-ui";
|
|
4387
5395
|
"ark-ui": "ark-ui";
|
|
@@ -4510,6 +5518,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4510
5518
|
opentelemetry: "opentelemetry";
|
|
4511
5519
|
sentry: "sentry";
|
|
4512
5520
|
grafana: "grafana";
|
|
5521
|
+
datadog: "datadog";
|
|
5522
|
+
axiom: "axiom";
|
|
5523
|
+
betterstack: "betterstack";
|
|
4513
5524
|
}>;
|
|
4514
5525
|
featureFlags: z.ZodEnum<{
|
|
4515
5526
|
none: "none";
|
|
@@ -4536,6 +5547,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4536
5547
|
none: "none";
|
|
4537
5548
|
"upstash-redis": "upstash-redis";
|
|
4538
5549
|
}>;
|
|
5550
|
+
rateLimit: z.ZodEnum<{
|
|
5551
|
+
none: "none";
|
|
5552
|
+
arcjet: "arcjet";
|
|
5553
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
5554
|
+
}>;
|
|
4539
5555
|
i18n: z.ZodEnum<{
|
|
4540
5556
|
none: "none";
|
|
4541
5557
|
i18next: "i18next";
|
|
@@ -4561,9 +5577,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4561
5577
|
}>;
|
|
4562
5578
|
mobileUI: z.ZodEnum<{
|
|
4563
5579
|
none: "none";
|
|
5580
|
+
uniwind: "uniwind";
|
|
4564
5581
|
tamagui: "tamagui";
|
|
4565
5582
|
"gluestack-ui": "gluestack-ui";
|
|
4566
|
-
uniwind: "uniwind";
|
|
4567
5583
|
unistyles: "unistyles";
|
|
4568
5584
|
}>;
|
|
4569
5585
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4653,6 +5669,24 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4653
5669
|
rustAuth: z.ZodEnum<{
|
|
4654
5670
|
none: "none";
|
|
4655
5671
|
oauth2: "oauth2";
|
|
5672
|
+
torii: "torii";
|
|
5673
|
+
}>;
|
|
5674
|
+
rustRealtime: z.ZodEnum<{
|
|
5675
|
+
none: "none";
|
|
5676
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
5677
|
+
}>;
|
|
5678
|
+
rustMessageQueue: z.ZodEnum<{
|
|
5679
|
+
none: "none";
|
|
5680
|
+
lapin: "lapin";
|
|
5681
|
+
}>;
|
|
5682
|
+
rustObservability: z.ZodEnum<{
|
|
5683
|
+
none: "none";
|
|
5684
|
+
opentelemetry: "opentelemetry";
|
|
5685
|
+
}>;
|
|
5686
|
+
rustTemplating: z.ZodEnum<{
|
|
5687
|
+
none: "none";
|
|
5688
|
+
askama: "askama";
|
|
5689
|
+
tera: "tera";
|
|
4656
5690
|
}>;
|
|
4657
5691
|
pythonWebFramework: z.ZodEnum<{
|
|
4658
5692
|
none: "none";
|
|
@@ -4660,12 +5694,14 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4660
5694
|
django: "django";
|
|
4661
5695
|
flask: "flask";
|
|
4662
5696
|
litestar: "litestar";
|
|
5697
|
+
starlette: "starlette";
|
|
4663
5698
|
}>;
|
|
4664
5699
|
pythonOrm: z.ZodEnum<{
|
|
4665
5700
|
none: "none";
|
|
4666
5701
|
sqlalchemy: "sqlalchemy";
|
|
4667
5702
|
sqlmodel: "sqlmodel";
|
|
4668
5703
|
"tortoise-orm": "tortoise-orm";
|
|
5704
|
+
peewee: "peewee";
|
|
4669
5705
|
}>;
|
|
4670
5706
|
pythonValidation: z.ZodEnum<{
|
|
4671
5707
|
none: "none";
|
|
@@ -4674,17 +5710,21 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4674
5710
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
4675
5711
|
none: "none";
|
|
4676
5712
|
langgraph: "langgraph";
|
|
5713
|
+
"google-adk": "google-adk";
|
|
4677
5714
|
langchain: "langchain";
|
|
4678
5715
|
llamaindex: "llamaindex";
|
|
4679
5716
|
"openai-sdk": "openai-sdk";
|
|
4680
5717
|
"anthropic-sdk": "anthropic-sdk";
|
|
4681
5718
|
crewai: "crewai";
|
|
4682
5719
|
haystack: "haystack";
|
|
5720
|
+
"pydantic-ai": "pydantic-ai";
|
|
5721
|
+
smolagents: "smolagents";
|
|
4683
5722
|
}>>;
|
|
4684
5723
|
pythonAuth: z.ZodEnum<{
|
|
4685
5724
|
none: "none";
|
|
4686
5725
|
authlib: "authlib";
|
|
4687
5726
|
jwt: "jwt";
|
|
5727
|
+
"fastapi-users": "fastapi-users";
|
|
4688
5728
|
}>;
|
|
4689
5729
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
4690
5730
|
none: "none";
|
|
@@ -4697,6 +5737,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4697
5737
|
rq: "rq";
|
|
4698
5738
|
dramatiq: "dramatiq";
|
|
4699
5739
|
huey: "huey";
|
|
5740
|
+
taskiq: "taskiq";
|
|
4700
5741
|
}>;
|
|
4701
5742
|
pythonGraphql: z.ZodEnum<{
|
|
4702
5743
|
none: "none";
|
|
@@ -4709,6 +5750,31 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4709
5750
|
mypy: "mypy";
|
|
4710
5751
|
pyright: "pyright";
|
|
4711
5752
|
}>;
|
|
5753
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
5754
|
+
none: "none";
|
|
5755
|
+
pytest: "pytest";
|
|
5756
|
+
hypothesis: "hypothesis";
|
|
5757
|
+
}>>;
|
|
5758
|
+
pythonCaching: z.ZodEnum<{
|
|
5759
|
+
none: "none";
|
|
5760
|
+
redis: "redis";
|
|
5761
|
+
aiocache: "aiocache";
|
|
5762
|
+
}>;
|
|
5763
|
+
pythonRealtime: z.ZodEnum<{
|
|
5764
|
+
none: "none";
|
|
5765
|
+
"python-socketio": "python-socketio";
|
|
5766
|
+
websockets: "websockets";
|
|
5767
|
+
}>;
|
|
5768
|
+
pythonObservability: z.ZodEnum<{
|
|
5769
|
+
none: "none";
|
|
5770
|
+
opentelemetry: "opentelemetry";
|
|
5771
|
+
}>;
|
|
5772
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
5773
|
+
none: "none";
|
|
5774
|
+
typer: "typer";
|
|
5775
|
+
click: "click";
|
|
5776
|
+
rich: "rich";
|
|
5777
|
+
}>>;
|
|
4712
5778
|
goWebFramework: z.ZodEnum<{
|
|
4713
5779
|
none: "none";
|
|
4714
5780
|
gin: "gin";
|
|
@@ -4717,14 +5783,15 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4717
5783
|
chi: "chi";
|
|
4718
5784
|
}>;
|
|
4719
5785
|
goOrm: z.ZodEnum<{
|
|
4720
|
-
gorm: "gorm";
|
|
4721
5786
|
none: "none";
|
|
5787
|
+
gorm: "gorm";
|
|
4722
5788
|
sqlc: "sqlc";
|
|
4723
5789
|
ent: "ent";
|
|
4724
5790
|
}>;
|
|
4725
5791
|
goApi: z.ZodEnum<{
|
|
4726
5792
|
none: "none";
|
|
4727
5793
|
"grpc-go": "grpc-go";
|
|
5794
|
+
gqlgen: "gqlgen";
|
|
4728
5795
|
}>;
|
|
4729
5796
|
goCli: z.ZodEnum<{
|
|
4730
5797
|
none: "none";
|
|
@@ -4743,6 +5810,36 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4743
5810
|
none: "none";
|
|
4744
5811
|
jwt: "jwt";
|
|
4745
5812
|
casbin: "casbin";
|
|
5813
|
+
goth: "goth";
|
|
5814
|
+
}>;
|
|
5815
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
5816
|
+
none: "none";
|
|
5817
|
+
testify: "testify";
|
|
5818
|
+
gomock: "gomock";
|
|
5819
|
+
}>>;
|
|
5820
|
+
goRealtime: z.ZodEnum<{
|
|
5821
|
+
none: "none";
|
|
5822
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
5823
|
+
centrifuge: "centrifuge";
|
|
5824
|
+
}>;
|
|
5825
|
+
goMessageQueue: z.ZodEnum<{
|
|
5826
|
+
none: "none";
|
|
5827
|
+
nats: "nats";
|
|
5828
|
+
watermill: "watermill";
|
|
5829
|
+
}>;
|
|
5830
|
+
goCaching: z.ZodEnum<{
|
|
5831
|
+
none: "none";
|
|
5832
|
+
redis: "redis";
|
|
5833
|
+
ristretto: "ristretto";
|
|
5834
|
+
}>;
|
|
5835
|
+
goConfig: z.ZodEnum<{
|
|
5836
|
+
none: "none";
|
|
5837
|
+
viper: "viper";
|
|
5838
|
+
koanf: "koanf";
|
|
5839
|
+
}>;
|
|
5840
|
+
goObservability: z.ZodEnum<{
|
|
5841
|
+
none: "none";
|
|
5842
|
+
opentelemetry: "opentelemetry";
|
|
4746
5843
|
}>;
|
|
4747
5844
|
javaWebFramework: z.ZodEnum<{
|
|
4748
5845
|
none: "none";
|
|
@@ -4757,10 +5854,21 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4757
5854
|
javaOrm: z.ZodEnum<{
|
|
4758
5855
|
none: "none";
|
|
4759
5856
|
"spring-data-jpa": "spring-data-jpa";
|
|
5857
|
+
jooq: "jooq";
|
|
5858
|
+
mybatis: "mybatis";
|
|
4760
5859
|
}>;
|
|
4761
5860
|
javaAuth: z.ZodEnum<{
|
|
4762
5861
|
none: "none";
|
|
4763
5862
|
"spring-security": "spring-security";
|
|
5863
|
+
keycloak: "keycloak";
|
|
5864
|
+
}>;
|
|
5865
|
+
javaApi: z.ZodEnum<{
|
|
5866
|
+
none: "none";
|
|
5867
|
+
"spring-graphql": "spring-graphql";
|
|
5868
|
+
}>;
|
|
5869
|
+
javaLogging: z.ZodEnum<{
|
|
5870
|
+
none: "none";
|
|
5871
|
+
logback: "logback";
|
|
4764
5872
|
}>;
|
|
4765
5873
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4766
5874
|
none: "none";
|
|
@@ -4780,6 +5888,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4780
5888
|
"spring-devtools": "spring-devtools";
|
|
4781
5889
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
4782
5890
|
thymeleaf: "thymeleaf";
|
|
5891
|
+
"spring-amqp": "spring-amqp";
|
|
5892
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
4783
5893
|
}>>;
|
|
4784
5894
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
4785
5895
|
none: "none";
|
|
@@ -4793,6 +5903,70 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4793
5903
|
archunit: "archunit";
|
|
4794
5904
|
jqwik: "jqwik";
|
|
4795
5905
|
}>>;
|
|
5906
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
5907
|
+
none: "none";
|
|
5908
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
5909
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
5910
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
5911
|
+
}>;
|
|
5912
|
+
dotnetOrm: z.ZodEnum<{
|
|
5913
|
+
none: "none";
|
|
5914
|
+
"ef-core": "ef-core";
|
|
5915
|
+
dapper: "dapper";
|
|
5916
|
+
linq2db: "linq2db";
|
|
5917
|
+
}>;
|
|
5918
|
+
dotnetAuth: z.ZodEnum<{
|
|
5919
|
+
none: "none";
|
|
5920
|
+
"aspnet-identity": "aspnet-identity";
|
|
5921
|
+
"duende-identityserver": "duende-identityserver";
|
|
5922
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
5923
|
+
}>;
|
|
5924
|
+
dotnetApi: z.ZodEnum<{
|
|
5925
|
+
none: "none";
|
|
5926
|
+
"minimal-api": "minimal-api";
|
|
5927
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
5928
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
5929
|
+
}>;
|
|
5930
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
5931
|
+
none: "none";
|
|
5932
|
+
xunit: "xunit";
|
|
5933
|
+
nunit: "nunit";
|
|
5934
|
+
moq: "moq";
|
|
5935
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
5936
|
+
}>>;
|
|
5937
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
5938
|
+
none: "none";
|
|
5939
|
+
hangfire: "hangfire";
|
|
5940
|
+
"quartz-net": "quartz-net";
|
|
5941
|
+
"hosted-services": "hosted-services";
|
|
5942
|
+
}>;
|
|
5943
|
+
dotnetRealtime: z.ZodEnum<{
|
|
5944
|
+
none: "none";
|
|
5945
|
+
signalr: "signalr";
|
|
5946
|
+
}>;
|
|
5947
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
5948
|
+
none: "none";
|
|
5949
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
5950
|
+
serilog: "serilog";
|
|
5951
|
+
nlog: "nlog";
|
|
5952
|
+
"health-checks": "health-checks";
|
|
5953
|
+
}>>;
|
|
5954
|
+
dotnetValidation: z.ZodEnum<{
|
|
5955
|
+
none: "none";
|
|
5956
|
+
fluentvalidation: "fluentvalidation";
|
|
5957
|
+
"data-annotations": "data-annotations";
|
|
5958
|
+
}>;
|
|
5959
|
+
dotnetCaching: z.ZodEnum<{
|
|
5960
|
+
none: "none";
|
|
5961
|
+
redis: "redis";
|
|
5962
|
+
"memory-cache": "memory-cache";
|
|
5963
|
+
}>;
|
|
5964
|
+
dotnetDeploy: z.ZodEnum<{
|
|
5965
|
+
none: "none";
|
|
5966
|
+
docker: "docker";
|
|
5967
|
+
azure: "azure";
|
|
5968
|
+
aws: "aws";
|
|
5969
|
+
}>;
|
|
4796
5970
|
elixirWebFramework: z.ZodEnum<{
|
|
4797
5971
|
none: "none";
|
|
4798
5972
|
phoenix: "phoenix";
|
|
@@ -4813,6 +5987,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4813
5987
|
none: "none";
|
|
4814
5988
|
rest: "rest";
|
|
4815
5989
|
absinthe: "absinthe";
|
|
5990
|
+
grpc: "grpc";
|
|
4816
5991
|
}>;
|
|
4817
5992
|
elixirRealtime: z.ZodEnum<{
|
|
4818
5993
|
none: "none";
|
|
@@ -4875,6 +6050,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4875
6050
|
gigalixir: "gigalixir";
|
|
4876
6051
|
"mix-release": "mix-release";
|
|
4877
6052
|
}>;
|
|
6053
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
6054
|
+
none: "none";
|
|
6055
|
+
nx: "nx";
|
|
6056
|
+
broadway: "broadway";
|
|
6057
|
+
}>>;
|
|
4878
6058
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4879
6059
|
none: "none";
|
|
4880
6060
|
"claude-md": "claude-md";
|
|
@@ -4884,37 +6064,55 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4884
6064
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
6065
|
id: z.ZodString;
|
|
4886
6066
|
role: z.ZodEnum<{
|
|
4887
|
-
|
|
4888
|
-
backend: "backend";
|
|
6067
|
+
ai: "ai";
|
|
4889
6068
|
database: "database";
|
|
4890
6069
|
orm: "orm";
|
|
4891
6070
|
auth: "auth";
|
|
4892
6071
|
payments: "payments";
|
|
6072
|
+
frontend: "frontend";
|
|
6073
|
+
examples: "examples";
|
|
6074
|
+
dbSetup: "dbSetup";
|
|
6075
|
+
backend: "backend";
|
|
6076
|
+
runtime: "runtime";
|
|
6077
|
+
api: "api";
|
|
6078
|
+
effect: "effect";
|
|
6079
|
+
stateManagement: "stateManagement";
|
|
6080
|
+
forms: "forms";
|
|
6081
|
+
testing: "testing";
|
|
4893
6082
|
email: "email";
|
|
6083
|
+
validation: "validation";
|
|
6084
|
+
realtime: "realtime";
|
|
6085
|
+
jobQueue: "jobQueue";
|
|
6086
|
+
animation: "animation";
|
|
6087
|
+
fileUpload: "fileUpload";
|
|
4894
6088
|
logging: "logging";
|
|
4895
6089
|
observability: "observability";
|
|
4896
6090
|
featureFlags: "featureFlags";
|
|
4897
6091
|
analytics: "analytics";
|
|
4898
|
-
stateManagement: "stateManagement";
|
|
4899
|
-
forms: "forms";
|
|
4900
|
-
validation: "validation";
|
|
4901
|
-
testing: "testing";
|
|
4902
|
-
jobQueue: "jobQueue";
|
|
4903
|
-
caching: "caching";
|
|
4904
6092
|
cms: "cms";
|
|
6093
|
+
caching: "caching";
|
|
6094
|
+
rateLimit: "rateLimit";
|
|
4905
6095
|
i18n: "i18n";
|
|
4906
6096
|
search: "search";
|
|
4907
6097
|
fileStorage: "fileStorage";
|
|
4908
|
-
|
|
4909
|
-
documentation: "documentation";
|
|
4910
|
-
api: "api";
|
|
4911
|
-
ai: "ai";
|
|
4912
|
-
css: "css";
|
|
4913
|
-
ui: "ui";
|
|
4914
|
-
frontend: "frontend";
|
|
6098
|
+
config: "config";
|
|
4915
6099
|
mobile: "mobile";
|
|
4916
6100
|
deploy: "deploy";
|
|
6101
|
+
navigation: "navigation";
|
|
6102
|
+
ui: "ui";
|
|
6103
|
+
css: "css";
|
|
6104
|
+
storage: "storage";
|
|
6105
|
+
documentation: "documentation";
|
|
6106
|
+
codeQuality: "codeQuality";
|
|
4917
6107
|
appPlatform: "appPlatform";
|
|
6108
|
+
dataFetching: "dataFetching";
|
|
6109
|
+
workspaceTooling: "workspaceTooling";
|
|
6110
|
+
buildTool: "buildTool";
|
|
6111
|
+
cli: "cli";
|
|
6112
|
+
errorHandling: "errorHandling";
|
|
6113
|
+
httpClient: "httpClient";
|
|
6114
|
+
libraries: "libraries";
|
|
6115
|
+
templating: "templating";
|
|
4918
6116
|
}>;
|
|
4919
6117
|
toolId: z.ZodString;
|
|
4920
6118
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -4925,6 +6123,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4925
6123
|
go: "go";
|
|
4926
6124
|
java: "java";
|
|
4927
6125
|
elixir: "elixir";
|
|
6126
|
+
dotnet: "dotnet";
|
|
4928
6127
|
}>, z.ZodLiteral<"universal">]>;
|
|
4929
6128
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4930
6129
|
source: z.ZodEnum<{
|
|
@@ -4953,6 +6152,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4953
6152
|
go: "go";
|
|
4954
6153
|
java: "java";
|
|
4955
6154
|
elixir: "elixir";
|
|
6155
|
+
dotnet: "dotnet";
|
|
4956
6156
|
}>;
|
|
4957
6157
|
database: z.ZodEnum<{
|
|
4958
6158
|
none: "none";
|
|
@@ -5026,6 +6226,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5026
6226
|
mcp: "mcp";
|
|
5027
6227
|
skills: "skills";
|
|
5028
6228
|
turborepo: "turborepo";
|
|
6229
|
+
nx: "nx";
|
|
5029
6230
|
fumadocs: "fumadocs";
|
|
5030
6231
|
ultracite: "ultracite";
|
|
5031
6232
|
oxlint: "oxlint";
|
|
@@ -5039,23 +6240,27 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5039
6240
|
"tanstack-virtual": "tanstack-virtual";
|
|
5040
6241
|
"tanstack-db": "tanstack-db";
|
|
5041
6242
|
"tanstack-pacer": "tanstack-pacer";
|
|
6243
|
+
"backend-utils": "backend-utils";
|
|
5042
6244
|
"docker-compose": "docker-compose";
|
|
5043
6245
|
}>>;
|
|
5044
6246
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5045
|
-
ai: "ai";
|
|
5046
6247
|
none: "none";
|
|
6248
|
+
ai: "ai";
|
|
5047
6249
|
"chat-sdk": "chat-sdk";
|
|
5048
6250
|
"tanstack-showcase": "tanstack-showcase";
|
|
5049
6251
|
}>>;
|
|
5050
6252
|
auth: z.ZodEnum<{
|
|
5051
6253
|
none: "none";
|
|
5052
6254
|
"better-auth": "better-auth";
|
|
6255
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
5053
6256
|
"go-better-auth": "go-better-auth";
|
|
5054
6257
|
clerk: "clerk";
|
|
5055
6258
|
nextauth: "nextauth";
|
|
5056
6259
|
"stack-auth": "stack-auth";
|
|
5057
6260
|
"supabase-auth": "supabase-auth";
|
|
5058
6261
|
auth0: "auth0";
|
|
6262
|
+
workos: "workos";
|
|
6263
|
+
kinde: "kinde";
|
|
5059
6264
|
}>;
|
|
5060
6265
|
payments: z.ZodEnum<{
|
|
5061
6266
|
none: "none";
|
|
@@ -5095,6 +6300,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5095
6300
|
"ts-rest": "ts-rest";
|
|
5096
6301
|
garph: "garph";
|
|
5097
6302
|
"graphql-yoga": "graphql-yoga";
|
|
6303
|
+
openapi: "openapi";
|
|
5098
6304
|
}>;
|
|
5099
6305
|
webDeploy: z.ZodEnum<{
|
|
5100
6306
|
none: "none";
|
|
@@ -5102,6 +6308,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5102
6308
|
cloudflare: "cloudflare";
|
|
5103
6309
|
fly: "fly";
|
|
5104
6310
|
railway: "railway";
|
|
6311
|
+
render: "render";
|
|
6312
|
+
netlify: "netlify";
|
|
5105
6313
|
sst: "sst";
|
|
5106
6314
|
vercel: "vercel";
|
|
5107
6315
|
}>;
|
|
@@ -5111,6 +6319,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5111
6319
|
cloudflare: "cloudflare";
|
|
5112
6320
|
fly: "fly";
|
|
5113
6321
|
railway: "railway";
|
|
6322
|
+
render: "render";
|
|
6323
|
+
netlify: "netlify";
|
|
5114
6324
|
sst: "sst";
|
|
5115
6325
|
vercel: "vercel";
|
|
5116
6326
|
}>;
|
|
@@ -5136,8 +6346,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5136
6346
|
"ai-cli": "ai-cli";
|
|
5137
6347
|
}>;
|
|
5138
6348
|
effect: z.ZodEnum<{
|
|
5139
|
-
effect: "effect";
|
|
5140
6349
|
none: "none";
|
|
6350
|
+
effect: "effect";
|
|
5141
6351
|
"effect-full": "effect-full";
|
|
5142
6352
|
}>;
|
|
5143
6353
|
stateManagement: z.ZodEnum<{
|
|
@@ -5188,7 +6398,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5188
6398
|
"postcss-only": "postcss-only";
|
|
5189
6399
|
}>;
|
|
5190
6400
|
uiLibrary: z.ZodEnum<{
|
|
5191
|
-
mui: "mui";
|
|
5192
6401
|
none: "none";
|
|
5193
6402
|
"shadcn-ui": "shadcn-ui";
|
|
5194
6403
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -5199,6 +6408,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5199
6408
|
"chakra-ui": "chakra-ui";
|
|
5200
6409
|
nextui: "nextui";
|
|
5201
6410
|
mantine: "mantine";
|
|
6411
|
+
mui: "mui";
|
|
5202
6412
|
antd: "antd";
|
|
5203
6413
|
"base-ui": "base-ui";
|
|
5204
6414
|
"ark-ui": "ark-ui";
|
|
@@ -5327,6 +6537,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5327
6537
|
opentelemetry: "opentelemetry";
|
|
5328
6538
|
sentry: "sentry";
|
|
5329
6539
|
grafana: "grafana";
|
|
6540
|
+
datadog: "datadog";
|
|
6541
|
+
axiom: "axiom";
|
|
6542
|
+
betterstack: "betterstack";
|
|
5330
6543
|
}>;
|
|
5331
6544
|
featureFlags: z.ZodEnum<{
|
|
5332
6545
|
none: "none";
|
|
@@ -5353,6 +6566,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5353
6566
|
none: "none";
|
|
5354
6567
|
"upstash-redis": "upstash-redis";
|
|
5355
6568
|
}>;
|
|
6569
|
+
rateLimit: z.ZodEnum<{
|
|
6570
|
+
none: "none";
|
|
6571
|
+
arcjet: "arcjet";
|
|
6572
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
6573
|
+
}>;
|
|
5356
6574
|
i18n: z.ZodEnum<{
|
|
5357
6575
|
none: "none";
|
|
5358
6576
|
i18next: "i18next";
|
|
@@ -5378,9 +6596,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5378
6596
|
}>;
|
|
5379
6597
|
mobileUI: z.ZodEnum<{
|
|
5380
6598
|
none: "none";
|
|
6599
|
+
uniwind: "uniwind";
|
|
5381
6600
|
tamagui: "tamagui";
|
|
5382
6601
|
"gluestack-ui": "gluestack-ui";
|
|
5383
|
-
uniwind: "uniwind";
|
|
5384
6602
|
unistyles: "unistyles";
|
|
5385
6603
|
}>;
|
|
5386
6604
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5470,6 +6688,24 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5470
6688
|
rustAuth: z.ZodEnum<{
|
|
5471
6689
|
none: "none";
|
|
5472
6690
|
oauth2: "oauth2";
|
|
6691
|
+
torii: "torii";
|
|
6692
|
+
}>;
|
|
6693
|
+
rustRealtime: z.ZodEnum<{
|
|
6694
|
+
none: "none";
|
|
6695
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
6696
|
+
}>;
|
|
6697
|
+
rustMessageQueue: z.ZodEnum<{
|
|
6698
|
+
none: "none";
|
|
6699
|
+
lapin: "lapin";
|
|
6700
|
+
}>;
|
|
6701
|
+
rustObservability: z.ZodEnum<{
|
|
6702
|
+
none: "none";
|
|
6703
|
+
opentelemetry: "opentelemetry";
|
|
6704
|
+
}>;
|
|
6705
|
+
rustTemplating: z.ZodEnum<{
|
|
6706
|
+
none: "none";
|
|
6707
|
+
askama: "askama";
|
|
6708
|
+
tera: "tera";
|
|
5473
6709
|
}>;
|
|
5474
6710
|
pythonWebFramework: z.ZodEnum<{
|
|
5475
6711
|
none: "none";
|
|
@@ -5477,12 +6713,14 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5477
6713
|
django: "django";
|
|
5478
6714
|
flask: "flask";
|
|
5479
6715
|
litestar: "litestar";
|
|
6716
|
+
starlette: "starlette";
|
|
5480
6717
|
}>;
|
|
5481
6718
|
pythonOrm: z.ZodEnum<{
|
|
5482
6719
|
none: "none";
|
|
5483
6720
|
sqlalchemy: "sqlalchemy";
|
|
5484
6721
|
sqlmodel: "sqlmodel";
|
|
5485
6722
|
"tortoise-orm": "tortoise-orm";
|
|
6723
|
+
peewee: "peewee";
|
|
5486
6724
|
}>;
|
|
5487
6725
|
pythonValidation: z.ZodEnum<{
|
|
5488
6726
|
none: "none";
|
|
@@ -5491,17 +6729,21 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5491
6729
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
5492
6730
|
none: "none";
|
|
5493
6731
|
langgraph: "langgraph";
|
|
6732
|
+
"google-adk": "google-adk";
|
|
5494
6733
|
langchain: "langchain";
|
|
5495
6734
|
llamaindex: "llamaindex";
|
|
5496
6735
|
"openai-sdk": "openai-sdk";
|
|
5497
6736
|
"anthropic-sdk": "anthropic-sdk";
|
|
5498
6737
|
crewai: "crewai";
|
|
5499
6738
|
haystack: "haystack";
|
|
6739
|
+
"pydantic-ai": "pydantic-ai";
|
|
6740
|
+
smolagents: "smolagents";
|
|
5500
6741
|
}>>;
|
|
5501
6742
|
pythonAuth: z.ZodEnum<{
|
|
5502
6743
|
none: "none";
|
|
5503
6744
|
authlib: "authlib";
|
|
5504
6745
|
jwt: "jwt";
|
|
6746
|
+
"fastapi-users": "fastapi-users";
|
|
5505
6747
|
}>;
|
|
5506
6748
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
5507
6749
|
none: "none";
|
|
@@ -5514,6 +6756,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5514
6756
|
rq: "rq";
|
|
5515
6757
|
dramatiq: "dramatiq";
|
|
5516
6758
|
huey: "huey";
|
|
6759
|
+
taskiq: "taskiq";
|
|
5517
6760
|
}>;
|
|
5518
6761
|
pythonGraphql: z.ZodEnum<{
|
|
5519
6762
|
none: "none";
|
|
@@ -5526,6 +6769,31 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5526
6769
|
mypy: "mypy";
|
|
5527
6770
|
pyright: "pyright";
|
|
5528
6771
|
}>;
|
|
6772
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
6773
|
+
none: "none";
|
|
6774
|
+
pytest: "pytest";
|
|
6775
|
+
hypothesis: "hypothesis";
|
|
6776
|
+
}>>;
|
|
6777
|
+
pythonCaching: z.ZodEnum<{
|
|
6778
|
+
none: "none";
|
|
6779
|
+
redis: "redis";
|
|
6780
|
+
aiocache: "aiocache";
|
|
6781
|
+
}>;
|
|
6782
|
+
pythonRealtime: z.ZodEnum<{
|
|
6783
|
+
none: "none";
|
|
6784
|
+
"python-socketio": "python-socketio";
|
|
6785
|
+
websockets: "websockets";
|
|
6786
|
+
}>;
|
|
6787
|
+
pythonObservability: z.ZodEnum<{
|
|
6788
|
+
none: "none";
|
|
6789
|
+
opentelemetry: "opentelemetry";
|
|
6790
|
+
}>;
|
|
6791
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
6792
|
+
none: "none";
|
|
6793
|
+
typer: "typer";
|
|
6794
|
+
click: "click";
|
|
6795
|
+
rich: "rich";
|
|
6796
|
+
}>>;
|
|
5529
6797
|
goWebFramework: z.ZodEnum<{
|
|
5530
6798
|
none: "none";
|
|
5531
6799
|
gin: "gin";
|
|
@@ -5534,14 +6802,15 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5534
6802
|
chi: "chi";
|
|
5535
6803
|
}>;
|
|
5536
6804
|
goOrm: z.ZodEnum<{
|
|
5537
|
-
gorm: "gorm";
|
|
5538
6805
|
none: "none";
|
|
6806
|
+
gorm: "gorm";
|
|
5539
6807
|
sqlc: "sqlc";
|
|
5540
6808
|
ent: "ent";
|
|
5541
6809
|
}>;
|
|
5542
6810
|
goApi: z.ZodEnum<{
|
|
5543
6811
|
none: "none";
|
|
5544
6812
|
"grpc-go": "grpc-go";
|
|
6813
|
+
gqlgen: "gqlgen";
|
|
5545
6814
|
}>;
|
|
5546
6815
|
goCli: z.ZodEnum<{
|
|
5547
6816
|
none: "none";
|
|
@@ -5560,6 +6829,36 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5560
6829
|
none: "none";
|
|
5561
6830
|
jwt: "jwt";
|
|
5562
6831
|
casbin: "casbin";
|
|
6832
|
+
goth: "goth";
|
|
6833
|
+
}>;
|
|
6834
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
6835
|
+
none: "none";
|
|
6836
|
+
testify: "testify";
|
|
6837
|
+
gomock: "gomock";
|
|
6838
|
+
}>>;
|
|
6839
|
+
goRealtime: z.ZodEnum<{
|
|
6840
|
+
none: "none";
|
|
6841
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
6842
|
+
centrifuge: "centrifuge";
|
|
6843
|
+
}>;
|
|
6844
|
+
goMessageQueue: z.ZodEnum<{
|
|
6845
|
+
none: "none";
|
|
6846
|
+
nats: "nats";
|
|
6847
|
+
watermill: "watermill";
|
|
6848
|
+
}>;
|
|
6849
|
+
goCaching: z.ZodEnum<{
|
|
6850
|
+
none: "none";
|
|
6851
|
+
redis: "redis";
|
|
6852
|
+
ristretto: "ristretto";
|
|
6853
|
+
}>;
|
|
6854
|
+
goConfig: z.ZodEnum<{
|
|
6855
|
+
none: "none";
|
|
6856
|
+
viper: "viper";
|
|
6857
|
+
koanf: "koanf";
|
|
6858
|
+
}>;
|
|
6859
|
+
goObservability: z.ZodEnum<{
|
|
6860
|
+
none: "none";
|
|
6861
|
+
opentelemetry: "opentelemetry";
|
|
5563
6862
|
}>;
|
|
5564
6863
|
javaWebFramework: z.ZodEnum<{
|
|
5565
6864
|
none: "none";
|
|
@@ -5574,10 +6873,21 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5574
6873
|
javaOrm: z.ZodEnum<{
|
|
5575
6874
|
none: "none";
|
|
5576
6875
|
"spring-data-jpa": "spring-data-jpa";
|
|
6876
|
+
jooq: "jooq";
|
|
6877
|
+
mybatis: "mybatis";
|
|
5577
6878
|
}>;
|
|
5578
6879
|
javaAuth: z.ZodEnum<{
|
|
5579
6880
|
none: "none";
|
|
5580
6881
|
"spring-security": "spring-security";
|
|
6882
|
+
keycloak: "keycloak";
|
|
6883
|
+
}>;
|
|
6884
|
+
javaApi: z.ZodEnum<{
|
|
6885
|
+
none: "none";
|
|
6886
|
+
"spring-graphql": "spring-graphql";
|
|
6887
|
+
}>;
|
|
6888
|
+
javaLogging: z.ZodEnum<{
|
|
6889
|
+
none: "none";
|
|
6890
|
+
logback: "logback";
|
|
5581
6891
|
}>;
|
|
5582
6892
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5583
6893
|
none: "none";
|
|
@@ -5597,6 +6907,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5597
6907
|
"spring-devtools": "spring-devtools";
|
|
5598
6908
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
5599
6909
|
thymeleaf: "thymeleaf";
|
|
6910
|
+
"spring-amqp": "spring-amqp";
|
|
6911
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
5600
6912
|
}>>;
|
|
5601
6913
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
5602
6914
|
none: "none";
|
|
@@ -5610,6 +6922,70 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5610
6922
|
archunit: "archunit";
|
|
5611
6923
|
jqwik: "jqwik";
|
|
5612
6924
|
}>>;
|
|
6925
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
6926
|
+
none: "none";
|
|
6927
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
6928
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
6929
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
6930
|
+
}>;
|
|
6931
|
+
dotnetOrm: z.ZodEnum<{
|
|
6932
|
+
none: "none";
|
|
6933
|
+
"ef-core": "ef-core";
|
|
6934
|
+
dapper: "dapper";
|
|
6935
|
+
linq2db: "linq2db";
|
|
6936
|
+
}>;
|
|
6937
|
+
dotnetAuth: z.ZodEnum<{
|
|
6938
|
+
none: "none";
|
|
6939
|
+
"aspnet-identity": "aspnet-identity";
|
|
6940
|
+
"duende-identityserver": "duende-identityserver";
|
|
6941
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
6942
|
+
}>;
|
|
6943
|
+
dotnetApi: z.ZodEnum<{
|
|
6944
|
+
none: "none";
|
|
6945
|
+
"minimal-api": "minimal-api";
|
|
6946
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
6947
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
6948
|
+
}>;
|
|
6949
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
6950
|
+
none: "none";
|
|
6951
|
+
xunit: "xunit";
|
|
6952
|
+
nunit: "nunit";
|
|
6953
|
+
moq: "moq";
|
|
6954
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
6955
|
+
}>>;
|
|
6956
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
6957
|
+
none: "none";
|
|
6958
|
+
hangfire: "hangfire";
|
|
6959
|
+
"quartz-net": "quartz-net";
|
|
6960
|
+
"hosted-services": "hosted-services";
|
|
6961
|
+
}>;
|
|
6962
|
+
dotnetRealtime: z.ZodEnum<{
|
|
6963
|
+
none: "none";
|
|
6964
|
+
signalr: "signalr";
|
|
6965
|
+
}>;
|
|
6966
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
6967
|
+
none: "none";
|
|
6968
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
6969
|
+
serilog: "serilog";
|
|
6970
|
+
nlog: "nlog";
|
|
6971
|
+
"health-checks": "health-checks";
|
|
6972
|
+
}>>;
|
|
6973
|
+
dotnetValidation: z.ZodEnum<{
|
|
6974
|
+
none: "none";
|
|
6975
|
+
fluentvalidation: "fluentvalidation";
|
|
6976
|
+
"data-annotations": "data-annotations";
|
|
6977
|
+
}>;
|
|
6978
|
+
dotnetCaching: z.ZodEnum<{
|
|
6979
|
+
none: "none";
|
|
6980
|
+
redis: "redis";
|
|
6981
|
+
"memory-cache": "memory-cache";
|
|
6982
|
+
}>;
|
|
6983
|
+
dotnetDeploy: z.ZodEnum<{
|
|
6984
|
+
none: "none";
|
|
6985
|
+
docker: "docker";
|
|
6986
|
+
azure: "azure";
|
|
6987
|
+
aws: "aws";
|
|
6988
|
+
}>;
|
|
5613
6989
|
elixirWebFramework: z.ZodEnum<{
|
|
5614
6990
|
none: "none";
|
|
5615
6991
|
phoenix: "phoenix";
|
|
@@ -5630,6 +7006,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5630
7006
|
none: "none";
|
|
5631
7007
|
rest: "rest";
|
|
5632
7008
|
absinthe: "absinthe";
|
|
7009
|
+
grpc: "grpc";
|
|
5633
7010
|
}>;
|
|
5634
7011
|
elixirRealtime: z.ZodEnum<{
|
|
5635
7012
|
none: "none";
|
|
@@ -5692,6 +7069,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5692
7069
|
gigalixir: "gigalixir";
|
|
5693
7070
|
"mix-release": "mix-release";
|
|
5694
7071
|
}>;
|
|
7072
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
7073
|
+
none: "none";
|
|
7074
|
+
nx: "nx";
|
|
7075
|
+
broadway: "broadway";
|
|
7076
|
+
}>>;
|
|
5695
7077
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
5696
7078
|
none: "none";
|
|
5697
7079
|
"claude-md": "claude-md";
|
|
@@ -5701,37 +7083,55 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5701
7083
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
7084
|
id: z.ZodString;
|
|
5703
7085
|
role: z.ZodEnum<{
|
|
5704
|
-
|
|
5705
|
-
backend: "backend";
|
|
7086
|
+
ai: "ai";
|
|
5706
7087
|
database: "database";
|
|
5707
7088
|
orm: "orm";
|
|
5708
7089
|
auth: "auth";
|
|
5709
7090
|
payments: "payments";
|
|
7091
|
+
frontend: "frontend";
|
|
7092
|
+
examples: "examples";
|
|
7093
|
+
dbSetup: "dbSetup";
|
|
7094
|
+
backend: "backend";
|
|
7095
|
+
runtime: "runtime";
|
|
7096
|
+
api: "api";
|
|
7097
|
+
effect: "effect";
|
|
7098
|
+
stateManagement: "stateManagement";
|
|
7099
|
+
forms: "forms";
|
|
7100
|
+
testing: "testing";
|
|
5710
7101
|
email: "email";
|
|
7102
|
+
validation: "validation";
|
|
7103
|
+
realtime: "realtime";
|
|
7104
|
+
jobQueue: "jobQueue";
|
|
7105
|
+
animation: "animation";
|
|
7106
|
+
fileUpload: "fileUpload";
|
|
5711
7107
|
logging: "logging";
|
|
5712
7108
|
observability: "observability";
|
|
5713
7109
|
featureFlags: "featureFlags";
|
|
5714
7110
|
analytics: "analytics";
|
|
5715
|
-
stateManagement: "stateManagement";
|
|
5716
|
-
forms: "forms";
|
|
5717
|
-
validation: "validation";
|
|
5718
|
-
testing: "testing";
|
|
5719
|
-
jobQueue: "jobQueue";
|
|
5720
|
-
caching: "caching";
|
|
5721
7111
|
cms: "cms";
|
|
7112
|
+
caching: "caching";
|
|
7113
|
+
rateLimit: "rateLimit";
|
|
5722
7114
|
i18n: "i18n";
|
|
5723
7115
|
search: "search";
|
|
5724
7116
|
fileStorage: "fileStorage";
|
|
5725
|
-
|
|
5726
|
-
documentation: "documentation";
|
|
5727
|
-
api: "api";
|
|
5728
|
-
ai: "ai";
|
|
5729
|
-
css: "css";
|
|
5730
|
-
ui: "ui";
|
|
5731
|
-
frontend: "frontend";
|
|
7117
|
+
config: "config";
|
|
5732
7118
|
mobile: "mobile";
|
|
5733
7119
|
deploy: "deploy";
|
|
7120
|
+
navigation: "navigation";
|
|
7121
|
+
ui: "ui";
|
|
7122
|
+
css: "css";
|
|
7123
|
+
storage: "storage";
|
|
7124
|
+
documentation: "documentation";
|
|
7125
|
+
codeQuality: "codeQuality";
|
|
5734
7126
|
appPlatform: "appPlatform";
|
|
7127
|
+
dataFetching: "dataFetching";
|
|
7128
|
+
workspaceTooling: "workspaceTooling";
|
|
7129
|
+
buildTool: "buildTool";
|
|
7130
|
+
cli: "cli";
|
|
7131
|
+
errorHandling: "errorHandling";
|
|
7132
|
+
httpClient: "httpClient";
|
|
7133
|
+
libraries: "libraries";
|
|
7134
|
+
templating: "templating";
|
|
5735
7135
|
}>;
|
|
5736
7136
|
toolId: z.ZodString;
|
|
5737
7137
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -5742,6 +7142,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5742
7142
|
go: "go";
|
|
5743
7143
|
java: "java";
|
|
5744
7144
|
elixir: "elixir";
|
|
7145
|
+
dotnet: "dotnet";
|
|
5745
7146
|
}>, z.ZodLiteral<"universal">]>;
|
|
5746
7147
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
5747
7148
|
source: z.ZodEnum<{
|
|
@@ -5770,6 +7171,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5770
7171
|
go: "go";
|
|
5771
7172
|
java: "java";
|
|
5772
7173
|
elixir: "elixir";
|
|
7174
|
+
dotnet: "dotnet";
|
|
5773
7175
|
}>;
|
|
5774
7176
|
database: z.ZodEnum<{
|
|
5775
7177
|
none: "none";
|
|
@@ -5843,6 +7245,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5843
7245
|
mcp: "mcp";
|
|
5844
7246
|
skills: "skills";
|
|
5845
7247
|
turborepo: "turborepo";
|
|
7248
|
+
nx: "nx";
|
|
5846
7249
|
fumadocs: "fumadocs";
|
|
5847
7250
|
ultracite: "ultracite";
|
|
5848
7251
|
oxlint: "oxlint";
|
|
@@ -5856,23 +7259,27 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5856
7259
|
"tanstack-virtual": "tanstack-virtual";
|
|
5857
7260
|
"tanstack-db": "tanstack-db";
|
|
5858
7261
|
"tanstack-pacer": "tanstack-pacer";
|
|
7262
|
+
"backend-utils": "backend-utils";
|
|
5859
7263
|
"docker-compose": "docker-compose";
|
|
5860
7264
|
}>>;
|
|
5861
7265
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5862
|
-
ai: "ai";
|
|
5863
7266
|
none: "none";
|
|
7267
|
+
ai: "ai";
|
|
5864
7268
|
"chat-sdk": "chat-sdk";
|
|
5865
7269
|
"tanstack-showcase": "tanstack-showcase";
|
|
5866
7270
|
}>>;
|
|
5867
7271
|
auth: z.ZodEnum<{
|
|
5868
7272
|
none: "none";
|
|
5869
7273
|
"better-auth": "better-auth";
|
|
7274
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
5870
7275
|
"go-better-auth": "go-better-auth";
|
|
5871
7276
|
clerk: "clerk";
|
|
5872
7277
|
nextauth: "nextauth";
|
|
5873
7278
|
"stack-auth": "stack-auth";
|
|
5874
7279
|
"supabase-auth": "supabase-auth";
|
|
5875
7280
|
auth0: "auth0";
|
|
7281
|
+
workos: "workos";
|
|
7282
|
+
kinde: "kinde";
|
|
5876
7283
|
}>;
|
|
5877
7284
|
payments: z.ZodEnum<{
|
|
5878
7285
|
none: "none";
|
|
@@ -5912,6 +7319,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5912
7319
|
"ts-rest": "ts-rest";
|
|
5913
7320
|
garph: "garph";
|
|
5914
7321
|
"graphql-yoga": "graphql-yoga";
|
|
7322
|
+
openapi: "openapi";
|
|
5915
7323
|
}>;
|
|
5916
7324
|
webDeploy: z.ZodEnum<{
|
|
5917
7325
|
none: "none";
|
|
@@ -5919,6 +7327,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5919
7327
|
cloudflare: "cloudflare";
|
|
5920
7328
|
fly: "fly";
|
|
5921
7329
|
railway: "railway";
|
|
7330
|
+
render: "render";
|
|
7331
|
+
netlify: "netlify";
|
|
5922
7332
|
sst: "sst";
|
|
5923
7333
|
vercel: "vercel";
|
|
5924
7334
|
}>;
|
|
@@ -5928,6 +7338,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5928
7338
|
cloudflare: "cloudflare";
|
|
5929
7339
|
fly: "fly";
|
|
5930
7340
|
railway: "railway";
|
|
7341
|
+
render: "render";
|
|
7342
|
+
netlify: "netlify";
|
|
5931
7343
|
sst: "sst";
|
|
5932
7344
|
vercel: "vercel";
|
|
5933
7345
|
}>;
|
|
@@ -5953,8 +7365,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5953
7365
|
"ai-cli": "ai-cli";
|
|
5954
7366
|
}>;
|
|
5955
7367
|
effect: z.ZodEnum<{
|
|
5956
|
-
effect: "effect";
|
|
5957
7368
|
none: "none";
|
|
7369
|
+
effect: "effect";
|
|
5958
7370
|
"effect-full": "effect-full";
|
|
5959
7371
|
}>;
|
|
5960
7372
|
stateManagement: z.ZodEnum<{
|
|
@@ -6005,7 +7417,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6005
7417
|
"postcss-only": "postcss-only";
|
|
6006
7418
|
}>;
|
|
6007
7419
|
uiLibrary: z.ZodEnum<{
|
|
6008
|
-
mui: "mui";
|
|
6009
7420
|
none: "none";
|
|
6010
7421
|
"shadcn-ui": "shadcn-ui";
|
|
6011
7422
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6016,6 +7427,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6016
7427
|
"chakra-ui": "chakra-ui";
|
|
6017
7428
|
nextui: "nextui";
|
|
6018
7429
|
mantine: "mantine";
|
|
7430
|
+
mui: "mui";
|
|
6019
7431
|
antd: "antd";
|
|
6020
7432
|
"base-ui": "base-ui";
|
|
6021
7433
|
"ark-ui": "ark-ui";
|
|
@@ -6144,6 +7556,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6144
7556
|
opentelemetry: "opentelemetry";
|
|
6145
7557
|
sentry: "sentry";
|
|
6146
7558
|
grafana: "grafana";
|
|
7559
|
+
datadog: "datadog";
|
|
7560
|
+
axiom: "axiom";
|
|
7561
|
+
betterstack: "betterstack";
|
|
6147
7562
|
}>;
|
|
6148
7563
|
featureFlags: z.ZodEnum<{
|
|
6149
7564
|
none: "none";
|
|
@@ -6170,6 +7585,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6170
7585
|
none: "none";
|
|
6171
7586
|
"upstash-redis": "upstash-redis";
|
|
6172
7587
|
}>;
|
|
7588
|
+
rateLimit: z.ZodEnum<{
|
|
7589
|
+
none: "none";
|
|
7590
|
+
arcjet: "arcjet";
|
|
7591
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
7592
|
+
}>;
|
|
6173
7593
|
i18n: z.ZodEnum<{
|
|
6174
7594
|
none: "none";
|
|
6175
7595
|
i18next: "i18next";
|
|
@@ -6195,9 +7615,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6195
7615
|
}>;
|
|
6196
7616
|
mobileUI: z.ZodEnum<{
|
|
6197
7617
|
none: "none";
|
|
7618
|
+
uniwind: "uniwind";
|
|
6198
7619
|
tamagui: "tamagui";
|
|
6199
7620
|
"gluestack-ui": "gluestack-ui";
|
|
6200
|
-
uniwind: "uniwind";
|
|
6201
7621
|
unistyles: "unistyles";
|
|
6202
7622
|
}>;
|
|
6203
7623
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6287,6 +7707,24 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6287
7707
|
rustAuth: z.ZodEnum<{
|
|
6288
7708
|
none: "none";
|
|
6289
7709
|
oauth2: "oauth2";
|
|
7710
|
+
torii: "torii";
|
|
7711
|
+
}>;
|
|
7712
|
+
rustRealtime: z.ZodEnum<{
|
|
7713
|
+
none: "none";
|
|
7714
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
7715
|
+
}>;
|
|
7716
|
+
rustMessageQueue: z.ZodEnum<{
|
|
7717
|
+
none: "none";
|
|
7718
|
+
lapin: "lapin";
|
|
7719
|
+
}>;
|
|
7720
|
+
rustObservability: z.ZodEnum<{
|
|
7721
|
+
none: "none";
|
|
7722
|
+
opentelemetry: "opentelemetry";
|
|
7723
|
+
}>;
|
|
7724
|
+
rustTemplating: z.ZodEnum<{
|
|
7725
|
+
none: "none";
|
|
7726
|
+
askama: "askama";
|
|
7727
|
+
tera: "tera";
|
|
6290
7728
|
}>;
|
|
6291
7729
|
pythonWebFramework: z.ZodEnum<{
|
|
6292
7730
|
none: "none";
|
|
@@ -6294,12 +7732,14 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6294
7732
|
django: "django";
|
|
6295
7733
|
flask: "flask";
|
|
6296
7734
|
litestar: "litestar";
|
|
7735
|
+
starlette: "starlette";
|
|
6297
7736
|
}>;
|
|
6298
7737
|
pythonOrm: z.ZodEnum<{
|
|
6299
7738
|
none: "none";
|
|
6300
7739
|
sqlalchemy: "sqlalchemy";
|
|
6301
7740
|
sqlmodel: "sqlmodel";
|
|
6302
7741
|
"tortoise-orm": "tortoise-orm";
|
|
7742
|
+
peewee: "peewee";
|
|
6303
7743
|
}>;
|
|
6304
7744
|
pythonValidation: z.ZodEnum<{
|
|
6305
7745
|
none: "none";
|
|
@@ -6308,17 +7748,21 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6308
7748
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
6309
7749
|
none: "none";
|
|
6310
7750
|
langgraph: "langgraph";
|
|
7751
|
+
"google-adk": "google-adk";
|
|
6311
7752
|
langchain: "langchain";
|
|
6312
7753
|
llamaindex: "llamaindex";
|
|
6313
7754
|
"openai-sdk": "openai-sdk";
|
|
6314
7755
|
"anthropic-sdk": "anthropic-sdk";
|
|
6315
7756
|
crewai: "crewai";
|
|
6316
7757
|
haystack: "haystack";
|
|
7758
|
+
"pydantic-ai": "pydantic-ai";
|
|
7759
|
+
smolagents: "smolagents";
|
|
6317
7760
|
}>>;
|
|
6318
7761
|
pythonAuth: z.ZodEnum<{
|
|
6319
7762
|
none: "none";
|
|
6320
7763
|
authlib: "authlib";
|
|
6321
7764
|
jwt: "jwt";
|
|
7765
|
+
"fastapi-users": "fastapi-users";
|
|
6322
7766
|
}>;
|
|
6323
7767
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
6324
7768
|
none: "none";
|
|
@@ -6331,6 +7775,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6331
7775
|
rq: "rq";
|
|
6332
7776
|
dramatiq: "dramatiq";
|
|
6333
7777
|
huey: "huey";
|
|
7778
|
+
taskiq: "taskiq";
|
|
6334
7779
|
}>;
|
|
6335
7780
|
pythonGraphql: z.ZodEnum<{
|
|
6336
7781
|
none: "none";
|
|
@@ -6343,6 +7788,31 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6343
7788
|
mypy: "mypy";
|
|
6344
7789
|
pyright: "pyright";
|
|
6345
7790
|
}>;
|
|
7791
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
7792
|
+
none: "none";
|
|
7793
|
+
pytest: "pytest";
|
|
7794
|
+
hypothesis: "hypothesis";
|
|
7795
|
+
}>>;
|
|
7796
|
+
pythonCaching: z.ZodEnum<{
|
|
7797
|
+
none: "none";
|
|
7798
|
+
redis: "redis";
|
|
7799
|
+
aiocache: "aiocache";
|
|
7800
|
+
}>;
|
|
7801
|
+
pythonRealtime: z.ZodEnum<{
|
|
7802
|
+
none: "none";
|
|
7803
|
+
"python-socketio": "python-socketio";
|
|
7804
|
+
websockets: "websockets";
|
|
7805
|
+
}>;
|
|
7806
|
+
pythonObservability: z.ZodEnum<{
|
|
7807
|
+
none: "none";
|
|
7808
|
+
opentelemetry: "opentelemetry";
|
|
7809
|
+
}>;
|
|
7810
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
7811
|
+
none: "none";
|
|
7812
|
+
typer: "typer";
|
|
7813
|
+
click: "click";
|
|
7814
|
+
rich: "rich";
|
|
7815
|
+
}>>;
|
|
6346
7816
|
goWebFramework: z.ZodEnum<{
|
|
6347
7817
|
none: "none";
|
|
6348
7818
|
gin: "gin";
|
|
@@ -6351,14 +7821,15 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6351
7821
|
chi: "chi";
|
|
6352
7822
|
}>;
|
|
6353
7823
|
goOrm: z.ZodEnum<{
|
|
6354
|
-
gorm: "gorm";
|
|
6355
7824
|
none: "none";
|
|
7825
|
+
gorm: "gorm";
|
|
6356
7826
|
sqlc: "sqlc";
|
|
6357
7827
|
ent: "ent";
|
|
6358
7828
|
}>;
|
|
6359
7829
|
goApi: z.ZodEnum<{
|
|
6360
7830
|
none: "none";
|
|
6361
7831
|
"grpc-go": "grpc-go";
|
|
7832
|
+
gqlgen: "gqlgen";
|
|
6362
7833
|
}>;
|
|
6363
7834
|
goCli: z.ZodEnum<{
|
|
6364
7835
|
none: "none";
|
|
@@ -6377,6 +7848,36 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6377
7848
|
none: "none";
|
|
6378
7849
|
jwt: "jwt";
|
|
6379
7850
|
casbin: "casbin";
|
|
7851
|
+
goth: "goth";
|
|
7852
|
+
}>;
|
|
7853
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
7854
|
+
none: "none";
|
|
7855
|
+
testify: "testify";
|
|
7856
|
+
gomock: "gomock";
|
|
7857
|
+
}>>;
|
|
7858
|
+
goRealtime: z.ZodEnum<{
|
|
7859
|
+
none: "none";
|
|
7860
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
7861
|
+
centrifuge: "centrifuge";
|
|
7862
|
+
}>;
|
|
7863
|
+
goMessageQueue: z.ZodEnum<{
|
|
7864
|
+
none: "none";
|
|
7865
|
+
nats: "nats";
|
|
7866
|
+
watermill: "watermill";
|
|
7867
|
+
}>;
|
|
7868
|
+
goCaching: z.ZodEnum<{
|
|
7869
|
+
none: "none";
|
|
7870
|
+
redis: "redis";
|
|
7871
|
+
ristretto: "ristretto";
|
|
7872
|
+
}>;
|
|
7873
|
+
goConfig: z.ZodEnum<{
|
|
7874
|
+
none: "none";
|
|
7875
|
+
viper: "viper";
|
|
7876
|
+
koanf: "koanf";
|
|
7877
|
+
}>;
|
|
7878
|
+
goObservability: z.ZodEnum<{
|
|
7879
|
+
none: "none";
|
|
7880
|
+
opentelemetry: "opentelemetry";
|
|
6380
7881
|
}>;
|
|
6381
7882
|
javaWebFramework: z.ZodEnum<{
|
|
6382
7883
|
none: "none";
|
|
@@ -6391,10 +7892,21 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6391
7892
|
javaOrm: z.ZodEnum<{
|
|
6392
7893
|
none: "none";
|
|
6393
7894
|
"spring-data-jpa": "spring-data-jpa";
|
|
7895
|
+
jooq: "jooq";
|
|
7896
|
+
mybatis: "mybatis";
|
|
6394
7897
|
}>;
|
|
6395
7898
|
javaAuth: z.ZodEnum<{
|
|
6396
7899
|
none: "none";
|
|
6397
7900
|
"spring-security": "spring-security";
|
|
7901
|
+
keycloak: "keycloak";
|
|
7902
|
+
}>;
|
|
7903
|
+
javaApi: z.ZodEnum<{
|
|
7904
|
+
none: "none";
|
|
7905
|
+
"spring-graphql": "spring-graphql";
|
|
7906
|
+
}>;
|
|
7907
|
+
javaLogging: z.ZodEnum<{
|
|
7908
|
+
none: "none";
|
|
7909
|
+
logback: "logback";
|
|
6398
7910
|
}>;
|
|
6399
7911
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
6400
7912
|
none: "none";
|
|
@@ -6414,6 +7926,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6414
7926
|
"spring-devtools": "spring-devtools";
|
|
6415
7927
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
6416
7928
|
thymeleaf: "thymeleaf";
|
|
7929
|
+
"spring-amqp": "spring-amqp";
|
|
7930
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
6417
7931
|
}>>;
|
|
6418
7932
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
6419
7933
|
none: "none";
|
|
@@ -6427,6 +7941,70 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6427
7941
|
archunit: "archunit";
|
|
6428
7942
|
jqwik: "jqwik";
|
|
6429
7943
|
}>>;
|
|
7944
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
7945
|
+
none: "none";
|
|
7946
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
7947
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
7948
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
7949
|
+
}>;
|
|
7950
|
+
dotnetOrm: z.ZodEnum<{
|
|
7951
|
+
none: "none";
|
|
7952
|
+
"ef-core": "ef-core";
|
|
7953
|
+
dapper: "dapper";
|
|
7954
|
+
linq2db: "linq2db";
|
|
7955
|
+
}>;
|
|
7956
|
+
dotnetAuth: z.ZodEnum<{
|
|
7957
|
+
none: "none";
|
|
7958
|
+
"aspnet-identity": "aspnet-identity";
|
|
7959
|
+
"duende-identityserver": "duende-identityserver";
|
|
7960
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
7961
|
+
}>;
|
|
7962
|
+
dotnetApi: z.ZodEnum<{
|
|
7963
|
+
none: "none";
|
|
7964
|
+
"minimal-api": "minimal-api";
|
|
7965
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
7966
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
7967
|
+
}>;
|
|
7968
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
7969
|
+
none: "none";
|
|
7970
|
+
xunit: "xunit";
|
|
7971
|
+
nunit: "nunit";
|
|
7972
|
+
moq: "moq";
|
|
7973
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
7974
|
+
}>>;
|
|
7975
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
7976
|
+
none: "none";
|
|
7977
|
+
hangfire: "hangfire";
|
|
7978
|
+
"quartz-net": "quartz-net";
|
|
7979
|
+
"hosted-services": "hosted-services";
|
|
7980
|
+
}>;
|
|
7981
|
+
dotnetRealtime: z.ZodEnum<{
|
|
7982
|
+
none: "none";
|
|
7983
|
+
signalr: "signalr";
|
|
7984
|
+
}>;
|
|
7985
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
7986
|
+
none: "none";
|
|
7987
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
7988
|
+
serilog: "serilog";
|
|
7989
|
+
nlog: "nlog";
|
|
7990
|
+
"health-checks": "health-checks";
|
|
7991
|
+
}>>;
|
|
7992
|
+
dotnetValidation: z.ZodEnum<{
|
|
7993
|
+
none: "none";
|
|
7994
|
+
fluentvalidation: "fluentvalidation";
|
|
7995
|
+
"data-annotations": "data-annotations";
|
|
7996
|
+
}>;
|
|
7997
|
+
dotnetCaching: z.ZodEnum<{
|
|
7998
|
+
none: "none";
|
|
7999
|
+
redis: "redis";
|
|
8000
|
+
"memory-cache": "memory-cache";
|
|
8001
|
+
}>;
|
|
8002
|
+
dotnetDeploy: z.ZodEnum<{
|
|
8003
|
+
none: "none";
|
|
8004
|
+
docker: "docker";
|
|
8005
|
+
azure: "azure";
|
|
8006
|
+
aws: "aws";
|
|
8007
|
+
}>;
|
|
6430
8008
|
elixirWebFramework: z.ZodEnum<{
|
|
6431
8009
|
none: "none";
|
|
6432
8010
|
phoenix: "phoenix";
|
|
@@ -6447,6 +8025,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6447
8025
|
none: "none";
|
|
6448
8026
|
rest: "rest";
|
|
6449
8027
|
absinthe: "absinthe";
|
|
8028
|
+
grpc: "grpc";
|
|
6450
8029
|
}>;
|
|
6451
8030
|
elixirRealtime: z.ZodEnum<{
|
|
6452
8031
|
none: "none";
|
|
@@ -6509,6 +8088,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6509
8088
|
gigalixir: "gigalixir";
|
|
6510
8089
|
"mix-release": "mix-release";
|
|
6511
8090
|
}>;
|
|
8091
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
8092
|
+
none: "none";
|
|
8093
|
+
nx: "nx";
|
|
8094
|
+
broadway: "broadway";
|
|
8095
|
+
}>>;
|
|
6512
8096
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
6513
8097
|
none: "none";
|
|
6514
8098
|
"claude-md": "claude-md";
|
|
@@ -6518,37 +8102,55 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6518
8102
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
8103
|
id: z.ZodString;
|
|
6520
8104
|
role: z.ZodEnum<{
|
|
6521
|
-
|
|
6522
|
-
backend: "backend";
|
|
8105
|
+
ai: "ai";
|
|
6523
8106
|
database: "database";
|
|
6524
8107
|
orm: "orm";
|
|
6525
8108
|
auth: "auth";
|
|
6526
8109
|
payments: "payments";
|
|
8110
|
+
frontend: "frontend";
|
|
8111
|
+
examples: "examples";
|
|
8112
|
+
dbSetup: "dbSetup";
|
|
8113
|
+
backend: "backend";
|
|
8114
|
+
runtime: "runtime";
|
|
8115
|
+
api: "api";
|
|
8116
|
+
effect: "effect";
|
|
8117
|
+
stateManagement: "stateManagement";
|
|
8118
|
+
forms: "forms";
|
|
8119
|
+
testing: "testing";
|
|
6527
8120
|
email: "email";
|
|
8121
|
+
validation: "validation";
|
|
8122
|
+
realtime: "realtime";
|
|
8123
|
+
jobQueue: "jobQueue";
|
|
8124
|
+
animation: "animation";
|
|
8125
|
+
fileUpload: "fileUpload";
|
|
6528
8126
|
logging: "logging";
|
|
6529
8127
|
observability: "observability";
|
|
6530
8128
|
featureFlags: "featureFlags";
|
|
6531
8129
|
analytics: "analytics";
|
|
6532
|
-
stateManagement: "stateManagement";
|
|
6533
|
-
forms: "forms";
|
|
6534
|
-
validation: "validation";
|
|
6535
|
-
testing: "testing";
|
|
6536
|
-
jobQueue: "jobQueue";
|
|
6537
|
-
caching: "caching";
|
|
6538
8130
|
cms: "cms";
|
|
8131
|
+
caching: "caching";
|
|
8132
|
+
rateLimit: "rateLimit";
|
|
6539
8133
|
i18n: "i18n";
|
|
6540
8134
|
search: "search";
|
|
6541
8135
|
fileStorage: "fileStorage";
|
|
6542
|
-
|
|
6543
|
-
documentation: "documentation";
|
|
6544
|
-
api: "api";
|
|
6545
|
-
ai: "ai";
|
|
6546
|
-
css: "css";
|
|
6547
|
-
ui: "ui";
|
|
6548
|
-
frontend: "frontend";
|
|
8136
|
+
config: "config";
|
|
6549
8137
|
mobile: "mobile";
|
|
6550
8138
|
deploy: "deploy";
|
|
8139
|
+
navigation: "navigation";
|
|
8140
|
+
ui: "ui";
|
|
8141
|
+
css: "css";
|
|
8142
|
+
storage: "storage";
|
|
8143
|
+
documentation: "documentation";
|
|
8144
|
+
codeQuality: "codeQuality";
|
|
6551
8145
|
appPlatform: "appPlatform";
|
|
8146
|
+
dataFetching: "dataFetching";
|
|
8147
|
+
workspaceTooling: "workspaceTooling";
|
|
8148
|
+
buildTool: "buildTool";
|
|
8149
|
+
cli: "cli";
|
|
8150
|
+
errorHandling: "errorHandling";
|
|
8151
|
+
httpClient: "httpClient";
|
|
8152
|
+
libraries: "libraries";
|
|
8153
|
+
templating: "templating";
|
|
6552
8154
|
}>;
|
|
6553
8155
|
toolId: z.ZodString;
|
|
6554
8156
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -6559,6 +8161,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6559
8161
|
go: "go";
|
|
6560
8162
|
java: "java";
|
|
6561
8163
|
elixir: "elixir";
|
|
8164
|
+
dotnet: "dotnet";
|
|
6562
8165
|
}>, z.ZodLiteral<"universal">]>;
|
|
6563
8166
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6564
8167
|
source: z.ZodEnum<{
|
|
@@ -6587,6 +8190,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6587
8190
|
go: "go";
|
|
6588
8191
|
java: "java";
|
|
6589
8192
|
elixir: "elixir";
|
|
8193
|
+
dotnet: "dotnet";
|
|
6590
8194
|
}>;
|
|
6591
8195
|
database: z.ZodEnum<{
|
|
6592
8196
|
none: "none";
|
|
@@ -6660,6 +8264,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6660
8264
|
mcp: "mcp";
|
|
6661
8265
|
skills: "skills";
|
|
6662
8266
|
turborepo: "turborepo";
|
|
8267
|
+
nx: "nx";
|
|
6663
8268
|
fumadocs: "fumadocs";
|
|
6664
8269
|
ultracite: "ultracite";
|
|
6665
8270
|
oxlint: "oxlint";
|
|
@@ -6673,23 +8278,27 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6673
8278
|
"tanstack-virtual": "tanstack-virtual";
|
|
6674
8279
|
"tanstack-db": "tanstack-db";
|
|
6675
8280
|
"tanstack-pacer": "tanstack-pacer";
|
|
8281
|
+
"backend-utils": "backend-utils";
|
|
6676
8282
|
"docker-compose": "docker-compose";
|
|
6677
8283
|
}>>;
|
|
6678
8284
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6679
|
-
ai: "ai";
|
|
6680
8285
|
none: "none";
|
|
8286
|
+
ai: "ai";
|
|
6681
8287
|
"chat-sdk": "chat-sdk";
|
|
6682
8288
|
"tanstack-showcase": "tanstack-showcase";
|
|
6683
8289
|
}>>;
|
|
6684
8290
|
auth: z.ZodEnum<{
|
|
6685
8291
|
none: "none";
|
|
6686
8292
|
"better-auth": "better-auth";
|
|
8293
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
6687
8294
|
"go-better-auth": "go-better-auth";
|
|
6688
8295
|
clerk: "clerk";
|
|
6689
8296
|
nextauth: "nextauth";
|
|
6690
8297
|
"stack-auth": "stack-auth";
|
|
6691
8298
|
"supabase-auth": "supabase-auth";
|
|
6692
8299
|
auth0: "auth0";
|
|
8300
|
+
workos: "workos";
|
|
8301
|
+
kinde: "kinde";
|
|
6693
8302
|
}>;
|
|
6694
8303
|
payments: z.ZodEnum<{
|
|
6695
8304
|
none: "none";
|
|
@@ -6731,6 +8340,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6731
8340
|
"ts-rest": "ts-rest";
|
|
6732
8341
|
garph: "garph";
|
|
6733
8342
|
"graphql-yoga": "graphql-yoga";
|
|
8343
|
+
openapi: "openapi";
|
|
6734
8344
|
}>;
|
|
6735
8345
|
webDeploy: z.ZodEnum<{
|
|
6736
8346
|
none: "none";
|
|
@@ -6738,6 +8348,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6738
8348
|
cloudflare: "cloudflare";
|
|
6739
8349
|
fly: "fly";
|
|
6740
8350
|
railway: "railway";
|
|
8351
|
+
render: "render";
|
|
8352
|
+
netlify: "netlify";
|
|
6741
8353
|
sst: "sst";
|
|
6742
8354
|
vercel: "vercel";
|
|
6743
8355
|
}>;
|
|
@@ -6747,6 +8359,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6747
8359
|
cloudflare: "cloudflare";
|
|
6748
8360
|
fly: "fly";
|
|
6749
8361
|
railway: "railway";
|
|
8362
|
+
render: "render";
|
|
8363
|
+
netlify: "netlify";
|
|
6750
8364
|
sst: "sst";
|
|
6751
8365
|
vercel: "vercel";
|
|
6752
8366
|
}>;
|
|
@@ -6772,8 +8386,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6772
8386
|
"ai-cli": "ai-cli";
|
|
6773
8387
|
}>;
|
|
6774
8388
|
effect: z.ZodEnum<{
|
|
6775
|
-
effect: "effect";
|
|
6776
8389
|
none: "none";
|
|
8390
|
+
effect: "effect";
|
|
6777
8391
|
"effect-full": "effect-full";
|
|
6778
8392
|
}>;
|
|
6779
8393
|
stateManagement: z.ZodEnum<{
|
|
@@ -6824,7 +8438,6 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6824
8438
|
"postcss-only": "postcss-only";
|
|
6825
8439
|
}>;
|
|
6826
8440
|
uiLibrary: z.ZodEnum<{
|
|
6827
|
-
mui: "mui";
|
|
6828
8441
|
none: "none";
|
|
6829
8442
|
"shadcn-ui": "shadcn-ui";
|
|
6830
8443
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6835,6 +8448,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6835
8448
|
"chakra-ui": "chakra-ui";
|
|
6836
8449
|
nextui: "nextui";
|
|
6837
8450
|
mantine: "mantine";
|
|
8451
|
+
mui: "mui";
|
|
6838
8452
|
antd: "antd";
|
|
6839
8453
|
"base-ui": "base-ui";
|
|
6840
8454
|
"ark-ui": "ark-ui";
|
|
@@ -6963,6 +8577,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6963
8577
|
opentelemetry: "opentelemetry";
|
|
6964
8578
|
sentry: "sentry";
|
|
6965
8579
|
grafana: "grafana";
|
|
8580
|
+
datadog: "datadog";
|
|
8581
|
+
axiom: "axiom";
|
|
8582
|
+
betterstack: "betterstack";
|
|
6966
8583
|
}>;
|
|
6967
8584
|
featureFlags: z.ZodEnum<{
|
|
6968
8585
|
none: "none";
|
|
@@ -6989,6 +8606,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6989
8606
|
none: "none";
|
|
6990
8607
|
"upstash-redis": "upstash-redis";
|
|
6991
8608
|
}>;
|
|
8609
|
+
rateLimit: z.ZodEnum<{
|
|
8610
|
+
none: "none";
|
|
8611
|
+
arcjet: "arcjet";
|
|
8612
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
8613
|
+
}>;
|
|
6992
8614
|
i18n: z.ZodEnum<{
|
|
6993
8615
|
none: "none";
|
|
6994
8616
|
i18next: "i18next";
|
|
@@ -7014,9 +8636,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7014
8636
|
}>;
|
|
7015
8637
|
mobileUI: z.ZodEnum<{
|
|
7016
8638
|
none: "none";
|
|
8639
|
+
uniwind: "uniwind";
|
|
7017
8640
|
tamagui: "tamagui";
|
|
7018
8641
|
"gluestack-ui": "gluestack-ui";
|
|
7019
|
-
uniwind: "uniwind";
|
|
7020
8642
|
unistyles: "unistyles";
|
|
7021
8643
|
}>;
|
|
7022
8644
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7106,6 +8728,24 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7106
8728
|
rustAuth: z.ZodEnum<{
|
|
7107
8729
|
none: "none";
|
|
7108
8730
|
oauth2: "oauth2";
|
|
8731
|
+
torii: "torii";
|
|
8732
|
+
}>;
|
|
8733
|
+
rustRealtime: z.ZodEnum<{
|
|
8734
|
+
none: "none";
|
|
8735
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
8736
|
+
}>;
|
|
8737
|
+
rustMessageQueue: z.ZodEnum<{
|
|
8738
|
+
none: "none";
|
|
8739
|
+
lapin: "lapin";
|
|
8740
|
+
}>;
|
|
8741
|
+
rustObservability: z.ZodEnum<{
|
|
8742
|
+
none: "none";
|
|
8743
|
+
opentelemetry: "opentelemetry";
|
|
8744
|
+
}>;
|
|
8745
|
+
rustTemplating: z.ZodEnum<{
|
|
8746
|
+
none: "none";
|
|
8747
|
+
askama: "askama";
|
|
8748
|
+
tera: "tera";
|
|
7109
8749
|
}>;
|
|
7110
8750
|
pythonWebFramework: z.ZodEnum<{
|
|
7111
8751
|
none: "none";
|
|
@@ -7113,12 +8753,14 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7113
8753
|
django: "django";
|
|
7114
8754
|
flask: "flask";
|
|
7115
8755
|
litestar: "litestar";
|
|
8756
|
+
starlette: "starlette";
|
|
7116
8757
|
}>;
|
|
7117
8758
|
pythonOrm: z.ZodEnum<{
|
|
7118
8759
|
none: "none";
|
|
7119
8760
|
sqlalchemy: "sqlalchemy";
|
|
7120
8761
|
sqlmodel: "sqlmodel";
|
|
7121
8762
|
"tortoise-orm": "tortoise-orm";
|
|
8763
|
+
peewee: "peewee";
|
|
7122
8764
|
}>;
|
|
7123
8765
|
pythonValidation: z.ZodEnum<{
|
|
7124
8766
|
none: "none";
|
|
@@ -7127,17 +8769,21 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7127
8769
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
7128
8770
|
none: "none";
|
|
7129
8771
|
langgraph: "langgraph";
|
|
8772
|
+
"google-adk": "google-adk";
|
|
7130
8773
|
langchain: "langchain";
|
|
7131
8774
|
llamaindex: "llamaindex";
|
|
7132
8775
|
"openai-sdk": "openai-sdk";
|
|
7133
8776
|
"anthropic-sdk": "anthropic-sdk";
|
|
7134
8777
|
crewai: "crewai";
|
|
7135
8778
|
haystack: "haystack";
|
|
8779
|
+
"pydantic-ai": "pydantic-ai";
|
|
8780
|
+
smolagents: "smolagents";
|
|
7136
8781
|
}>>;
|
|
7137
8782
|
pythonAuth: z.ZodEnum<{
|
|
7138
8783
|
none: "none";
|
|
7139
8784
|
authlib: "authlib";
|
|
7140
8785
|
jwt: "jwt";
|
|
8786
|
+
"fastapi-users": "fastapi-users";
|
|
7141
8787
|
}>;
|
|
7142
8788
|
pythonApi: z.ZodEnum<{
|
|
7143
8789
|
none: "none";
|
|
@@ -7150,6 +8796,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7150
8796
|
rq: "rq";
|
|
7151
8797
|
dramatiq: "dramatiq";
|
|
7152
8798
|
huey: "huey";
|
|
8799
|
+
taskiq: "taskiq";
|
|
7153
8800
|
}>;
|
|
7154
8801
|
pythonGraphql: z.ZodEnum<{
|
|
7155
8802
|
none: "none";
|
|
@@ -7162,6 +8809,31 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7162
8809
|
mypy: "mypy";
|
|
7163
8810
|
pyright: "pyright";
|
|
7164
8811
|
}>;
|
|
8812
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
8813
|
+
none: "none";
|
|
8814
|
+
pytest: "pytest";
|
|
8815
|
+
hypothesis: "hypothesis";
|
|
8816
|
+
}>>;
|
|
8817
|
+
pythonCaching: z.ZodEnum<{
|
|
8818
|
+
none: "none";
|
|
8819
|
+
redis: "redis";
|
|
8820
|
+
aiocache: "aiocache";
|
|
8821
|
+
}>;
|
|
8822
|
+
pythonRealtime: z.ZodEnum<{
|
|
8823
|
+
none: "none";
|
|
8824
|
+
"python-socketio": "python-socketio";
|
|
8825
|
+
websockets: "websockets";
|
|
8826
|
+
}>;
|
|
8827
|
+
pythonObservability: z.ZodEnum<{
|
|
8828
|
+
none: "none";
|
|
8829
|
+
opentelemetry: "opentelemetry";
|
|
8830
|
+
}>;
|
|
8831
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
8832
|
+
none: "none";
|
|
8833
|
+
typer: "typer";
|
|
8834
|
+
click: "click";
|
|
8835
|
+
rich: "rich";
|
|
8836
|
+
}>>;
|
|
7165
8837
|
goWebFramework: z.ZodEnum<{
|
|
7166
8838
|
none: "none";
|
|
7167
8839
|
gin: "gin";
|
|
@@ -7170,14 +8842,15 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7170
8842
|
chi: "chi";
|
|
7171
8843
|
}>;
|
|
7172
8844
|
goOrm: z.ZodEnum<{
|
|
7173
|
-
gorm: "gorm";
|
|
7174
8845
|
none: "none";
|
|
8846
|
+
gorm: "gorm";
|
|
7175
8847
|
sqlc: "sqlc";
|
|
7176
8848
|
ent: "ent";
|
|
7177
8849
|
}>;
|
|
7178
8850
|
goApi: z.ZodEnum<{
|
|
7179
8851
|
none: "none";
|
|
7180
8852
|
"grpc-go": "grpc-go";
|
|
8853
|
+
gqlgen: "gqlgen";
|
|
7181
8854
|
}>;
|
|
7182
8855
|
goCli: z.ZodEnum<{
|
|
7183
8856
|
none: "none";
|
|
@@ -7196,6 +8869,36 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7196
8869
|
none: "none";
|
|
7197
8870
|
jwt: "jwt";
|
|
7198
8871
|
casbin: "casbin";
|
|
8872
|
+
goth: "goth";
|
|
8873
|
+
}>;
|
|
8874
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
8875
|
+
none: "none";
|
|
8876
|
+
testify: "testify";
|
|
8877
|
+
gomock: "gomock";
|
|
8878
|
+
}>>;
|
|
8879
|
+
goRealtime: z.ZodEnum<{
|
|
8880
|
+
none: "none";
|
|
8881
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
8882
|
+
centrifuge: "centrifuge";
|
|
8883
|
+
}>;
|
|
8884
|
+
goMessageQueue: z.ZodEnum<{
|
|
8885
|
+
none: "none";
|
|
8886
|
+
nats: "nats";
|
|
8887
|
+
watermill: "watermill";
|
|
8888
|
+
}>;
|
|
8889
|
+
goCaching: z.ZodEnum<{
|
|
8890
|
+
none: "none";
|
|
8891
|
+
redis: "redis";
|
|
8892
|
+
ristretto: "ristretto";
|
|
8893
|
+
}>;
|
|
8894
|
+
goConfig: z.ZodEnum<{
|
|
8895
|
+
none: "none";
|
|
8896
|
+
viper: "viper";
|
|
8897
|
+
koanf: "koanf";
|
|
8898
|
+
}>;
|
|
8899
|
+
goObservability: z.ZodEnum<{
|
|
8900
|
+
none: "none";
|
|
8901
|
+
opentelemetry: "opentelemetry";
|
|
7199
8902
|
}>;
|
|
7200
8903
|
javaWebFramework: z.ZodEnum<{
|
|
7201
8904
|
none: "none";
|
|
@@ -7210,10 +8913,21 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7210
8913
|
javaOrm: z.ZodEnum<{
|
|
7211
8914
|
none: "none";
|
|
7212
8915
|
"spring-data-jpa": "spring-data-jpa";
|
|
8916
|
+
jooq: "jooq";
|
|
8917
|
+
mybatis: "mybatis";
|
|
7213
8918
|
}>;
|
|
7214
8919
|
javaAuth: z.ZodEnum<{
|
|
7215
8920
|
none: "none";
|
|
7216
8921
|
"spring-security": "spring-security";
|
|
8922
|
+
keycloak: "keycloak";
|
|
8923
|
+
}>;
|
|
8924
|
+
javaApi: z.ZodEnum<{
|
|
8925
|
+
none: "none";
|
|
8926
|
+
"spring-graphql": "spring-graphql";
|
|
8927
|
+
}>;
|
|
8928
|
+
javaLogging: z.ZodEnum<{
|
|
8929
|
+
none: "none";
|
|
8930
|
+
logback: "logback";
|
|
7217
8931
|
}>;
|
|
7218
8932
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7219
8933
|
none: "none";
|
|
@@ -7233,6 +8947,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7233
8947
|
"spring-devtools": "spring-devtools";
|
|
7234
8948
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
7235
8949
|
thymeleaf: "thymeleaf";
|
|
8950
|
+
"spring-amqp": "spring-amqp";
|
|
8951
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
7236
8952
|
}>>;
|
|
7237
8953
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
7238
8954
|
none: "none";
|
|
@@ -7246,6 +8962,70 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7246
8962
|
archunit: "archunit";
|
|
7247
8963
|
jqwik: "jqwik";
|
|
7248
8964
|
}>>;
|
|
8965
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
8966
|
+
none: "none";
|
|
8967
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
8968
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
8969
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
8970
|
+
}>;
|
|
8971
|
+
dotnetOrm: z.ZodEnum<{
|
|
8972
|
+
none: "none";
|
|
8973
|
+
"ef-core": "ef-core";
|
|
8974
|
+
dapper: "dapper";
|
|
8975
|
+
linq2db: "linq2db";
|
|
8976
|
+
}>;
|
|
8977
|
+
dotnetAuth: z.ZodEnum<{
|
|
8978
|
+
none: "none";
|
|
8979
|
+
"aspnet-identity": "aspnet-identity";
|
|
8980
|
+
"duende-identityserver": "duende-identityserver";
|
|
8981
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
8982
|
+
}>;
|
|
8983
|
+
dotnetApi: z.ZodEnum<{
|
|
8984
|
+
none: "none";
|
|
8985
|
+
"minimal-api": "minimal-api";
|
|
8986
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
8987
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
8988
|
+
}>;
|
|
8989
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
8990
|
+
none: "none";
|
|
8991
|
+
xunit: "xunit";
|
|
8992
|
+
nunit: "nunit";
|
|
8993
|
+
moq: "moq";
|
|
8994
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
8995
|
+
}>>;
|
|
8996
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
8997
|
+
none: "none";
|
|
8998
|
+
hangfire: "hangfire";
|
|
8999
|
+
"quartz-net": "quartz-net";
|
|
9000
|
+
"hosted-services": "hosted-services";
|
|
9001
|
+
}>;
|
|
9002
|
+
dotnetRealtime: z.ZodEnum<{
|
|
9003
|
+
none: "none";
|
|
9004
|
+
signalr: "signalr";
|
|
9005
|
+
}>;
|
|
9006
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
9007
|
+
none: "none";
|
|
9008
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
9009
|
+
serilog: "serilog";
|
|
9010
|
+
nlog: "nlog";
|
|
9011
|
+
"health-checks": "health-checks";
|
|
9012
|
+
}>>;
|
|
9013
|
+
dotnetValidation: z.ZodEnum<{
|
|
9014
|
+
none: "none";
|
|
9015
|
+
fluentvalidation: "fluentvalidation";
|
|
9016
|
+
"data-annotations": "data-annotations";
|
|
9017
|
+
}>;
|
|
9018
|
+
dotnetCaching: z.ZodEnum<{
|
|
9019
|
+
none: "none";
|
|
9020
|
+
redis: "redis";
|
|
9021
|
+
"memory-cache": "memory-cache";
|
|
9022
|
+
}>;
|
|
9023
|
+
dotnetDeploy: z.ZodEnum<{
|
|
9024
|
+
none: "none";
|
|
9025
|
+
docker: "docker";
|
|
9026
|
+
azure: "azure";
|
|
9027
|
+
aws: "aws";
|
|
9028
|
+
}>;
|
|
7249
9029
|
elixirWebFramework: z.ZodEnum<{
|
|
7250
9030
|
none: "none";
|
|
7251
9031
|
phoenix: "phoenix";
|
|
@@ -7266,6 +9046,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7266
9046
|
none: "none";
|
|
7267
9047
|
rest: "rest";
|
|
7268
9048
|
absinthe: "absinthe";
|
|
9049
|
+
grpc: "grpc";
|
|
7269
9050
|
}>;
|
|
7270
9051
|
elixirRealtime: z.ZodEnum<{
|
|
7271
9052
|
none: "none";
|
|
@@ -7328,6 +9109,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7328
9109
|
gigalixir: "gigalixir";
|
|
7329
9110
|
"mix-release": "mix-release";
|
|
7330
9111
|
}>;
|
|
9112
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
9113
|
+
none: "none";
|
|
9114
|
+
nx: "nx";
|
|
9115
|
+
broadway: "broadway";
|
|
9116
|
+
}>>;
|
|
7331
9117
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
7332
9118
|
none: "none";
|
|
7333
9119
|
"claude-md": "claude-md";
|
|
@@ -7337,37 +9123,55 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7337
9123
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
9124
|
id: z.ZodString;
|
|
7339
9125
|
role: z.ZodEnum<{
|
|
7340
|
-
|
|
7341
|
-
backend: "backend";
|
|
9126
|
+
ai: "ai";
|
|
7342
9127
|
database: "database";
|
|
7343
9128
|
orm: "orm";
|
|
7344
9129
|
auth: "auth";
|
|
7345
9130
|
payments: "payments";
|
|
9131
|
+
frontend: "frontend";
|
|
9132
|
+
examples: "examples";
|
|
9133
|
+
dbSetup: "dbSetup";
|
|
9134
|
+
backend: "backend";
|
|
9135
|
+
runtime: "runtime";
|
|
9136
|
+
api: "api";
|
|
9137
|
+
effect: "effect";
|
|
9138
|
+
stateManagement: "stateManagement";
|
|
9139
|
+
forms: "forms";
|
|
9140
|
+
testing: "testing";
|
|
7346
9141
|
email: "email";
|
|
9142
|
+
validation: "validation";
|
|
9143
|
+
realtime: "realtime";
|
|
9144
|
+
jobQueue: "jobQueue";
|
|
9145
|
+
animation: "animation";
|
|
9146
|
+
fileUpload: "fileUpload";
|
|
7347
9147
|
logging: "logging";
|
|
7348
9148
|
observability: "observability";
|
|
7349
9149
|
featureFlags: "featureFlags";
|
|
7350
9150
|
analytics: "analytics";
|
|
7351
|
-
stateManagement: "stateManagement";
|
|
7352
|
-
forms: "forms";
|
|
7353
|
-
validation: "validation";
|
|
7354
|
-
testing: "testing";
|
|
7355
|
-
jobQueue: "jobQueue";
|
|
7356
|
-
caching: "caching";
|
|
7357
9151
|
cms: "cms";
|
|
9152
|
+
caching: "caching";
|
|
9153
|
+
rateLimit: "rateLimit";
|
|
7358
9154
|
i18n: "i18n";
|
|
7359
9155
|
search: "search";
|
|
7360
9156
|
fileStorage: "fileStorage";
|
|
7361
|
-
|
|
7362
|
-
documentation: "documentation";
|
|
7363
|
-
api: "api";
|
|
7364
|
-
ai: "ai";
|
|
7365
|
-
css: "css";
|
|
7366
|
-
ui: "ui";
|
|
7367
|
-
frontend: "frontend";
|
|
9157
|
+
config: "config";
|
|
7368
9158
|
mobile: "mobile";
|
|
7369
9159
|
deploy: "deploy";
|
|
9160
|
+
navigation: "navigation";
|
|
9161
|
+
ui: "ui";
|
|
9162
|
+
css: "css";
|
|
9163
|
+
storage: "storage";
|
|
9164
|
+
documentation: "documentation";
|
|
9165
|
+
codeQuality: "codeQuality";
|
|
7370
9166
|
appPlatform: "appPlatform";
|
|
9167
|
+
dataFetching: "dataFetching";
|
|
9168
|
+
workspaceTooling: "workspaceTooling";
|
|
9169
|
+
buildTool: "buildTool";
|
|
9170
|
+
cli: "cli";
|
|
9171
|
+
errorHandling: "errorHandling";
|
|
9172
|
+
httpClient: "httpClient";
|
|
9173
|
+
libraries: "libraries";
|
|
9174
|
+
templating: "templating";
|
|
7371
9175
|
}>;
|
|
7372
9176
|
toolId: z.ZodString;
|
|
7373
9177
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -7378,6 +9182,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7378
9182
|
go: "go";
|
|
7379
9183
|
java: "java";
|
|
7380
9184
|
elixir: "elixir";
|
|
9185
|
+
dotnet: "dotnet";
|
|
7381
9186
|
}>, z.ZodLiteral<"universal">]>;
|
|
7382
9187
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7383
9188
|
source: z.ZodEnum<{
|
|
@@ -7408,38 +9213,38 @@ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm
|
|
|
7408
9213
|
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
7409
9214
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
7410
9215
|
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
7411
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
|
|
7412
|
-
declare const EXAMPLES_VALUES: ("
|
|
9216
|
+
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" | "docker-compose")[];
|
|
9217
|
+
declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
|
|
7413
9218
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
7414
9219
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
7415
9220
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
7416
|
-
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga")[];
|
|
7417
|
-
declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
|
|
9221
|
+
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "openapi")[];
|
|
9222
|
+
declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde")[];
|
|
7418
9223
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
7419
|
-
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
7420
|
-
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
7421
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
7422
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
9224
|
+
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
9225
|
+
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
9226
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
9227
|
+
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
7423
9228
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
7424
9229
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
7425
|
-
declare const EFFECT_VALUES: ("
|
|
9230
|
+
declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
|
|
7426
9231
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
7427
9232
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
7428
9233
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
7429
9234
|
declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
|
|
7430
9235
|
declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
|
|
7431
|
-
declare const UI_LIBRARY_VALUES: ("
|
|
9236
|
+
declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
|
|
7432
9237
|
declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
|
|
7433
9238
|
declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
|
|
7434
9239
|
declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
|
|
7435
9240
|
declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
|
|
7436
9241
|
declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
|
|
7437
9242
|
declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
|
|
7438
|
-
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
|
|
9243
|
+
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
|
|
7439
9244
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
7440
9245
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
7441
9246
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
7442
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
9247
|
+
declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
|
|
7443
9248
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
7444
9249
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
7445
9250
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -7447,10 +9252,11 @@ declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
|
|
|
7447
9252
|
declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
|
|
7448
9253
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus")[];
|
|
7449
9254
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
9255
|
+
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
7450
9256
|
declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
|
|
7451
9257
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
|
|
7452
9258
|
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
|
|
7453
|
-
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir")[];
|
|
9259
|
+
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet")[];
|
|
7454
9260
|
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
7455
9261
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
7456
9262
|
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
|
|
@@ -7460,32 +9266,61 @@ declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "re
|
|
|
7460
9266
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
7461
9267
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
7462
9268
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
7463
|
-
declare const RUST_AUTH_VALUES: ("none" | "oauth2")[];
|
|
7464
|
-
declare const
|
|
7465
|
-
declare const
|
|
9269
|
+
declare const RUST_AUTH_VALUES: ("none" | "oauth2" | "torii")[];
|
|
9270
|
+
declare const RUST_REALTIME_VALUES: ("none" | "tokio-tungstenite")[];
|
|
9271
|
+
declare const RUST_MESSAGE_QUEUE_VALUES: ("none" | "lapin")[];
|
|
9272
|
+
declare const RUST_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
9273
|
+
declare const RUST_TEMPLATING_VALUES: ("none" | "askama" | "tera")[];
|
|
9274
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar" | "starlette")[];
|
|
9275
|
+
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm" | "peewee")[];
|
|
7466
9276
|
declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
|
|
7467
|
-
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai" | "haystack")[];
|
|
7468
|
-
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt")[];
|
|
9277
|
+
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai" | "haystack" | "pydantic-ai" | "smolagents")[];
|
|
9278
|
+
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt" | "fastapi-users")[];
|
|
7469
9279
|
declare const PYTHON_API_VALUES: ("none" | "django-rest-framework" | "django-ninja")[];
|
|
7470
|
-
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" | "huey")[];
|
|
9280
|
+
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" | "huey" | "taskiq")[];
|
|
7471
9281
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
7472
9282
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
9283
|
+
declare const PYTHON_TESTING_VALUES: ("none" | "pytest" | "hypothesis")[];
|
|
9284
|
+
declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
|
|
9285
|
+
declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
|
|
9286
|
+
declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
9287
|
+
declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
|
|
7473
9288
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
7474
|
-
declare const GO_ORM_VALUES: ("
|
|
7475
|
-
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
9289
|
+
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
|
|
9290
|
+
declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen")[];
|
|
7476
9291
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
7477
9292
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
7478
|
-
declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin")[];
|
|
9293
|
+
declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin" | "goth")[];
|
|
9294
|
+
declare const GO_TESTING_VALUES: ("none" | "testify" | "gomock")[];
|
|
9295
|
+
declare const GO_REALTIME_VALUES: ("none" | "gorilla-websocket" | "centrifuge")[];
|
|
9296
|
+
declare const GO_MESSAGE_QUEUE_VALUES: ("none" | "nats" | "watermill")[];
|
|
9297
|
+
declare const GO_CACHING_VALUES: ("none" | "redis" | "ristretto")[];
|
|
9298
|
+
declare const GO_CONFIG_VALUES: ("none" | "viper" | "koanf")[];
|
|
9299
|
+
declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
7479
9300
|
declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus")[];
|
|
7480
9301
|
declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
|
|
7481
|
-
declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa")[];
|
|
7482
|
-
declare const JAVA_AUTH_VALUES: ("none" | "spring-security")[];
|
|
7483
|
-
declare const
|
|
9302
|
+
declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")[];
|
|
9303
|
+
declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
|
|
9304
|
+
declare const JAVA_API_VALUES: ("none" | "spring-graphql")[];
|
|
9305
|
+
declare const JAVA_LOGGING_VALUES: ("none" | "logback")[];
|
|
9306
|
+
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")[];
|
|
7484
9307
|
declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
|
|
9308
|
+
declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
|
|
9309
|
+
declare const DOTNET_ORM_VALUES: ("none" | "ef-core" | "dapper" | "linq2db")[];
|
|
9310
|
+
declare const DOTNET_AUTH_VALUES: ("none" | "aspnet-identity" | "duende-identityserver" | "auth0-aspnet")[];
|
|
9311
|
+
declare const DOTNET_API_VALUES: ("none" | "minimal-api" | "graphql-hotchocolate" | "grpc-dotnet")[];
|
|
9312
|
+
declare const DOTNET_TESTING_VALUES: ("none" | "xunit" | "nunit" | "moq" | "testcontainers-dotnet")[];
|
|
9313
|
+
declare const DOTNET_JOB_QUEUE_VALUES: ("none" | "hangfire" | "quartz-net" | "hosted-services")[];
|
|
9314
|
+
declare const DOTNET_REALTIME_VALUES: ("none" | "signalr")[];
|
|
9315
|
+
declare const DOTNET_OBSERVABILITY_VALUES: ("none" | "opentelemetry-dotnet" | "serilog" | "nlog" | "health-checks")[];
|
|
9316
|
+
declare const DOTNET_VALIDATION_VALUES: ("none" | "fluentvalidation" | "data-annotations")[];
|
|
9317
|
+
declare const DOTNET_CACHING_VALUES: ("none" | "redis" | "memory-cache")[];
|
|
9318
|
+
declare const DOTNET_DEPLOY_VALUES: ("none" | "docker" | "azure" | "aws")[];
|
|
7485
9319
|
declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
|
|
7486
9320
|
declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
|
|
7487
9321
|
declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
|
|
7488
|
-
declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe")[];
|
|
9322
|
+
declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe" | "grpc")[];
|
|
9323
|
+
declare const ELIXIR_LIBRARIES_VALUES: ("none" | "nx" | "broadway")[];
|
|
7489
9324
|
declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
|
|
7490
9325
|
declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
|
|
7491
9326
|
declare const ELIXIR_VALIDATION_VALUES: ("none" | "ecto-changesets" | "nimble-options")[];
|
|
@@ -7506,5 +9341,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
7506
9341
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
7507
9342
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
7508
9343
|
//#endregion
|
|
7509
|
-
export {
|
|
7510
|
-
//# sourceMappingURL=schemas-
|
|
9344
|
+
export { DotnetJobQueueSchema as $, TemplateSchema as $i, MOBILE_STORAGE_VALUES as $n, RUST_CLI_VALUES as $r, FileUploadSchema as $t, CachingSchema as A, SHADCN_BASE_VALUES as Ai, JAVA_AUTH_VALUES as An, PaymentsSchema as Ar, ElixirCachingSchema as At, DOTNET_OBSERVABILITY_VALUES as B, ShadcnBaseSchema as Bi, JavaBuildToolSchema as Bn, PythonOrmSchema as Br, ElixirRealtimeSchema as Bt, BetterTStackConfigSchema as C, RustOrmSchema as Ci, GoRealtimeSchema as Cn, PYTHON_QUALITY_VALUES as Cr, ELIXIR_WEB_FRAMEWORK_VALUES as Ct, CMS_VALUES as D, SEARCH_VALUES as Di, I18nSchema as Dn, PYTHON_VALIDATION_VALUES as Dr, EffectSchema as Dt, CMSSchema as E, RustWebFrameworkSchema as Ei, I18N_VALUES as En, PYTHON_TESTING_VALUES as Er, EcosystemSchema as Et, DOTNET_API_VALUES as F, SHADCN_STYLE_VALUES as Fi, JAVA_TESTING_LIBRARIES_VALUES as Fn, PythonAuthSchema as Fr, ElixirJsonSchema as Ft, DOTNET_WEB_FRAMEWORK_VALUES as G, ShadcnStyleSchema as Gi, JavaWebFrameworkSchema as Gn, PythonValidationSchema as Gr, ExamplesSchema as Gt, DOTNET_REALTIME_VALUES as H, ShadcnFontSchema as Hi, JavaLoggingSchema as Hn, PythonRealtimeSchema as Hr, ElixirValidationSchema as Ht, DOTNET_AUTH_VALUES as I, STATE_MANAGEMENT_VALUES as Ii, JAVA_WEB_FRAMEWORK_VALUES as In, PythonCachingSchema as Ir, ElixirLibrariesSchema as It, DirectoryConflictSchema as J, StackPartSchema as Ji, LoggingSchema as Jn, REALTIME_VALUES as Jr, FILE_UPLOAD_VALUES as Jt, DatabaseSchema as K, StackPartEcosystemSchema as Ki, JobQueueSchema as Kn, PythonWebFrameworkSchema as Kr, FEATURE_FLAGS_VALUES as Kt, DOTNET_CACHING_VALUES as L, SearchSchema as Li, JOB_QUEUE_VALUES as Ln, PythonCliSchema as Lr, ElixirObservabilitySchema as Lt, DATABASE_SETUP_VALUES as M, SHADCN_FONT_VALUES as Mi, JAVA_LIBRARIES_VALUES as Mn, ProjectNameSchema as Mr, ElixirEmailSchema as Mt, DATABASE_VALUES as N, SHADCN_ICON_LIBRARY_VALUES as Ni, JAVA_LOGGING_VALUES as Nn, PythonAiSchema as Nr, ElixirHttpSchema as Nt, CSSFrameworkSchema as O, SERVER_DEPLOY_VALUES as Oi, InitResultSchema as On, PYTHON_WEB_FRAMEWORK_VALUES as Or, ElixirApiSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, SHADCN_RADIUS_VALUES as Pi, JAVA_ORM_VALUES as Pn, PythonApiSchema as Pr, ElixirJobsSchema as Pt, DotnetDeploySchema as Q, TESTING_VALUES as Qi, MOBILE_PUSH_VALUES as Qn, RUST_CACHING_VALUES as Qr, FileStorageSchema as Qt, DOTNET_DEPLOY_VALUES as R, ServerDeploySchema as Ri, JavaApiSchema as Rn, PythonGraphqlSchema as Rr, ElixirOrmSchema as Rt, BetterTStackConfigFileSchema as S, RustObservabilitySchema as Si, GoOrmSchema as Sn, PYTHON_ORM_VALUES as Sr, ELIXIR_VALIDATION_VALUES as St, CLIInputSchema as T, RustTemplatingSchema as Ti, GoWebFrameworkSchema as Tn, PYTHON_TASK_QUEUE_VALUES as Tr, EXAMPLES_VALUES as Tt, DOTNET_TESTING_VALUES as U, ShadcnIconLibrarySchema as Ui, JavaOrmSchema as Un, PythonTaskQueueSchema as Ur, ElixirWebFrameworkSchema as Ut, DOTNET_ORM_VALUES as V, ShadcnColorThemeSchema as Vi, JavaLibrariesSchema as Vn, PythonQualitySchema as Vr, ElixirTestingSchema as Vt, DOTNET_VALIDATION_VALUES as W, ShadcnRadiusSchema as Wi, JavaTestingLibrariesSchema as Wn, PythonTestingSchema as Wr, EmailSchema as Wt, DotnetAuthSchema as X, StateManagementSchema as Xi, MOBILE_NAVIGATION_VALUES as Xn, RUST_API_VALUES as Xr, FRONTEND_VALUES as Xt, DotnetApiSchema as Y, StackPartSourceSchema as Yi, MOBILE_DEEP_LINKING_VALUES as Yn, RUNTIME_VALUES as Yr, FORMS_VALUES as Yt, DotnetCachingSchema as Z, TEMPLATE_VALUES as Zi, MOBILE_OTA_VALUES as Zn, RUST_AUTH_VALUES as Zr, FeatureFlagsSchema as Zt, AuthSchema as _, RustErrorHandlingSchema as _i, GoCliSchema as _n, PYTHON_AUTH_VALUES as _r, ELIXIR_OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, ValidationSchema as aa, RUST_OBSERVABILITY_VALUES as ai, GO_CLI_VALUES as an, MobilePushSchema as ar, DotnetWebFrameworkSchema as at, BetterFullstackConfigFileSchema as b, RustLoggingSchema as bi, GoMessageQueueSchema as bn, PYTHON_GRAPHQL_VALUES as br, ELIXIR_REALTIME_VALUES as bt, API_VALUES as c, WebDeploySchema as ca, RUST_TEMPLATING_VALUES as ci, GO_MESSAGE_QUEUE_VALUES as cn, MobileUISchema as cr, ELIXIR_API_VALUES as ct, AddInputSchema as d, RealtimeSchema as di, GO_REALTIME_VALUES as dn, ORM_VALUES as dr, ELIXIR_DEPLOY_VALUES as dt, TestingSchema as ea, RUST_ERROR_HANDLING_VALUES as ei, FormsSchema as en, MOBILE_TESTING_VALUES as er, DotnetObservabilitySchema as et, AddonsSchema as f, RuntimeSchema as fi, GO_TESTING_VALUES as fn, ObservabilitySchema as fr, ELIXIR_EMAIL_VALUES as ft, AstroIntegrationSchema as g, RustCliSchema as gi, GoCachingSchema as gn, PYTHON_API_VALUES as gr, ELIXIR_LIBRARIES_VALUES as gt, AnimationSchema as h, RustCachingSchema as hi, GoAuthSchema as hn, PYTHON_AI_VALUES as hr, ELIXIR_JSON_VALUES as ht, AI_VALUES as i, VERSION_CHANNEL_VALUES as ia, RUST_MESSAGE_QUEUE_VALUES as ii, GO_CACHING_VALUES as in, MobileOTASchema as ir, DotnetValidationSchema as it, CreateInputSchema as j, SHADCN_COLOR_THEME_VALUES as ji, JAVA_BUILD_TOOL_VALUES as jn, ProjectConfigSchema as jr, ElixirDeploySchema as jt, CSS_FRAMEWORK_VALUES as k, SHADCN_BASE_COLOR_VALUES as ki, JAVA_API_VALUES as kn, PackageManagerSchema as kr, ElixirAuthSchema as kt, ASTRO_INTEGRATION_VALUES as l, RUST_WEB_FRAMEWORK_VALUES as li, GO_OBSERVABILITY_VALUES as ln, OBSERVABILITY_VALUES as lr, ELIXIR_AUTH_VALUES as lt, AnalyticsSchema as m, RustAuthSchema as mi, GoApiSchema as mn, PAYMENTS_VALUES as mr, ELIXIR_JOBS_VALUES as mt, AISchema as n, UI_LIBRARY_VALUES as na, RUST_LIBRARIES_VALUES as ni, GO_API_VALUES as nn, MobileDeepLinkingSchema as nr, DotnetRealtimeSchema as nt, ANIMATION_VALUES as o, VersionChannelSchema as oa, RUST_ORM_VALUES as oi, GO_CONFIG_VALUES as on, MobileStorageSchema as or, ECOSYSTEM_VALUES as ot, AiDocsSchema as p, RustApiSchema as pi, GO_WEB_FRAMEWORK_VALUES as pn, PACKAGE_MANAGER_VALUES as pr, ELIXIR_HTTP_VALUES as pt, DatabaseSetupSchema as q, StackPartRoleSchema as qi, LOGGING_VALUES as qn, RATE_LIMIT_VALUES as qr, FILE_STORAGE_VALUES as qt, AI_DOCS_VALUES as r, VALIDATION_VALUES as ra, RUST_LOGGING_VALUES as ri, GO_AUTH_VALUES as rn, MobileNavigationSchema as rr, DotnetTestingSchema as rt, APISchema as s, WEB_DEPLOY_VALUES as sa, RUST_REALTIME_VALUES as si, GO_LOGGING_VALUES as sn, MobileTestingSchema as sr, EFFECT_VALUES as st, ADDONS_VALUES as t, UILibrarySchema as ta, RUST_FRONTEND_VALUES as ti, FrontendSchema as tn, MOBILE_UI_VALUES as tr, DotnetOrmSchema as tt, AUTH_VALUES as u, RateLimitSchema as ui, GO_ORM_VALUES as un, ORMSchema as ur, ELIXIR_CACHING_VALUES as ut, BACKEND_VALUES as v, RustFrontendSchema as vi, GoConfigSchema as vn, PYTHON_CACHING_VALUES as vr, ELIXIR_ORM_VALUES as vt, CACHING_VALUES as w, RustRealtimeSchema as wi, GoTestingSchema as wn, PYTHON_REALTIME_VALUES as wr, EMAIL_VALUES as wt, BetterFullstackConfigSchema as x, RustMessageQueueSchema as xi, GoObservabilitySchema as xn, PYTHON_OBSERVABILITY_VALUES as xr, ELIXIR_TESTING_VALUES as xt, BackendSchema as y, RustLibrariesSchema as yi, GoLoggingSchema as yn, PYTHON_CLI_VALUES as yr, ELIXIR_QUALITY_VALUES as yt, DOTNET_JOB_QUEUE_VALUES as z, ShadcnBaseColorSchema as zi, JavaAuthSchema as zn, PythonObservabilitySchema as zr, ElixirQualitySchema as zt };
|
|
9345
|
+
//# sourceMappingURL=schemas-DVyeJ5g_.d.mts.map
|