@better-fullstack/types 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{defaults-DNmNiuxG.mjs → defaults-Cy0_ttEE.mjs} +31 -1
- package/dist/defaults-Cy0_ttEE.mjs.map +1 -0
- package/dist/{defaults-BSM_JIBn.d.mts → defaults-zyxI-U_5.d.mts} +2 -2
- package/dist/defaults-zyxI-U_5.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/json-schema.d.mts +2183 -193
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-B5EgRfVL.d.mts → schemas-BTO7jwoE.d.mts} +2048 -232
- package/dist/schemas-BTO7jwoE.d.mts.map +1 -0
- package/dist/{schemas-DnEGgQzA.mjs → schemas-D444b8s8.mjs} +321 -14
- package/dist/schemas-D444b8s8.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-_551XvrL.d.mts → stack-graph-DH1m1ONQ.d.mts} +19 -4
- package/dist/stack-graph-DH1m1ONQ.d.mts.map +1 -0
- package/dist/stack-graph-DXh8F1TL.mjs +2114 -0
- package/dist/stack-graph-DXh8F1TL.mjs.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-BcsaMRuV.mjs → stack-translation-Bb3LIDTp.mjs} +4094 -3025
- package/dist/stack-translation-Bb3LIDTp.mjs.map +1 -0
- package/dist/{stack-translation-CqslePvp.d.mts → stack-translation-LwAKaXg1.d.mts} +116 -34
- package/dist/stack-translation-LwAKaXg1.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/types-C4r4ucMM.d.mts +153 -0
- package/dist/types-C4r4ucMM.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-BSM_JIBn.d.mts.map +0 -1
- package/dist/defaults-DNmNiuxG.mjs.map +0 -1
- package/dist/schemas-B5EgRfVL.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-_551XvrL.d.mts.map +0 -1
- package/dist/stack-translation-BcsaMRuV.mjs.map +0 -1
- package/dist/stack-translation-CqslePvp.d.mts.map +0 -1
- package/dist/types-DorAmN4i.d.mts +0 -123
- package/dist/types-DorAmN4i.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
|
-
|
|
25
|
+
frontend: "frontend";
|
|
26
|
+
backend: "backend";
|
|
27
|
+
mobile: "mobile";
|
|
24
28
|
database: "database";
|
|
29
|
+
api: "api";
|
|
25
30
|
orm: "orm";
|
|
26
31
|
auth: "auth";
|
|
27
|
-
payments: "payments";
|
|
28
|
-
frontend: "frontend";
|
|
29
|
-
backend: "backend";
|
|
30
32
|
runtime: "runtime";
|
|
31
|
-
|
|
33
|
+
deploy: "deploy";
|
|
34
|
+
dbSetup: "dbSetup";
|
|
35
|
+
realtime: "realtime";
|
|
36
|
+
navigation: "navigation";
|
|
37
|
+
caching: "caching";
|
|
38
|
+
observability: "observability";
|
|
39
|
+
email: "email";
|
|
40
|
+
search: "search";
|
|
41
|
+
fileStorage: "fileStorage";
|
|
42
|
+
jobQueue: "jobQueue";
|
|
43
|
+
rateLimit: "rateLimit";
|
|
44
|
+
testing: "testing";
|
|
32
45
|
stateManagement: "stateManagement";
|
|
33
46
|
forms: "forms";
|
|
34
|
-
|
|
35
|
-
|
|
47
|
+
animation: "animation";
|
|
48
|
+
fileUpload: "fileUpload";
|
|
36
49
|
validation: "validation";
|
|
37
|
-
|
|
50
|
+
effect: "effect";
|
|
51
|
+
ui: "ui";
|
|
52
|
+
css: "css";
|
|
53
|
+
storage: "storage";
|
|
54
|
+
ai: "ai";
|
|
55
|
+
payments: "payments";
|
|
38
56
|
logging: "logging";
|
|
39
|
-
observability: "observability";
|
|
40
57
|
featureFlags: "featureFlags";
|
|
41
58
|
analytics: "analytics";
|
|
42
59
|
cms: "cms";
|
|
43
|
-
caching: "caching";
|
|
44
60
|
i18n: "i18n";
|
|
45
|
-
search: "search";
|
|
46
|
-
fileStorage: "fileStorage";
|
|
47
|
-
mobile: "mobile";
|
|
48
|
-
deploy: "deploy";
|
|
49
|
-
ui: "ui";
|
|
50
|
-
css: "css";
|
|
51
61
|
documentation: "documentation";
|
|
52
62
|
codeQuality: "codeQuality";
|
|
53
63
|
appPlatform: "appPlatform";
|
|
64
|
+
dataFetching: "dataFetching";
|
|
65
|
+
workspaceTooling: "workspaceTooling";
|
|
66
|
+
examples: "examples";
|
|
67
|
+
buildTool: "buildTool";
|
|
68
|
+
cli: "cli";
|
|
69
|
+
errorHandling: "errorHandling";
|
|
70
|
+
httpClient: "httpClient";
|
|
71
|
+
libraries: "libraries";
|
|
72
|
+
config: "config";
|
|
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
|
-
|
|
85
|
+
frontend: "frontend";
|
|
86
|
+
backend: "backend";
|
|
87
|
+
mobile: "mobile";
|
|
66
88
|
database: "database";
|
|
89
|
+
api: "api";
|
|
67
90
|
orm: "orm";
|
|
68
91
|
auth: "auth";
|
|
69
|
-
payments: "payments";
|
|
70
|
-
frontend: "frontend";
|
|
71
|
-
backend: "backend";
|
|
72
92
|
runtime: "runtime";
|
|
73
|
-
|
|
93
|
+
deploy: "deploy";
|
|
94
|
+
dbSetup: "dbSetup";
|
|
95
|
+
realtime: "realtime";
|
|
96
|
+
navigation: "navigation";
|
|
97
|
+
caching: "caching";
|
|
98
|
+
observability: "observability";
|
|
99
|
+
email: "email";
|
|
100
|
+
search: "search";
|
|
101
|
+
fileStorage: "fileStorage";
|
|
102
|
+
jobQueue: "jobQueue";
|
|
103
|
+
rateLimit: "rateLimit";
|
|
104
|
+
testing: "testing";
|
|
74
105
|
stateManagement: "stateManagement";
|
|
75
106
|
forms: "forms";
|
|
76
|
-
|
|
77
|
-
|
|
107
|
+
animation: "animation";
|
|
108
|
+
fileUpload: "fileUpload";
|
|
78
109
|
validation: "validation";
|
|
79
|
-
|
|
110
|
+
effect: "effect";
|
|
111
|
+
ui: "ui";
|
|
112
|
+
css: "css";
|
|
113
|
+
storage: "storage";
|
|
114
|
+
ai: "ai";
|
|
115
|
+
payments: "payments";
|
|
80
116
|
logging: "logging";
|
|
81
|
-
observability: "observability";
|
|
82
117
|
featureFlags: "featureFlags";
|
|
83
118
|
analytics: "analytics";
|
|
84
119
|
cms: "cms";
|
|
85
|
-
caching: "caching";
|
|
86
120
|
i18n: "i18n";
|
|
87
|
-
search: "search";
|
|
88
|
-
fileStorage: "fileStorage";
|
|
89
|
-
mobile: "mobile";
|
|
90
|
-
deploy: "deploy";
|
|
91
|
-
ui: "ui";
|
|
92
|
-
css: "css";
|
|
93
121
|
documentation: "documentation";
|
|
94
122
|
codeQuality: "codeQuality";
|
|
95
123
|
appPlatform: "appPlatform";
|
|
124
|
+
dataFetching: "dataFetching";
|
|
125
|
+
workspaceTooling: "workspaceTooling";
|
|
126
|
+
examples: "examples";
|
|
127
|
+
buildTool: "buildTool";
|
|
128
|
+
cli: "cli";
|
|
129
|
+
errorHandling: "errorHandling";
|
|
130
|
+
httpClient: "httpClient";
|
|
131
|
+
libraries: "libraries";
|
|
132
|
+
config: "config";
|
|
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<{
|
|
@@ -208,11 +247,12 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
208
247
|
"tanstack-virtual": "tanstack-virtual";
|
|
209
248
|
"tanstack-db": "tanstack-db";
|
|
210
249
|
"tanstack-pacer": "tanstack-pacer";
|
|
250
|
+
"backend-utils": "backend-utils";
|
|
211
251
|
"docker-compose": "docker-compose";
|
|
212
252
|
}>;
|
|
213
253
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
214
|
-
none: "none";
|
|
215
254
|
ai: "ai";
|
|
255
|
+
none: "none";
|
|
216
256
|
"chat-sdk": "chat-sdk";
|
|
217
257
|
"tanstack-showcase": "tanstack-showcase";
|
|
218
258
|
}>;
|
|
@@ -250,12 +290,15 @@ declare const APISchema: z.ZodEnum<{
|
|
|
250
290
|
declare const AuthSchema: z.ZodEnum<{
|
|
251
291
|
none: "none";
|
|
252
292
|
"better-auth": "better-auth";
|
|
293
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
253
294
|
"go-better-auth": "go-better-auth";
|
|
254
295
|
clerk: "clerk";
|
|
255
296
|
nextauth: "nextauth";
|
|
256
297
|
"stack-auth": "stack-auth";
|
|
257
298
|
"supabase-auth": "supabase-auth";
|
|
258
299
|
auth0: "auth0";
|
|
300
|
+
workos: "workos";
|
|
301
|
+
kinde: "kinde";
|
|
259
302
|
}>;
|
|
260
303
|
declare const PaymentsSchema: z.ZodEnum<{
|
|
261
304
|
none: "none";
|
|
@@ -271,6 +314,8 @@ declare const WebDeploySchema: z.ZodEnum<{
|
|
|
271
314
|
cloudflare: "cloudflare";
|
|
272
315
|
fly: "fly";
|
|
273
316
|
railway: "railway";
|
|
317
|
+
render: "render";
|
|
318
|
+
netlify: "netlify";
|
|
274
319
|
sst: "sst";
|
|
275
320
|
vercel: "vercel";
|
|
276
321
|
}>;
|
|
@@ -280,6 +325,8 @@ declare const ServerDeploySchema: z.ZodEnum<{
|
|
|
280
325
|
cloudflare: "cloudflare";
|
|
281
326
|
fly: "fly";
|
|
282
327
|
railway: "railway";
|
|
328
|
+
render: "render";
|
|
329
|
+
netlify: "netlify";
|
|
283
330
|
sst: "sst";
|
|
284
331
|
vercel: "vercel";
|
|
285
332
|
}>;
|
|
@@ -298,8 +345,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
298
345
|
"ai-cli": "ai-cli";
|
|
299
346
|
}>;
|
|
300
347
|
declare const EffectSchema: z.ZodEnum<{
|
|
301
|
-
none: "none";
|
|
302
348
|
effect: "effect";
|
|
349
|
+
none: "none";
|
|
303
350
|
"effect-full": "effect-full";
|
|
304
351
|
}>;
|
|
305
352
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -380,6 +427,11 @@ declare const CachingSchema: z.ZodEnum<{
|
|
|
380
427
|
none: "none";
|
|
381
428
|
"upstash-redis": "upstash-redis";
|
|
382
429
|
}>;
|
|
430
|
+
declare const RateLimitSchema: z.ZodEnum<{
|
|
431
|
+
none: "none";
|
|
432
|
+
arcjet: "arcjet";
|
|
433
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
434
|
+
}>;
|
|
383
435
|
declare const I18nSchema: z.ZodEnum<{
|
|
384
436
|
none: "none";
|
|
385
437
|
i18next: "i18next";
|
|
@@ -423,6 +475,9 @@ declare const ObservabilitySchema: z.ZodEnum<{
|
|
|
423
475
|
opentelemetry: "opentelemetry";
|
|
424
476
|
sentry: "sentry";
|
|
425
477
|
grafana: "grafana";
|
|
478
|
+
datadog: "datadog";
|
|
479
|
+
axiom: "axiom";
|
|
480
|
+
betterstack: "betterstack";
|
|
426
481
|
}>;
|
|
427
482
|
declare const FeatureFlagsSchema: z.ZodEnum<{
|
|
428
483
|
none: "none";
|
|
@@ -444,9 +499,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
444
499
|
}>;
|
|
445
500
|
declare const MobileUISchema: z.ZodEnum<{
|
|
446
501
|
none: "none";
|
|
447
|
-
uniwind: "uniwind";
|
|
448
502
|
tamagui: "tamagui";
|
|
449
503
|
"gluestack-ui": "gluestack-ui";
|
|
504
|
+
uniwind: "uniwind";
|
|
450
505
|
unistyles: "unistyles";
|
|
451
506
|
}>;
|
|
452
507
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -499,12 +554,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
499
554
|
ratatui: "ratatui";
|
|
500
555
|
}>;
|
|
501
556
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
557
|
+
config: "config";
|
|
502
558
|
none: "none";
|
|
503
559
|
serde: "serde";
|
|
504
560
|
uuid: "uuid";
|
|
505
561
|
chrono: "chrono";
|
|
506
562
|
reqwest: "reqwest";
|
|
507
|
-
config: "config";
|
|
508
563
|
dashmap: "dashmap";
|
|
509
564
|
"parking-lot": "parking-lot";
|
|
510
565
|
secrecy: "secrecy";
|
|
@@ -536,6 +591,24 @@ declare const RustCachingSchema: z.ZodEnum<{
|
|
|
536
591
|
declare const RustAuthSchema: z.ZodEnum<{
|
|
537
592
|
none: "none";
|
|
538
593
|
oauth2: "oauth2";
|
|
594
|
+
torii: "torii";
|
|
595
|
+
}>;
|
|
596
|
+
declare const RustRealtimeSchema: z.ZodEnum<{
|
|
597
|
+
none: "none";
|
|
598
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
599
|
+
}>;
|
|
600
|
+
declare const RustMessageQueueSchema: z.ZodEnum<{
|
|
601
|
+
none: "none";
|
|
602
|
+
lapin: "lapin";
|
|
603
|
+
}>;
|
|
604
|
+
declare const RustObservabilitySchema: z.ZodEnum<{
|
|
605
|
+
none: "none";
|
|
606
|
+
opentelemetry: "opentelemetry";
|
|
607
|
+
}>;
|
|
608
|
+
declare const RustTemplatingSchema: z.ZodEnum<{
|
|
609
|
+
none: "none";
|
|
610
|
+
askama: "askama";
|
|
611
|
+
tera: "tera";
|
|
539
612
|
}>;
|
|
540
613
|
declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
541
614
|
none: "none";
|
|
@@ -543,12 +616,14 @@ declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
|
543
616
|
django: "django";
|
|
544
617
|
flask: "flask";
|
|
545
618
|
litestar: "litestar";
|
|
619
|
+
starlette: "starlette";
|
|
546
620
|
}>;
|
|
547
621
|
declare const PythonOrmSchema: z.ZodEnum<{
|
|
548
622
|
none: "none";
|
|
549
623
|
sqlalchemy: "sqlalchemy";
|
|
550
624
|
sqlmodel: "sqlmodel";
|
|
551
625
|
"tortoise-orm": "tortoise-orm";
|
|
626
|
+
peewee: "peewee";
|
|
552
627
|
}>;
|
|
553
628
|
declare const PythonValidationSchema: z.ZodEnum<{
|
|
554
629
|
none: "none";
|
|
@@ -557,17 +632,21 @@ declare const PythonValidationSchema: z.ZodEnum<{
|
|
|
557
632
|
declare const PythonAiSchema: z.ZodEnum<{
|
|
558
633
|
none: "none";
|
|
559
634
|
langgraph: "langgraph";
|
|
635
|
+
"google-adk": "google-adk";
|
|
560
636
|
langchain: "langchain";
|
|
561
637
|
llamaindex: "llamaindex";
|
|
562
638
|
"openai-sdk": "openai-sdk";
|
|
563
639
|
"anthropic-sdk": "anthropic-sdk";
|
|
564
640
|
crewai: "crewai";
|
|
565
641
|
haystack: "haystack";
|
|
642
|
+
"pydantic-ai": "pydantic-ai";
|
|
643
|
+
smolagents: "smolagents";
|
|
566
644
|
}>;
|
|
567
645
|
declare const PythonAuthSchema: z.ZodEnum<{
|
|
568
646
|
none: "none";
|
|
569
647
|
authlib: "authlib";
|
|
570
648
|
jwt: "jwt";
|
|
649
|
+
"fastapi-users": "fastapi-users";
|
|
571
650
|
}>;
|
|
572
651
|
declare const PythonApiSchema: z.ZodEnum<{
|
|
573
652
|
none: "none";
|
|
@@ -580,6 +659,7 @@ declare const PythonTaskQueueSchema: z.ZodEnum<{
|
|
|
580
659
|
rq: "rq";
|
|
581
660
|
dramatiq: "dramatiq";
|
|
582
661
|
huey: "huey";
|
|
662
|
+
taskiq: "taskiq";
|
|
583
663
|
}>;
|
|
584
664
|
declare const PythonGraphqlSchema: z.ZodEnum<{
|
|
585
665
|
none: "none";
|
|
@@ -592,6 +672,31 @@ declare const PythonQualitySchema: z.ZodEnum<{
|
|
|
592
672
|
mypy: "mypy";
|
|
593
673
|
pyright: "pyright";
|
|
594
674
|
}>;
|
|
675
|
+
declare const PythonTestingSchema: z.ZodEnum<{
|
|
676
|
+
none: "none";
|
|
677
|
+
pytest: "pytest";
|
|
678
|
+
hypothesis: "hypothesis";
|
|
679
|
+
}>;
|
|
680
|
+
declare const PythonCachingSchema: z.ZodEnum<{
|
|
681
|
+
none: "none";
|
|
682
|
+
redis: "redis";
|
|
683
|
+
aiocache: "aiocache";
|
|
684
|
+
}>;
|
|
685
|
+
declare const PythonRealtimeSchema: z.ZodEnum<{
|
|
686
|
+
none: "none";
|
|
687
|
+
"python-socketio": "python-socketio";
|
|
688
|
+
websockets: "websockets";
|
|
689
|
+
}>;
|
|
690
|
+
declare const PythonObservabilitySchema: z.ZodEnum<{
|
|
691
|
+
none: "none";
|
|
692
|
+
opentelemetry: "opentelemetry";
|
|
693
|
+
}>;
|
|
694
|
+
declare const PythonCliSchema: z.ZodEnum<{
|
|
695
|
+
none: "none";
|
|
696
|
+
typer: "typer";
|
|
697
|
+
click: "click";
|
|
698
|
+
rich: "rich";
|
|
699
|
+
}>;
|
|
595
700
|
declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
596
701
|
none: "none";
|
|
597
702
|
gin: "gin";
|
|
@@ -608,6 +713,7 @@ declare const GoOrmSchema: z.ZodEnum<{
|
|
|
608
713
|
declare const GoApiSchema: z.ZodEnum<{
|
|
609
714
|
none: "none";
|
|
610
715
|
"grpc-go": "grpc-go";
|
|
716
|
+
gqlgen: "gqlgen";
|
|
611
717
|
}>;
|
|
612
718
|
declare const GoCliSchema: z.ZodEnum<{
|
|
613
719
|
none: "none";
|
|
@@ -626,6 +732,36 @@ declare const GoAuthSchema: z.ZodEnum<{
|
|
|
626
732
|
none: "none";
|
|
627
733
|
jwt: "jwt";
|
|
628
734
|
casbin: "casbin";
|
|
735
|
+
goth: "goth";
|
|
736
|
+
}>;
|
|
737
|
+
declare const GoTestingSchema: z.ZodEnum<{
|
|
738
|
+
none: "none";
|
|
739
|
+
testify: "testify";
|
|
740
|
+
gomock: "gomock";
|
|
741
|
+
}>;
|
|
742
|
+
declare const GoRealtimeSchema: z.ZodEnum<{
|
|
743
|
+
none: "none";
|
|
744
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
745
|
+
centrifuge: "centrifuge";
|
|
746
|
+
}>;
|
|
747
|
+
declare const GoMessageQueueSchema: z.ZodEnum<{
|
|
748
|
+
none: "none";
|
|
749
|
+
nats: "nats";
|
|
750
|
+
watermill: "watermill";
|
|
751
|
+
}>;
|
|
752
|
+
declare const GoCachingSchema: z.ZodEnum<{
|
|
753
|
+
none: "none";
|
|
754
|
+
redis: "redis";
|
|
755
|
+
ristretto: "ristretto";
|
|
756
|
+
}>;
|
|
757
|
+
declare const GoConfigSchema: z.ZodEnum<{
|
|
758
|
+
none: "none";
|
|
759
|
+
viper: "viper";
|
|
760
|
+
koanf: "koanf";
|
|
761
|
+
}>;
|
|
762
|
+
declare const GoObservabilitySchema: z.ZodEnum<{
|
|
763
|
+
none: "none";
|
|
764
|
+
opentelemetry: "opentelemetry";
|
|
629
765
|
}>;
|
|
630
766
|
declare const JavaWebFrameworkSchema: z.ZodEnum<{
|
|
631
767
|
none: "none";
|
|
@@ -640,10 +776,21 @@ declare const JavaBuildToolSchema: z.ZodEnum<{
|
|
|
640
776
|
declare const JavaOrmSchema: z.ZodEnum<{
|
|
641
777
|
none: "none";
|
|
642
778
|
"spring-data-jpa": "spring-data-jpa";
|
|
779
|
+
jooq: "jooq";
|
|
780
|
+
mybatis: "mybatis";
|
|
643
781
|
}>;
|
|
644
782
|
declare const JavaAuthSchema: z.ZodEnum<{
|
|
645
783
|
none: "none";
|
|
646
784
|
"spring-security": "spring-security";
|
|
785
|
+
keycloak: "keycloak";
|
|
786
|
+
}>;
|
|
787
|
+
declare const JavaApiSchema: z.ZodEnum<{
|
|
788
|
+
none: "none";
|
|
789
|
+
"spring-graphql": "spring-graphql";
|
|
790
|
+
}>;
|
|
791
|
+
declare const JavaLoggingSchema: z.ZodEnum<{
|
|
792
|
+
none: "none";
|
|
793
|
+
logback: "logback";
|
|
647
794
|
}>;
|
|
648
795
|
declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
649
796
|
none: "none";
|
|
@@ -663,6 +810,8 @@ declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
|
663
810
|
"spring-devtools": "spring-devtools";
|
|
664
811
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
665
812
|
thymeleaf: "thymeleaf";
|
|
813
|
+
"spring-amqp": "spring-amqp";
|
|
814
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
666
815
|
}>;
|
|
667
816
|
declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
668
817
|
none: "none";
|
|
@@ -676,6 +825,70 @@ declare const JavaTestingLibrariesSchema: z.ZodEnum<{
|
|
|
676
825
|
archunit: "archunit";
|
|
677
826
|
jqwik: "jqwik";
|
|
678
827
|
}>;
|
|
828
|
+
declare const DotnetWebFrameworkSchema: z.ZodEnum<{
|
|
829
|
+
none: "none";
|
|
830
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
831
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
832
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
833
|
+
}>;
|
|
834
|
+
declare const DotnetOrmSchema: z.ZodEnum<{
|
|
835
|
+
none: "none";
|
|
836
|
+
"ef-core": "ef-core";
|
|
837
|
+
dapper: "dapper";
|
|
838
|
+
linq2db: "linq2db";
|
|
839
|
+
}>;
|
|
840
|
+
declare const DotnetAuthSchema: z.ZodEnum<{
|
|
841
|
+
none: "none";
|
|
842
|
+
"aspnet-identity": "aspnet-identity";
|
|
843
|
+
"duende-identityserver": "duende-identityserver";
|
|
844
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
845
|
+
}>;
|
|
846
|
+
declare const DotnetApiSchema: z.ZodEnum<{
|
|
847
|
+
none: "none";
|
|
848
|
+
"minimal-api": "minimal-api";
|
|
849
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
850
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
851
|
+
}>;
|
|
852
|
+
declare const DotnetTestingSchema: z.ZodEnum<{
|
|
853
|
+
none: "none";
|
|
854
|
+
xunit: "xunit";
|
|
855
|
+
nunit: "nunit";
|
|
856
|
+
moq: "moq";
|
|
857
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
858
|
+
}>;
|
|
859
|
+
declare const DotnetJobQueueSchema: z.ZodEnum<{
|
|
860
|
+
none: "none";
|
|
861
|
+
hangfire: "hangfire";
|
|
862
|
+
"quartz-net": "quartz-net";
|
|
863
|
+
"hosted-services": "hosted-services";
|
|
864
|
+
}>;
|
|
865
|
+
declare const DotnetRealtimeSchema: z.ZodEnum<{
|
|
866
|
+
none: "none";
|
|
867
|
+
signalr: "signalr";
|
|
868
|
+
}>;
|
|
869
|
+
declare const DotnetObservabilitySchema: z.ZodEnum<{
|
|
870
|
+
none: "none";
|
|
871
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
872
|
+
serilog: "serilog";
|
|
873
|
+
nlog: "nlog";
|
|
874
|
+
"health-checks": "health-checks";
|
|
875
|
+
}>;
|
|
876
|
+
declare const DotnetValidationSchema: z.ZodEnum<{
|
|
877
|
+
none: "none";
|
|
878
|
+
fluentvalidation: "fluentvalidation";
|
|
879
|
+
"data-annotations": "data-annotations";
|
|
880
|
+
}>;
|
|
881
|
+
declare const DotnetCachingSchema: z.ZodEnum<{
|
|
882
|
+
none: "none";
|
|
883
|
+
redis: "redis";
|
|
884
|
+
"memory-cache": "memory-cache";
|
|
885
|
+
}>;
|
|
886
|
+
declare const DotnetDeploySchema: z.ZodEnum<{
|
|
887
|
+
none: "none";
|
|
888
|
+
docker: "docker";
|
|
889
|
+
azure: "azure";
|
|
890
|
+
aws: "aws";
|
|
891
|
+
}>;
|
|
679
892
|
declare const ElixirWebFrameworkSchema: z.ZodEnum<{
|
|
680
893
|
none: "none";
|
|
681
894
|
phoenix: "phoenix";
|
|
@@ -696,6 +909,12 @@ declare const ElixirApiSchema: z.ZodEnum<{
|
|
|
696
909
|
none: "none";
|
|
697
910
|
rest: "rest";
|
|
698
911
|
absinthe: "absinthe";
|
|
912
|
+
grpc: "grpc";
|
|
913
|
+
}>;
|
|
914
|
+
declare const ElixirLibrariesSchema: z.ZodEnum<{
|
|
915
|
+
none: "none";
|
|
916
|
+
broadway: "broadway";
|
|
917
|
+
nx: "nx";
|
|
699
918
|
}>;
|
|
700
919
|
declare const ElixirRealtimeSchema: z.ZodEnum<{
|
|
701
920
|
none: "none";
|
|
@@ -854,34 +1073,34 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
854
1073
|
"geist-mono": "geist-mono";
|
|
855
1074
|
}>;
|
|
856
1075
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
857
|
-
none: "none";
|
|
858
1076
|
default: "default";
|
|
1077
|
+
none: "none";
|
|
859
1078
|
small: "small";
|
|
860
1079
|
medium: "medium";
|
|
861
1080
|
large: "large";
|
|
862
1081
|
}>;
|
|
863
1082
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1083
|
+
error: "error";
|
|
864
1084
|
merge: "merge";
|
|
865
1085
|
overwrite: "overwrite";
|
|
866
1086
|
increment: "increment";
|
|
867
|
-
error: "error";
|
|
868
1087
|
}>;
|
|
869
1088
|
declare const TemplateSchema: z.ZodEnum<{
|
|
870
1089
|
none: "none";
|
|
1090
|
+
uniwind: "uniwind";
|
|
871
1091
|
mern: "mern";
|
|
872
1092
|
pern: "pern";
|
|
873
1093
|
t3: "t3";
|
|
874
|
-
uniwind: "uniwind";
|
|
875
1094
|
}>;
|
|
876
1095
|
declare const ProjectNameSchema: z.ZodString;
|
|
877
1096
|
declare const CreateInputSchema: z.ZodObject<{
|
|
878
1097
|
projectName: z.ZodOptional<z.ZodString>;
|
|
879
1098
|
template: z.ZodOptional<z.ZodEnum<{
|
|
880
1099
|
none: "none";
|
|
1100
|
+
uniwind: "uniwind";
|
|
881
1101
|
mern: "mern";
|
|
882
1102
|
pern: "pern";
|
|
883
1103
|
t3: "t3";
|
|
884
|
-
uniwind: "uniwind";
|
|
885
1104
|
}>>;
|
|
886
1105
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
887
1106
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -896,6 +1115,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
896
1115
|
go: "go";
|
|
897
1116
|
java: "java";
|
|
898
1117
|
elixir: "elixir";
|
|
1118
|
+
dotnet: "dotnet";
|
|
899
1119
|
}>>;
|
|
900
1120
|
database: z.ZodOptional<z.ZodEnum<{
|
|
901
1121
|
none: "none";
|
|
@@ -919,12 +1139,15 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
919
1139
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
920
1140
|
none: "none";
|
|
921
1141
|
"better-auth": "better-auth";
|
|
1142
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
922
1143
|
"go-better-auth": "go-better-auth";
|
|
923
1144
|
clerk: "clerk";
|
|
924
1145
|
nextauth: "nextauth";
|
|
925
1146
|
"stack-auth": "stack-auth";
|
|
926
1147
|
"supabase-auth": "supabase-auth";
|
|
927
1148
|
auth0: "auth0";
|
|
1149
|
+
workos: "workos";
|
|
1150
|
+
kinde: "kinde";
|
|
928
1151
|
}>>;
|
|
929
1152
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
930
1153
|
none: "none";
|
|
@@ -980,11 +1203,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
980
1203
|
"tanstack-virtual": "tanstack-virtual";
|
|
981
1204
|
"tanstack-db": "tanstack-db";
|
|
982
1205
|
"tanstack-pacer": "tanstack-pacer";
|
|
1206
|
+
"backend-utils": "backend-utils";
|
|
983
1207
|
"docker-compose": "docker-compose";
|
|
984
1208
|
}>>>;
|
|
985
1209
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
986
|
-
none: "none";
|
|
987
1210
|
ai: "ai";
|
|
1211
|
+
none: "none";
|
|
988
1212
|
"chat-sdk": "chat-sdk";
|
|
989
1213
|
"tanstack-showcase": "tanstack-showcase";
|
|
990
1214
|
}>>>;
|
|
@@ -1047,6 +1271,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1047
1271
|
cloudflare: "cloudflare";
|
|
1048
1272
|
fly: "fly";
|
|
1049
1273
|
railway: "railway";
|
|
1274
|
+
render: "render";
|
|
1275
|
+
netlify: "netlify";
|
|
1050
1276
|
sst: "sst";
|
|
1051
1277
|
vercel: "vercel";
|
|
1052
1278
|
}>>;
|
|
@@ -1056,14 +1282,16 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1056
1282
|
cloudflare: "cloudflare";
|
|
1057
1283
|
fly: "fly";
|
|
1058
1284
|
railway: "railway";
|
|
1285
|
+
render: "render";
|
|
1286
|
+
netlify: "netlify";
|
|
1059
1287
|
sst: "sst";
|
|
1060
1288
|
vercel: "vercel";
|
|
1061
1289
|
}>>;
|
|
1062
1290
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1291
|
+
error: "error";
|
|
1063
1292
|
merge: "merge";
|
|
1064
1293
|
overwrite: "overwrite";
|
|
1065
1294
|
increment: "increment";
|
|
1066
|
-
error: "error";
|
|
1067
1295
|
}>>;
|
|
1068
1296
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1297
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1090,8 +1318,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1090
1318
|
"ai-cli": "ai-cli";
|
|
1091
1319
|
}>>;
|
|
1092
1320
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1093
|
-
none: "none";
|
|
1094
1321
|
effect: "effect";
|
|
1322
|
+
none: "none";
|
|
1095
1323
|
"effect-full": "effect-full";
|
|
1096
1324
|
}>>;
|
|
1097
1325
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1224,8 +1452,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1224
1452
|
"geist-mono": "geist-mono";
|
|
1225
1453
|
}>>;
|
|
1226
1454
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1227
|
-
none: "none";
|
|
1228
1455
|
default: "default";
|
|
1456
|
+
none: "none";
|
|
1229
1457
|
small: "small";
|
|
1230
1458
|
medium: "medium";
|
|
1231
1459
|
large: "large";
|
|
@@ -1281,6 +1509,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1281
1509
|
opentelemetry: "opentelemetry";
|
|
1282
1510
|
sentry: "sentry";
|
|
1283
1511
|
grafana: "grafana";
|
|
1512
|
+
datadog: "datadog";
|
|
1513
|
+
axiom: "axiom";
|
|
1514
|
+
betterstack: "betterstack";
|
|
1284
1515
|
}>>;
|
|
1285
1516
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
1286
1517
|
none: "none";
|
|
@@ -1307,6 +1538,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1307
1538
|
none: "none";
|
|
1308
1539
|
"upstash-redis": "upstash-redis";
|
|
1309
1540
|
}>>;
|
|
1541
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
1542
|
+
none: "none";
|
|
1543
|
+
arcjet: "arcjet";
|
|
1544
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
1545
|
+
}>>;
|
|
1310
1546
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1311
1547
|
none: "none";
|
|
1312
1548
|
i18next: "i18next";
|
|
@@ -1332,9 +1568,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1332
1568
|
}>>;
|
|
1333
1569
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1334
1570
|
none: "none";
|
|
1335
|
-
uniwind: "uniwind";
|
|
1336
1571
|
tamagui: "tamagui";
|
|
1337
1572
|
"gluestack-ui": "gluestack-ui";
|
|
1573
|
+
uniwind: "uniwind";
|
|
1338
1574
|
unistyles: "unistyles";
|
|
1339
1575
|
}>>;
|
|
1340
1576
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1387,12 +1623,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1387
1623
|
ratatui: "ratatui";
|
|
1388
1624
|
}>>;
|
|
1389
1625
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1626
|
+
config: "config";
|
|
1390
1627
|
none: "none";
|
|
1391
1628
|
serde: "serde";
|
|
1392
1629
|
uuid: "uuid";
|
|
1393
1630
|
chrono: "chrono";
|
|
1394
1631
|
reqwest: "reqwest";
|
|
1395
|
-
config: "config";
|
|
1396
1632
|
dashmap: "dashmap";
|
|
1397
1633
|
"parking-lot": "parking-lot";
|
|
1398
1634
|
secrecy: "secrecy";
|
|
@@ -1424,6 +1660,24 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1424
1660
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
1425
1661
|
none: "none";
|
|
1426
1662
|
oauth2: "oauth2";
|
|
1663
|
+
torii: "torii";
|
|
1664
|
+
}>>;
|
|
1665
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1666
|
+
none: "none";
|
|
1667
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
1668
|
+
}>>;
|
|
1669
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
1670
|
+
none: "none";
|
|
1671
|
+
lapin: "lapin";
|
|
1672
|
+
}>>;
|
|
1673
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
1674
|
+
none: "none";
|
|
1675
|
+
opentelemetry: "opentelemetry";
|
|
1676
|
+
}>>;
|
|
1677
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
1678
|
+
none: "none";
|
|
1679
|
+
askama: "askama";
|
|
1680
|
+
tera: "tera";
|
|
1427
1681
|
}>>;
|
|
1428
1682
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1429
1683
|
none: "none";
|
|
@@ -1431,12 +1685,14 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1431
1685
|
django: "django";
|
|
1432
1686
|
flask: "flask";
|
|
1433
1687
|
litestar: "litestar";
|
|
1688
|
+
starlette: "starlette";
|
|
1434
1689
|
}>>;
|
|
1435
1690
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1436
1691
|
none: "none";
|
|
1437
1692
|
sqlalchemy: "sqlalchemy";
|
|
1438
1693
|
sqlmodel: "sqlmodel";
|
|
1439
1694
|
"tortoise-orm": "tortoise-orm";
|
|
1695
|
+
peewee: "peewee";
|
|
1440
1696
|
}>>;
|
|
1441
1697
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
1442
1698
|
none: "none";
|
|
@@ -1445,17 +1701,21 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1445
1701
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1446
1702
|
none: "none";
|
|
1447
1703
|
langgraph: "langgraph";
|
|
1704
|
+
"google-adk": "google-adk";
|
|
1448
1705
|
langchain: "langchain";
|
|
1449
1706
|
llamaindex: "llamaindex";
|
|
1450
1707
|
"openai-sdk": "openai-sdk";
|
|
1451
1708
|
"anthropic-sdk": "anthropic-sdk";
|
|
1452
1709
|
crewai: "crewai";
|
|
1453
1710
|
haystack: "haystack";
|
|
1711
|
+
"pydantic-ai": "pydantic-ai";
|
|
1712
|
+
smolagents: "smolagents";
|
|
1454
1713
|
}>>>;
|
|
1455
1714
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
1456
1715
|
none: "none";
|
|
1457
1716
|
authlib: "authlib";
|
|
1458
1717
|
jwt: "jwt";
|
|
1718
|
+
"fastapi-users": "fastapi-users";
|
|
1459
1719
|
}>>;
|
|
1460
1720
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
1461
1721
|
none: "none";
|
|
@@ -1468,6 +1728,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1468
1728
|
rq: "rq";
|
|
1469
1729
|
dramatiq: "dramatiq";
|
|
1470
1730
|
huey: "huey";
|
|
1731
|
+
taskiq: "taskiq";
|
|
1471
1732
|
}>>;
|
|
1472
1733
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
1473
1734
|
none: "none";
|
|
@@ -1480,6 +1741,31 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1480
1741
|
mypy: "mypy";
|
|
1481
1742
|
pyright: "pyright";
|
|
1482
1743
|
}>>;
|
|
1744
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1745
|
+
none: "none";
|
|
1746
|
+
pytest: "pytest";
|
|
1747
|
+
hypothesis: "hypothesis";
|
|
1748
|
+
}>>>;
|
|
1749
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
1750
|
+
none: "none";
|
|
1751
|
+
redis: "redis";
|
|
1752
|
+
aiocache: "aiocache";
|
|
1753
|
+
}>>;
|
|
1754
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1755
|
+
none: "none";
|
|
1756
|
+
"python-socketio": "python-socketio";
|
|
1757
|
+
websockets: "websockets";
|
|
1758
|
+
}>>;
|
|
1759
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
1760
|
+
none: "none";
|
|
1761
|
+
opentelemetry: "opentelemetry";
|
|
1762
|
+
}>>;
|
|
1763
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1764
|
+
none: "none";
|
|
1765
|
+
typer: "typer";
|
|
1766
|
+
click: "click";
|
|
1767
|
+
rich: "rich";
|
|
1768
|
+
}>>>;
|
|
1483
1769
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1484
1770
|
none: "none";
|
|
1485
1771
|
gin: "gin";
|
|
@@ -1496,6 +1782,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1496
1782
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1497
1783
|
none: "none";
|
|
1498
1784
|
"grpc-go": "grpc-go";
|
|
1785
|
+
gqlgen: "gqlgen";
|
|
1499
1786
|
}>>;
|
|
1500
1787
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
1501
1788
|
none: "none";
|
|
@@ -1514,6 +1801,36 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1514
1801
|
none: "none";
|
|
1515
1802
|
jwt: "jwt";
|
|
1516
1803
|
casbin: "casbin";
|
|
1804
|
+
goth: "goth";
|
|
1805
|
+
}>>;
|
|
1806
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1807
|
+
none: "none";
|
|
1808
|
+
testify: "testify";
|
|
1809
|
+
gomock: "gomock";
|
|
1810
|
+
}>>>;
|
|
1811
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1812
|
+
none: "none";
|
|
1813
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
1814
|
+
centrifuge: "centrifuge";
|
|
1815
|
+
}>>;
|
|
1816
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
1817
|
+
none: "none";
|
|
1818
|
+
nats: "nats";
|
|
1819
|
+
watermill: "watermill";
|
|
1820
|
+
}>>;
|
|
1821
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
1822
|
+
none: "none";
|
|
1823
|
+
redis: "redis";
|
|
1824
|
+
ristretto: "ristretto";
|
|
1825
|
+
}>>;
|
|
1826
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
1827
|
+
none: "none";
|
|
1828
|
+
viper: "viper";
|
|
1829
|
+
koanf: "koanf";
|
|
1830
|
+
}>>;
|
|
1831
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
1832
|
+
none: "none";
|
|
1833
|
+
opentelemetry: "opentelemetry";
|
|
1517
1834
|
}>>;
|
|
1518
1835
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1519
1836
|
none: "none";
|
|
@@ -1528,10 +1845,21 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1528
1845
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
1529
1846
|
none: "none";
|
|
1530
1847
|
"spring-data-jpa": "spring-data-jpa";
|
|
1848
|
+
jooq: "jooq";
|
|
1849
|
+
mybatis: "mybatis";
|
|
1531
1850
|
}>>;
|
|
1532
1851
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
1533
1852
|
none: "none";
|
|
1534
1853
|
"spring-security": "spring-security";
|
|
1854
|
+
keycloak: "keycloak";
|
|
1855
|
+
}>>;
|
|
1856
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
1857
|
+
none: "none";
|
|
1858
|
+
"spring-graphql": "spring-graphql";
|
|
1859
|
+
}>>;
|
|
1860
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
1861
|
+
none: "none";
|
|
1862
|
+
logback: "logback";
|
|
1535
1863
|
}>>;
|
|
1536
1864
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1537
1865
|
none: "none";
|
|
@@ -1551,6 +1879,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1551
1879
|
"spring-devtools": "spring-devtools";
|
|
1552
1880
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
1553
1881
|
thymeleaf: "thymeleaf";
|
|
1882
|
+
"spring-amqp": "spring-amqp";
|
|
1883
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
1554
1884
|
}>>>;
|
|
1555
1885
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1556
1886
|
none: "none";
|
|
@@ -1564,6 +1894,70 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1564
1894
|
archunit: "archunit";
|
|
1565
1895
|
jqwik: "jqwik";
|
|
1566
1896
|
}>>>;
|
|
1897
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1898
|
+
none: "none";
|
|
1899
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
1900
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
1901
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
1902
|
+
}>>;
|
|
1903
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
1904
|
+
none: "none";
|
|
1905
|
+
"ef-core": "ef-core";
|
|
1906
|
+
dapper: "dapper";
|
|
1907
|
+
linq2db: "linq2db";
|
|
1908
|
+
}>>;
|
|
1909
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
1910
|
+
none: "none";
|
|
1911
|
+
"aspnet-identity": "aspnet-identity";
|
|
1912
|
+
"duende-identityserver": "duende-identityserver";
|
|
1913
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
1914
|
+
}>>;
|
|
1915
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
1916
|
+
none: "none";
|
|
1917
|
+
"minimal-api": "minimal-api";
|
|
1918
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
1919
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
1920
|
+
}>>;
|
|
1921
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1922
|
+
none: "none";
|
|
1923
|
+
xunit: "xunit";
|
|
1924
|
+
nunit: "nunit";
|
|
1925
|
+
moq: "moq";
|
|
1926
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
1927
|
+
}>>>;
|
|
1928
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
1929
|
+
none: "none";
|
|
1930
|
+
hangfire: "hangfire";
|
|
1931
|
+
"quartz-net": "quartz-net";
|
|
1932
|
+
"hosted-services": "hosted-services";
|
|
1933
|
+
}>>;
|
|
1934
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1935
|
+
none: "none";
|
|
1936
|
+
signalr: "signalr";
|
|
1937
|
+
}>>;
|
|
1938
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1939
|
+
none: "none";
|
|
1940
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
1941
|
+
serilog: "serilog";
|
|
1942
|
+
nlog: "nlog";
|
|
1943
|
+
"health-checks": "health-checks";
|
|
1944
|
+
}>>>;
|
|
1945
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
1946
|
+
none: "none";
|
|
1947
|
+
fluentvalidation: "fluentvalidation";
|
|
1948
|
+
"data-annotations": "data-annotations";
|
|
1949
|
+
}>>;
|
|
1950
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
1951
|
+
none: "none";
|
|
1952
|
+
redis: "redis";
|
|
1953
|
+
"memory-cache": "memory-cache";
|
|
1954
|
+
}>>;
|
|
1955
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1956
|
+
none: "none";
|
|
1957
|
+
docker: "docker";
|
|
1958
|
+
azure: "azure";
|
|
1959
|
+
aws: "aws";
|
|
1960
|
+
}>>;
|
|
1567
1961
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1568
1962
|
none: "none";
|
|
1569
1963
|
phoenix: "phoenix";
|
|
@@ -1584,6 +1978,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1584
1978
|
none: "none";
|
|
1585
1979
|
rest: "rest";
|
|
1586
1980
|
absinthe: "absinthe";
|
|
1981
|
+
grpc: "grpc";
|
|
1587
1982
|
}>>;
|
|
1588
1983
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1589
1984
|
none: "none";
|
|
@@ -1646,6 +2041,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1646
2041
|
gigalixir: "gigalixir";
|
|
1647
2042
|
"mix-release": "mix-release";
|
|
1648
2043
|
}>>;
|
|
2044
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2045
|
+
none: "none";
|
|
2046
|
+
broadway: "broadway";
|
|
2047
|
+
nx: "nx";
|
|
2048
|
+
}>>>;
|
|
1649
2049
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1650
2050
|
none: "none";
|
|
1651
2051
|
"claude-md": "claude-md";
|
|
@@ -1680,6 +2080,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1680
2080
|
"tanstack-virtual": "tanstack-virtual";
|
|
1681
2081
|
"tanstack-db": "tanstack-db";
|
|
1682
2082
|
"tanstack-pacer": "tanstack-pacer";
|
|
2083
|
+
"backend-utils": "backend-utils";
|
|
1683
2084
|
"docker-compose": "docker-compose";
|
|
1684
2085
|
}>>>;
|
|
1685
2086
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1688,6 +2089,8 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1688
2089
|
cloudflare: "cloudflare";
|
|
1689
2090
|
fly: "fly";
|
|
1690
2091
|
railway: "railway";
|
|
2092
|
+
render: "render";
|
|
2093
|
+
netlify: "netlify";
|
|
1691
2094
|
sst: "sst";
|
|
1692
2095
|
vercel: "vercel";
|
|
1693
2096
|
}>>;
|
|
@@ -1697,6 +2100,8 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1697
2100
|
cloudflare: "cloudflare";
|
|
1698
2101
|
fly: "fly";
|
|
1699
2102
|
railway: "railway";
|
|
2103
|
+
render: "render";
|
|
2104
|
+
netlify: "netlify";
|
|
1700
2105
|
sst: "sst";
|
|
1701
2106
|
vercel: "vercel";
|
|
1702
2107
|
}>>;
|
|
@@ -1713,10 +2118,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1713
2118
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1714
2119
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1715
2120
|
none: "none";
|
|
2121
|
+
uniwind: "uniwind";
|
|
1716
2122
|
mern: "mern";
|
|
1717
2123
|
pern: "pern";
|
|
1718
2124
|
t3: "t3";
|
|
1719
|
-
uniwind: "uniwind";
|
|
1720
2125
|
}>>;
|
|
1721
2126
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1722
2127
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1731,6 +2136,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1731
2136
|
go: "go";
|
|
1732
2137
|
java: "java";
|
|
1733
2138
|
elixir: "elixir";
|
|
2139
|
+
dotnet: "dotnet";
|
|
1734
2140
|
}>>;
|
|
1735
2141
|
database: z.ZodOptional<z.ZodEnum<{
|
|
1736
2142
|
none: "none";
|
|
@@ -1754,12 +2160,15 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1754
2160
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
1755
2161
|
none: "none";
|
|
1756
2162
|
"better-auth": "better-auth";
|
|
2163
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
1757
2164
|
"go-better-auth": "go-better-auth";
|
|
1758
2165
|
clerk: "clerk";
|
|
1759
2166
|
nextauth: "nextauth";
|
|
1760
2167
|
"stack-auth": "stack-auth";
|
|
1761
2168
|
"supabase-auth": "supabase-auth";
|
|
1762
2169
|
auth0: "auth0";
|
|
2170
|
+
workos: "workos";
|
|
2171
|
+
kinde: "kinde";
|
|
1763
2172
|
}>>;
|
|
1764
2173
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
1765
2174
|
none: "none";
|
|
@@ -1815,11 +2224,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1815
2224
|
"tanstack-virtual": "tanstack-virtual";
|
|
1816
2225
|
"tanstack-db": "tanstack-db";
|
|
1817
2226
|
"tanstack-pacer": "tanstack-pacer";
|
|
2227
|
+
"backend-utils": "backend-utils";
|
|
1818
2228
|
"docker-compose": "docker-compose";
|
|
1819
2229
|
}>>>;
|
|
1820
2230
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1821
|
-
none: "none";
|
|
1822
2231
|
ai: "ai";
|
|
2232
|
+
none: "none";
|
|
1823
2233
|
"chat-sdk": "chat-sdk";
|
|
1824
2234
|
"tanstack-showcase": "tanstack-showcase";
|
|
1825
2235
|
}>>>;
|
|
@@ -1882,6 +2292,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1882
2292
|
cloudflare: "cloudflare";
|
|
1883
2293
|
fly: "fly";
|
|
1884
2294
|
railway: "railway";
|
|
2295
|
+
render: "render";
|
|
2296
|
+
netlify: "netlify";
|
|
1885
2297
|
sst: "sst";
|
|
1886
2298
|
vercel: "vercel";
|
|
1887
2299
|
}>>;
|
|
@@ -1891,14 +2303,16 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1891
2303
|
cloudflare: "cloudflare";
|
|
1892
2304
|
fly: "fly";
|
|
1893
2305
|
railway: "railway";
|
|
2306
|
+
render: "render";
|
|
2307
|
+
netlify: "netlify";
|
|
1894
2308
|
sst: "sst";
|
|
1895
2309
|
vercel: "vercel";
|
|
1896
2310
|
}>>;
|
|
1897
2311
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
2312
|
+
error: "error";
|
|
1898
2313
|
merge: "merge";
|
|
1899
2314
|
overwrite: "overwrite";
|
|
1900
2315
|
increment: "increment";
|
|
1901
|
-
error: "error";
|
|
1902
2316
|
}>>;
|
|
1903
2317
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1904
2318
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1925,8 +2339,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1925
2339
|
"ai-cli": "ai-cli";
|
|
1926
2340
|
}>>;
|
|
1927
2341
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1928
|
-
none: "none";
|
|
1929
2342
|
effect: "effect";
|
|
2343
|
+
none: "none";
|
|
1930
2344
|
"effect-full": "effect-full";
|
|
1931
2345
|
}>>;
|
|
1932
2346
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2059,8 +2473,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2059
2473
|
"geist-mono": "geist-mono";
|
|
2060
2474
|
}>>;
|
|
2061
2475
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2062
|
-
none: "none";
|
|
2063
2476
|
default: "default";
|
|
2477
|
+
none: "none";
|
|
2064
2478
|
small: "small";
|
|
2065
2479
|
medium: "medium";
|
|
2066
2480
|
large: "large";
|
|
@@ -2116,6 +2530,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2116
2530
|
opentelemetry: "opentelemetry";
|
|
2117
2531
|
sentry: "sentry";
|
|
2118
2532
|
grafana: "grafana";
|
|
2533
|
+
datadog: "datadog";
|
|
2534
|
+
axiom: "axiom";
|
|
2535
|
+
betterstack: "betterstack";
|
|
2119
2536
|
}>>;
|
|
2120
2537
|
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2121
2538
|
none: "none";
|
|
@@ -2142,6 +2559,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2142
2559
|
none: "none";
|
|
2143
2560
|
"upstash-redis": "upstash-redis";
|
|
2144
2561
|
}>>;
|
|
2562
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2563
|
+
none: "none";
|
|
2564
|
+
arcjet: "arcjet";
|
|
2565
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2566
|
+
}>>;
|
|
2145
2567
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2146
2568
|
none: "none";
|
|
2147
2569
|
i18next: "i18next";
|
|
@@ -2167,9 +2589,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2167
2589
|
}>>;
|
|
2168
2590
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2169
2591
|
none: "none";
|
|
2170
|
-
uniwind: "uniwind";
|
|
2171
2592
|
tamagui: "tamagui";
|
|
2172
2593
|
"gluestack-ui": "gluestack-ui";
|
|
2594
|
+
uniwind: "uniwind";
|
|
2173
2595
|
unistyles: "unistyles";
|
|
2174
2596
|
}>>;
|
|
2175
2597
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2222,12 +2644,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2222
2644
|
ratatui: "ratatui";
|
|
2223
2645
|
}>>;
|
|
2224
2646
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2647
|
+
config: "config";
|
|
2225
2648
|
none: "none";
|
|
2226
2649
|
serde: "serde";
|
|
2227
2650
|
uuid: "uuid";
|
|
2228
2651
|
chrono: "chrono";
|
|
2229
2652
|
reqwest: "reqwest";
|
|
2230
|
-
config: "config";
|
|
2231
2653
|
dashmap: "dashmap";
|
|
2232
2654
|
"parking-lot": "parking-lot";
|
|
2233
2655
|
secrecy: "secrecy";
|
|
@@ -2259,19 +2681,39 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2259
2681
|
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
2260
2682
|
none: "none";
|
|
2261
2683
|
oauth2: "oauth2";
|
|
2684
|
+
torii: "torii";
|
|
2262
2685
|
}>>;
|
|
2263
|
-
|
|
2686
|
+
rustRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2264
2687
|
none: "none";
|
|
2265
|
-
|
|
2266
|
-
django: "django";
|
|
2267
|
-
flask: "flask";
|
|
2268
|
-
litestar: "litestar";
|
|
2688
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
2269
2689
|
}>>;
|
|
2270
|
-
|
|
2690
|
+
rustMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
2271
2691
|
none: "none";
|
|
2272
|
-
|
|
2273
|
-
|
|
2692
|
+
lapin: "lapin";
|
|
2693
|
+
}>>;
|
|
2694
|
+
rustObservability: z.ZodOptional<z.ZodEnum<{
|
|
2695
|
+
none: "none";
|
|
2696
|
+
opentelemetry: "opentelemetry";
|
|
2697
|
+
}>>;
|
|
2698
|
+
rustTemplating: z.ZodOptional<z.ZodEnum<{
|
|
2699
|
+
none: "none";
|
|
2700
|
+
askama: "askama";
|
|
2701
|
+
tera: "tera";
|
|
2702
|
+
}>>;
|
|
2703
|
+
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2704
|
+
none: "none";
|
|
2705
|
+
fastapi: "fastapi";
|
|
2706
|
+
django: "django";
|
|
2707
|
+
flask: "flask";
|
|
2708
|
+
litestar: "litestar";
|
|
2709
|
+
starlette: "starlette";
|
|
2710
|
+
}>>;
|
|
2711
|
+
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
2712
|
+
none: "none";
|
|
2713
|
+
sqlalchemy: "sqlalchemy";
|
|
2714
|
+
sqlmodel: "sqlmodel";
|
|
2274
2715
|
"tortoise-orm": "tortoise-orm";
|
|
2716
|
+
peewee: "peewee";
|
|
2275
2717
|
}>>;
|
|
2276
2718
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
2277
2719
|
none: "none";
|
|
@@ -2280,17 +2722,21 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2280
2722
|
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2281
2723
|
none: "none";
|
|
2282
2724
|
langgraph: "langgraph";
|
|
2725
|
+
"google-adk": "google-adk";
|
|
2283
2726
|
langchain: "langchain";
|
|
2284
2727
|
llamaindex: "llamaindex";
|
|
2285
2728
|
"openai-sdk": "openai-sdk";
|
|
2286
2729
|
"anthropic-sdk": "anthropic-sdk";
|
|
2287
2730
|
crewai: "crewai";
|
|
2288
2731
|
haystack: "haystack";
|
|
2732
|
+
"pydantic-ai": "pydantic-ai";
|
|
2733
|
+
smolagents: "smolagents";
|
|
2289
2734
|
}>>>;
|
|
2290
2735
|
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
2291
2736
|
none: "none";
|
|
2292
2737
|
authlib: "authlib";
|
|
2293
2738
|
jwt: "jwt";
|
|
2739
|
+
"fastapi-users": "fastapi-users";
|
|
2294
2740
|
}>>;
|
|
2295
2741
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
2296
2742
|
none: "none";
|
|
@@ -2303,6 +2749,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2303
2749
|
rq: "rq";
|
|
2304
2750
|
dramatiq: "dramatiq";
|
|
2305
2751
|
huey: "huey";
|
|
2752
|
+
taskiq: "taskiq";
|
|
2306
2753
|
}>>;
|
|
2307
2754
|
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
2308
2755
|
none: "none";
|
|
@@ -2315,6 +2762,31 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2315
2762
|
mypy: "mypy";
|
|
2316
2763
|
pyright: "pyright";
|
|
2317
2764
|
}>>;
|
|
2765
|
+
pythonTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2766
|
+
none: "none";
|
|
2767
|
+
pytest: "pytest";
|
|
2768
|
+
hypothesis: "hypothesis";
|
|
2769
|
+
}>>>;
|
|
2770
|
+
pythonCaching: z.ZodOptional<z.ZodEnum<{
|
|
2771
|
+
none: "none";
|
|
2772
|
+
redis: "redis";
|
|
2773
|
+
aiocache: "aiocache";
|
|
2774
|
+
}>>;
|
|
2775
|
+
pythonRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2776
|
+
none: "none";
|
|
2777
|
+
"python-socketio": "python-socketio";
|
|
2778
|
+
websockets: "websockets";
|
|
2779
|
+
}>>;
|
|
2780
|
+
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
2781
|
+
none: "none";
|
|
2782
|
+
opentelemetry: "opentelemetry";
|
|
2783
|
+
}>>;
|
|
2784
|
+
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2785
|
+
none: "none";
|
|
2786
|
+
typer: "typer";
|
|
2787
|
+
click: "click";
|
|
2788
|
+
rich: "rich";
|
|
2789
|
+
}>>>;
|
|
2318
2790
|
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2319
2791
|
none: "none";
|
|
2320
2792
|
gin: "gin";
|
|
@@ -2331,6 +2803,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2331
2803
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
2332
2804
|
none: "none";
|
|
2333
2805
|
"grpc-go": "grpc-go";
|
|
2806
|
+
gqlgen: "gqlgen";
|
|
2334
2807
|
}>>;
|
|
2335
2808
|
goCli: z.ZodOptional<z.ZodEnum<{
|
|
2336
2809
|
none: "none";
|
|
@@ -2349,6 +2822,36 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2349
2822
|
none: "none";
|
|
2350
2823
|
jwt: "jwt";
|
|
2351
2824
|
casbin: "casbin";
|
|
2825
|
+
goth: "goth";
|
|
2826
|
+
}>>;
|
|
2827
|
+
goTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2828
|
+
none: "none";
|
|
2829
|
+
testify: "testify";
|
|
2830
|
+
gomock: "gomock";
|
|
2831
|
+
}>>>;
|
|
2832
|
+
goRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2833
|
+
none: "none";
|
|
2834
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
2835
|
+
centrifuge: "centrifuge";
|
|
2836
|
+
}>>;
|
|
2837
|
+
goMessageQueue: z.ZodOptional<z.ZodEnum<{
|
|
2838
|
+
none: "none";
|
|
2839
|
+
nats: "nats";
|
|
2840
|
+
watermill: "watermill";
|
|
2841
|
+
}>>;
|
|
2842
|
+
goCaching: z.ZodOptional<z.ZodEnum<{
|
|
2843
|
+
none: "none";
|
|
2844
|
+
redis: "redis";
|
|
2845
|
+
ristretto: "ristretto";
|
|
2846
|
+
}>>;
|
|
2847
|
+
goConfig: z.ZodOptional<z.ZodEnum<{
|
|
2848
|
+
none: "none";
|
|
2849
|
+
viper: "viper";
|
|
2850
|
+
koanf: "koanf";
|
|
2851
|
+
}>>;
|
|
2852
|
+
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
2853
|
+
none: "none";
|
|
2854
|
+
opentelemetry: "opentelemetry";
|
|
2352
2855
|
}>>;
|
|
2353
2856
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2354
2857
|
none: "none";
|
|
@@ -2363,10 +2866,21 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2363
2866
|
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
2364
2867
|
none: "none";
|
|
2365
2868
|
"spring-data-jpa": "spring-data-jpa";
|
|
2869
|
+
jooq: "jooq";
|
|
2870
|
+
mybatis: "mybatis";
|
|
2366
2871
|
}>>;
|
|
2367
2872
|
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
2368
2873
|
none: "none";
|
|
2369
2874
|
"spring-security": "spring-security";
|
|
2875
|
+
keycloak: "keycloak";
|
|
2876
|
+
}>>;
|
|
2877
|
+
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
2878
|
+
none: "none";
|
|
2879
|
+
"spring-graphql": "spring-graphql";
|
|
2880
|
+
}>>;
|
|
2881
|
+
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
2882
|
+
none: "none";
|
|
2883
|
+
logback: "logback";
|
|
2370
2884
|
}>>;
|
|
2371
2885
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2372
2886
|
none: "none";
|
|
@@ -2386,6 +2900,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2386
2900
|
"spring-devtools": "spring-devtools";
|
|
2387
2901
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
2388
2902
|
thymeleaf: "thymeleaf";
|
|
2903
|
+
"spring-amqp": "spring-amqp";
|
|
2904
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
2389
2905
|
}>>>;
|
|
2390
2906
|
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2391
2907
|
none: "none";
|
|
@@ -2399,6 +2915,70 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2399
2915
|
archunit: "archunit";
|
|
2400
2916
|
jqwik: "jqwik";
|
|
2401
2917
|
}>>>;
|
|
2918
|
+
dotnetWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2919
|
+
none: "none";
|
|
2920
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
2921
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
2922
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
2923
|
+
}>>;
|
|
2924
|
+
dotnetOrm: z.ZodOptional<z.ZodEnum<{
|
|
2925
|
+
none: "none";
|
|
2926
|
+
"ef-core": "ef-core";
|
|
2927
|
+
dapper: "dapper";
|
|
2928
|
+
linq2db: "linq2db";
|
|
2929
|
+
}>>;
|
|
2930
|
+
dotnetAuth: z.ZodOptional<z.ZodEnum<{
|
|
2931
|
+
none: "none";
|
|
2932
|
+
"aspnet-identity": "aspnet-identity";
|
|
2933
|
+
"duende-identityserver": "duende-identityserver";
|
|
2934
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
2935
|
+
}>>;
|
|
2936
|
+
dotnetApi: z.ZodOptional<z.ZodEnum<{
|
|
2937
|
+
none: "none";
|
|
2938
|
+
"minimal-api": "minimal-api";
|
|
2939
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
2940
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
2941
|
+
}>>;
|
|
2942
|
+
dotnetTesting: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2943
|
+
none: "none";
|
|
2944
|
+
xunit: "xunit";
|
|
2945
|
+
nunit: "nunit";
|
|
2946
|
+
moq: "moq";
|
|
2947
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
2948
|
+
}>>>;
|
|
2949
|
+
dotnetJobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2950
|
+
none: "none";
|
|
2951
|
+
hangfire: "hangfire";
|
|
2952
|
+
"quartz-net": "quartz-net";
|
|
2953
|
+
"hosted-services": "hosted-services";
|
|
2954
|
+
}>>;
|
|
2955
|
+
dotnetRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2956
|
+
none: "none";
|
|
2957
|
+
signalr: "signalr";
|
|
2958
|
+
}>>;
|
|
2959
|
+
dotnetObservability: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2960
|
+
none: "none";
|
|
2961
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
2962
|
+
serilog: "serilog";
|
|
2963
|
+
nlog: "nlog";
|
|
2964
|
+
"health-checks": "health-checks";
|
|
2965
|
+
}>>>;
|
|
2966
|
+
dotnetValidation: z.ZodOptional<z.ZodEnum<{
|
|
2967
|
+
none: "none";
|
|
2968
|
+
fluentvalidation: "fluentvalidation";
|
|
2969
|
+
"data-annotations": "data-annotations";
|
|
2970
|
+
}>>;
|
|
2971
|
+
dotnetCaching: z.ZodOptional<z.ZodEnum<{
|
|
2972
|
+
none: "none";
|
|
2973
|
+
redis: "redis";
|
|
2974
|
+
"memory-cache": "memory-cache";
|
|
2975
|
+
}>>;
|
|
2976
|
+
dotnetDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2977
|
+
none: "none";
|
|
2978
|
+
docker: "docker";
|
|
2979
|
+
azure: "azure";
|
|
2980
|
+
aws: "aws";
|
|
2981
|
+
}>>;
|
|
2402
2982
|
elixirWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2403
2983
|
none: "none";
|
|
2404
2984
|
phoenix: "phoenix";
|
|
@@ -2419,6 +2999,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2419
2999
|
none: "none";
|
|
2420
3000
|
rest: "rest";
|
|
2421
3001
|
absinthe: "absinthe";
|
|
3002
|
+
grpc: "grpc";
|
|
2422
3003
|
}>>;
|
|
2423
3004
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2424
3005
|
none: "none";
|
|
@@ -2481,6 +3062,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2481
3062
|
gigalixir: "gigalixir";
|
|
2482
3063
|
"mix-release": "mix-release";
|
|
2483
3064
|
}>>;
|
|
3065
|
+
elixirLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3066
|
+
none: "none";
|
|
3067
|
+
broadway: "broadway";
|
|
3068
|
+
nx: "nx";
|
|
3069
|
+
}>>>;
|
|
2484
3070
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2485
3071
|
none: "none";
|
|
2486
3072
|
"claude-md": "claude-md";
|
|
@@ -2502,6 +3088,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2502
3088
|
go: "go";
|
|
2503
3089
|
java: "java";
|
|
2504
3090
|
elixir: "elixir";
|
|
3091
|
+
dotnet: "dotnet";
|
|
2505
3092
|
}>;
|
|
2506
3093
|
database: z.ZodEnum<{
|
|
2507
3094
|
none: "none";
|
|
@@ -2588,23 +3175,27 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2588
3175
|
"tanstack-virtual": "tanstack-virtual";
|
|
2589
3176
|
"tanstack-db": "tanstack-db";
|
|
2590
3177
|
"tanstack-pacer": "tanstack-pacer";
|
|
3178
|
+
"backend-utils": "backend-utils";
|
|
2591
3179
|
"docker-compose": "docker-compose";
|
|
2592
3180
|
}>>;
|
|
2593
3181
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2594
|
-
none: "none";
|
|
2595
3182
|
ai: "ai";
|
|
3183
|
+
none: "none";
|
|
2596
3184
|
"chat-sdk": "chat-sdk";
|
|
2597
3185
|
"tanstack-showcase": "tanstack-showcase";
|
|
2598
3186
|
}>>;
|
|
2599
3187
|
auth: z.ZodEnum<{
|
|
2600
3188
|
none: "none";
|
|
2601
3189
|
"better-auth": "better-auth";
|
|
3190
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
2602
3191
|
"go-better-auth": "go-better-auth";
|
|
2603
3192
|
clerk: "clerk";
|
|
2604
3193
|
nextauth: "nextauth";
|
|
2605
3194
|
"stack-auth": "stack-auth";
|
|
2606
3195
|
"supabase-auth": "supabase-auth";
|
|
2607
3196
|
auth0: "auth0";
|
|
3197
|
+
workos: "workos";
|
|
3198
|
+
kinde: "kinde";
|
|
2608
3199
|
}>;
|
|
2609
3200
|
payments: z.ZodEnum<{
|
|
2610
3201
|
none: "none";
|
|
@@ -2653,6 +3244,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2653
3244
|
cloudflare: "cloudflare";
|
|
2654
3245
|
fly: "fly";
|
|
2655
3246
|
railway: "railway";
|
|
3247
|
+
render: "render";
|
|
3248
|
+
netlify: "netlify";
|
|
2656
3249
|
sst: "sst";
|
|
2657
3250
|
vercel: "vercel";
|
|
2658
3251
|
}>;
|
|
@@ -2662,6 +3255,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2662
3255
|
cloudflare: "cloudflare";
|
|
2663
3256
|
fly: "fly";
|
|
2664
3257
|
railway: "railway";
|
|
3258
|
+
render: "render";
|
|
3259
|
+
netlify: "netlify";
|
|
2665
3260
|
sst: "sst";
|
|
2666
3261
|
vercel: "vercel";
|
|
2667
3262
|
}>;
|
|
@@ -2687,8 +3282,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2687
3282
|
"ai-cli": "ai-cli";
|
|
2688
3283
|
}>;
|
|
2689
3284
|
effect: z.ZodEnum<{
|
|
2690
|
-
none: "none";
|
|
2691
3285
|
effect: "effect";
|
|
3286
|
+
none: "none";
|
|
2692
3287
|
"effect-full": "effect-full";
|
|
2693
3288
|
}>;
|
|
2694
3289
|
stateManagement: z.ZodEnum<{
|
|
@@ -2821,8 +3416,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2821
3416
|
"geist-mono": "geist-mono";
|
|
2822
3417
|
}>>;
|
|
2823
3418
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2824
|
-
none: "none";
|
|
2825
3419
|
default: "default";
|
|
3420
|
+
none: "none";
|
|
2826
3421
|
small: "small";
|
|
2827
3422
|
medium: "medium";
|
|
2828
3423
|
large: "large";
|
|
@@ -2878,6 +3473,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2878
3473
|
opentelemetry: "opentelemetry";
|
|
2879
3474
|
sentry: "sentry";
|
|
2880
3475
|
grafana: "grafana";
|
|
3476
|
+
datadog: "datadog";
|
|
3477
|
+
axiom: "axiom";
|
|
3478
|
+
betterstack: "betterstack";
|
|
2881
3479
|
}>;
|
|
2882
3480
|
featureFlags: z.ZodEnum<{
|
|
2883
3481
|
none: "none";
|
|
@@ -2904,6 +3502,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2904
3502
|
none: "none";
|
|
2905
3503
|
"upstash-redis": "upstash-redis";
|
|
2906
3504
|
}>;
|
|
3505
|
+
rateLimit: z.ZodEnum<{
|
|
3506
|
+
none: "none";
|
|
3507
|
+
arcjet: "arcjet";
|
|
3508
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
3509
|
+
}>;
|
|
2907
3510
|
i18n: z.ZodEnum<{
|
|
2908
3511
|
none: "none";
|
|
2909
3512
|
i18next: "i18next";
|
|
@@ -2929,9 +3532,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2929
3532
|
}>;
|
|
2930
3533
|
mobileUI: z.ZodEnum<{
|
|
2931
3534
|
none: "none";
|
|
2932
|
-
uniwind: "uniwind";
|
|
2933
3535
|
tamagui: "tamagui";
|
|
2934
3536
|
"gluestack-ui": "gluestack-ui";
|
|
3537
|
+
uniwind: "uniwind";
|
|
2935
3538
|
unistyles: "unistyles";
|
|
2936
3539
|
}>;
|
|
2937
3540
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2984,12 +3587,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2984
3587
|
ratatui: "ratatui";
|
|
2985
3588
|
}>;
|
|
2986
3589
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3590
|
+
config: "config";
|
|
2987
3591
|
none: "none";
|
|
2988
3592
|
serde: "serde";
|
|
2989
3593
|
uuid: "uuid";
|
|
2990
3594
|
chrono: "chrono";
|
|
2991
3595
|
reqwest: "reqwest";
|
|
2992
|
-
config: "config";
|
|
2993
3596
|
dashmap: "dashmap";
|
|
2994
3597
|
"parking-lot": "parking-lot";
|
|
2995
3598
|
secrecy: "secrecy";
|
|
@@ -3021,6 +3624,24 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3021
3624
|
rustAuth: z.ZodEnum<{
|
|
3022
3625
|
none: "none";
|
|
3023
3626
|
oauth2: "oauth2";
|
|
3627
|
+
torii: "torii";
|
|
3628
|
+
}>;
|
|
3629
|
+
rustRealtime: z.ZodEnum<{
|
|
3630
|
+
none: "none";
|
|
3631
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
3632
|
+
}>;
|
|
3633
|
+
rustMessageQueue: z.ZodEnum<{
|
|
3634
|
+
none: "none";
|
|
3635
|
+
lapin: "lapin";
|
|
3636
|
+
}>;
|
|
3637
|
+
rustObservability: z.ZodEnum<{
|
|
3638
|
+
none: "none";
|
|
3639
|
+
opentelemetry: "opentelemetry";
|
|
3640
|
+
}>;
|
|
3641
|
+
rustTemplating: z.ZodEnum<{
|
|
3642
|
+
none: "none";
|
|
3643
|
+
askama: "askama";
|
|
3644
|
+
tera: "tera";
|
|
3024
3645
|
}>;
|
|
3025
3646
|
pythonWebFramework: z.ZodEnum<{
|
|
3026
3647
|
none: "none";
|
|
@@ -3028,12 +3649,14 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3028
3649
|
django: "django";
|
|
3029
3650
|
flask: "flask";
|
|
3030
3651
|
litestar: "litestar";
|
|
3652
|
+
starlette: "starlette";
|
|
3031
3653
|
}>;
|
|
3032
3654
|
pythonOrm: z.ZodEnum<{
|
|
3033
3655
|
none: "none";
|
|
3034
3656
|
sqlalchemy: "sqlalchemy";
|
|
3035
3657
|
sqlmodel: "sqlmodel";
|
|
3036
3658
|
"tortoise-orm": "tortoise-orm";
|
|
3659
|
+
peewee: "peewee";
|
|
3037
3660
|
}>;
|
|
3038
3661
|
pythonValidation: z.ZodEnum<{
|
|
3039
3662
|
none: "none";
|
|
@@ -3042,17 +3665,21 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3042
3665
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3043
3666
|
none: "none";
|
|
3044
3667
|
langgraph: "langgraph";
|
|
3668
|
+
"google-adk": "google-adk";
|
|
3045
3669
|
langchain: "langchain";
|
|
3046
3670
|
llamaindex: "llamaindex";
|
|
3047
3671
|
"openai-sdk": "openai-sdk";
|
|
3048
3672
|
"anthropic-sdk": "anthropic-sdk";
|
|
3049
3673
|
crewai: "crewai";
|
|
3050
3674
|
haystack: "haystack";
|
|
3675
|
+
"pydantic-ai": "pydantic-ai";
|
|
3676
|
+
smolagents: "smolagents";
|
|
3051
3677
|
}>>;
|
|
3052
3678
|
pythonAuth: z.ZodEnum<{
|
|
3053
3679
|
none: "none";
|
|
3054
3680
|
authlib: "authlib";
|
|
3055
3681
|
jwt: "jwt";
|
|
3682
|
+
"fastapi-users": "fastapi-users";
|
|
3056
3683
|
}>;
|
|
3057
3684
|
pythonApi: z.ZodEnum<{
|
|
3058
3685
|
none: "none";
|
|
@@ -3065,6 +3692,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3065
3692
|
rq: "rq";
|
|
3066
3693
|
dramatiq: "dramatiq";
|
|
3067
3694
|
huey: "huey";
|
|
3695
|
+
taskiq: "taskiq";
|
|
3068
3696
|
}>;
|
|
3069
3697
|
pythonGraphql: z.ZodEnum<{
|
|
3070
3698
|
none: "none";
|
|
@@ -3077,6 +3705,31 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3077
3705
|
mypy: "mypy";
|
|
3078
3706
|
pyright: "pyright";
|
|
3079
3707
|
}>;
|
|
3708
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
3709
|
+
none: "none";
|
|
3710
|
+
pytest: "pytest";
|
|
3711
|
+
hypothesis: "hypothesis";
|
|
3712
|
+
}>>;
|
|
3713
|
+
pythonCaching: z.ZodEnum<{
|
|
3714
|
+
none: "none";
|
|
3715
|
+
redis: "redis";
|
|
3716
|
+
aiocache: "aiocache";
|
|
3717
|
+
}>;
|
|
3718
|
+
pythonRealtime: z.ZodEnum<{
|
|
3719
|
+
none: "none";
|
|
3720
|
+
"python-socketio": "python-socketio";
|
|
3721
|
+
websockets: "websockets";
|
|
3722
|
+
}>;
|
|
3723
|
+
pythonObservability: z.ZodEnum<{
|
|
3724
|
+
none: "none";
|
|
3725
|
+
opentelemetry: "opentelemetry";
|
|
3726
|
+
}>;
|
|
3727
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
3728
|
+
none: "none";
|
|
3729
|
+
typer: "typer";
|
|
3730
|
+
click: "click";
|
|
3731
|
+
rich: "rich";
|
|
3732
|
+
}>>;
|
|
3080
3733
|
goWebFramework: z.ZodEnum<{
|
|
3081
3734
|
none: "none";
|
|
3082
3735
|
gin: "gin";
|
|
@@ -3093,6 +3746,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3093
3746
|
goApi: z.ZodEnum<{
|
|
3094
3747
|
none: "none";
|
|
3095
3748
|
"grpc-go": "grpc-go";
|
|
3749
|
+
gqlgen: "gqlgen";
|
|
3096
3750
|
}>;
|
|
3097
3751
|
goCli: z.ZodEnum<{
|
|
3098
3752
|
none: "none";
|
|
@@ -3111,6 +3765,36 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3111
3765
|
none: "none";
|
|
3112
3766
|
jwt: "jwt";
|
|
3113
3767
|
casbin: "casbin";
|
|
3768
|
+
goth: "goth";
|
|
3769
|
+
}>;
|
|
3770
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
3771
|
+
none: "none";
|
|
3772
|
+
testify: "testify";
|
|
3773
|
+
gomock: "gomock";
|
|
3774
|
+
}>>;
|
|
3775
|
+
goRealtime: z.ZodEnum<{
|
|
3776
|
+
none: "none";
|
|
3777
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
3778
|
+
centrifuge: "centrifuge";
|
|
3779
|
+
}>;
|
|
3780
|
+
goMessageQueue: z.ZodEnum<{
|
|
3781
|
+
none: "none";
|
|
3782
|
+
nats: "nats";
|
|
3783
|
+
watermill: "watermill";
|
|
3784
|
+
}>;
|
|
3785
|
+
goCaching: z.ZodEnum<{
|
|
3786
|
+
none: "none";
|
|
3787
|
+
redis: "redis";
|
|
3788
|
+
ristretto: "ristretto";
|
|
3789
|
+
}>;
|
|
3790
|
+
goConfig: z.ZodEnum<{
|
|
3791
|
+
none: "none";
|
|
3792
|
+
viper: "viper";
|
|
3793
|
+
koanf: "koanf";
|
|
3794
|
+
}>;
|
|
3795
|
+
goObservability: z.ZodEnum<{
|
|
3796
|
+
none: "none";
|
|
3797
|
+
opentelemetry: "opentelemetry";
|
|
3114
3798
|
}>;
|
|
3115
3799
|
javaWebFramework: z.ZodEnum<{
|
|
3116
3800
|
none: "none";
|
|
@@ -3125,10 +3809,21 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3125
3809
|
javaOrm: z.ZodEnum<{
|
|
3126
3810
|
none: "none";
|
|
3127
3811
|
"spring-data-jpa": "spring-data-jpa";
|
|
3812
|
+
jooq: "jooq";
|
|
3813
|
+
mybatis: "mybatis";
|
|
3128
3814
|
}>;
|
|
3129
3815
|
javaAuth: z.ZodEnum<{
|
|
3130
3816
|
none: "none";
|
|
3131
3817
|
"spring-security": "spring-security";
|
|
3818
|
+
keycloak: "keycloak";
|
|
3819
|
+
}>;
|
|
3820
|
+
javaApi: z.ZodEnum<{
|
|
3821
|
+
none: "none";
|
|
3822
|
+
"spring-graphql": "spring-graphql";
|
|
3823
|
+
}>;
|
|
3824
|
+
javaLogging: z.ZodEnum<{
|
|
3825
|
+
none: "none";
|
|
3826
|
+
logback: "logback";
|
|
3132
3827
|
}>;
|
|
3133
3828
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3134
3829
|
none: "none";
|
|
@@ -3148,6 +3843,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3148
3843
|
"spring-devtools": "spring-devtools";
|
|
3149
3844
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
3150
3845
|
thymeleaf: "thymeleaf";
|
|
3846
|
+
"spring-amqp": "spring-amqp";
|
|
3847
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
3151
3848
|
}>>;
|
|
3152
3849
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3153
3850
|
none: "none";
|
|
@@ -3161,6 +3858,70 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3161
3858
|
archunit: "archunit";
|
|
3162
3859
|
jqwik: "jqwik";
|
|
3163
3860
|
}>>;
|
|
3861
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
3862
|
+
none: "none";
|
|
3863
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
3864
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
3865
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
3866
|
+
}>;
|
|
3867
|
+
dotnetOrm: z.ZodEnum<{
|
|
3868
|
+
none: "none";
|
|
3869
|
+
"ef-core": "ef-core";
|
|
3870
|
+
dapper: "dapper";
|
|
3871
|
+
linq2db: "linq2db";
|
|
3872
|
+
}>;
|
|
3873
|
+
dotnetAuth: z.ZodEnum<{
|
|
3874
|
+
none: "none";
|
|
3875
|
+
"aspnet-identity": "aspnet-identity";
|
|
3876
|
+
"duende-identityserver": "duende-identityserver";
|
|
3877
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
3878
|
+
}>;
|
|
3879
|
+
dotnetApi: z.ZodEnum<{
|
|
3880
|
+
none: "none";
|
|
3881
|
+
"minimal-api": "minimal-api";
|
|
3882
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
3883
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
3884
|
+
}>;
|
|
3885
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
3886
|
+
none: "none";
|
|
3887
|
+
xunit: "xunit";
|
|
3888
|
+
nunit: "nunit";
|
|
3889
|
+
moq: "moq";
|
|
3890
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
3891
|
+
}>>;
|
|
3892
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
3893
|
+
none: "none";
|
|
3894
|
+
hangfire: "hangfire";
|
|
3895
|
+
"quartz-net": "quartz-net";
|
|
3896
|
+
"hosted-services": "hosted-services";
|
|
3897
|
+
}>;
|
|
3898
|
+
dotnetRealtime: z.ZodEnum<{
|
|
3899
|
+
none: "none";
|
|
3900
|
+
signalr: "signalr";
|
|
3901
|
+
}>;
|
|
3902
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
3903
|
+
none: "none";
|
|
3904
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
3905
|
+
serilog: "serilog";
|
|
3906
|
+
nlog: "nlog";
|
|
3907
|
+
"health-checks": "health-checks";
|
|
3908
|
+
}>>;
|
|
3909
|
+
dotnetValidation: z.ZodEnum<{
|
|
3910
|
+
none: "none";
|
|
3911
|
+
fluentvalidation: "fluentvalidation";
|
|
3912
|
+
"data-annotations": "data-annotations";
|
|
3913
|
+
}>;
|
|
3914
|
+
dotnetCaching: z.ZodEnum<{
|
|
3915
|
+
none: "none";
|
|
3916
|
+
redis: "redis";
|
|
3917
|
+
"memory-cache": "memory-cache";
|
|
3918
|
+
}>;
|
|
3919
|
+
dotnetDeploy: z.ZodEnum<{
|
|
3920
|
+
none: "none";
|
|
3921
|
+
docker: "docker";
|
|
3922
|
+
azure: "azure";
|
|
3923
|
+
aws: "aws";
|
|
3924
|
+
}>;
|
|
3164
3925
|
elixirWebFramework: z.ZodEnum<{
|
|
3165
3926
|
none: "none";
|
|
3166
3927
|
phoenix: "phoenix";
|
|
@@ -3181,6 +3942,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3181
3942
|
none: "none";
|
|
3182
3943
|
rest: "rest";
|
|
3183
3944
|
absinthe: "absinthe";
|
|
3945
|
+
grpc: "grpc";
|
|
3184
3946
|
}>;
|
|
3185
3947
|
elixirRealtime: z.ZodEnum<{
|
|
3186
3948
|
none: "none";
|
|
@@ -3243,6 +4005,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3243
4005
|
gigalixir: "gigalixir";
|
|
3244
4006
|
"mix-release": "mix-release";
|
|
3245
4007
|
}>;
|
|
4008
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
4009
|
+
none: "none";
|
|
4010
|
+
broadway: "broadway";
|
|
4011
|
+
nx: "nx";
|
|
4012
|
+
}>>;
|
|
3246
4013
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
3247
4014
|
none: "none";
|
|
3248
4015
|
"claude-md": "claude-md";
|
|
@@ -3252,37 +4019,55 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3252
4019
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
4020
|
id: z.ZodString;
|
|
3254
4021
|
role: z.ZodEnum<{
|
|
3255
|
-
|
|
4022
|
+
frontend: "frontend";
|
|
4023
|
+
backend: "backend";
|
|
4024
|
+
mobile: "mobile";
|
|
3256
4025
|
database: "database";
|
|
4026
|
+
api: "api";
|
|
3257
4027
|
orm: "orm";
|
|
3258
4028
|
auth: "auth";
|
|
3259
|
-
payments: "payments";
|
|
3260
|
-
frontend: "frontend";
|
|
3261
|
-
backend: "backend";
|
|
3262
4029
|
runtime: "runtime";
|
|
3263
|
-
|
|
4030
|
+
deploy: "deploy";
|
|
4031
|
+
dbSetup: "dbSetup";
|
|
4032
|
+
realtime: "realtime";
|
|
4033
|
+
navigation: "navigation";
|
|
4034
|
+
caching: "caching";
|
|
4035
|
+
observability: "observability";
|
|
4036
|
+
email: "email";
|
|
4037
|
+
search: "search";
|
|
4038
|
+
fileStorage: "fileStorage";
|
|
4039
|
+
jobQueue: "jobQueue";
|
|
4040
|
+
rateLimit: "rateLimit";
|
|
4041
|
+
testing: "testing";
|
|
3264
4042
|
stateManagement: "stateManagement";
|
|
3265
4043
|
forms: "forms";
|
|
3266
|
-
|
|
3267
|
-
|
|
4044
|
+
animation: "animation";
|
|
4045
|
+
fileUpload: "fileUpload";
|
|
3268
4046
|
validation: "validation";
|
|
3269
|
-
|
|
4047
|
+
effect: "effect";
|
|
4048
|
+
ui: "ui";
|
|
4049
|
+
css: "css";
|
|
4050
|
+
storage: "storage";
|
|
4051
|
+
ai: "ai";
|
|
4052
|
+
payments: "payments";
|
|
3270
4053
|
logging: "logging";
|
|
3271
|
-
observability: "observability";
|
|
3272
4054
|
featureFlags: "featureFlags";
|
|
3273
4055
|
analytics: "analytics";
|
|
3274
4056
|
cms: "cms";
|
|
3275
|
-
caching: "caching";
|
|
3276
4057
|
i18n: "i18n";
|
|
3277
|
-
search: "search";
|
|
3278
|
-
fileStorage: "fileStorage";
|
|
3279
|
-
mobile: "mobile";
|
|
3280
|
-
deploy: "deploy";
|
|
3281
|
-
ui: "ui";
|
|
3282
|
-
css: "css";
|
|
3283
4058
|
documentation: "documentation";
|
|
3284
4059
|
codeQuality: "codeQuality";
|
|
3285
4060
|
appPlatform: "appPlatform";
|
|
4061
|
+
dataFetching: "dataFetching";
|
|
4062
|
+
workspaceTooling: "workspaceTooling";
|
|
4063
|
+
examples: "examples";
|
|
4064
|
+
buildTool: "buildTool";
|
|
4065
|
+
cli: "cli";
|
|
4066
|
+
errorHandling: "errorHandling";
|
|
4067
|
+
httpClient: "httpClient";
|
|
4068
|
+
libraries: "libraries";
|
|
4069
|
+
config: "config";
|
|
4070
|
+
templating: "templating";
|
|
3286
4071
|
}>;
|
|
3287
4072
|
toolId: z.ZodString;
|
|
3288
4073
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -3293,6 +4078,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3293
4078
|
go: "go";
|
|
3294
4079
|
java: "java";
|
|
3295
4080
|
elixir: "elixir";
|
|
4081
|
+
dotnet: "dotnet";
|
|
3296
4082
|
}>, z.ZodLiteral<"universal">]>;
|
|
3297
4083
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3298
4084
|
source: z.ZodEnum<{
|
|
@@ -3320,6 +4106,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3320
4106
|
go: "go";
|
|
3321
4107
|
java: "java";
|
|
3322
4108
|
elixir: "elixir";
|
|
4109
|
+
dotnet: "dotnet";
|
|
3323
4110
|
}>;
|
|
3324
4111
|
database: z.ZodEnum<{
|
|
3325
4112
|
none: "none";
|
|
@@ -3406,23 +4193,27 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3406
4193
|
"tanstack-virtual": "tanstack-virtual";
|
|
3407
4194
|
"tanstack-db": "tanstack-db";
|
|
3408
4195
|
"tanstack-pacer": "tanstack-pacer";
|
|
4196
|
+
"backend-utils": "backend-utils";
|
|
3409
4197
|
"docker-compose": "docker-compose";
|
|
3410
4198
|
}>>;
|
|
3411
4199
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3412
|
-
none: "none";
|
|
3413
4200
|
ai: "ai";
|
|
4201
|
+
none: "none";
|
|
3414
4202
|
"chat-sdk": "chat-sdk";
|
|
3415
4203
|
"tanstack-showcase": "tanstack-showcase";
|
|
3416
4204
|
}>>;
|
|
3417
4205
|
auth: z.ZodEnum<{
|
|
3418
4206
|
none: "none";
|
|
3419
4207
|
"better-auth": "better-auth";
|
|
4208
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
3420
4209
|
"go-better-auth": "go-better-auth";
|
|
3421
4210
|
clerk: "clerk";
|
|
3422
4211
|
nextauth: "nextauth";
|
|
3423
4212
|
"stack-auth": "stack-auth";
|
|
3424
4213
|
"supabase-auth": "supabase-auth";
|
|
3425
4214
|
auth0: "auth0";
|
|
4215
|
+
workos: "workos";
|
|
4216
|
+
kinde: "kinde";
|
|
3426
4217
|
}>;
|
|
3427
4218
|
payments: z.ZodEnum<{
|
|
3428
4219
|
none: "none";
|
|
@@ -3469,6 +4260,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3469
4260
|
cloudflare: "cloudflare";
|
|
3470
4261
|
fly: "fly";
|
|
3471
4262
|
railway: "railway";
|
|
4263
|
+
render: "render";
|
|
4264
|
+
netlify: "netlify";
|
|
3472
4265
|
sst: "sst";
|
|
3473
4266
|
vercel: "vercel";
|
|
3474
4267
|
}>;
|
|
@@ -3478,6 +4271,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3478
4271
|
cloudflare: "cloudflare";
|
|
3479
4272
|
fly: "fly";
|
|
3480
4273
|
railway: "railway";
|
|
4274
|
+
render: "render";
|
|
4275
|
+
netlify: "netlify";
|
|
3481
4276
|
sst: "sst";
|
|
3482
4277
|
vercel: "vercel";
|
|
3483
4278
|
}>;
|
|
@@ -3503,8 +4298,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3503
4298
|
"ai-cli": "ai-cli";
|
|
3504
4299
|
}>;
|
|
3505
4300
|
effect: z.ZodEnum<{
|
|
3506
|
-
none: "none";
|
|
3507
4301
|
effect: "effect";
|
|
4302
|
+
none: "none";
|
|
3508
4303
|
"effect-full": "effect-full";
|
|
3509
4304
|
}>;
|
|
3510
4305
|
stateManagement: z.ZodEnum<{
|
|
@@ -3637,8 +4432,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3637
4432
|
"geist-mono": "geist-mono";
|
|
3638
4433
|
}>>;
|
|
3639
4434
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3640
|
-
none: "none";
|
|
3641
4435
|
default: "default";
|
|
4436
|
+
none: "none";
|
|
3642
4437
|
small: "small";
|
|
3643
4438
|
medium: "medium";
|
|
3644
4439
|
large: "large";
|
|
@@ -3694,6 +4489,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3694
4489
|
opentelemetry: "opentelemetry";
|
|
3695
4490
|
sentry: "sentry";
|
|
3696
4491
|
grafana: "grafana";
|
|
4492
|
+
datadog: "datadog";
|
|
4493
|
+
axiom: "axiom";
|
|
4494
|
+
betterstack: "betterstack";
|
|
3697
4495
|
}>;
|
|
3698
4496
|
featureFlags: z.ZodEnum<{
|
|
3699
4497
|
none: "none";
|
|
@@ -3720,6 +4518,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3720
4518
|
none: "none";
|
|
3721
4519
|
"upstash-redis": "upstash-redis";
|
|
3722
4520
|
}>;
|
|
4521
|
+
rateLimit: z.ZodEnum<{
|
|
4522
|
+
none: "none";
|
|
4523
|
+
arcjet: "arcjet";
|
|
4524
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
4525
|
+
}>;
|
|
3723
4526
|
i18n: z.ZodEnum<{
|
|
3724
4527
|
none: "none";
|
|
3725
4528
|
i18next: "i18next";
|
|
@@ -3745,9 +4548,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3745
4548
|
}>;
|
|
3746
4549
|
mobileUI: z.ZodEnum<{
|
|
3747
4550
|
none: "none";
|
|
3748
|
-
uniwind: "uniwind";
|
|
3749
4551
|
tamagui: "tamagui";
|
|
3750
4552
|
"gluestack-ui": "gluestack-ui";
|
|
4553
|
+
uniwind: "uniwind";
|
|
3751
4554
|
unistyles: "unistyles";
|
|
3752
4555
|
}>;
|
|
3753
4556
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3800,12 +4603,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3800
4603
|
ratatui: "ratatui";
|
|
3801
4604
|
}>;
|
|
3802
4605
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4606
|
+
config: "config";
|
|
3803
4607
|
none: "none";
|
|
3804
4608
|
serde: "serde";
|
|
3805
4609
|
uuid: "uuid";
|
|
3806
4610
|
chrono: "chrono";
|
|
3807
4611
|
reqwest: "reqwest";
|
|
3808
|
-
config: "config";
|
|
3809
4612
|
dashmap: "dashmap";
|
|
3810
4613
|
"parking-lot": "parking-lot";
|
|
3811
4614
|
secrecy: "secrecy";
|
|
@@ -3837,6 +4640,24 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3837
4640
|
rustAuth: z.ZodEnum<{
|
|
3838
4641
|
none: "none";
|
|
3839
4642
|
oauth2: "oauth2";
|
|
4643
|
+
torii: "torii";
|
|
4644
|
+
}>;
|
|
4645
|
+
rustRealtime: z.ZodEnum<{
|
|
4646
|
+
none: "none";
|
|
4647
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
4648
|
+
}>;
|
|
4649
|
+
rustMessageQueue: z.ZodEnum<{
|
|
4650
|
+
none: "none";
|
|
4651
|
+
lapin: "lapin";
|
|
4652
|
+
}>;
|
|
4653
|
+
rustObservability: z.ZodEnum<{
|
|
4654
|
+
none: "none";
|
|
4655
|
+
opentelemetry: "opentelemetry";
|
|
4656
|
+
}>;
|
|
4657
|
+
rustTemplating: z.ZodEnum<{
|
|
4658
|
+
none: "none";
|
|
4659
|
+
askama: "askama";
|
|
4660
|
+
tera: "tera";
|
|
3840
4661
|
}>;
|
|
3841
4662
|
pythonWebFramework: z.ZodEnum<{
|
|
3842
4663
|
none: "none";
|
|
@@ -3844,12 +4665,14 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3844
4665
|
django: "django";
|
|
3845
4666
|
flask: "flask";
|
|
3846
4667
|
litestar: "litestar";
|
|
4668
|
+
starlette: "starlette";
|
|
3847
4669
|
}>;
|
|
3848
4670
|
pythonOrm: z.ZodEnum<{
|
|
3849
4671
|
none: "none";
|
|
3850
4672
|
sqlalchemy: "sqlalchemy";
|
|
3851
4673
|
sqlmodel: "sqlmodel";
|
|
3852
4674
|
"tortoise-orm": "tortoise-orm";
|
|
4675
|
+
peewee: "peewee";
|
|
3853
4676
|
}>;
|
|
3854
4677
|
pythonValidation: z.ZodEnum<{
|
|
3855
4678
|
none: "none";
|
|
@@ -3858,17 +4681,21 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3858
4681
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
3859
4682
|
none: "none";
|
|
3860
4683
|
langgraph: "langgraph";
|
|
4684
|
+
"google-adk": "google-adk";
|
|
3861
4685
|
langchain: "langchain";
|
|
3862
4686
|
llamaindex: "llamaindex";
|
|
3863
4687
|
"openai-sdk": "openai-sdk";
|
|
3864
4688
|
"anthropic-sdk": "anthropic-sdk";
|
|
3865
4689
|
crewai: "crewai";
|
|
3866
4690
|
haystack: "haystack";
|
|
4691
|
+
"pydantic-ai": "pydantic-ai";
|
|
4692
|
+
smolagents: "smolagents";
|
|
3867
4693
|
}>>;
|
|
3868
4694
|
pythonAuth: z.ZodEnum<{
|
|
3869
4695
|
none: "none";
|
|
3870
4696
|
authlib: "authlib";
|
|
3871
4697
|
jwt: "jwt";
|
|
4698
|
+
"fastapi-users": "fastapi-users";
|
|
3872
4699
|
}>;
|
|
3873
4700
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
3874
4701
|
none: "none";
|
|
@@ -3881,6 +4708,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3881
4708
|
rq: "rq";
|
|
3882
4709
|
dramatiq: "dramatiq";
|
|
3883
4710
|
huey: "huey";
|
|
4711
|
+
taskiq: "taskiq";
|
|
3884
4712
|
}>;
|
|
3885
4713
|
pythonGraphql: z.ZodEnum<{
|
|
3886
4714
|
none: "none";
|
|
@@ -3893,6 +4721,31 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3893
4721
|
mypy: "mypy";
|
|
3894
4722
|
pyright: "pyright";
|
|
3895
4723
|
}>;
|
|
4724
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
4725
|
+
none: "none";
|
|
4726
|
+
pytest: "pytest";
|
|
4727
|
+
hypothesis: "hypothesis";
|
|
4728
|
+
}>>;
|
|
4729
|
+
pythonCaching: z.ZodEnum<{
|
|
4730
|
+
none: "none";
|
|
4731
|
+
redis: "redis";
|
|
4732
|
+
aiocache: "aiocache";
|
|
4733
|
+
}>;
|
|
4734
|
+
pythonRealtime: z.ZodEnum<{
|
|
4735
|
+
none: "none";
|
|
4736
|
+
"python-socketio": "python-socketio";
|
|
4737
|
+
websockets: "websockets";
|
|
4738
|
+
}>;
|
|
4739
|
+
pythonObservability: z.ZodEnum<{
|
|
4740
|
+
none: "none";
|
|
4741
|
+
opentelemetry: "opentelemetry";
|
|
4742
|
+
}>;
|
|
4743
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
4744
|
+
none: "none";
|
|
4745
|
+
typer: "typer";
|
|
4746
|
+
click: "click";
|
|
4747
|
+
rich: "rich";
|
|
4748
|
+
}>>;
|
|
3896
4749
|
goWebFramework: z.ZodEnum<{
|
|
3897
4750
|
none: "none";
|
|
3898
4751
|
gin: "gin";
|
|
@@ -3909,6 +4762,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3909
4762
|
goApi: z.ZodEnum<{
|
|
3910
4763
|
none: "none";
|
|
3911
4764
|
"grpc-go": "grpc-go";
|
|
4765
|
+
gqlgen: "gqlgen";
|
|
3912
4766
|
}>;
|
|
3913
4767
|
goCli: z.ZodEnum<{
|
|
3914
4768
|
none: "none";
|
|
@@ -3927,6 +4781,36 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3927
4781
|
none: "none";
|
|
3928
4782
|
jwt: "jwt";
|
|
3929
4783
|
casbin: "casbin";
|
|
4784
|
+
goth: "goth";
|
|
4785
|
+
}>;
|
|
4786
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
4787
|
+
none: "none";
|
|
4788
|
+
testify: "testify";
|
|
4789
|
+
gomock: "gomock";
|
|
4790
|
+
}>>;
|
|
4791
|
+
goRealtime: z.ZodEnum<{
|
|
4792
|
+
none: "none";
|
|
4793
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
4794
|
+
centrifuge: "centrifuge";
|
|
4795
|
+
}>;
|
|
4796
|
+
goMessageQueue: z.ZodEnum<{
|
|
4797
|
+
none: "none";
|
|
4798
|
+
nats: "nats";
|
|
4799
|
+
watermill: "watermill";
|
|
4800
|
+
}>;
|
|
4801
|
+
goCaching: z.ZodEnum<{
|
|
4802
|
+
none: "none";
|
|
4803
|
+
redis: "redis";
|
|
4804
|
+
ristretto: "ristretto";
|
|
4805
|
+
}>;
|
|
4806
|
+
goConfig: z.ZodEnum<{
|
|
4807
|
+
none: "none";
|
|
4808
|
+
viper: "viper";
|
|
4809
|
+
koanf: "koanf";
|
|
4810
|
+
}>;
|
|
4811
|
+
goObservability: z.ZodEnum<{
|
|
4812
|
+
none: "none";
|
|
4813
|
+
opentelemetry: "opentelemetry";
|
|
3930
4814
|
}>;
|
|
3931
4815
|
javaWebFramework: z.ZodEnum<{
|
|
3932
4816
|
none: "none";
|
|
@@ -3941,10 +4825,21 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3941
4825
|
javaOrm: z.ZodEnum<{
|
|
3942
4826
|
none: "none";
|
|
3943
4827
|
"spring-data-jpa": "spring-data-jpa";
|
|
4828
|
+
jooq: "jooq";
|
|
4829
|
+
mybatis: "mybatis";
|
|
3944
4830
|
}>;
|
|
3945
4831
|
javaAuth: z.ZodEnum<{
|
|
3946
4832
|
none: "none";
|
|
3947
4833
|
"spring-security": "spring-security";
|
|
4834
|
+
keycloak: "keycloak";
|
|
4835
|
+
}>;
|
|
4836
|
+
javaApi: z.ZodEnum<{
|
|
4837
|
+
none: "none";
|
|
4838
|
+
"spring-graphql": "spring-graphql";
|
|
4839
|
+
}>;
|
|
4840
|
+
javaLogging: z.ZodEnum<{
|
|
4841
|
+
none: "none";
|
|
4842
|
+
logback: "logback";
|
|
3948
4843
|
}>;
|
|
3949
4844
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3950
4845
|
none: "none";
|
|
@@ -3964,6 +4859,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3964
4859
|
"spring-devtools": "spring-devtools";
|
|
3965
4860
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
3966
4861
|
thymeleaf: "thymeleaf";
|
|
4862
|
+
"spring-amqp": "spring-amqp";
|
|
4863
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
3967
4864
|
}>>;
|
|
3968
4865
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
3969
4866
|
none: "none";
|
|
@@ -3977,33 +4874,98 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3977
4874
|
archunit: "archunit";
|
|
3978
4875
|
jqwik: "jqwik";
|
|
3979
4876
|
}>>;
|
|
3980
|
-
|
|
4877
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
3981
4878
|
none: "none";
|
|
3982
|
-
|
|
3983
|
-
"
|
|
4879
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
4880
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
4881
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
3984
4882
|
}>;
|
|
3985
|
-
|
|
4883
|
+
dotnetOrm: z.ZodEnum<{
|
|
3986
4884
|
none: "none";
|
|
3987
|
-
|
|
3988
|
-
|
|
4885
|
+
"ef-core": "ef-core";
|
|
4886
|
+
dapper: "dapper";
|
|
4887
|
+
linq2db: "linq2db";
|
|
3989
4888
|
}>;
|
|
3990
|
-
|
|
4889
|
+
dotnetAuth: z.ZodEnum<{
|
|
3991
4890
|
none: "none";
|
|
3992
|
-
"
|
|
3993
|
-
|
|
3994
|
-
|
|
4891
|
+
"aspnet-identity": "aspnet-identity";
|
|
4892
|
+
"duende-identityserver": "duende-identityserver";
|
|
4893
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
3995
4894
|
}>;
|
|
3996
|
-
|
|
4895
|
+
dotnetApi: z.ZodEnum<{
|
|
3997
4896
|
none: "none";
|
|
3998
|
-
|
|
3999
|
-
|
|
4897
|
+
"minimal-api": "minimal-api";
|
|
4898
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
4899
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
4000
4900
|
}>;
|
|
4001
|
-
|
|
4901
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
4002
4902
|
none: "none";
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
"
|
|
4903
|
+
xunit: "xunit";
|
|
4904
|
+
nunit: "nunit";
|
|
4905
|
+
moq: "moq";
|
|
4906
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
4907
|
+
}>>;
|
|
4908
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
4909
|
+
none: "none";
|
|
4910
|
+
hangfire: "hangfire";
|
|
4911
|
+
"quartz-net": "quartz-net";
|
|
4912
|
+
"hosted-services": "hosted-services";
|
|
4913
|
+
}>;
|
|
4914
|
+
dotnetRealtime: z.ZodEnum<{
|
|
4915
|
+
none: "none";
|
|
4916
|
+
signalr: "signalr";
|
|
4917
|
+
}>;
|
|
4918
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
4919
|
+
none: "none";
|
|
4920
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
4921
|
+
serilog: "serilog";
|
|
4922
|
+
nlog: "nlog";
|
|
4923
|
+
"health-checks": "health-checks";
|
|
4924
|
+
}>>;
|
|
4925
|
+
dotnetValidation: z.ZodEnum<{
|
|
4926
|
+
none: "none";
|
|
4927
|
+
fluentvalidation: "fluentvalidation";
|
|
4928
|
+
"data-annotations": "data-annotations";
|
|
4929
|
+
}>;
|
|
4930
|
+
dotnetCaching: z.ZodEnum<{
|
|
4931
|
+
none: "none";
|
|
4932
|
+
redis: "redis";
|
|
4933
|
+
"memory-cache": "memory-cache";
|
|
4934
|
+
}>;
|
|
4935
|
+
dotnetDeploy: z.ZodEnum<{
|
|
4936
|
+
none: "none";
|
|
4937
|
+
docker: "docker";
|
|
4938
|
+
azure: "azure";
|
|
4939
|
+
aws: "aws";
|
|
4940
|
+
}>;
|
|
4941
|
+
elixirWebFramework: z.ZodEnum<{
|
|
4942
|
+
none: "none";
|
|
4943
|
+
phoenix: "phoenix";
|
|
4944
|
+
"phoenix-live-view": "phoenix-live-view";
|
|
4945
|
+
}>;
|
|
4946
|
+
elixirOrm: z.ZodEnum<{
|
|
4947
|
+
none: "none";
|
|
4948
|
+
ecto: "ecto";
|
|
4949
|
+
"ecto-sql": "ecto-sql";
|
|
4950
|
+
}>;
|
|
4951
|
+
elixirAuth: z.ZodEnum<{
|
|
4952
|
+
none: "none";
|
|
4953
|
+
"phx-gen-auth": "phx-gen-auth";
|
|
4954
|
+
ueberauth: "ueberauth";
|
|
4955
|
+
guardian: "guardian";
|
|
4956
|
+
}>;
|
|
4957
|
+
elixirApi: z.ZodEnum<{
|
|
4958
|
+
none: "none";
|
|
4959
|
+
rest: "rest";
|
|
4960
|
+
absinthe: "absinthe";
|
|
4961
|
+
grpc: "grpc";
|
|
4962
|
+
}>;
|
|
4963
|
+
elixirRealtime: z.ZodEnum<{
|
|
4964
|
+
none: "none";
|
|
4965
|
+
channels: "channels";
|
|
4966
|
+
presence: "presence";
|
|
4967
|
+
pubsub: "pubsub";
|
|
4968
|
+
"live-view-streams": "live-view-streams";
|
|
4007
4969
|
}>;
|
|
4008
4970
|
elixirJobs: z.ZodEnum<{
|
|
4009
4971
|
none: "none";
|
|
@@ -4059,6 +5021,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4059
5021
|
gigalixir: "gigalixir";
|
|
4060
5022
|
"mix-release": "mix-release";
|
|
4061
5023
|
}>;
|
|
5024
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
5025
|
+
none: "none";
|
|
5026
|
+
broadway: "broadway";
|
|
5027
|
+
nx: "nx";
|
|
5028
|
+
}>>;
|
|
4062
5029
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4063
5030
|
none: "none";
|
|
4064
5031
|
"claude-md": "claude-md";
|
|
@@ -4068,37 +5035,55 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4068
5035
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
5036
|
id: z.ZodString;
|
|
4070
5037
|
role: z.ZodEnum<{
|
|
4071
|
-
|
|
5038
|
+
frontend: "frontend";
|
|
5039
|
+
backend: "backend";
|
|
5040
|
+
mobile: "mobile";
|
|
4072
5041
|
database: "database";
|
|
5042
|
+
api: "api";
|
|
4073
5043
|
orm: "orm";
|
|
4074
5044
|
auth: "auth";
|
|
4075
|
-
payments: "payments";
|
|
4076
|
-
frontend: "frontend";
|
|
4077
|
-
backend: "backend";
|
|
4078
5045
|
runtime: "runtime";
|
|
4079
|
-
|
|
5046
|
+
deploy: "deploy";
|
|
5047
|
+
dbSetup: "dbSetup";
|
|
5048
|
+
realtime: "realtime";
|
|
5049
|
+
navigation: "navigation";
|
|
5050
|
+
caching: "caching";
|
|
5051
|
+
observability: "observability";
|
|
5052
|
+
email: "email";
|
|
5053
|
+
search: "search";
|
|
5054
|
+
fileStorage: "fileStorage";
|
|
5055
|
+
jobQueue: "jobQueue";
|
|
5056
|
+
rateLimit: "rateLimit";
|
|
5057
|
+
testing: "testing";
|
|
4080
5058
|
stateManagement: "stateManagement";
|
|
4081
5059
|
forms: "forms";
|
|
4082
|
-
|
|
4083
|
-
|
|
5060
|
+
animation: "animation";
|
|
5061
|
+
fileUpload: "fileUpload";
|
|
4084
5062
|
validation: "validation";
|
|
4085
|
-
|
|
5063
|
+
effect: "effect";
|
|
5064
|
+
ui: "ui";
|
|
5065
|
+
css: "css";
|
|
5066
|
+
storage: "storage";
|
|
5067
|
+
ai: "ai";
|
|
5068
|
+
payments: "payments";
|
|
4086
5069
|
logging: "logging";
|
|
4087
|
-
observability: "observability";
|
|
4088
5070
|
featureFlags: "featureFlags";
|
|
4089
5071
|
analytics: "analytics";
|
|
4090
5072
|
cms: "cms";
|
|
4091
|
-
caching: "caching";
|
|
4092
5073
|
i18n: "i18n";
|
|
4093
|
-
search: "search";
|
|
4094
|
-
fileStorage: "fileStorage";
|
|
4095
|
-
mobile: "mobile";
|
|
4096
|
-
deploy: "deploy";
|
|
4097
|
-
ui: "ui";
|
|
4098
|
-
css: "css";
|
|
4099
5074
|
documentation: "documentation";
|
|
4100
5075
|
codeQuality: "codeQuality";
|
|
4101
5076
|
appPlatform: "appPlatform";
|
|
5077
|
+
dataFetching: "dataFetching";
|
|
5078
|
+
workspaceTooling: "workspaceTooling";
|
|
5079
|
+
examples: "examples";
|
|
5080
|
+
buildTool: "buildTool";
|
|
5081
|
+
cli: "cli";
|
|
5082
|
+
errorHandling: "errorHandling";
|
|
5083
|
+
httpClient: "httpClient";
|
|
5084
|
+
libraries: "libraries";
|
|
5085
|
+
config: "config";
|
|
5086
|
+
templating: "templating";
|
|
4102
5087
|
}>;
|
|
4103
5088
|
toolId: z.ZodString;
|
|
4104
5089
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -4109,6 +5094,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4109
5094
|
go: "go";
|
|
4110
5095
|
java: "java";
|
|
4111
5096
|
elixir: "elixir";
|
|
5097
|
+
dotnet: "dotnet";
|
|
4112
5098
|
}>, z.ZodLiteral<"universal">]>;
|
|
4113
5099
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4114
5100
|
source: z.ZodEnum<{
|
|
@@ -4136,6 +5122,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4136
5122
|
go: "go";
|
|
4137
5123
|
java: "java";
|
|
4138
5124
|
elixir: "elixir";
|
|
5125
|
+
dotnet: "dotnet";
|
|
4139
5126
|
}>;
|
|
4140
5127
|
database: z.ZodEnum<{
|
|
4141
5128
|
none: "none";
|
|
@@ -4222,23 +5209,27 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4222
5209
|
"tanstack-virtual": "tanstack-virtual";
|
|
4223
5210
|
"tanstack-db": "tanstack-db";
|
|
4224
5211
|
"tanstack-pacer": "tanstack-pacer";
|
|
5212
|
+
"backend-utils": "backend-utils";
|
|
4225
5213
|
"docker-compose": "docker-compose";
|
|
4226
5214
|
}>>;
|
|
4227
5215
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4228
|
-
none: "none";
|
|
4229
5216
|
ai: "ai";
|
|
5217
|
+
none: "none";
|
|
4230
5218
|
"chat-sdk": "chat-sdk";
|
|
4231
5219
|
"tanstack-showcase": "tanstack-showcase";
|
|
4232
5220
|
}>>;
|
|
4233
5221
|
auth: z.ZodEnum<{
|
|
4234
5222
|
none: "none";
|
|
4235
5223
|
"better-auth": "better-auth";
|
|
5224
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
4236
5225
|
"go-better-auth": "go-better-auth";
|
|
4237
5226
|
clerk: "clerk";
|
|
4238
5227
|
nextauth: "nextauth";
|
|
4239
5228
|
"stack-auth": "stack-auth";
|
|
4240
5229
|
"supabase-auth": "supabase-auth";
|
|
4241
5230
|
auth0: "auth0";
|
|
5231
|
+
workos: "workos";
|
|
5232
|
+
kinde: "kinde";
|
|
4242
5233
|
}>;
|
|
4243
5234
|
payments: z.ZodEnum<{
|
|
4244
5235
|
none: "none";
|
|
@@ -4285,6 +5276,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4285
5276
|
cloudflare: "cloudflare";
|
|
4286
5277
|
fly: "fly";
|
|
4287
5278
|
railway: "railway";
|
|
5279
|
+
render: "render";
|
|
5280
|
+
netlify: "netlify";
|
|
4288
5281
|
sst: "sst";
|
|
4289
5282
|
vercel: "vercel";
|
|
4290
5283
|
}>;
|
|
@@ -4294,6 +5287,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4294
5287
|
cloudflare: "cloudflare";
|
|
4295
5288
|
fly: "fly";
|
|
4296
5289
|
railway: "railway";
|
|
5290
|
+
render: "render";
|
|
5291
|
+
netlify: "netlify";
|
|
4297
5292
|
sst: "sst";
|
|
4298
5293
|
vercel: "vercel";
|
|
4299
5294
|
}>;
|
|
@@ -4319,8 +5314,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4319
5314
|
"ai-cli": "ai-cli";
|
|
4320
5315
|
}>;
|
|
4321
5316
|
effect: z.ZodEnum<{
|
|
4322
|
-
none: "none";
|
|
4323
5317
|
effect: "effect";
|
|
5318
|
+
none: "none";
|
|
4324
5319
|
"effect-full": "effect-full";
|
|
4325
5320
|
}>;
|
|
4326
5321
|
stateManagement: z.ZodEnum<{
|
|
@@ -4453,8 +5448,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4453
5448
|
"geist-mono": "geist-mono";
|
|
4454
5449
|
}>>;
|
|
4455
5450
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4456
|
-
none: "none";
|
|
4457
5451
|
default: "default";
|
|
5452
|
+
none: "none";
|
|
4458
5453
|
small: "small";
|
|
4459
5454
|
medium: "medium";
|
|
4460
5455
|
large: "large";
|
|
@@ -4510,6 +5505,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4510
5505
|
opentelemetry: "opentelemetry";
|
|
4511
5506
|
sentry: "sentry";
|
|
4512
5507
|
grafana: "grafana";
|
|
5508
|
+
datadog: "datadog";
|
|
5509
|
+
axiom: "axiom";
|
|
5510
|
+
betterstack: "betterstack";
|
|
4513
5511
|
}>;
|
|
4514
5512
|
featureFlags: z.ZodEnum<{
|
|
4515
5513
|
none: "none";
|
|
@@ -4536,6 +5534,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4536
5534
|
none: "none";
|
|
4537
5535
|
"upstash-redis": "upstash-redis";
|
|
4538
5536
|
}>;
|
|
5537
|
+
rateLimit: z.ZodEnum<{
|
|
5538
|
+
none: "none";
|
|
5539
|
+
arcjet: "arcjet";
|
|
5540
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
5541
|
+
}>;
|
|
4539
5542
|
i18n: z.ZodEnum<{
|
|
4540
5543
|
none: "none";
|
|
4541
5544
|
i18next: "i18next";
|
|
@@ -4561,9 +5564,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4561
5564
|
}>;
|
|
4562
5565
|
mobileUI: z.ZodEnum<{
|
|
4563
5566
|
none: "none";
|
|
4564
|
-
uniwind: "uniwind";
|
|
4565
5567
|
tamagui: "tamagui";
|
|
4566
5568
|
"gluestack-ui": "gluestack-ui";
|
|
5569
|
+
uniwind: "uniwind";
|
|
4567
5570
|
unistyles: "unistyles";
|
|
4568
5571
|
}>;
|
|
4569
5572
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4616,12 +5619,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4616
5619
|
ratatui: "ratatui";
|
|
4617
5620
|
}>;
|
|
4618
5621
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5622
|
+
config: "config";
|
|
4619
5623
|
none: "none";
|
|
4620
5624
|
serde: "serde";
|
|
4621
5625
|
uuid: "uuid";
|
|
4622
5626
|
chrono: "chrono";
|
|
4623
5627
|
reqwest: "reqwest";
|
|
4624
|
-
config: "config";
|
|
4625
5628
|
dashmap: "dashmap";
|
|
4626
5629
|
"parking-lot": "parking-lot";
|
|
4627
5630
|
secrecy: "secrecy";
|
|
@@ -4653,6 +5656,24 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4653
5656
|
rustAuth: z.ZodEnum<{
|
|
4654
5657
|
none: "none";
|
|
4655
5658
|
oauth2: "oauth2";
|
|
5659
|
+
torii: "torii";
|
|
5660
|
+
}>;
|
|
5661
|
+
rustRealtime: z.ZodEnum<{
|
|
5662
|
+
none: "none";
|
|
5663
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
5664
|
+
}>;
|
|
5665
|
+
rustMessageQueue: z.ZodEnum<{
|
|
5666
|
+
none: "none";
|
|
5667
|
+
lapin: "lapin";
|
|
5668
|
+
}>;
|
|
5669
|
+
rustObservability: z.ZodEnum<{
|
|
5670
|
+
none: "none";
|
|
5671
|
+
opentelemetry: "opentelemetry";
|
|
5672
|
+
}>;
|
|
5673
|
+
rustTemplating: z.ZodEnum<{
|
|
5674
|
+
none: "none";
|
|
5675
|
+
askama: "askama";
|
|
5676
|
+
tera: "tera";
|
|
4656
5677
|
}>;
|
|
4657
5678
|
pythonWebFramework: z.ZodEnum<{
|
|
4658
5679
|
none: "none";
|
|
@@ -4660,12 +5681,14 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4660
5681
|
django: "django";
|
|
4661
5682
|
flask: "flask";
|
|
4662
5683
|
litestar: "litestar";
|
|
5684
|
+
starlette: "starlette";
|
|
4663
5685
|
}>;
|
|
4664
5686
|
pythonOrm: z.ZodEnum<{
|
|
4665
5687
|
none: "none";
|
|
4666
5688
|
sqlalchemy: "sqlalchemy";
|
|
4667
5689
|
sqlmodel: "sqlmodel";
|
|
4668
5690
|
"tortoise-orm": "tortoise-orm";
|
|
5691
|
+
peewee: "peewee";
|
|
4669
5692
|
}>;
|
|
4670
5693
|
pythonValidation: z.ZodEnum<{
|
|
4671
5694
|
none: "none";
|
|
@@ -4674,17 +5697,21 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4674
5697
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
4675
5698
|
none: "none";
|
|
4676
5699
|
langgraph: "langgraph";
|
|
5700
|
+
"google-adk": "google-adk";
|
|
4677
5701
|
langchain: "langchain";
|
|
4678
5702
|
llamaindex: "llamaindex";
|
|
4679
5703
|
"openai-sdk": "openai-sdk";
|
|
4680
5704
|
"anthropic-sdk": "anthropic-sdk";
|
|
4681
5705
|
crewai: "crewai";
|
|
4682
5706
|
haystack: "haystack";
|
|
5707
|
+
"pydantic-ai": "pydantic-ai";
|
|
5708
|
+
smolagents: "smolagents";
|
|
4683
5709
|
}>>;
|
|
4684
5710
|
pythonAuth: z.ZodEnum<{
|
|
4685
5711
|
none: "none";
|
|
4686
5712
|
authlib: "authlib";
|
|
4687
5713
|
jwt: "jwt";
|
|
5714
|
+
"fastapi-users": "fastapi-users";
|
|
4688
5715
|
}>;
|
|
4689
5716
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
4690
5717
|
none: "none";
|
|
@@ -4697,6 +5724,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4697
5724
|
rq: "rq";
|
|
4698
5725
|
dramatiq: "dramatiq";
|
|
4699
5726
|
huey: "huey";
|
|
5727
|
+
taskiq: "taskiq";
|
|
4700
5728
|
}>;
|
|
4701
5729
|
pythonGraphql: z.ZodEnum<{
|
|
4702
5730
|
none: "none";
|
|
@@ -4709,6 +5737,31 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4709
5737
|
mypy: "mypy";
|
|
4710
5738
|
pyright: "pyright";
|
|
4711
5739
|
}>;
|
|
5740
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
5741
|
+
none: "none";
|
|
5742
|
+
pytest: "pytest";
|
|
5743
|
+
hypothesis: "hypothesis";
|
|
5744
|
+
}>>;
|
|
5745
|
+
pythonCaching: z.ZodEnum<{
|
|
5746
|
+
none: "none";
|
|
5747
|
+
redis: "redis";
|
|
5748
|
+
aiocache: "aiocache";
|
|
5749
|
+
}>;
|
|
5750
|
+
pythonRealtime: z.ZodEnum<{
|
|
5751
|
+
none: "none";
|
|
5752
|
+
"python-socketio": "python-socketio";
|
|
5753
|
+
websockets: "websockets";
|
|
5754
|
+
}>;
|
|
5755
|
+
pythonObservability: z.ZodEnum<{
|
|
5756
|
+
none: "none";
|
|
5757
|
+
opentelemetry: "opentelemetry";
|
|
5758
|
+
}>;
|
|
5759
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
5760
|
+
none: "none";
|
|
5761
|
+
typer: "typer";
|
|
5762
|
+
click: "click";
|
|
5763
|
+
rich: "rich";
|
|
5764
|
+
}>>;
|
|
4712
5765
|
goWebFramework: z.ZodEnum<{
|
|
4713
5766
|
none: "none";
|
|
4714
5767
|
gin: "gin";
|
|
@@ -4725,6 +5778,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4725
5778
|
goApi: z.ZodEnum<{
|
|
4726
5779
|
none: "none";
|
|
4727
5780
|
"grpc-go": "grpc-go";
|
|
5781
|
+
gqlgen: "gqlgen";
|
|
4728
5782
|
}>;
|
|
4729
5783
|
goCli: z.ZodEnum<{
|
|
4730
5784
|
none: "none";
|
|
@@ -4743,6 +5797,36 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4743
5797
|
none: "none";
|
|
4744
5798
|
jwt: "jwt";
|
|
4745
5799
|
casbin: "casbin";
|
|
5800
|
+
goth: "goth";
|
|
5801
|
+
}>;
|
|
5802
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
5803
|
+
none: "none";
|
|
5804
|
+
testify: "testify";
|
|
5805
|
+
gomock: "gomock";
|
|
5806
|
+
}>>;
|
|
5807
|
+
goRealtime: z.ZodEnum<{
|
|
5808
|
+
none: "none";
|
|
5809
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
5810
|
+
centrifuge: "centrifuge";
|
|
5811
|
+
}>;
|
|
5812
|
+
goMessageQueue: z.ZodEnum<{
|
|
5813
|
+
none: "none";
|
|
5814
|
+
nats: "nats";
|
|
5815
|
+
watermill: "watermill";
|
|
5816
|
+
}>;
|
|
5817
|
+
goCaching: z.ZodEnum<{
|
|
5818
|
+
none: "none";
|
|
5819
|
+
redis: "redis";
|
|
5820
|
+
ristretto: "ristretto";
|
|
5821
|
+
}>;
|
|
5822
|
+
goConfig: z.ZodEnum<{
|
|
5823
|
+
none: "none";
|
|
5824
|
+
viper: "viper";
|
|
5825
|
+
koanf: "koanf";
|
|
5826
|
+
}>;
|
|
5827
|
+
goObservability: z.ZodEnum<{
|
|
5828
|
+
none: "none";
|
|
5829
|
+
opentelemetry: "opentelemetry";
|
|
4746
5830
|
}>;
|
|
4747
5831
|
javaWebFramework: z.ZodEnum<{
|
|
4748
5832
|
none: "none";
|
|
@@ -4757,10 +5841,21 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4757
5841
|
javaOrm: z.ZodEnum<{
|
|
4758
5842
|
none: "none";
|
|
4759
5843
|
"spring-data-jpa": "spring-data-jpa";
|
|
5844
|
+
jooq: "jooq";
|
|
5845
|
+
mybatis: "mybatis";
|
|
4760
5846
|
}>;
|
|
4761
5847
|
javaAuth: z.ZodEnum<{
|
|
4762
5848
|
none: "none";
|
|
4763
5849
|
"spring-security": "spring-security";
|
|
5850
|
+
keycloak: "keycloak";
|
|
5851
|
+
}>;
|
|
5852
|
+
javaApi: z.ZodEnum<{
|
|
5853
|
+
none: "none";
|
|
5854
|
+
"spring-graphql": "spring-graphql";
|
|
5855
|
+
}>;
|
|
5856
|
+
javaLogging: z.ZodEnum<{
|
|
5857
|
+
none: "none";
|
|
5858
|
+
logback: "logback";
|
|
4764
5859
|
}>;
|
|
4765
5860
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4766
5861
|
none: "none";
|
|
@@ -4780,6 +5875,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4780
5875
|
"spring-devtools": "spring-devtools";
|
|
4781
5876
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
4782
5877
|
thymeleaf: "thymeleaf";
|
|
5878
|
+
"spring-amqp": "spring-amqp";
|
|
5879
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
4783
5880
|
}>>;
|
|
4784
5881
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
4785
5882
|
none: "none";
|
|
@@ -4793,6 +5890,70 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4793
5890
|
archunit: "archunit";
|
|
4794
5891
|
jqwik: "jqwik";
|
|
4795
5892
|
}>>;
|
|
5893
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
5894
|
+
none: "none";
|
|
5895
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
5896
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
5897
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
5898
|
+
}>;
|
|
5899
|
+
dotnetOrm: z.ZodEnum<{
|
|
5900
|
+
none: "none";
|
|
5901
|
+
"ef-core": "ef-core";
|
|
5902
|
+
dapper: "dapper";
|
|
5903
|
+
linq2db: "linq2db";
|
|
5904
|
+
}>;
|
|
5905
|
+
dotnetAuth: z.ZodEnum<{
|
|
5906
|
+
none: "none";
|
|
5907
|
+
"aspnet-identity": "aspnet-identity";
|
|
5908
|
+
"duende-identityserver": "duende-identityserver";
|
|
5909
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
5910
|
+
}>;
|
|
5911
|
+
dotnetApi: z.ZodEnum<{
|
|
5912
|
+
none: "none";
|
|
5913
|
+
"minimal-api": "minimal-api";
|
|
5914
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
5915
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
5916
|
+
}>;
|
|
5917
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
5918
|
+
none: "none";
|
|
5919
|
+
xunit: "xunit";
|
|
5920
|
+
nunit: "nunit";
|
|
5921
|
+
moq: "moq";
|
|
5922
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
5923
|
+
}>>;
|
|
5924
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
5925
|
+
none: "none";
|
|
5926
|
+
hangfire: "hangfire";
|
|
5927
|
+
"quartz-net": "quartz-net";
|
|
5928
|
+
"hosted-services": "hosted-services";
|
|
5929
|
+
}>;
|
|
5930
|
+
dotnetRealtime: z.ZodEnum<{
|
|
5931
|
+
none: "none";
|
|
5932
|
+
signalr: "signalr";
|
|
5933
|
+
}>;
|
|
5934
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
5935
|
+
none: "none";
|
|
5936
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
5937
|
+
serilog: "serilog";
|
|
5938
|
+
nlog: "nlog";
|
|
5939
|
+
"health-checks": "health-checks";
|
|
5940
|
+
}>>;
|
|
5941
|
+
dotnetValidation: z.ZodEnum<{
|
|
5942
|
+
none: "none";
|
|
5943
|
+
fluentvalidation: "fluentvalidation";
|
|
5944
|
+
"data-annotations": "data-annotations";
|
|
5945
|
+
}>;
|
|
5946
|
+
dotnetCaching: z.ZodEnum<{
|
|
5947
|
+
none: "none";
|
|
5948
|
+
redis: "redis";
|
|
5949
|
+
"memory-cache": "memory-cache";
|
|
5950
|
+
}>;
|
|
5951
|
+
dotnetDeploy: z.ZodEnum<{
|
|
5952
|
+
none: "none";
|
|
5953
|
+
docker: "docker";
|
|
5954
|
+
azure: "azure";
|
|
5955
|
+
aws: "aws";
|
|
5956
|
+
}>;
|
|
4796
5957
|
elixirWebFramework: z.ZodEnum<{
|
|
4797
5958
|
none: "none";
|
|
4798
5959
|
phoenix: "phoenix";
|
|
@@ -4813,6 +5974,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4813
5974
|
none: "none";
|
|
4814
5975
|
rest: "rest";
|
|
4815
5976
|
absinthe: "absinthe";
|
|
5977
|
+
grpc: "grpc";
|
|
4816
5978
|
}>;
|
|
4817
5979
|
elixirRealtime: z.ZodEnum<{
|
|
4818
5980
|
none: "none";
|
|
@@ -4875,6 +6037,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4875
6037
|
gigalixir: "gigalixir";
|
|
4876
6038
|
"mix-release": "mix-release";
|
|
4877
6039
|
}>;
|
|
6040
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
6041
|
+
none: "none";
|
|
6042
|
+
broadway: "broadway";
|
|
6043
|
+
nx: "nx";
|
|
6044
|
+
}>>;
|
|
4878
6045
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
4879
6046
|
none: "none";
|
|
4880
6047
|
"claude-md": "claude-md";
|
|
@@ -4884,37 +6051,55 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4884
6051
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
6052
|
id: z.ZodString;
|
|
4886
6053
|
role: z.ZodEnum<{
|
|
4887
|
-
|
|
6054
|
+
frontend: "frontend";
|
|
6055
|
+
backend: "backend";
|
|
6056
|
+
mobile: "mobile";
|
|
4888
6057
|
database: "database";
|
|
6058
|
+
api: "api";
|
|
4889
6059
|
orm: "orm";
|
|
4890
6060
|
auth: "auth";
|
|
4891
|
-
payments: "payments";
|
|
4892
|
-
frontend: "frontend";
|
|
4893
|
-
backend: "backend";
|
|
4894
6061
|
runtime: "runtime";
|
|
4895
|
-
|
|
6062
|
+
deploy: "deploy";
|
|
6063
|
+
dbSetup: "dbSetup";
|
|
6064
|
+
realtime: "realtime";
|
|
6065
|
+
navigation: "navigation";
|
|
6066
|
+
caching: "caching";
|
|
6067
|
+
observability: "observability";
|
|
6068
|
+
email: "email";
|
|
6069
|
+
search: "search";
|
|
6070
|
+
fileStorage: "fileStorage";
|
|
6071
|
+
jobQueue: "jobQueue";
|
|
6072
|
+
rateLimit: "rateLimit";
|
|
6073
|
+
testing: "testing";
|
|
4896
6074
|
stateManagement: "stateManagement";
|
|
4897
6075
|
forms: "forms";
|
|
4898
|
-
|
|
4899
|
-
|
|
6076
|
+
animation: "animation";
|
|
6077
|
+
fileUpload: "fileUpload";
|
|
4900
6078
|
validation: "validation";
|
|
4901
|
-
|
|
6079
|
+
effect: "effect";
|
|
6080
|
+
ui: "ui";
|
|
6081
|
+
css: "css";
|
|
6082
|
+
storage: "storage";
|
|
6083
|
+
ai: "ai";
|
|
6084
|
+
payments: "payments";
|
|
4902
6085
|
logging: "logging";
|
|
4903
|
-
observability: "observability";
|
|
4904
6086
|
featureFlags: "featureFlags";
|
|
4905
6087
|
analytics: "analytics";
|
|
4906
6088
|
cms: "cms";
|
|
4907
|
-
caching: "caching";
|
|
4908
6089
|
i18n: "i18n";
|
|
4909
|
-
search: "search";
|
|
4910
|
-
fileStorage: "fileStorage";
|
|
4911
|
-
mobile: "mobile";
|
|
4912
|
-
deploy: "deploy";
|
|
4913
|
-
ui: "ui";
|
|
4914
|
-
css: "css";
|
|
4915
6090
|
documentation: "documentation";
|
|
4916
6091
|
codeQuality: "codeQuality";
|
|
4917
6092
|
appPlatform: "appPlatform";
|
|
6093
|
+
dataFetching: "dataFetching";
|
|
6094
|
+
workspaceTooling: "workspaceTooling";
|
|
6095
|
+
examples: "examples";
|
|
6096
|
+
buildTool: "buildTool";
|
|
6097
|
+
cli: "cli";
|
|
6098
|
+
errorHandling: "errorHandling";
|
|
6099
|
+
httpClient: "httpClient";
|
|
6100
|
+
libraries: "libraries";
|
|
6101
|
+
config: "config";
|
|
6102
|
+
templating: "templating";
|
|
4918
6103
|
}>;
|
|
4919
6104
|
toolId: z.ZodString;
|
|
4920
6105
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -4925,6 +6110,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4925
6110
|
go: "go";
|
|
4926
6111
|
java: "java";
|
|
4927
6112
|
elixir: "elixir";
|
|
6113
|
+
dotnet: "dotnet";
|
|
4928
6114
|
}>, z.ZodLiteral<"universal">]>;
|
|
4929
6115
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4930
6116
|
source: z.ZodEnum<{
|
|
@@ -4953,6 +6139,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4953
6139
|
go: "go";
|
|
4954
6140
|
java: "java";
|
|
4955
6141
|
elixir: "elixir";
|
|
6142
|
+
dotnet: "dotnet";
|
|
4956
6143
|
}>;
|
|
4957
6144
|
database: z.ZodEnum<{
|
|
4958
6145
|
none: "none";
|
|
@@ -5039,23 +6226,27 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5039
6226
|
"tanstack-virtual": "tanstack-virtual";
|
|
5040
6227
|
"tanstack-db": "tanstack-db";
|
|
5041
6228
|
"tanstack-pacer": "tanstack-pacer";
|
|
6229
|
+
"backend-utils": "backend-utils";
|
|
5042
6230
|
"docker-compose": "docker-compose";
|
|
5043
6231
|
}>>;
|
|
5044
6232
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5045
|
-
none: "none";
|
|
5046
6233
|
ai: "ai";
|
|
6234
|
+
none: "none";
|
|
5047
6235
|
"chat-sdk": "chat-sdk";
|
|
5048
6236
|
"tanstack-showcase": "tanstack-showcase";
|
|
5049
6237
|
}>>;
|
|
5050
6238
|
auth: z.ZodEnum<{
|
|
5051
6239
|
none: "none";
|
|
5052
6240
|
"better-auth": "better-auth";
|
|
6241
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
5053
6242
|
"go-better-auth": "go-better-auth";
|
|
5054
6243
|
clerk: "clerk";
|
|
5055
6244
|
nextauth: "nextauth";
|
|
5056
6245
|
"stack-auth": "stack-auth";
|
|
5057
6246
|
"supabase-auth": "supabase-auth";
|
|
5058
6247
|
auth0: "auth0";
|
|
6248
|
+
workos: "workos";
|
|
6249
|
+
kinde: "kinde";
|
|
5059
6250
|
}>;
|
|
5060
6251
|
payments: z.ZodEnum<{
|
|
5061
6252
|
none: "none";
|
|
@@ -5102,6 +6293,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5102
6293
|
cloudflare: "cloudflare";
|
|
5103
6294
|
fly: "fly";
|
|
5104
6295
|
railway: "railway";
|
|
6296
|
+
render: "render";
|
|
6297
|
+
netlify: "netlify";
|
|
5105
6298
|
sst: "sst";
|
|
5106
6299
|
vercel: "vercel";
|
|
5107
6300
|
}>;
|
|
@@ -5111,6 +6304,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5111
6304
|
cloudflare: "cloudflare";
|
|
5112
6305
|
fly: "fly";
|
|
5113
6306
|
railway: "railway";
|
|
6307
|
+
render: "render";
|
|
6308
|
+
netlify: "netlify";
|
|
5114
6309
|
sst: "sst";
|
|
5115
6310
|
vercel: "vercel";
|
|
5116
6311
|
}>;
|
|
@@ -5136,8 +6331,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5136
6331
|
"ai-cli": "ai-cli";
|
|
5137
6332
|
}>;
|
|
5138
6333
|
effect: z.ZodEnum<{
|
|
5139
|
-
none: "none";
|
|
5140
6334
|
effect: "effect";
|
|
6335
|
+
none: "none";
|
|
5141
6336
|
"effect-full": "effect-full";
|
|
5142
6337
|
}>;
|
|
5143
6338
|
stateManagement: z.ZodEnum<{
|
|
@@ -5270,8 +6465,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5270
6465
|
"geist-mono": "geist-mono";
|
|
5271
6466
|
}>>;
|
|
5272
6467
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5273
|
-
none: "none";
|
|
5274
6468
|
default: "default";
|
|
6469
|
+
none: "none";
|
|
5275
6470
|
small: "small";
|
|
5276
6471
|
medium: "medium";
|
|
5277
6472
|
large: "large";
|
|
@@ -5327,6 +6522,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5327
6522
|
opentelemetry: "opentelemetry";
|
|
5328
6523
|
sentry: "sentry";
|
|
5329
6524
|
grafana: "grafana";
|
|
6525
|
+
datadog: "datadog";
|
|
6526
|
+
axiom: "axiom";
|
|
6527
|
+
betterstack: "betterstack";
|
|
5330
6528
|
}>;
|
|
5331
6529
|
featureFlags: z.ZodEnum<{
|
|
5332
6530
|
none: "none";
|
|
@@ -5353,6 +6551,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5353
6551
|
none: "none";
|
|
5354
6552
|
"upstash-redis": "upstash-redis";
|
|
5355
6553
|
}>;
|
|
6554
|
+
rateLimit: z.ZodEnum<{
|
|
6555
|
+
none: "none";
|
|
6556
|
+
arcjet: "arcjet";
|
|
6557
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
6558
|
+
}>;
|
|
5356
6559
|
i18n: z.ZodEnum<{
|
|
5357
6560
|
none: "none";
|
|
5358
6561
|
i18next: "i18next";
|
|
@@ -5378,9 +6581,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5378
6581
|
}>;
|
|
5379
6582
|
mobileUI: z.ZodEnum<{
|
|
5380
6583
|
none: "none";
|
|
5381
|
-
uniwind: "uniwind";
|
|
5382
6584
|
tamagui: "tamagui";
|
|
5383
6585
|
"gluestack-ui": "gluestack-ui";
|
|
6586
|
+
uniwind: "uniwind";
|
|
5384
6587
|
unistyles: "unistyles";
|
|
5385
6588
|
}>;
|
|
5386
6589
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5433,12 +6636,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5433
6636
|
ratatui: "ratatui";
|
|
5434
6637
|
}>;
|
|
5435
6638
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
6639
|
+
config: "config";
|
|
5436
6640
|
none: "none";
|
|
5437
6641
|
serde: "serde";
|
|
5438
6642
|
uuid: "uuid";
|
|
5439
6643
|
chrono: "chrono";
|
|
5440
6644
|
reqwest: "reqwest";
|
|
5441
|
-
config: "config";
|
|
5442
6645
|
dashmap: "dashmap";
|
|
5443
6646
|
"parking-lot": "parking-lot";
|
|
5444
6647
|
secrecy: "secrecy";
|
|
@@ -5470,6 +6673,24 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5470
6673
|
rustAuth: z.ZodEnum<{
|
|
5471
6674
|
none: "none";
|
|
5472
6675
|
oauth2: "oauth2";
|
|
6676
|
+
torii: "torii";
|
|
6677
|
+
}>;
|
|
6678
|
+
rustRealtime: z.ZodEnum<{
|
|
6679
|
+
none: "none";
|
|
6680
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
6681
|
+
}>;
|
|
6682
|
+
rustMessageQueue: z.ZodEnum<{
|
|
6683
|
+
none: "none";
|
|
6684
|
+
lapin: "lapin";
|
|
6685
|
+
}>;
|
|
6686
|
+
rustObservability: z.ZodEnum<{
|
|
6687
|
+
none: "none";
|
|
6688
|
+
opentelemetry: "opentelemetry";
|
|
6689
|
+
}>;
|
|
6690
|
+
rustTemplating: z.ZodEnum<{
|
|
6691
|
+
none: "none";
|
|
6692
|
+
askama: "askama";
|
|
6693
|
+
tera: "tera";
|
|
5473
6694
|
}>;
|
|
5474
6695
|
pythonWebFramework: z.ZodEnum<{
|
|
5475
6696
|
none: "none";
|
|
@@ -5477,12 +6698,14 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5477
6698
|
django: "django";
|
|
5478
6699
|
flask: "flask";
|
|
5479
6700
|
litestar: "litestar";
|
|
6701
|
+
starlette: "starlette";
|
|
5480
6702
|
}>;
|
|
5481
6703
|
pythonOrm: z.ZodEnum<{
|
|
5482
6704
|
none: "none";
|
|
5483
6705
|
sqlalchemy: "sqlalchemy";
|
|
5484
6706
|
sqlmodel: "sqlmodel";
|
|
5485
6707
|
"tortoise-orm": "tortoise-orm";
|
|
6708
|
+
peewee: "peewee";
|
|
5486
6709
|
}>;
|
|
5487
6710
|
pythonValidation: z.ZodEnum<{
|
|
5488
6711
|
none: "none";
|
|
@@ -5491,17 +6714,21 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5491
6714
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
5492
6715
|
none: "none";
|
|
5493
6716
|
langgraph: "langgraph";
|
|
6717
|
+
"google-adk": "google-adk";
|
|
5494
6718
|
langchain: "langchain";
|
|
5495
6719
|
llamaindex: "llamaindex";
|
|
5496
6720
|
"openai-sdk": "openai-sdk";
|
|
5497
6721
|
"anthropic-sdk": "anthropic-sdk";
|
|
5498
6722
|
crewai: "crewai";
|
|
5499
6723
|
haystack: "haystack";
|
|
6724
|
+
"pydantic-ai": "pydantic-ai";
|
|
6725
|
+
smolagents: "smolagents";
|
|
5500
6726
|
}>>;
|
|
5501
6727
|
pythonAuth: z.ZodEnum<{
|
|
5502
6728
|
none: "none";
|
|
5503
6729
|
authlib: "authlib";
|
|
5504
6730
|
jwt: "jwt";
|
|
6731
|
+
"fastapi-users": "fastapi-users";
|
|
5505
6732
|
}>;
|
|
5506
6733
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
5507
6734
|
none: "none";
|
|
@@ -5514,6 +6741,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5514
6741
|
rq: "rq";
|
|
5515
6742
|
dramatiq: "dramatiq";
|
|
5516
6743
|
huey: "huey";
|
|
6744
|
+
taskiq: "taskiq";
|
|
5517
6745
|
}>;
|
|
5518
6746
|
pythonGraphql: z.ZodEnum<{
|
|
5519
6747
|
none: "none";
|
|
@@ -5526,6 +6754,31 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5526
6754
|
mypy: "mypy";
|
|
5527
6755
|
pyright: "pyright";
|
|
5528
6756
|
}>;
|
|
6757
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
6758
|
+
none: "none";
|
|
6759
|
+
pytest: "pytest";
|
|
6760
|
+
hypothesis: "hypothesis";
|
|
6761
|
+
}>>;
|
|
6762
|
+
pythonCaching: z.ZodEnum<{
|
|
6763
|
+
none: "none";
|
|
6764
|
+
redis: "redis";
|
|
6765
|
+
aiocache: "aiocache";
|
|
6766
|
+
}>;
|
|
6767
|
+
pythonRealtime: z.ZodEnum<{
|
|
6768
|
+
none: "none";
|
|
6769
|
+
"python-socketio": "python-socketio";
|
|
6770
|
+
websockets: "websockets";
|
|
6771
|
+
}>;
|
|
6772
|
+
pythonObservability: z.ZodEnum<{
|
|
6773
|
+
none: "none";
|
|
6774
|
+
opentelemetry: "opentelemetry";
|
|
6775
|
+
}>;
|
|
6776
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
6777
|
+
none: "none";
|
|
6778
|
+
typer: "typer";
|
|
6779
|
+
click: "click";
|
|
6780
|
+
rich: "rich";
|
|
6781
|
+
}>>;
|
|
5529
6782
|
goWebFramework: z.ZodEnum<{
|
|
5530
6783
|
none: "none";
|
|
5531
6784
|
gin: "gin";
|
|
@@ -5542,6 +6795,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5542
6795
|
goApi: z.ZodEnum<{
|
|
5543
6796
|
none: "none";
|
|
5544
6797
|
"grpc-go": "grpc-go";
|
|
6798
|
+
gqlgen: "gqlgen";
|
|
5545
6799
|
}>;
|
|
5546
6800
|
goCli: z.ZodEnum<{
|
|
5547
6801
|
none: "none";
|
|
@@ -5560,6 +6814,36 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5560
6814
|
none: "none";
|
|
5561
6815
|
jwt: "jwt";
|
|
5562
6816
|
casbin: "casbin";
|
|
6817
|
+
goth: "goth";
|
|
6818
|
+
}>;
|
|
6819
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
6820
|
+
none: "none";
|
|
6821
|
+
testify: "testify";
|
|
6822
|
+
gomock: "gomock";
|
|
6823
|
+
}>>;
|
|
6824
|
+
goRealtime: z.ZodEnum<{
|
|
6825
|
+
none: "none";
|
|
6826
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
6827
|
+
centrifuge: "centrifuge";
|
|
6828
|
+
}>;
|
|
6829
|
+
goMessageQueue: z.ZodEnum<{
|
|
6830
|
+
none: "none";
|
|
6831
|
+
nats: "nats";
|
|
6832
|
+
watermill: "watermill";
|
|
6833
|
+
}>;
|
|
6834
|
+
goCaching: z.ZodEnum<{
|
|
6835
|
+
none: "none";
|
|
6836
|
+
redis: "redis";
|
|
6837
|
+
ristretto: "ristretto";
|
|
6838
|
+
}>;
|
|
6839
|
+
goConfig: z.ZodEnum<{
|
|
6840
|
+
none: "none";
|
|
6841
|
+
viper: "viper";
|
|
6842
|
+
koanf: "koanf";
|
|
6843
|
+
}>;
|
|
6844
|
+
goObservability: z.ZodEnum<{
|
|
6845
|
+
none: "none";
|
|
6846
|
+
opentelemetry: "opentelemetry";
|
|
5563
6847
|
}>;
|
|
5564
6848
|
javaWebFramework: z.ZodEnum<{
|
|
5565
6849
|
none: "none";
|
|
@@ -5574,10 +6858,21 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5574
6858
|
javaOrm: z.ZodEnum<{
|
|
5575
6859
|
none: "none";
|
|
5576
6860
|
"spring-data-jpa": "spring-data-jpa";
|
|
6861
|
+
jooq: "jooq";
|
|
6862
|
+
mybatis: "mybatis";
|
|
5577
6863
|
}>;
|
|
5578
6864
|
javaAuth: z.ZodEnum<{
|
|
5579
6865
|
none: "none";
|
|
5580
6866
|
"spring-security": "spring-security";
|
|
6867
|
+
keycloak: "keycloak";
|
|
6868
|
+
}>;
|
|
6869
|
+
javaApi: z.ZodEnum<{
|
|
6870
|
+
none: "none";
|
|
6871
|
+
"spring-graphql": "spring-graphql";
|
|
6872
|
+
}>;
|
|
6873
|
+
javaLogging: z.ZodEnum<{
|
|
6874
|
+
none: "none";
|
|
6875
|
+
logback: "logback";
|
|
5581
6876
|
}>;
|
|
5582
6877
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5583
6878
|
none: "none";
|
|
@@ -5597,6 +6892,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5597
6892
|
"spring-devtools": "spring-devtools";
|
|
5598
6893
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
5599
6894
|
thymeleaf: "thymeleaf";
|
|
6895
|
+
"spring-amqp": "spring-amqp";
|
|
6896
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
5600
6897
|
}>>;
|
|
5601
6898
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
5602
6899
|
none: "none";
|
|
@@ -5610,6 +6907,70 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5610
6907
|
archunit: "archunit";
|
|
5611
6908
|
jqwik: "jqwik";
|
|
5612
6909
|
}>>;
|
|
6910
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
6911
|
+
none: "none";
|
|
6912
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
6913
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
6914
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
6915
|
+
}>;
|
|
6916
|
+
dotnetOrm: z.ZodEnum<{
|
|
6917
|
+
none: "none";
|
|
6918
|
+
"ef-core": "ef-core";
|
|
6919
|
+
dapper: "dapper";
|
|
6920
|
+
linq2db: "linq2db";
|
|
6921
|
+
}>;
|
|
6922
|
+
dotnetAuth: z.ZodEnum<{
|
|
6923
|
+
none: "none";
|
|
6924
|
+
"aspnet-identity": "aspnet-identity";
|
|
6925
|
+
"duende-identityserver": "duende-identityserver";
|
|
6926
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
6927
|
+
}>;
|
|
6928
|
+
dotnetApi: z.ZodEnum<{
|
|
6929
|
+
none: "none";
|
|
6930
|
+
"minimal-api": "minimal-api";
|
|
6931
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
6932
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
6933
|
+
}>;
|
|
6934
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
6935
|
+
none: "none";
|
|
6936
|
+
xunit: "xunit";
|
|
6937
|
+
nunit: "nunit";
|
|
6938
|
+
moq: "moq";
|
|
6939
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
6940
|
+
}>>;
|
|
6941
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
6942
|
+
none: "none";
|
|
6943
|
+
hangfire: "hangfire";
|
|
6944
|
+
"quartz-net": "quartz-net";
|
|
6945
|
+
"hosted-services": "hosted-services";
|
|
6946
|
+
}>;
|
|
6947
|
+
dotnetRealtime: z.ZodEnum<{
|
|
6948
|
+
none: "none";
|
|
6949
|
+
signalr: "signalr";
|
|
6950
|
+
}>;
|
|
6951
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
6952
|
+
none: "none";
|
|
6953
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
6954
|
+
serilog: "serilog";
|
|
6955
|
+
nlog: "nlog";
|
|
6956
|
+
"health-checks": "health-checks";
|
|
6957
|
+
}>>;
|
|
6958
|
+
dotnetValidation: z.ZodEnum<{
|
|
6959
|
+
none: "none";
|
|
6960
|
+
fluentvalidation: "fluentvalidation";
|
|
6961
|
+
"data-annotations": "data-annotations";
|
|
6962
|
+
}>;
|
|
6963
|
+
dotnetCaching: z.ZodEnum<{
|
|
6964
|
+
none: "none";
|
|
6965
|
+
redis: "redis";
|
|
6966
|
+
"memory-cache": "memory-cache";
|
|
6967
|
+
}>;
|
|
6968
|
+
dotnetDeploy: z.ZodEnum<{
|
|
6969
|
+
none: "none";
|
|
6970
|
+
docker: "docker";
|
|
6971
|
+
azure: "azure";
|
|
6972
|
+
aws: "aws";
|
|
6973
|
+
}>;
|
|
5613
6974
|
elixirWebFramework: z.ZodEnum<{
|
|
5614
6975
|
none: "none";
|
|
5615
6976
|
phoenix: "phoenix";
|
|
@@ -5630,6 +6991,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5630
6991
|
none: "none";
|
|
5631
6992
|
rest: "rest";
|
|
5632
6993
|
absinthe: "absinthe";
|
|
6994
|
+
grpc: "grpc";
|
|
5633
6995
|
}>;
|
|
5634
6996
|
elixirRealtime: z.ZodEnum<{
|
|
5635
6997
|
none: "none";
|
|
@@ -5692,6 +7054,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5692
7054
|
gigalixir: "gigalixir";
|
|
5693
7055
|
"mix-release": "mix-release";
|
|
5694
7056
|
}>;
|
|
7057
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
7058
|
+
none: "none";
|
|
7059
|
+
broadway: "broadway";
|
|
7060
|
+
nx: "nx";
|
|
7061
|
+
}>>;
|
|
5695
7062
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
5696
7063
|
none: "none";
|
|
5697
7064
|
"claude-md": "claude-md";
|
|
@@ -5701,37 +7068,55 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5701
7068
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
7069
|
id: z.ZodString;
|
|
5703
7070
|
role: z.ZodEnum<{
|
|
5704
|
-
|
|
7071
|
+
frontend: "frontend";
|
|
7072
|
+
backend: "backend";
|
|
7073
|
+
mobile: "mobile";
|
|
5705
7074
|
database: "database";
|
|
7075
|
+
api: "api";
|
|
5706
7076
|
orm: "orm";
|
|
5707
7077
|
auth: "auth";
|
|
5708
|
-
payments: "payments";
|
|
5709
|
-
frontend: "frontend";
|
|
5710
|
-
backend: "backend";
|
|
5711
7078
|
runtime: "runtime";
|
|
5712
|
-
|
|
7079
|
+
deploy: "deploy";
|
|
7080
|
+
dbSetup: "dbSetup";
|
|
7081
|
+
realtime: "realtime";
|
|
7082
|
+
navigation: "navigation";
|
|
7083
|
+
caching: "caching";
|
|
7084
|
+
observability: "observability";
|
|
7085
|
+
email: "email";
|
|
7086
|
+
search: "search";
|
|
7087
|
+
fileStorage: "fileStorage";
|
|
7088
|
+
jobQueue: "jobQueue";
|
|
7089
|
+
rateLimit: "rateLimit";
|
|
7090
|
+
testing: "testing";
|
|
5713
7091
|
stateManagement: "stateManagement";
|
|
5714
7092
|
forms: "forms";
|
|
5715
|
-
|
|
5716
|
-
|
|
7093
|
+
animation: "animation";
|
|
7094
|
+
fileUpload: "fileUpload";
|
|
5717
7095
|
validation: "validation";
|
|
5718
|
-
|
|
7096
|
+
effect: "effect";
|
|
7097
|
+
ui: "ui";
|
|
7098
|
+
css: "css";
|
|
7099
|
+
storage: "storage";
|
|
7100
|
+
ai: "ai";
|
|
7101
|
+
payments: "payments";
|
|
5719
7102
|
logging: "logging";
|
|
5720
|
-
observability: "observability";
|
|
5721
7103
|
featureFlags: "featureFlags";
|
|
5722
7104
|
analytics: "analytics";
|
|
5723
7105
|
cms: "cms";
|
|
5724
|
-
caching: "caching";
|
|
5725
7106
|
i18n: "i18n";
|
|
5726
|
-
search: "search";
|
|
5727
|
-
fileStorage: "fileStorage";
|
|
5728
|
-
mobile: "mobile";
|
|
5729
|
-
deploy: "deploy";
|
|
5730
|
-
ui: "ui";
|
|
5731
|
-
css: "css";
|
|
5732
7107
|
documentation: "documentation";
|
|
5733
7108
|
codeQuality: "codeQuality";
|
|
5734
7109
|
appPlatform: "appPlatform";
|
|
7110
|
+
dataFetching: "dataFetching";
|
|
7111
|
+
workspaceTooling: "workspaceTooling";
|
|
7112
|
+
examples: "examples";
|
|
7113
|
+
buildTool: "buildTool";
|
|
7114
|
+
cli: "cli";
|
|
7115
|
+
errorHandling: "errorHandling";
|
|
7116
|
+
httpClient: "httpClient";
|
|
7117
|
+
libraries: "libraries";
|
|
7118
|
+
config: "config";
|
|
7119
|
+
templating: "templating";
|
|
5735
7120
|
}>;
|
|
5736
7121
|
toolId: z.ZodString;
|
|
5737
7122
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -5742,6 +7127,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5742
7127
|
go: "go";
|
|
5743
7128
|
java: "java";
|
|
5744
7129
|
elixir: "elixir";
|
|
7130
|
+
dotnet: "dotnet";
|
|
5745
7131
|
}>, z.ZodLiteral<"universal">]>;
|
|
5746
7132
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
5747
7133
|
source: z.ZodEnum<{
|
|
@@ -5770,6 +7156,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5770
7156
|
go: "go";
|
|
5771
7157
|
java: "java";
|
|
5772
7158
|
elixir: "elixir";
|
|
7159
|
+
dotnet: "dotnet";
|
|
5773
7160
|
}>;
|
|
5774
7161
|
database: z.ZodEnum<{
|
|
5775
7162
|
none: "none";
|
|
@@ -5856,23 +7243,27 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5856
7243
|
"tanstack-virtual": "tanstack-virtual";
|
|
5857
7244
|
"tanstack-db": "tanstack-db";
|
|
5858
7245
|
"tanstack-pacer": "tanstack-pacer";
|
|
7246
|
+
"backend-utils": "backend-utils";
|
|
5859
7247
|
"docker-compose": "docker-compose";
|
|
5860
7248
|
}>>;
|
|
5861
7249
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5862
|
-
none: "none";
|
|
5863
7250
|
ai: "ai";
|
|
7251
|
+
none: "none";
|
|
5864
7252
|
"chat-sdk": "chat-sdk";
|
|
5865
7253
|
"tanstack-showcase": "tanstack-showcase";
|
|
5866
7254
|
}>>;
|
|
5867
7255
|
auth: z.ZodEnum<{
|
|
5868
7256
|
none: "none";
|
|
5869
7257
|
"better-auth": "better-auth";
|
|
7258
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
5870
7259
|
"go-better-auth": "go-better-auth";
|
|
5871
7260
|
clerk: "clerk";
|
|
5872
7261
|
nextauth: "nextauth";
|
|
5873
7262
|
"stack-auth": "stack-auth";
|
|
5874
7263
|
"supabase-auth": "supabase-auth";
|
|
5875
7264
|
auth0: "auth0";
|
|
7265
|
+
workos: "workos";
|
|
7266
|
+
kinde: "kinde";
|
|
5876
7267
|
}>;
|
|
5877
7268
|
payments: z.ZodEnum<{
|
|
5878
7269
|
none: "none";
|
|
@@ -5919,6 +7310,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5919
7310
|
cloudflare: "cloudflare";
|
|
5920
7311
|
fly: "fly";
|
|
5921
7312
|
railway: "railway";
|
|
7313
|
+
render: "render";
|
|
7314
|
+
netlify: "netlify";
|
|
5922
7315
|
sst: "sst";
|
|
5923
7316
|
vercel: "vercel";
|
|
5924
7317
|
}>;
|
|
@@ -5928,6 +7321,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5928
7321
|
cloudflare: "cloudflare";
|
|
5929
7322
|
fly: "fly";
|
|
5930
7323
|
railway: "railway";
|
|
7324
|
+
render: "render";
|
|
7325
|
+
netlify: "netlify";
|
|
5931
7326
|
sst: "sst";
|
|
5932
7327
|
vercel: "vercel";
|
|
5933
7328
|
}>;
|
|
@@ -5953,8 +7348,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5953
7348
|
"ai-cli": "ai-cli";
|
|
5954
7349
|
}>;
|
|
5955
7350
|
effect: z.ZodEnum<{
|
|
5956
|
-
none: "none";
|
|
5957
7351
|
effect: "effect";
|
|
7352
|
+
none: "none";
|
|
5958
7353
|
"effect-full": "effect-full";
|
|
5959
7354
|
}>;
|
|
5960
7355
|
stateManagement: z.ZodEnum<{
|
|
@@ -6087,8 +7482,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6087
7482
|
"geist-mono": "geist-mono";
|
|
6088
7483
|
}>>;
|
|
6089
7484
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6090
|
-
none: "none";
|
|
6091
7485
|
default: "default";
|
|
7486
|
+
none: "none";
|
|
6092
7487
|
small: "small";
|
|
6093
7488
|
medium: "medium";
|
|
6094
7489
|
large: "large";
|
|
@@ -6144,6 +7539,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6144
7539
|
opentelemetry: "opentelemetry";
|
|
6145
7540
|
sentry: "sentry";
|
|
6146
7541
|
grafana: "grafana";
|
|
7542
|
+
datadog: "datadog";
|
|
7543
|
+
axiom: "axiom";
|
|
7544
|
+
betterstack: "betterstack";
|
|
6147
7545
|
}>;
|
|
6148
7546
|
featureFlags: z.ZodEnum<{
|
|
6149
7547
|
none: "none";
|
|
@@ -6170,6 +7568,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6170
7568
|
none: "none";
|
|
6171
7569
|
"upstash-redis": "upstash-redis";
|
|
6172
7570
|
}>;
|
|
7571
|
+
rateLimit: z.ZodEnum<{
|
|
7572
|
+
none: "none";
|
|
7573
|
+
arcjet: "arcjet";
|
|
7574
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
7575
|
+
}>;
|
|
6173
7576
|
i18n: z.ZodEnum<{
|
|
6174
7577
|
none: "none";
|
|
6175
7578
|
i18next: "i18next";
|
|
@@ -6195,9 +7598,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6195
7598
|
}>;
|
|
6196
7599
|
mobileUI: z.ZodEnum<{
|
|
6197
7600
|
none: "none";
|
|
6198
|
-
uniwind: "uniwind";
|
|
6199
7601
|
tamagui: "tamagui";
|
|
6200
7602
|
"gluestack-ui": "gluestack-ui";
|
|
7603
|
+
uniwind: "uniwind";
|
|
6201
7604
|
unistyles: "unistyles";
|
|
6202
7605
|
}>;
|
|
6203
7606
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6250,12 +7653,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6250
7653
|
ratatui: "ratatui";
|
|
6251
7654
|
}>;
|
|
6252
7655
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7656
|
+
config: "config";
|
|
6253
7657
|
none: "none";
|
|
6254
7658
|
serde: "serde";
|
|
6255
7659
|
uuid: "uuid";
|
|
6256
7660
|
chrono: "chrono";
|
|
6257
7661
|
reqwest: "reqwest";
|
|
6258
|
-
config: "config";
|
|
6259
7662
|
dashmap: "dashmap";
|
|
6260
7663
|
"parking-lot": "parking-lot";
|
|
6261
7664
|
secrecy: "secrecy";
|
|
@@ -6287,6 +7690,24 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6287
7690
|
rustAuth: z.ZodEnum<{
|
|
6288
7691
|
none: "none";
|
|
6289
7692
|
oauth2: "oauth2";
|
|
7693
|
+
torii: "torii";
|
|
7694
|
+
}>;
|
|
7695
|
+
rustRealtime: z.ZodEnum<{
|
|
7696
|
+
none: "none";
|
|
7697
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
7698
|
+
}>;
|
|
7699
|
+
rustMessageQueue: z.ZodEnum<{
|
|
7700
|
+
none: "none";
|
|
7701
|
+
lapin: "lapin";
|
|
7702
|
+
}>;
|
|
7703
|
+
rustObservability: z.ZodEnum<{
|
|
7704
|
+
none: "none";
|
|
7705
|
+
opentelemetry: "opentelemetry";
|
|
7706
|
+
}>;
|
|
7707
|
+
rustTemplating: z.ZodEnum<{
|
|
7708
|
+
none: "none";
|
|
7709
|
+
askama: "askama";
|
|
7710
|
+
tera: "tera";
|
|
6290
7711
|
}>;
|
|
6291
7712
|
pythonWebFramework: z.ZodEnum<{
|
|
6292
7713
|
none: "none";
|
|
@@ -6294,12 +7715,14 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6294
7715
|
django: "django";
|
|
6295
7716
|
flask: "flask";
|
|
6296
7717
|
litestar: "litestar";
|
|
7718
|
+
starlette: "starlette";
|
|
6297
7719
|
}>;
|
|
6298
7720
|
pythonOrm: z.ZodEnum<{
|
|
6299
7721
|
none: "none";
|
|
6300
7722
|
sqlalchemy: "sqlalchemy";
|
|
6301
7723
|
sqlmodel: "sqlmodel";
|
|
6302
7724
|
"tortoise-orm": "tortoise-orm";
|
|
7725
|
+
peewee: "peewee";
|
|
6303
7726
|
}>;
|
|
6304
7727
|
pythonValidation: z.ZodEnum<{
|
|
6305
7728
|
none: "none";
|
|
@@ -6308,17 +7731,21 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6308
7731
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
6309
7732
|
none: "none";
|
|
6310
7733
|
langgraph: "langgraph";
|
|
7734
|
+
"google-adk": "google-adk";
|
|
6311
7735
|
langchain: "langchain";
|
|
6312
7736
|
llamaindex: "llamaindex";
|
|
6313
7737
|
"openai-sdk": "openai-sdk";
|
|
6314
7738
|
"anthropic-sdk": "anthropic-sdk";
|
|
6315
7739
|
crewai: "crewai";
|
|
6316
7740
|
haystack: "haystack";
|
|
7741
|
+
"pydantic-ai": "pydantic-ai";
|
|
7742
|
+
smolagents: "smolagents";
|
|
6317
7743
|
}>>;
|
|
6318
7744
|
pythonAuth: z.ZodEnum<{
|
|
6319
7745
|
none: "none";
|
|
6320
7746
|
authlib: "authlib";
|
|
6321
7747
|
jwt: "jwt";
|
|
7748
|
+
"fastapi-users": "fastapi-users";
|
|
6322
7749
|
}>;
|
|
6323
7750
|
pythonApi: z.ZodOptional<z.ZodEnum<{
|
|
6324
7751
|
none: "none";
|
|
@@ -6331,6 +7758,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6331
7758
|
rq: "rq";
|
|
6332
7759
|
dramatiq: "dramatiq";
|
|
6333
7760
|
huey: "huey";
|
|
7761
|
+
taskiq: "taskiq";
|
|
6334
7762
|
}>;
|
|
6335
7763
|
pythonGraphql: z.ZodEnum<{
|
|
6336
7764
|
none: "none";
|
|
@@ -6343,6 +7771,31 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6343
7771
|
mypy: "mypy";
|
|
6344
7772
|
pyright: "pyright";
|
|
6345
7773
|
}>;
|
|
7774
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
7775
|
+
none: "none";
|
|
7776
|
+
pytest: "pytest";
|
|
7777
|
+
hypothesis: "hypothesis";
|
|
7778
|
+
}>>;
|
|
7779
|
+
pythonCaching: z.ZodEnum<{
|
|
7780
|
+
none: "none";
|
|
7781
|
+
redis: "redis";
|
|
7782
|
+
aiocache: "aiocache";
|
|
7783
|
+
}>;
|
|
7784
|
+
pythonRealtime: z.ZodEnum<{
|
|
7785
|
+
none: "none";
|
|
7786
|
+
"python-socketio": "python-socketio";
|
|
7787
|
+
websockets: "websockets";
|
|
7788
|
+
}>;
|
|
7789
|
+
pythonObservability: z.ZodEnum<{
|
|
7790
|
+
none: "none";
|
|
7791
|
+
opentelemetry: "opentelemetry";
|
|
7792
|
+
}>;
|
|
7793
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
7794
|
+
none: "none";
|
|
7795
|
+
typer: "typer";
|
|
7796
|
+
click: "click";
|
|
7797
|
+
rich: "rich";
|
|
7798
|
+
}>>;
|
|
6346
7799
|
goWebFramework: z.ZodEnum<{
|
|
6347
7800
|
none: "none";
|
|
6348
7801
|
gin: "gin";
|
|
@@ -6359,6 +7812,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6359
7812
|
goApi: z.ZodEnum<{
|
|
6360
7813
|
none: "none";
|
|
6361
7814
|
"grpc-go": "grpc-go";
|
|
7815
|
+
gqlgen: "gqlgen";
|
|
6362
7816
|
}>;
|
|
6363
7817
|
goCli: z.ZodEnum<{
|
|
6364
7818
|
none: "none";
|
|
@@ -6377,6 +7831,36 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6377
7831
|
none: "none";
|
|
6378
7832
|
jwt: "jwt";
|
|
6379
7833
|
casbin: "casbin";
|
|
7834
|
+
goth: "goth";
|
|
7835
|
+
}>;
|
|
7836
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
7837
|
+
none: "none";
|
|
7838
|
+
testify: "testify";
|
|
7839
|
+
gomock: "gomock";
|
|
7840
|
+
}>>;
|
|
7841
|
+
goRealtime: z.ZodEnum<{
|
|
7842
|
+
none: "none";
|
|
7843
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
7844
|
+
centrifuge: "centrifuge";
|
|
7845
|
+
}>;
|
|
7846
|
+
goMessageQueue: z.ZodEnum<{
|
|
7847
|
+
none: "none";
|
|
7848
|
+
nats: "nats";
|
|
7849
|
+
watermill: "watermill";
|
|
7850
|
+
}>;
|
|
7851
|
+
goCaching: z.ZodEnum<{
|
|
7852
|
+
none: "none";
|
|
7853
|
+
redis: "redis";
|
|
7854
|
+
ristretto: "ristretto";
|
|
7855
|
+
}>;
|
|
7856
|
+
goConfig: z.ZodEnum<{
|
|
7857
|
+
none: "none";
|
|
7858
|
+
viper: "viper";
|
|
7859
|
+
koanf: "koanf";
|
|
7860
|
+
}>;
|
|
7861
|
+
goObservability: z.ZodEnum<{
|
|
7862
|
+
none: "none";
|
|
7863
|
+
opentelemetry: "opentelemetry";
|
|
6380
7864
|
}>;
|
|
6381
7865
|
javaWebFramework: z.ZodEnum<{
|
|
6382
7866
|
none: "none";
|
|
@@ -6391,10 +7875,21 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6391
7875
|
javaOrm: z.ZodEnum<{
|
|
6392
7876
|
none: "none";
|
|
6393
7877
|
"spring-data-jpa": "spring-data-jpa";
|
|
7878
|
+
jooq: "jooq";
|
|
7879
|
+
mybatis: "mybatis";
|
|
6394
7880
|
}>;
|
|
6395
7881
|
javaAuth: z.ZodEnum<{
|
|
6396
7882
|
none: "none";
|
|
6397
7883
|
"spring-security": "spring-security";
|
|
7884
|
+
keycloak: "keycloak";
|
|
7885
|
+
}>;
|
|
7886
|
+
javaApi: z.ZodEnum<{
|
|
7887
|
+
none: "none";
|
|
7888
|
+
"spring-graphql": "spring-graphql";
|
|
7889
|
+
}>;
|
|
7890
|
+
javaLogging: z.ZodEnum<{
|
|
7891
|
+
none: "none";
|
|
7892
|
+
logback: "logback";
|
|
6398
7893
|
}>;
|
|
6399
7894
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
6400
7895
|
none: "none";
|
|
@@ -6414,6 +7909,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6414
7909
|
"spring-devtools": "spring-devtools";
|
|
6415
7910
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
6416
7911
|
thymeleaf: "thymeleaf";
|
|
7912
|
+
"spring-amqp": "spring-amqp";
|
|
7913
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
6417
7914
|
}>>;
|
|
6418
7915
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
6419
7916
|
none: "none";
|
|
@@ -6427,6 +7924,70 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6427
7924
|
archunit: "archunit";
|
|
6428
7925
|
jqwik: "jqwik";
|
|
6429
7926
|
}>>;
|
|
7927
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
7928
|
+
none: "none";
|
|
7929
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
7930
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
7931
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
7932
|
+
}>;
|
|
7933
|
+
dotnetOrm: z.ZodEnum<{
|
|
7934
|
+
none: "none";
|
|
7935
|
+
"ef-core": "ef-core";
|
|
7936
|
+
dapper: "dapper";
|
|
7937
|
+
linq2db: "linq2db";
|
|
7938
|
+
}>;
|
|
7939
|
+
dotnetAuth: z.ZodEnum<{
|
|
7940
|
+
none: "none";
|
|
7941
|
+
"aspnet-identity": "aspnet-identity";
|
|
7942
|
+
"duende-identityserver": "duende-identityserver";
|
|
7943
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
7944
|
+
}>;
|
|
7945
|
+
dotnetApi: z.ZodEnum<{
|
|
7946
|
+
none: "none";
|
|
7947
|
+
"minimal-api": "minimal-api";
|
|
7948
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
7949
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
7950
|
+
}>;
|
|
7951
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
7952
|
+
none: "none";
|
|
7953
|
+
xunit: "xunit";
|
|
7954
|
+
nunit: "nunit";
|
|
7955
|
+
moq: "moq";
|
|
7956
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
7957
|
+
}>>;
|
|
7958
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
7959
|
+
none: "none";
|
|
7960
|
+
hangfire: "hangfire";
|
|
7961
|
+
"quartz-net": "quartz-net";
|
|
7962
|
+
"hosted-services": "hosted-services";
|
|
7963
|
+
}>;
|
|
7964
|
+
dotnetRealtime: z.ZodEnum<{
|
|
7965
|
+
none: "none";
|
|
7966
|
+
signalr: "signalr";
|
|
7967
|
+
}>;
|
|
7968
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
7969
|
+
none: "none";
|
|
7970
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
7971
|
+
serilog: "serilog";
|
|
7972
|
+
nlog: "nlog";
|
|
7973
|
+
"health-checks": "health-checks";
|
|
7974
|
+
}>>;
|
|
7975
|
+
dotnetValidation: z.ZodEnum<{
|
|
7976
|
+
none: "none";
|
|
7977
|
+
fluentvalidation: "fluentvalidation";
|
|
7978
|
+
"data-annotations": "data-annotations";
|
|
7979
|
+
}>;
|
|
7980
|
+
dotnetCaching: z.ZodEnum<{
|
|
7981
|
+
none: "none";
|
|
7982
|
+
redis: "redis";
|
|
7983
|
+
"memory-cache": "memory-cache";
|
|
7984
|
+
}>;
|
|
7985
|
+
dotnetDeploy: z.ZodEnum<{
|
|
7986
|
+
none: "none";
|
|
7987
|
+
docker: "docker";
|
|
7988
|
+
azure: "azure";
|
|
7989
|
+
aws: "aws";
|
|
7990
|
+
}>;
|
|
6430
7991
|
elixirWebFramework: z.ZodEnum<{
|
|
6431
7992
|
none: "none";
|
|
6432
7993
|
phoenix: "phoenix";
|
|
@@ -6447,6 +8008,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6447
8008
|
none: "none";
|
|
6448
8009
|
rest: "rest";
|
|
6449
8010
|
absinthe: "absinthe";
|
|
8011
|
+
grpc: "grpc";
|
|
6450
8012
|
}>;
|
|
6451
8013
|
elixirRealtime: z.ZodEnum<{
|
|
6452
8014
|
none: "none";
|
|
@@ -6509,6 +8071,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6509
8071
|
gigalixir: "gigalixir";
|
|
6510
8072
|
"mix-release": "mix-release";
|
|
6511
8073
|
}>;
|
|
8074
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
8075
|
+
none: "none";
|
|
8076
|
+
broadway: "broadway";
|
|
8077
|
+
nx: "nx";
|
|
8078
|
+
}>>;
|
|
6512
8079
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
6513
8080
|
none: "none";
|
|
6514
8081
|
"claude-md": "claude-md";
|
|
@@ -6518,37 +8085,55 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6518
8085
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
8086
|
id: z.ZodString;
|
|
6520
8087
|
role: z.ZodEnum<{
|
|
6521
|
-
|
|
8088
|
+
frontend: "frontend";
|
|
8089
|
+
backend: "backend";
|
|
8090
|
+
mobile: "mobile";
|
|
6522
8091
|
database: "database";
|
|
8092
|
+
api: "api";
|
|
6523
8093
|
orm: "orm";
|
|
6524
8094
|
auth: "auth";
|
|
6525
|
-
payments: "payments";
|
|
6526
|
-
frontend: "frontend";
|
|
6527
|
-
backend: "backend";
|
|
6528
8095
|
runtime: "runtime";
|
|
6529
|
-
|
|
8096
|
+
deploy: "deploy";
|
|
8097
|
+
dbSetup: "dbSetup";
|
|
8098
|
+
realtime: "realtime";
|
|
8099
|
+
navigation: "navigation";
|
|
8100
|
+
caching: "caching";
|
|
8101
|
+
observability: "observability";
|
|
8102
|
+
email: "email";
|
|
8103
|
+
search: "search";
|
|
8104
|
+
fileStorage: "fileStorage";
|
|
8105
|
+
jobQueue: "jobQueue";
|
|
8106
|
+
rateLimit: "rateLimit";
|
|
8107
|
+
testing: "testing";
|
|
6530
8108
|
stateManagement: "stateManagement";
|
|
6531
8109
|
forms: "forms";
|
|
6532
|
-
|
|
6533
|
-
|
|
8110
|
+
animation: "animation";
|
|
8111
|
+
fileUpload: "fileUpload";
|
|
6534
8112
|
validation: "validation";
|
|
6535
|
-
|
|
8113
|
+
effect: "effect";
|
|
8114
|
+
ui: "ui";
|
|
8115
|
+
css: "css";
|
|
8116
|
+
storage: "storage";
|
|
8117
|
+
ai: "ai";
|
|
8118
|
+
payments: "payments";
|
|
6536
8119
|
logging: "logging";
|
|
6537
|
-
observability: "observability";
|
|
6538
8120
|
featureFlags: "featureFlags";
|
|
6539
8121
|
analytics: "analytics";
|
|
6540
8122
|
cms: "cms";
|
|
6541
|
-
caching: "caching";
|
|
6542
8123
|
i18n: "i18n";
|
|
6543
|
-
search: "search";
|
|
6544
|
-
fileStorage: "fileStorage";
|
|
6545
|
-
mobile: "mobile";
|
|
6546
|
-
deploy: "deploy";
|
|
6547
|
-
ui: "ui";
|
|
6548
|
-
css: "css";
|
|
6549
8124
|
documentation: "documentation";
|
|
6550
8125
|
codeQuality: "codeQuality";
|
|
6551
8126
|
appPlatform: "appPlatform";
|
|
8127
|
+
dataFetching: "dataFetching";
|
|
8128
|
+
workspaceTooling: "workspaceTooling";
|
|
8129
|
+
examples: "examples";
|
|
8130
|
+
buildTool: "buildTool";
|
|
8131
|
+
cli: "cli";
|
|
8132
|
+
errorHandling: "errorHandling";
|
|
8133
|
+
httpClient: "httpClient";
|
|
8134
|
+
libraries: "libraries";
|
|
8135
|
+
config: "config";
|
|
8136
|
+
templating: "templating";
|
|
6552
8137
|
}>;
|
|
6553
8138
|
toolId: z.ZodString;
|
|
6554
8139
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -6559,6 +8144,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6559
8144
|
go: "go";
|
|
6560
8145
|
java: "java";
|
|
6561
8146
|
elixir: "elixir";
|
|
8147
|
+
dotnet: "dotnet";
|
|
6562
8148
|
}>, z.ZodLiteral<"universal">]>;
|
|
6563
8149
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6564
8150
|
source: z.ZodEnum<{
|
|
@@ -6587,6 +8173,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6587
8173
|
go: "go";
|
|
6588
8174
|
java: "java";
|
|
6589
8175
|
elixir: "elixir";
|
|
8176
|
+
dotnet: "dotnet";
|
|
6590
8177
|
}>;
|
|
6591
8178
|
database: z.ZodEnum<{
|
|
6592
8179
|
none: "none";
|
|
@@ -6673,23 +8260,27 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6673
8260
|
"tanstack-virtual": "tanstack-virtual";
|
|
6674
8261
|
"tanstack-db": "tanstack-db";
|
|
6675
8262
|
"tanstack-pacer": "tanstack-pacer";
|
|
8263
|
+
"backend-utils": "backend-utils";
|
|
6676
8264
|
"docker-compose": "docker-compose";
|
|
6677
8265
|
}>>;
|
|
6678
8266
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6679
|
-
none: "none";
|
|
6680
8267
|
ai: "ai";
|
|
8268
|
+
none: "none";
|
|
6681
8269
|
"chat-sdk": "chat-sdk";
|
|
6682
8270
|
"tanstack-showcase": "tanstack-showcase";
|
|
6683
8271
|
}>>;
|
|
6684
8272
|
auth: z.ZodEnum<{
|
|
6685
8273
|
none: "none";
|
|
6686
8274
|
"better-auth": "better-auth";
|
|
8275
|
+
"better-auth-organizations": "better-auth-organizations";
|
|
6687
8276
|
"go-better-auth": "go-better-auth";
|
|
6688
8277
|
clerk: "clerk";
|
|
6689
8278
|
nextauth: "nextauth";
|
|
6690
8279
|
"stack-auth": "stack-auth";
|
|
6691
8280
|
"supabase-auth": "supabase-auth";
|
|
6692
8281
|
auth0: "auth0";
|
|
8282
|
+
workos: "workos";
|
|
8283
|
+
kinde: "kinde";
|
|
6693
8284
|
}>;
|
|
6694
8285
|
payments: z.ZodEnum<{
|
|
6695
8286
|
none: "none";
|
|
@@ -6738,6 +8329,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6738
8329
|
cloudflare: "cloudflare";
|
|
6739
8330
|
fly: "fly";
|
|
6740
8331
|
railway: "railway";
|
|
8332
|
+
render: "render";
|
|
8333
|
+
netlify: "netlify";
|
|
6741
8334
|
sst: "sst";
|
|
6742
8335
|
vercel: "vercel";
|
|
6743
8336
|
}>;
|
|
@@ -6747,6 +8340,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6747
8340
|
cloudflare: "cloudflare";
|
|
6748
8341
|
fly: "fly";
|
|
6749
8342
|
railway: "railway";
|
|
8343
|
+
render: "render";
|
|
8344
|
+
netlify: "netlify";
|
|
6750
8345
|
sst: "sst";
|
|
6751
8346
|
vercel: "vercel";
|
|
6752
8347
|
}>;
|
|
@@ -6772,8 +8367,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6772
8367
|
"ai-cli": "ai-cli";
|
|
6773
8368
|
}>;
|
|
6774
8369
|
effect: z.ZodEnum<{
|
|
6775
|
-
none: "none";
|
|
6776
8370
|
effect: "effect";
|
|
8371
|
+
none: "none";
|
|
6777
8372
|
"effect-full": "effect-full";
|
|
6778
8373
|
}>;
|
|
6779
8374
|
stateManagement: z.ZodEnum<{
|
|
@@ -6906,8 +8501,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6906
8501
|
"geist-mono": "geist-mono";
|
|
6907
8502
|
}>>;
|
|
6908
8503
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6909
|
-
none: "none";
|
|
6910
8504
|
default: "default";
|
|
8505
|
+
none: "none";
|
|
6911
8506
|
small: "small";
|
|
6912
8507
|
medium: "medium";
|
|
6913
8508
|
large: "large";
|
|
@@ -6963,6 +8558,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6963
8558
|
opentelemetry: "opentelemetry";
|
|
6964
8559
|
sentry: "sentry";
|
|
6965
8560
|
grafana: "grafana";
|
|
8561
|
+
datadog: "datadog";
|
|
8562
|
+
axiom: "axiom";
|
|
8563
|
+
betterstack: "betterstack";
|
|
6966
8564
|
}>;
|
|
6967
8565
|
featureFlags: z.ZodEnum<{
|
|
6968
8566
|
none: "none";
|
|
@@ -6989,6 +8587,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6989
8587
|
none: "none";
|
|
6990
8588
|
"upstash-redis": "upstash-redis";
|
|
6991
8589
|
}>;
|
|
8590
|
+
rateLimit: z.ZodEnum<{
|
|
8591
|
+
none: "none";
|
|
8592
|
+
arcjet: "arcjet";
|
|
8593
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
8594
|
+
}>;
|
|
6992
8595
|
i18n: z.ZodEnum<{
|
|
6993
8596
|
none: "none";
|
|
6994
8597
|
i18next: "i18next";
|
|
@@ -7014,9 +8617,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7014
8617
|
}>;
|
|
7015
8618
|
mobileUI: z.ZodEnum<{
|
|
7016
8619
|
none: "none";
|
|
7017
|
-
uniwind: "uniwind";
|
|
7018
8620
|
tamagui: "tamagui";
|
|
7019
8621
|
"gluestack-ui": "gluestack-ui";
|
|
8622
|
+
uniwind: "uniwind";
|
|
7020
8623
|
unistyles: "unistyles";
|
|
7021
8624
|
}>;
|
|
7022
8625
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7069,12 +8672,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7069
8672
|
ratatui: "ratatui";
|
|
7070
8673
|
}>;
|
|
7071
8674
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8675
|
+
config: "config";
|
|
7072
8676
|
none: "none";
|
|
7073
8677
|
serde: "serde";
|
|
7074
8678
|
uuid: "uuid";
|
|
7075
8679
|
chrono: "chrono";
|
|
7076
8680
|
reqwest: "reqwest";
|
|
7077
|
-
config: "config";
|
|
7078
8681
|
dashmap: "dashmap";
|
|
7079
8682
|
"parking-lot": "parking-lot";
|
|
7080
8683
|
secrecy: "secrecy";
|
|
@@ -7106,6 +8709,24 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7106
8709
|
rustAuth: z.ZodEnum<{
|
|
7107
8710
|
none: "none";
|
|
7108
8711
|
oauth2: "oauth2";
|
|
8712
|
+
torii: "torii";
|
|
8713
|
+
}>;
|
|
8714
|
+
rustRealtime: z.ZodEnum<{
|
|
8715
|
+
none: "none";
|
|
8716
|
+
"tokio-tungstenite": "tokio-tungstenite";
|
|
8717
|
+
}>;
|
|
8718
|
+
rustMessageQueue: z.ZodEnum<{
|
|
8719
|
+
none: "none";
|
|
8720
|
+
lapin: "lapin";
|
|
8721
|
+
}>;
|
|
8722
|
+
rustObservability: z.ZodEnum<{
|
|
8723
|
+
none: "none";
|
|
8724
|
+
opentelemetry: "opentelemetry";
|
|
8725
|
+
}>;
|
|
8726
|
+
rustTemplating: z.ZodEnum<{
|
|
8727
|
+
none: "none";
|
|
8728
|
+
askama: "askama";
|
|
8729
|
+
tera: "tera";
|
|
7109
8730
|
}>;
|
|
7110
8731
|
pythonWebFramework: z.ZodEnum<{
|
|
7111
8732
|
none: "none";
|
|
@@ -7113,12 +8734,14 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7113
8734
|
django: "django";
|
|
7114
8735
|
flask: "flask";
|
|
7115
8736
|
litestar: "litestar";
|
|
8737
|
+
starlette: "starlette";
|
|
7116
8738
|
}>;
|
|
7117
8739
|
pythonOrm: z.ZodEnum<{
|
|
7118
8740
|
none: "none";
|
|
7119
8741
|
sqlalchemy: "sqlalchemy";
|
|
7120
8742
|
sqlmodel: "sqlmodel";
|
|
7121
8743
|
"tortoise-orm": "tortoise-orm";
|
|
8744
|
+
peewee: "peewee";
|
|
7122
8745
|
}>;
|
|
7123
8746
|
pythonValidation: z.ZodEnum<{
|
|
7124
8747
|
none: "none";
|
|
@@ -7127,17 +8750,21 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7127
8750
|
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
7128
8751
|
none: "none";
|
|
7129
8752
|
langgraph: "langgraph";
|
|
8753
|
+
"google-adk": "google-adk";
|
|
7130
8754
|
langchain: "langchain";
|
|
7131
8755
|
llamaindex: "llamaindex";
|
|
7132
8756
|
"openai-sdk": "openai-sdk";
|
|
7133
8757
|
"anthropic-sdk": "anthropic-sdk";
|
|
7134
8758
|
crewai: "crewai";
|
|
7135
8759
|
haystack: "haystack";
|
|
8760
|
+
"pydantic-ai": "pydantic-ai";
|
|
8761
|
+
smolagents: "smolagents";
|
|
7136
8762
|
}>>;
|
|
7137
8763
|
pythonAuth: z.ZodEnum<{
|
|
7138
8764
|
none: "none";
|
|
7139
8765
|
authlib: "authlib";
|
|
7140
8766
|
jwt: "jwt";
|
|
8767
|
+
"fastapi-users": "fastapi-users";
|
|
7141
8768
|
}>;
|
|
7142
8769
|
pythonApi: z.ZodEnum<{
|
|
7143
8770
|
none: "none";
|
|
@@ -7150,6 +8777,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7150
8777
|
rq: "rq";
|
|
7151
8778
|
dramatiq: "dramatiq";
|
|
7152
8779
|
huey: "huey";
|
|
8780
|
+
taskiq: "taskiq";
|
|
7153
8781
|
}>;
|
|
7154
8782
|
pythonGraphql: z.ZodEnum<{
|
|
7155
8783
|
none: "none";
|
|
@@ -7162,6 +8790,31 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7162
8790
|
mypy: "mypy";
|
|
7163
8791
|
pyright: "pyright";
|
|
7164
8792
|
}>;
|
|
8793
|
+
pythonTesting: z.ZodArray<z.ZodEnum<{
|
|
8794
|
+
none: "none";
|
|
8795
|
+
pytest: "pytest";
|
|
8796
|
+
hypothesis: "hypothesis";
|
|
8797
|
+
}>>;
|
|
8798
|
+
pythonCaching: z.ZodEnum<{
|
|
8799
|
+
none: "none";
|
|
8800
|
+
redis: "redis";
|
|
8801
|
+
aiocache: "aiocache";
|
|
8802
|
+
}>;
|
|
8803
|
+
pythonRealtime: z.ZodEnum<{
|
|
8804
|
+
none: "none";
|
|
8805
|
+
"python-socketio": "python-socketio";
|
|
8806
|
+
websockets: "websockets";
|
|
8807
|
+
}>;
|
|
8808
|
+
pythonObservability: z.ZodEnum<{
|
|
8809
|
+
none: "none";
|
|
8810
|
+
opentelemetry: "opentelemetry";
|
|
8811
|
+
}>;
|
|
8812
|
+
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
8813
|
+
none: "none";
|
|
8814
|
+
typer: "typer";
|
|
8815
|
+
click: "click";
|
|
8816
|
+
rich: "rich";
|
|
8817
|
+
}>>;
|
|
7165
8818
|
goWebFramework: z.ZodEnum<{
|
|
7166
8819
|
none: "none";
|
|
7167
8820
|
gin: "gin";
|
|
@@ -7178,6 +8831,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7178
8831
|
goApi: z.ZodEnum<{
|
|
7179
8832
|
none: "none";
|
|
7180
8833
|
"grpc-go": "grpc-go";
|
|
8834
|
+
gqlgen: "gqlgen";
|
|
7181
8835
|
}>;
|
|
7182
8836
|
goCli: z.ZodEnum<{
|
|
7183
8837
|
none: "none";
|
|
@@ -7196,6 +8850,36 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7196
8850
|
none: "none";
|
|
7197
8851
|
jwt: "jwt";
|
|
7198
8852
|
casbin: "casbin";
|
|
8853
|
+
goth: "goth";
|
|
8854
|
+
}>;
|
|
8855
|
+
goTesting: z.ZodArray<z.ZodEnum<{
|
|
8856
|
+
none: "none";
|
|
8857
|
+
testify: "testify";
|
|
8858
|
+
gomock: "gomock";
|
|
8859
|
+
}>>;
|
|
8860
|
+
goRealtime: z.ZodEnum<{
|
|
8861
|
+
none: "none";
|
|
8862
|
+
"gorilla-websocket": "gorilla-websocket";
|
|
8863
|
+
centrifuge: "centrifuge";
|
|
8864
|
+
}>;
|
|
8865
|
+
goMessageQueue: z.ZodEnum<{
|
|
8866
|
+
none: "none";
|
|
8867
|
+
nats: "nats";
|
|
8868
|
+
watermill: "watermill";
|
|
8869
|
+
}>;
|
|
8870
|
+
goCaching: z.ZodEnum<{
|
|
8871
|
+
none: "none";
|
|
8872
|
+
redis: "redis";
|
|
8873
|
+
ristretto: "ristretto";
|
|
8874
|
+
}>;
|
|
8875
|
+
goConfig: z.ZodEnum<{
|
|
8876
|
+
none: "none";
|
|
8877
|
+
viper: "viper";
|
|
8878
|
+
koanf: "koanf";
|
|
8879
|
+
}>;
|
|
8880
|
+
goObservability: z.ZodEnum<{
|
|
8881
|
+
none: "none";
|
|
8882
|
+
opentelemetry: "opentelemetry";
|
|
7199
8883
|
}>;
|
|
7200
8884
|
javaWebFramework: z.ZodEnum<{
|
|
7201
8885
|
none: "none";
|
|
@@ -7210,10 +8894,21 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7210
8894
|
javaOrm: z.ZodEnum<{
|
|
7211
8895
|
none: "none";
|
|
7212
8896
|
"spring-data-jpa": "spring-data-jpa";
|
|
8897
|
+
jooq: "jooq";
|
|
8898
|
+
mybatis: "mybatis";
|
|
7213
8899
|
}>;
|
|
7214
8900
|
javaAuth: z.ZodEnum<{
|
|
7215
8901
|
none: "none";
|
|
7216
8902
|
"spring-security": "spring-security";
|
|
8903
|
+
keycloak: "keycloak";
|
|
8904
|
+
}>;
|
|
8905
|
+
javaApi: z.ZodEnum<{
|
|
8906
|
+
none: "none";
|
|
8907
|
+
"spring-graphql": "spring-graphql";
|
|
8908
|
+
}>;
|
|
8909
|
+
javaLogging: z.ZodEnum<{
|
|
8910
|
+
none: "none";
|
|
8911
|
+
logback: "logback";
|
|
7217
8912
|
}>;
|
|
7218
8913
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7219
8914
|
none: "none";
|
|
@@ -7233,6 +8928,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7233
8928
|
"spring-devtools": "spring-devtools";
|
|
7234
8929
|
"micrometer-prometheus": "micrometer-prometheus";
|
|
7235
8930
|
thymeleaf: "thymeleaf";
|
|
8931
|
+
"spring-amqp": "spring-amqp";
|
|
8932
|
+
"opentelemetry-java": "opentelemetry-java";
|
|
7236
8933
|
}>>;
|
|
7237
8934
|
javaTestingLibraries: z.ZodArray<z.ZodEnum<{
|
|
7238
8935
|
none: "none";
|
|
@@ -7246,6 +8943,70 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7246
8943
|
archunit: "archunit";
|
|
7247
8944
|
jqwik: "jqwik";
|
|
7248
8945
|
}>>;
|
|
8946
|
+
dotnetWebFramework: z.ZodEnum<{
|
|
8947
|
+
none: "none";
|
|
8948
|
+
"aspnet-minimal": "aspnet-minimal";
|
|
8949
|
+
"aspnet-mvc": "aspnet-mvc";
|
|
8950
|
+
"aspnet-blazor": "aspnet-blazor";
|
|
8951
|
+
}>;
|
|
8952
|
+
dotnetOrm: z.ZodEnum<{
|
|
8953
|
+
none: "none";
|
|
8954
|
+
"ef-core": "ef-core";
|
|
8955
|
+
dapper: "dapper";
|
|
8956
|
+
linq2db: "linq2db";
|
|
8957
|
+
}>;
|
|
8958
|
+
dotnetAuth: z.ZodEnum<{
|
|
8959
|
+
none: "none";
|
|
8960
|
+
"aspnet-identity": "aspnet-identity";
|
|
8961
|
+
"duende-identityserver": "duende-identityserver";
|
|
8962
|
+
"auth0-aspnet": "auth0-aspnet";
|
|
8963
|
+
}>;
|
|
8964
|
+
dotnetApi: z.ZodEnum<{
|
|
8965
|
+
none: "none";
|
|
8966
|
+
"minimal-api": "minimal-api";
|
|
8967
|
+
"graphql-hotchocolate": "graphql-hotchocolate";
|
|
8968
|
+
"grpc-dotnet": "grpc-dotnet";
|
|
8969
|
+
}>;
|
|
8970
|
+
dotnetTesting: z.ZodArray<z.ZodEnum<{
|
|
8971
|
+
none: "none";
|
|
8972
|
+
xunit: "xunit";
|
|
8973
|
+
nunit: "nunit";
|
|
8974
|
+
moq: "moq";
|
|
8975
|
+
"testcontainers-dotnet": "testcontainers-dotnet";
|
|
8976
|
+
}>>;
|
|
8977
|
+
dotnetJobQueue: z.ZodEnum<{
|
|
8978
|
+
none: "none";
|
|
8979
|
+
hangfire: "hangfire";
|
|
8980
|
+
"quartz-net": "quartz-net";
|
|
8981
|
+
"hosted-services": "hosted-services";
|
|
8982
|
+
}>;
|
|
8983
|
+
dotnetRealtime: z.ZodEnum<{
|
|
8984
|
+
none: "none";
|
|
8985
|
+
signalr: "signalr";
|
|
8986
|
+
}>;
|
|
8987
|
+
dotnetObservability: z.ZodArray<z.ZodEnum<{
|
|
8988
|
+
none: "none";
|
|
8989
|
+
"opentelemetry-dotnet": "opentelemetry-dotnet";
|
|
8990
|
+
serilog: "serilog";
|
|
8991
|
+
nlog: "nlog";
|
|
8992
|
+
"health-checks": "health-checks";
|
|
8993
|
+
}>>;
|
|
8994
|
+
dotnetValidation: z.ZodEnum<{
|
|
8995
|
+
none: "none";
|
|
8996
|
+
fluentvalidation: "fluentvalidation";
|
|
8997
|
+
"data-annotations": "data-annotations";
|
|
8998
|
+
}>;
|
|
8999
|
+
dotnetCaching: z.ZodEnum<{
|
|
9000
|
+
none: "none";
|
|
9001
|
+
redis: "redis";
|
|
9002
|
+
"memory-cache": "memory-cache";
|
|
9003
|
+
}>;
|
|
9004
|
+
dotnetDeploy: z.ZodEnum<{
|
|
9005
|
+
none: "none";
|
|
9006
|
+
docker: "docker";
|
|
9007
|
+
azure: "azure";
|
|
9008
|
+
aws: "aws";
|
|
9009
|
+
}>;
|
|
7249
9010
|
elixirWebFramework: z.ZodEnum<{
|
|
7250
9011
|
none: "none";
|
|
7251
9012
|
phoenix: "phoenix";
|
|
@@ -7266,6 +9027,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7266
9027
|
none: "none";
|
|
7267
9028
|
rest: "rest";
|
|
7268
9029
|
absinthe: "absinthe";
|
|
9030
|
+
grpc: "grpc";
|
|
7269
9031
|
}>;
|
|
7270
9032
|
elixirRealtime: z.ZodEnum<{
|
|
7271
9033
|
none: "none";
|
|
@@ -7328,6 +9090,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7328
9090
|
gigalixir: "gigalixir";
|
|
7329
9091
|
"mix-release": "mix-release";
|
|
7330
9092
|
}>;
|
|
9093
|
+
elixirLibraries: z.ZodArray<z.ZodEnum<{
|
|
9094
|
+
none: "none";
|
|
9095
|
+
broadway: "broadway";
|
|
9096
|
+
nx: "nx";
|
|
9097
|
+
}>>;
|
|
7331
9098
|
aiDocs: z.ZodArray<z.ZodEnum<{
|
|
7332
9099
|
none: "none";
|
|
7333
9100
|
"claude-md": "claude-md";
|
|
@@ -7337,37 +9104,55 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7337
9104
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
9105
|
id: z.ZodString;
|
|
7339
9106
|
role: z.ZodEnum<{
|
|
7340
|
-
|
|
9107
|
+
frontend: "frontend";
|
|
9108
|
+
backend: "backend";
|
|
9109
|
+
mobile: "mobile";
|
|
7341
9110
|
database: "database";
|
|
9111
|
+
api: "api";
|
|
7342
9112
|
orm: "orm";
|
|
7343
9113
|
auth: "auth";
|
|
7344
|
-
payments: "payments";
|
|
7345
|
-
frontend: "frontend";
|
|
7346
|
-
backend: "backend";
|
|
7347
9114
|
runtime: "runtime";
|
|
7348
|
-
|
|
9115
|
+
deploy: "deploy";
|
|
9116
|
+
dbSetup: "dbSetup";
|
|
9117
|
+
realtime: "realtime";
|
|
9118
|
+
navigation: "navigation";
|
|
9119
|
+
caching: "caching";
|
|
9120
|
+
observability: "observability";
|
|
9121
|
+
email: "email";
|
|
9122
|
+
search: "search";
|
|
9123
|
+
fileStorage: "fileStorage";
|
|
9124
|
+
jobQueue: "jobQueue";
|
|
9125
|
+
rateLimit: "rateLimit";
|
|
9126
|
+
testing: "testing";
|
|
7349
9127
|
stateManagement: "stateManagement";
|
|
7350
9128
|
forms: "forms";
|
|
7351
|
-
|
|
7352
|
-
|
|
9129
|
+
animation: "animation";
|
|
9130
|
+
fileUpload: "fileUpload";
|
|
7353
9131
|
validation: "validation";
|
|
7354
|
-
|
|
9132
|
+
effect: "effect";
|
|
9133
|
+
ui: "ui";
|
|
9134
|
+
css: "css";
|
|
9135
|
+
storage: "storage";
|
|
9136
|
+
ai: "ai";
|
|
9137
|
+
payments: "payments";
|
|
7355
9138
|
logging: "logging";
|
|
7356
|
-
observability: "observability";
|
|
7357
9139
|
featureFlags: "featureFlags";
|
|
7358
9140
|
analytics: "analytics";
|
|
7359
9141
|
cms: "cms";
|
|
7360
|
-
caching: "caching";
|
|
7361
9142
|
i18n: "i18n";
|
|
7362
|
-
search: "search";
|
|
7363
|
-
fileStorage: "fileStorage";
|
|
7364
|
-
mobile: "mobile";
|
|
7365
|
-
deploy: "deploy";
|
|
7366
|
-
ui: "ui";
|
|
7367
|
-
css: "css";
|
|
7368
9143
|
documentation: "documentation";
|
|
7369
9144
|
codeQuality: "codeQuality";
|
|
7370
9145
|
appPlatform: "appPlatform";
|
|
9146
|
+
dataFetching: "dataFetching";
|
|
9147
|
+
workspaceTooling: "workspaceTooling";
|
|
9148
|
+
examples: "examples";
|
|
9149
|
+
buildTool: "buildTool";
|
|
9150
|
+
cli: "cli";
|
|
9151
|
+
errorHandling: "errorHandling";
|
|
9152
|
+
httpClient: "httpClient";
|
|
9153
|
+
libraries: "libraries";
|
|
9154
|
+
config: "config";
|
|
9155
|
+
templating: "templating";
|
|
7371
9156
|
}>;
|
|
7372
9157
|
toolId: z.ZodString;
|
|
7373
9158
|
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -7378,6 +9163,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7378
9163
|
go: "go";
|
|
7379
9164
|
java: "java";
|
|
7380
9165
|
elixir: "elixir";
|
|
9166
|
+
dotnet: "dotnet";
|
|
7381
9167
|
}>, z.ZodLiteral<"universal">]>;
|
|
7382
9168
|
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7383
9169
|
source: z.ZodEnum<{
|
|
@@ -7408,21 +9194,21 @@ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm
|
|
|
7408
9194
|
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
7409
9195
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
7410
9196
|
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: ("
|
|
9197
|
+
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" | "backend-utils" | "docker-compose")[];
|
|
9198
|
+
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
7413
9199
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
7414
9200
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
7415
9201
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
7416
9202
|
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")[];
|
|
9203
|
+
declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde")[];
|
|
7418
9204
|
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" | "
|
|
9205
|
+
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
9206
|
+
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
9207
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
9208
|
+
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3")[];
|
|
7423
9209
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
7424
9210
|
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: ("
|
|
9211
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
7426
9212
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
7427
9213
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
7428
9214
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
@@ -7435,11 +9221,11 @@ declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" |
|
|
|
7435
9221
|
declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
|
|
7436
9222
|
declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
|
|
7437
9223
|
declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
|
|
7438
|
-
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
|
|
9224
|
+
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
|
|
7439
9225
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
7440
9226
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
7441
9227
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
7442
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
9228
|
+
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
7443
9229
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
7444
9230
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
7445
9231
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -7447,45 +9233,75 @@ declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
|
|
|
7447
9233
|
declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
|
|
7448
9234
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus")[];
|
|
7449
9235
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
9236
|
+
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
7450
9237
|
declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
|
|
7451
9238
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
|
|
7452
9239
|
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
|
|
7453
|
-
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir")[];
|
|
9240
|
+
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet")[];
|
|
7454
9241
|
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
7455
9242
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
7456
9243
|
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
|
|
7457
9244
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
|
|
7458
9245
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
7459
|
-
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "
|
|
9246
|
+
declare const RUST_LIBRARIES_VALUES: ("config" | "none" | "serde" | "uuid" | "chrono" | "reqwest" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
7460
9247
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
7461
9248
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
7462
9249
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
7463
|
-
declare const RUST_AUTH_VALUES: ("none" | "oauth2")[];
|
|
7464
|
-
declare const
|
|
7465
|
-
declare const
|
|
9250
|
+
declare const RUST_AUTH_VALUES: ("none" | "oauth2" | "torii")[];
|
|
9251
|
+
declare const RUST_REALTIME_VALUES: ("none" | "tokio-tungstenite")[];
|
|
9252
|
+
declare const RUST_MESSAGE_QUEUE_VALUES: ("none" | "lapin")[];
|
|
9253
|
+
declare const RUST_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
9254
|
+
declare const RUST_TEMPLATING_VALUES: ("none" | "askama" | "tera")[];
|
|
9255
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django" | "flask" | "litestar" | "starlette")[];
|
|
9256
|
+
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm" | "peewee")[];
|
|
7466
9257
|
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")[];
|
|
9258
|
+
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "google-adk" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai" | "haystack" | "pydantic-ai" | "smolagents")[];
|
|
9259
|
+
declare const PYTHON_AUTH_VALUES: ("none" | "authlib" | "jwt" | "fastapi-users")[];
|
|
7469
9260
|
declare const PYTHON_API_VALUES: ("none" | "django-rest-framework" | "django-ninja")[];
|
|
7470
|
-
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" | "huey")[];
|
|
9261
|
+
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" | "huey" | "taskiq")[];
|
|
7471
9262
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
7472
9263
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
9264
|
+
declare const PYTHON_TESTING_VALUES: ("none" | "pytest" | "hypothesis")[];
|
|
9265
|
+
declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
|
|
9266
|
+
declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
|
|
9267
|
+
declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
9268
|
+
declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
|
|
7473
9269
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
7474
9270
|
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
|
|
7475
|
-
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
9271
|
+
declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen")[];
|
|
7476
9272
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
7477
9273
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
7478
|
-
declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin")[];
|
|
9274
|
+
declare const GO_AUTH_VALUES: ("none" | "jwt" | "casbin" | "goth")[];
|
|
9275
|
+
declare const GO_TESTING_VALUES: ("none" | "testify" | "gomock")[];
|
|
9276
|
+
declare const GO_REALTIME_VALUES: ("none" | "gorilla-websocket" | "centrifuge")[];
|
|
9277
|
+
declare const GO_MESSAGE_QUEUE_VALUES: ("none" | "nats" | "watermill")[];
|
|
9278
|
+
declare const GO_CACHING_VALUES: ("none" | "redis" | "ristretto")[];
|
|
9279
|
+
declare const GO_CONFIG_VALUES: ("none" | "viper" | "koanf")[];
|
|
9280
|
+
declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
7479
9281
|
declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus")[];
|
|
7480
9282
|
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
|
|
9283
|
+
declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")[];
|
|
9284
|
+
declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
|
|
9285
|
+
declare const JAVA_API_VALUES: ("none" | "spring-graphql")[];
|
|
9286
|
+
declare const JAVA_LOGGING_VALUES: ("none" | "logback")[];
|
|
9287
|
+
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
9288
|
declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
|
|
9289
|
+
declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
|
|
9290
|
+
declare const DOTNET_ORM_VALUES: ("none" | "ef-core" | "dapper" | "linq2db")[];
|
|
9291
|
+
declare const DOTNET_AUTH_VALUES: ("none" | "aspnet-identity" | "duende-identityserver" | "auth0-aspnet")[];
|
|
9292
|
+
declare const DOTNET_API_VALUES: ("none" | "minimal-api" | "graphql-hotchocolate" | "grpc-dotnet")[];
|
|
9293
|
+
declare const DOTNET_TESTING_VALUES: ("none" | "xunit" | "nunit" | "moq" | "testcontainers-dotnet")[];
|
|
9294
|
+
declare const DOTNET_JOB_QUEUE_VALUES: ("none" | "hangfire" | "quartz-net" | "hosted-services")[];
|
|
9295
|
+
declare const DOTNET_REALTIME_VALUES: ("none" | "signalr")[];
|
|
9296
|
+
declare const DOTNET_OBSERVABILITY_VALUES: ("none" | "opentelemetry-dotnet" | "serilog" | "nlog" | "health-checks")[];
|
|
9297
|
+
declare const DOTNET_VALIDATION_VALUES: ("none" | "fluentvalidation" | "data-annotations")[];
|
|
9298
|
+
declare const DOTNET_CACHING_VALUES: ("none" | "redis" | "memory-cache")[];
|
|
9299
|
+
declare const DOTNET_DEPLOY_VALUES: ("none" | "docker" | "azure" | "aws")[];
|
|
7485
9300
|
declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
|
|
7486
9301
|
declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
|
|
7487
9302
|
declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
|
|
7488
|
-
declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe")[];
|
|
9303
|
+
declare const ELIXIR_API_VALUES: ("none" | "rest" | "absinthe" | "grpc")[];
|
|
9304
|
+
declare const ELIXIR_LIBRARIES_VALUES: ("none" | "broadway" | "nx")[];
|
|
7489
9305
|
declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
|
|
7490
9306
|
declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
|
|
7491
9307
|
declare const ELIXIR_VALIDATION_VALUES: ("none" | "ecto-changesets" | "nimble-options")[];
|
|
@@ -7504,7 +9320,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
7504
9320
|
declare const SHADCN_COLOR_THEME_VALUES: ("neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow")[];
|
|
7505
9321
|
declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
|
|
7506
9322
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
7507
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
9323
|
+
declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "small" | "medium" | "large")[];
|
|
7508
9324
|
//#endregion
|
|
7509
|
-
export {
|
|
7510
|
-
//# sourceMappingURL=schemas-
|
|
9325
|
+
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 };
|
|
9326
|
+
//# sourceMappingURL=schemas-BTO7jwoE.d.mts.map
|