@better-fullstack/types 2.1.4 → 2.1.6
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-azh56xa4.d.mts → defaults-CklPcgSP.d.mts} +2 -2
- package/dist/defaults-CklPcgSP.d.mts.map +1 -0
- package/dist/{defaults-u9UAambo.mjs → defaults-DNnZX9er.mjs} +2 -1
- package/dist/defaults-DNnZX9er.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +180 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1560 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +604 -320
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-ZxRzd5TP.mjs → schemas-BXDvWDRp.mjs} +52 -10
- package/dist/schemas-BXDvWDRp.mjs.map +1 -0
- package/dist/{schemas-C3iF9TRm.d.mts → schemas-Dby5Bb6H.d.mts} +867 -593
- package/dist/schemas-Dby5Bb6H.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-BwtoYnJg.mjs → stack-graph-BAad0vv4.mjs} +48 -10
- package/dist/stack-graph-BAad0vv4.mjs.map +1 -0
- package/dist/{stack-graph-CiXONkqh.d.mts → stack-graph-DJy-Qxta.d.mts} +2 -2
- package/dist/stack-graph-DJy-Qxta.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-DNT-iMAE.mjs → stack-translation-BWOFnbOh.mjs} +280 -33
- package/dist/stack-translation-BWOFnbOh.mjs.map +1 -0
- package/dist/{stack-translation-BNwlAM1B.d.mts → stack-translation-C6Tubleh.d.mts} +19 -11
- package/dist/stack-translation-C6Tubleh.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{types-BG-DsHQ9.d.mts → types-B-Q8xLi7.d.mts} +5 -3
- package/dist/types-B-Q8xLi7.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-azh56xa4.d.mts.map +0 -1
- package/dist/defaults-u9UAambo.mjs.map +0 -1
- package/dist/schemas-C3iF9TRm.d.mts.map +0 -1
- package/dist/schemas-ZxRzd5TP.mjs.map +0 -1
- package/dist/stack-graph-BwtoYnJg.mjs.map +0 -1
- package/dist/stack-graph-CiXONkqh.d.mts.map +0 -1
- package/dist/stack-translation-BNwlAM1B.d.mts.map +0 -1
- package/dist/stack-translation-DNT-iMAE.mjs.map +0 -1
- package/dist/types-BG-DsHQ9.d.mts.map +0 -1
|
@@ -22,59 +22,60 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
22
22
|
dotnet: "dotnet";
|
|
23
23
|
}>, z.ZodLiteral<"universal">]>;
|
|
24
24
|
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
25
|
-
|
|
26
|
-
frontend: "frontend";
|
|
25
|
+
runtime: "runtime";
|
|
27
26
|
backend: "backend";
|
|
28
|
-
mobile: "mobile";
|
|
29
27
|
database: "database";
|
|
30
|
-
api: "api";
|
|
31
|
-
graphql: "graphql";
|
|
32
28
|
orm: "orm";
|
|
33
|
-
auth: "auth";
|
|
34
|
-
runtime: "runtime";
|
|
35
|
-
deploy: "deploy";
|
|
36
29
|
dbSetup: "dbSetup";
|
|
30
|
+
auth: "auth";
|
|
31
|
+
payments: "payments";
|
|
32
|
+
email: "email";
|
|
33
|
+
fileUpload: "fileUpload";
|
|
34
|
+
logging: "logging";
|
|
35
|
+
observability: "observability";
|
|
36
|
+
featureFlags: "featureFlags";
|
|
37
|
+
analytics: "analytics";
|
|
38
|
+
stateManagement: "stateManagement";
|
|
39
|
+
forms: "forms";
|
|
40
|
+
validation: "validation";
|
|
41
|
+
testing: "testing";
|
|
37
42
|
realtime: "realtime";
|
|
38
|
-
|
|
43
|
+
jobQueue: "jobQueue";
|
|
39
44
|
caching: "caching";
|
|
40
|
-
|
|
41
|
-
|
|
45
|
+
rateLimit: "rateLimit";
|
|
46
|
+
animation: "animation";
|
|
47
|
+
cms: "cms";
|
|
48
|
+
i18n: "i18n";
|
|
42
49
|
search: "search";
|
|
43
50
|
vectorDb: "vectorDb";
|
|
44
51
|
fileStorage: "fileStorage";
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
animation: "animation";
|
|
51
|
-
fileUpload: "fileUpload";
|
|
52
|
-
validation: "validation";
|
|
52
|
+
codeQuality: "codeQuality";
|
|
53
|
+
documentation: "documentation";
|
|
54
|
+
examples: "examples";
|
|
55
|
+
api: "api";
|
|
56
|
+
ai: "ai";
|
|
53
57
|
effect: "effect";
|
|
54
|
-
ui: "ui";
|
|
55
58
|
css: "css";
|
|
59
|
+
ui: "ui";
|
|
60
|
+
push: "push";
|
|
61
|
+
frontend: "frontend";
|
|
62
|
+
config: "config";
|
|
63
|
+
mobile: "mobile";
|
|
64
|
+
graphql: "graphql";
|
|
65
|
+
deploy: "deploy";
|
|
66
|
+
navigation: "navigation";
|
|
56
67
|
storage: "storage";
|
|
57
68
|
ota: "ota";
|
|
58
69
|
deepLinking: "deepLinking";
|
|
59
|
-
ai: "ai";
|
|
60
|
-
payments: "payments";
|
|
61
|
-
logging: "logging";
|
|
62
|
-
featureFlags: "featureFlags";
|
|
63
|
-
analytics: "analytics";
|
|
64
|
-
cms: "cms";
|
|
65
|
-
i18n: "i18n";
|
|
66
|
-
documentation: "documentation";
|
|
67
|
-
codeQuality: "codeQuality";
|
|
68
70
|
appPlatform: "appPlatform";
|
|
69
71
|
dataFetching: "dataFetching";
|
|
70
72
|
workspaceTooling: "workspaceTooling";
|
|
71
|
-
|
|
73
|
+
language: "language";
|
|
72
74
|
buildTool: "buildTool";
|
|
73
75
|
cli: "cli";
|
|
74
76
|
errorHandling: "errorHandling";
|
|
75
77
|
httpClient: "httpClient";
|
|
76
78
|
libraries: "libraries";
|
|
77
|
-
config: "config";
|
|
78
79
|
templating: "templating";
|
|
79
80
|
}>;
|
|
80
81
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
@@ -87,59 +88,60 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
87
88
|
declare const StackPartSchema: z.ZodObject<{
|
|
88
89
|
id: z.ZodString;
|
|
89
90
|
role: z.ZodEnum<{
|
|
90
|
-
|
|
91
|
-
frontend: "frontend";
|
|
91
|
+
runtime: "runtime";
|
|
92
92
|
backend: "backend";
|
|
93
|
-
mobile: "mobile";
|
|
94
93
|
database: "database";
|
|
95
|
-
api: "api";
|
|
96
|
-
graphql: "graphql";
|
|
97
94
|
orm: "orm";
|
|
98
|
-
auth: "auth";
|
|
99
|
-
runtime: "runtime";
|
|
100
|
-
deploy: "deploy";
|
|
101
95
|
dbSetup: "dbSetup";
|
|
96
|
+
auth: "auth";
|
|
97
|
+
payments: "payments";
|
|
98
|
+
email: "email";
|
|
99
|
+
fileUpload: "fileUpload";
|
|
100
|
+
logging: "logging";
|
|
101
|
+
observability: "observability";
|
|
102
|
+
featureFlags: "featureFlags";
|
|
103
|
+
analytics: "analytics";
|
|
104
|
+
stateManagement: "stateManagement";
|
|
105
|
+
forms: "forms";
|
|
106
|
+
validation: "validation";
|
|
107
|
+
testing: "testing";
|
|
102
108
|
realtime: "realtime";
|
|
103
|
-
|
|
109
|
+
jobQueue: "jobQueue";
|
|
104
110
|
caching: "caching";
|
|
105
|
-
|
|
106
|
-
|
|
111
|
+
rateLimit: "rateLimit";
|
|
112
|
+
animation: "animation";
|
|
113
|
+
cms: "cms";
|
|
114
|
+
i18n: "i18n";
|
|
107
115
|
search: "search";
|
|
108
116
|
vectorDb: "vectorDb";
|
|
109
117
|
fileStorage: "fileStorage";
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
animation: "animation";
|
|
116
|
-
fileUpload: "fileUpload";
|
|
117
|
-
validation: "validation";
|
|
118
|
+
codeQuality: "codeQuality";
|
|
119
|
+
documentation: "documentation";
|
|
120
|
+
examples: "examples";
|
|
121
|
+
api: "api";
|
|
122
|
+
ai: "ai";
|
|
118
123
|
effect: "effect";
|
|
119
|
-
ui: "ui";
|
|
120
124
|
css: "css";
|
|
125
|
+
ui: "ui";
|
|
126
|
+
push: "push";
|
|
127
|
+
frontend: "frontend";
|
|
128
|
+
config: "config";
|
|
129
|
+
mobile: "mobile";
|
|
130
|
+
graphql: "graphql";
|
|
131
|
+
deploy: "deploy";
|
|
132
|
+
navigation: "navigation";
|
|
121
133
|
storage: "storage";
|
|
122
134
|
ota: "ota";
|
|
123
135
|
deepLinking: "deepLinking";
|
|
124
|
-
ai: "ai";
|
|
125
|
-
payments: "payments";
|
|
126
|
-
logging: "logging";
|
|
127
|
-
featureFlags: "featureFlags";
|
|
128
|
-
analytics: "analytics";
|
|
129
|
-
cms: "cms";
|
|
130
|
-
i18n: "i18n";
|
|
131
|
-
documentation: "documentation";
|
|
132
|
-
codeQuality: "codeQuality";
|
|
133
136
|
appPlatform: "appPlatform";
|
|
134
137
|
dataFetching: "dataFetching";
|
|
135
138
|
workspaceTooling: "workspaceTooling";
|
|
136
|
-
|
|
139
|
+
language: "language";
|
|
137
140
|
buildTool: "buildTool";
|
|
138
141
|
cli: "cli";
|
|
139
142
|
errorHandling: "errorHandling";
|
|
140
143
|
httpClient: "httpClient";
|
|
141
144
|
libraries: "libraries";
|
|
142
|
-
config: "config";
|
|
143
145
|
templating: "templating";
|
|
144
146
|
}>;
|
|
145
147
|
toolId: z.ZodString;
|
|
@@ -185,6 +187,7 @@ declare const ORMSchema: z.ZodEnum<{
|
|
|
185
187
|
sequelize: "sequelize";
|
|
186
188
|
}>;
|
|
187
189
|
declare const BackendSchema: z.ZodEnum<{
|
|
190
|
+
effect: "effect";
|
|
188
191
|
none: "none";
|
|
189
192
|
hono: "hono";
|
|
190
193
|
express: "express";
|
|
@@ -280,6 +283,10 @@ declare const VersionChannelSchema: z.ZodEnum<{
|
|
|
280
283
|
latest: "latest";
|
|
281
284
|
beta: "beta";
|
|
282
285
|
}>;
|
|
286
|
+
declare const WorkspaceShapeSchema: z.ZodEnum<{
|
|
287
|
+
monorepo: "monorepo";
|
|
288
|
+
"single-app": "single-app";
|
|
289
|
+
}>;
|
|
283
290
|
declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
284
291
|
none: "none";
|
|
285
292
|
turso: "turso";
|
|
@@ -317,11 +324,15 @@ declare const AuthSchema: z.ZodEnum<{
|
|
|
317
324
|
}>;
|
|
318
325
|
declare const PaymentsSchema: z.ZodEnum<{
|
|
319
326
|
none: "none";
|
|
327
|
+
revenuecat: "revenuecat";
|
|
320
328
|
polar: "polar";
|
|
321
329
|
stripe: "stripe";
|
|
322
330
|
"lemon-squeezy": "lemon-squeezy";
|
|
323
331
|
paddle: "paddle";
|
|
324
332
|
dodo: "dodo";
|
|
333
|
+
creem: "creem";
|
|
334
|
+
autumn: "autumn";
|
|
335
|
+
commet: "commet";
|
|
325
336
|
}>;
|
|
326
337
|
declare const WebDeploySchema: z.ZodEnum<{
|
|
327
338
|
none: "none";
|
|
@@ -441,6 +452,7 @@ declare const CMSSchema: z.ZodEnum<{
|
|
|
441
452
|
}>;
|
|
442
453
|
declare const CachingSchema: z.ZodEnum<{
|
|
443
454
|
none: "none";
|
|
455
|
+
redis: "redis";
|
|
444
456
|
"upstash-redis": "upstash-redis";
|
|
445
457
|
}>;
|
|
446
458
|
declare const RateLimitSchema: z.ZodEnum<{
|
|
@@ -453,6 +465,7 @@ declare const I18nSchema: z.ZodEnum<{
|
|
|
453
465
|
paraglide: "paraglide";
|
|
454
466
|
i18next: "i18next";
|
|
455
467
|
"next-intl": "next-intl";
|
|
468
|
+
intlayer: "intlayer";
|
|
456
469
|
}>;
|
|
457
470
|
declare const SearchSchema: z.ZodEnum<{
|
|
458
471
|
none: "none";
|
|
@@ -461,6 +474,7 @@ declare const SearchSchema: z.ZodEnum<{
|
|
|
461
474
|
elasticsearch: "elasticsearch";
|
|
462
475
|
opensearch: "opensearch";
|
|
463
476
|
algolia: "algolia";
|
|
477
|
+
bleve: "bleve";
|
|
464
478
|
}>;
|
|
465
479
|
declare const VectorDbSchema: z.ZodEnum<{
|
|
466
480
|
none: "none";
|
|
@@ -474,6 +488,7 @@ declare const FileStorageSchema: z.ZodEnum<{
|
|
|
474
488
|
s3: "s3";
|
|
475
489
|
r2: "r2";
|
|
476
490
|
cloudinary: "cloudinary";
|
|
491
|
+
"supabase-storage": "supabase-storage";
|
|
477
492
|
}>;
|
|
478
493
|
declare const AnimationSchema: z.ZodEnum<{
|
|
479
494
|
none: "none";
|
|
@@ -514,6 +529,7 @@ declare const FeatureFlagsSchema: z.ZodEnum<{
|
|
|
514
529
|
}>;
|
|
515
530
|
declare const AnalyticsSchema: z.ZodEnum<{
|
|
516
531
|
none: "none";
|
|
532
|
+
posthog: "posthog";
|
|
517
533
|
plausible: "plausible";
|
|
518
534
|
umami: "umami";
|
|
519
535
|
}>;
|
|
@@ -524,9 +540,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
524
540
|
}>;
|
|
525
541
|
declare const MobileUISchema: z.ZodEnum<{
|
|
526
542
|
none: "none";
|
|
543
|
+
uniwind: "uniwind";
|
|
527
544
|
tamagui: "tamagui";
|
|
528
545
|
"gluestack-ui": "gluestack-ui";
|
|
529
|
-
uniwind: "uniwind";
|
|
530
546
|
unistyles: "unistyles";
|
|
531
547
|
}>;
|
|
532
548
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -556,6 +572,8 @@ declare const RustWebFrameworkSchema: z.ZodEnum<{
|
|
|
556
572
|
axum: "axum";
|
|
557
573
|
"actix-web": "actix-web";
|
|
558
574
|
rocket: "rocket";
|
|
575
|
+
poem: "poem";
|
|
576
|
+
loco: "loco";
|
|
559
577
|
}>;
|
|
560
578
|
declare const RustFrontendSchema: z.ZodEnum<{
|
|
561
579
|
none: "none";
|
|
@@ -579,12 +597,12 @@ declare const RustCliSchema: z.ZodEnum<{
|
|
|
579
597
|
ratatui: "ratatui";
|
|
580
598
|
}>;
|
|
581
599
|
declare const RustLibrariesSchema: z.ZodEnum<{
|
|
582
|
-
config: "config";
|
|
583
600
|
none: "none";
|
|
584
601
|
serde: "serde";
|
|
585
602
|
uuid: "uuid";
|
|
586
603
|
chrono: "chrono";
|
|
587
604
|
reqwest: "reqwest";
|
|
605
|
+
config: "config";
|
|
588
606
|
dashmap: "dashmap";
|
|
589
607
|
"parking-lot": "parking-lot";
|
|
590
608
|
secrecy: "secrecy";
|
|
@@ -728,10 +746,12 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
728
746
|
echo: "echo";
|
|
729
747
|
fiber: "fiber";
|
|
730
748
|
chi: "chi";
|
|
749
|
+
stdlib: "stdlib";
|
|
731
750
|
}>;
|
|
732
751
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
733
|
-
none: "none";
|
|
734
752
|
gorm: "gorm";
|
|
753
|
+
none: "none";
|
|
754
|
+
bun: "bun";
|
|
735
755
|
sqlc: "sqlc";
|
|
736
756
|
ent: "ent";
|
|
737
757
|
}>;
|
|
@@ -788,10 +808,15 @@ declare const GoObservabilitySchema: z.ZodEnum<{
|
|
|
788
808
|
none: "none";
|
|
789
809
|
opentelemetry: "opentelemetry";
|
|
790
810
|
}>;
|
|
811
|
+
declare const JavaLanguageSchema: z.ZodEnum<{
|
|
812
|
+
java: "java";
|
|
813
|
+
kotlin: "kotlin";
|
|
814
|
+
}>;
|
|
791
815
|
declare const JavaWebFrameworkSchema: z.ZodEnum<{
|
|
792
816
|
none: "none";
|
|
793
817
|
"spring-boot": "spring-boot";
|
|
794
818
|
quarkus: "quarkus";
|
|
819
|
+
micronaut: "micronaut";
|
|
795
820
|
}>;
|
|
796
821
|
declare const JavaBuildToolSchema: z.ZodEnum<{
|
|
797
822
|
none: "none";
|
|
@@ -812,10 +837,13 @@ declare const JavaAuthSchema: z.ZodEnum<{
|
|
|
812
837
|
declare const JavaApiSchema: z.ZodEnum<{
|
|
813
838
|
none: "none";
|
|
814
839
|
"spring-graphql": "spring-graphql";
|
|
840
|
+
"openapi-generator": "openapi-generator";
|
|
841
|
+
grpc: "grpc";
|
|
815
842
|
}>;
|
|
816
843
|
declare const JavaLoggingSchema: z.ZodEnum<{
|
|
817
844
|
none: "none";
|
|
818
845
|
logback: "logback";
|
|
846
|
+
log4j2: "log4j2";
|
|
819
847
|
}>;
|
|
820
848
|
declare const JavaLibrariesSchema: z.ZodEnum<{
|
|
821
849
|
none: "none";
|
|
@@ -932,9 +960,9 @@ declare const ElixirAuthSchema: z.ZodEnum<{
|
|
|
932
960
|
}>;
|
|
933
961
|
declare const ElixirApiSchema: z.ZodEnum<{
|
|
934
962
|
none: "none";
|
|
963
|
+
grpc: "grpc";
|
|
935
964
|
rest: "rest";
|
|
936
965
|
absinthe: "absinthe";
|
|
937
|
-
grpc: "grpc";
|
|
938
966
|
}>;
|
|
939
967
|
declare const ElixirLibrariesSchema: z.ZodEnum<{
|
|
940
968
|
none: "none";
|
|
@@ -1016,6 +1044,7 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
|
1016
1044
|
"postcss-only": "postcss-only";
|
|
1017
1045
|
}>;
|
|
1018
1046
|
declare const UILibrarySchema: z.ZodEnum<{
|
|
1047
|
+
mui: "mui";
|
|
1019
1048
|
none: "none";
|
|
1020
1049
|
"shadcn-ui": "shadcn-ui";
|
|
1021
1050
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1026,7 +1055,6 @@ declare const UILibrarySchema: z.ZodEnum<{
|
|
|
1026
1055
|
"chakra-ui": "chakra-ui";
|
|
1027
1056
|
nextui: "nextui";
|
|
1028
1057
|
mantine: "mantine";
|
|
1029
|
-
mui: "mui";
|
|
1030
1058
|
antd: "antd";
|
|
1031
1059
|
"base-ui": "base-ui";
|
|
1032
1060
|
"ark-ui": "ark-ui";
|
|
@@ -1098,34 +1126,36 @@ declare const ShadcnFontSchema: z.ZodEnum<{
|
|
|
1098
1126
|
"geist-mono": "geist-mono";
|
|
1099
1127
|
}>;
|
|
1100
1128
|
declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
1101
|
-
default: "default";
|
|
1102
1129
|
none: "none";
|
|
1130
|
+
default: "default";
|
|
1103
1131
|
small: "small";
|
|
1104
1132
|
medium: "medium";
|
|
1105
1133
|
large: "large";
|
|
1106
1134
|
}>;
|
|
1107
1135
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
1108
|
-
error: "error";
|
|
1109
1136
|
merge: "merge";
|
|
1110
1137
|
overwrite: "overwrite";
|
|
1111
1138
|
increment: "increment";
|
|
1139
|
+
error: "error";
|
|
1112
1140
|
}>;
|
|
1113
1141
|
declare const TemplateSchema: z.ZodEnum<{
|
|
1114
1142
|
none: "none";
|
|
1115
|
-
uniwind: "uniwind";
|
|
1116
1143
|
mern: "mern";
|
|
1117
1144
|
pern: "pern";
|
|
1118
1145
|
t3: "t3";
|
|
1146
|
+
saas: "saas";
|
|
1147
|
+
uniwind: "uniwind";
|
|
1119
1148
|
}>;
|
|
1120
1149
|
declare const ProjectNameSchema: z.ZodString;
|
|
1121
1150
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1122
1151
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1123
1152
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1124
1153
|
none: "none";
|
|
1125
|
-
uniwind: "uniwind";
|
|
1126
1154
|
mern: "mern";
|
|
1127
1155
|
pern: "pern";
|
|
1128
1156
|
t3: "t3";
|
|
1157
|
+
saas: "saas";
|
|
1158
|
+
uniwind: "uniwind";
|
|
1129
1159
|
}>>;
|
|
1130
1160
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1131
1161
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1176,11 +1206,15 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1176
1206
|
}>>;
|
|
1177
1207
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
1178
1208
|
none: "none";
|
|
1209
|
+
revenuecat: "revenuecat";
|
|
1179
1210
|
polar: "polar";
|
|
1180
1211
|
stripe: "stripe";
|
|
1181
1212
|
"lemon-squeezy": "lemon-squeezy";
|
|
1182
1213
|
paddle: "paddle";
|
|
1183
1214
|
dodo: "dodo";
|
|
1215
|
+
creem: "creem";
|
|
1216
|
+
autumn: "autumn";
|
|
1217
|
+
commet: "commet";
|
|
1184
1218
|
}>>;
|
|
1185
1219
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1186
1220
|
none: "none";
|
|
@@ -1247,6 +1281,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1247
1281
|
pnpm: "pnpm";
|
|
1248
1282
|
yarn: "yarn";
|
|
1249
1283
|
}>>;
|
|
1284
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
1285
|
+
monorepo: "monorepo";
|
|
1286
|
+
"single-app": "single-app";
|
|
1287
|
+
}>>;
|
|
1250
1288
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
1251
1289
|
stable: "stable";
|
|
1252
1290
|
latest: "latest";
|
|
@@ -1266,6 +1304,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1266
1304
|
docker: "docker";
|
|
1267
1305
|
}>>;
|
|
1268
1306
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
1307
|
+
effect: "effect";
|
|
1269
1308
|
none: "none";
|
|
1270
1309
|
hono: "hono";
|
|
1271
1310
|
express: "express";
|
|
@@ -1318,10 +1357,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1318
1357
|
vercel: "vercel";
|
|
1319
1358
|
}>>;
|
|
1320
1359
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1321
|
-
error: "error";
|
|
1322
1360
|
merge: "merge";
|
|
1323
1361
|
overwrite: "overwrite";
|
|
1324
1362
|
increment: "increment";
|
|
1363
|
+
error: "error";
|
|
1325
1364
|
}>>;
|
|
1326
1365
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1327
1366
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1400,6 +1439,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1400
1439
|
"postcss-only": "postcss-only";
|
|
1401
1440
|
}>>;
|
|
1402
1441
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1442
|
+
mui: "mui";
|
|
1403
1443
|
none: "none";
|
|
1404
1444
|
"shadcn-ui": "shadcn-ui";
|
|
1405
1445
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1410,7 +1450,6 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1410
1450
|
"chakra-ui": "chakra-ui";
|
|
1411
1451
|
nextui: "nextui";
|
|
1412
1452
|
mantine: "mantine";
|
|
1413
|
-
mui: "mui";
|
|
1414
1453
|
antd: "antd";
|
|
1415
1454
|
"base-ui": "base-ui";
|
|
1416
1455
|
"ark-ui": "ark-ui";
|
|
@@ -1482,8 +1521,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1482
1521
|
"geist-mono": "geist-mono";
|
|
1483
1522
|
}>>;
|
|
1484
1523
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1485
|
-
default: "default";
|
|
1486
1524
|
none: "none";
|
|
1525
|
+
default: "default";
|
|
1487
1526
|
small: "small";
|
|
1488
1527
|
medium: "medium";
|
|
1489
1528
|
large: "large";
|
|
@@ -1553,6 +1592,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1553
1592
|
}>>;
|
|
1554
1593
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
1555
1594
|
none: "none";
|
|
1595
|
+
posthog: "posthog";
|
|
1556
1596
|
plausible: "plausible";
|
|
1557
1597
|
umami: "umami";
|
|
1558
1598
|
}>>;
|
|
@@ -1567,6 +1607,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1567
1607
|
}>>;
|
|
1568
1608
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
1569
1609
|
none: "none";
|
|
1610
|
+
redis: "redis";
|
|
1570
1611
|
"upstash-redis": "upstash-redis";
|
|
1571
1612
|
}>>;
|
|
1572
1613
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1579,6 +1620,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1579
1620
|
paraglide: "paraglide";
|
|
1580
1621
|
i18next: "i18next";
|
|
1581
1622
|
"next-intl": "next-intl";
|
|
1623
|
+
intlayer: "intlayer";
|
|
1582
1624
|
}>>;
|
|
1583
1625
|
search: z.ZodOptional<z.ZodEnum<{
|
|
1584
1626
|
none: "none";
|
|
@@ -1587,6 +1629,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1587
1629
|
elasticsearch: "elasticsearch";
|
|
1588
1630
|
opensearch: "opensearch";
|
|
1589
1631
|
algolia: "algolia";
|
|
1632
|
+
bleve: "bleve";
|
|
1590
1633
|
}>>;
|
|
1591
1634
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
1592
1635
|
none: "none";
|
|
@@ -1600,6 +1643,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1600
1643
|
s3: "s3";
|
|
1601
1644
|
r2: "r2";
|
|
1602
1645
|
cloudinary: "cloudinary";
|
|
1646
|
+
"supabase-storage": "supabase-storage";
|
|
1603
1647
|
}>>;
|
|
1604
1648
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
1605
1649
|
none: "none";
|
|
@@ -1608,9 +1652,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1608
1652
|
}>>;
|
|
1609
1653
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1610
1654
|
none: "none";
|
|
1655
|
+
uniwind: "uniwind";
|
|
1611
1656
|
tamagui: "tamagui";
|
|
1612
1657
|
"gluestack-ui": "gluestack-ui";
|
|
1613
|
-
uniwind: "uniwind";
|
|
1614
1658
|
unistyles: "unistyles";
|
|
1615
1659
|
}>>;
|
|
1616
1660
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1640,6 +1684,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1640
1684
|
axum: "axum";
|
|
1641
1685
|
"actix-web": "actix-web";
|
|
1642
1686
|
rocket: "rocket";
|
|
1687
|
+
poem: "poem";
|
|
1688
|
+
loco: "loco";
|
|
1643
1689
|
}>>;
|
|
1644
1690
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
1645
1691
|
none: "none";
|
|
@@ -1663,12 +1709,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1663
1709
|
ratatui: "ratatui";
|
|
1664
1710
|
}>>;
|
|
1665
1711
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1666
|
-
config: "config";
|
|
1667
1712
|
none: "none";
|
|
1668
1713
|
serde: "serde";
|
|
1669
1714
|
uuid: "uuid";
|
|
1670
1715
|
chrono: "chrono";
|
|
1671
1716
|
reqwest: "reqwest";
|
|
1717
|
+
config: "config";
|
|
1672
1718
|
dashmap: "dashmap";
|
|
1673
1719
|
"parking-lot": "parking-lot";
|
|
1674
1720
|
secrecy: "secrecy";
|
|
@@ -1812,10 +1858,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1812
1858
|
echo: "echo";
|
|
1813
1859
|
fiber: "fiber";
|
|
1814
1860
|
chi: "chi";
|
|
1861
|
+
stdlib: "stdlib";
|
|
1815
1862
|
}>>;
|
|
1816
1863
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1817
|
-
none: "none";
|
|
1818
1864
|
gorm: "gorm";
|
|
1865
|
+
none: "none";
|
|
1866
|
+
bun: "bun";
|
|
1819
1867
|
sqlc: "sqlc";
|
|
1820
1868
|
ent: "ent";
|
|
1821
1869
|
}>>;
|
|
@@ -1872,10 +1920,15 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1872
1920
|
none: "none";
|
|
1873
1921
|
opentelemetry: "opentelemetry";
|
|
1874
1922
|
}>>;
|
|
1923
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
1924
|
+
java: "java";
|
|
1925
|
+
kotlin: "kotlin";
|
|
1926
|
+
}>>;
|
|
1875
1927
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1876
1928
|
none: "none";
|
|
1877
1929
|
"spring-boot": "spring-boot";
|
|
1878
1930
|
quarkus: "quarkus";
|
|
1931
|
+
micronaut: "micronaut";
|
|
1879
1932
|
}>>;
|
|
1880
1933
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
1881
1934
|
none: "none";
|
|
@@ -1896,10 +1949,13 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1896
1949
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
1897
1950
|
none: "none";
|
|
1898
1951
|
"spring-graphql": "spring-graphql";
|
|
1952
|
+
"openapi-generator": "openapi-generator";
|
|
1953
|
+
grpc: "grpc";
|
|
1899
1954
|
}>>;
|
|
1900
1955
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
1901
1956
|
none: "none";
|
|
1902
1957
|
logback: "logback";
|
|
1958
|
+
log4j2: "log4j2";
|
|
1903
1959
|
}>>;
|
|
1904
1960
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1905
1961
|
none: "none";
|
|
@@ -2016,9 +2072,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2016
2072
|
}>>;
|
|
2017
2073
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
2018
2074
|
none: "none";
|
|
2075
|
+
grpc: "grpc";
|
|
2019
2076
|
rest: "rest";
|
|
2020
2077
|
absinthe: "absinthe";
|
|
2021
|
-
grpc: "grpc";
|
|
2022
2078
|
}>>;
|
|
2023
2079
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2024
2080
|
none: "none";
|
|
@@ -2095,28 +2151,31 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
2095
2151
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2096
2152
|
}, z.core.$strip>;
|
|
2097
2153
|
declare const AddInputSchema: z.ZodObject<{
|
|
2098
|
-
|
|
2154
|
+
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
2155
|
+
typescript: "typescript";
|
|
2156
|
+
"react-native": "react-native";
|
|
2157
|
+
rust: "rust";
|
|
2158
|
+
python: "python";
|
|
2159
|
+
go: "go";
|
|
2160
|
+
java: "java";
|
|
2161
|
+
elixir: "elixir";
|
|
2162
|
+
dotnet: "dotnet";
|
|
2163
|
+
}>>;
|
|
2164
|
+
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2099
2165
|
none: "none";
|
|
2100
|
-
"tanstack-router": "tanstack-router";
|
|
2101
|
-
"react-router": "react-router";
|
|
2102
|
-
"react-vite": "react-vite";
|
|
2103
|
-
"tanstack-start": "tanstack-start";
|
|
2104
|
-
next: "next";
|
|
2105
|
-
vinext: "vinext";
|
|
2106
|
-
nuxt: "nuxt";
|
|
2107
|
-
"native-bare": "native-bare";
|
|
2108
|
-
"native-uniwind": "native-uniwind";
|
|
2109
|
-
"native-unistyles": "native-unistyles";
|
|
2110
2166
|
svelte: "svelte";
|
|
2111
2167
|
solid: "solid";
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2168
|
+
react: "react";
|
|
2169
|
+
vue: "vue";
|
|
2170
|
+
}>>;
|
|
2171
|
+
runtime: z.ZodOptional<z.ZodEnum<{
|
|
2172
|
+
none: "none";
|
|
2173
|
+
bun: "bun";
|
|
2174
|
+
node: "node";
|
|
2175
|
+
workers: "workers";
|
|
2176
|
+
}>>;
|
|
2119
2177
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
2178
|
+
effect: "effect";
|
|
2120
2179
|
none: "none";
|
|
2121
2180
|
hono: "hono";
|
|
2122
2181
|
express: "express";
|
|
@@ -2139,16 +2198,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2139
2198
|
edgedb: "edgedb";
|
|
2140
2199
|
redis: "redis";
|
|
2141
2200
|
}>>;
|
|
2142
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
2143
|
-
none: "none";
|
|
2144
|
-
trpc: "trpc";
|
|
2145
|
-
orpc: "orpc";
|
|
2146
|
-
"ts-rest": "ts-rest";
|
|
2147
|
-
garph: "garph";
|
|
2148
|
-
"graphql-yoga": "graphql-yoga";
|
|
2149
|
-
"apollo-server": "apollo-server";
|
|
2150
|
-
openapi: "openapi";
|
|
2151
|
-
}>>;
|
|
2152
2201
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
2153
2202
|
none: "none";
|
|
2154
2203
|
drizzle: "drizzle";
|
|
@@ -2159,6 +2208,18 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2159
2208
|
mikroorm: "mikroorm";
|
|
2160
2209
|
sequelize: "sequelize";
|
|
2161
2210
|
}>>;
|
|
2211
|
+
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
2212
|
+
none: "none";
|
|
2213
|
+
turso: "turso";
|
|
2214
|
+
neon: "neon";
|
|
2215
|
+
"prisma-postgres": "prisma-postgres";
|
|
2216
|
+
planetscale: "planetscale";
|
|
2217
|
+
"mongodb-atlas": "mongodb-atlas";
|
|
2218
|
+
supabase: "supabase";
|
|
2219
|
+
upstash: "upstash";
|
|
2220
|
+
d1: "d1";
|
|
2221
|
+
docker: "docker";
|
|
2222
|
+
}>>;
|
|
2162
2223
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
2163
2224
|
none: "none";
|
|
2164
2225
|
"better-auth": "better-auth";
|
|
@@ -2172,47 +2233,19 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2172
2233
|
workos: "workos";
|
|
2173
2234
|
kinde: "kinde";
|
|
2174
2235
|
}>>;
|
|
2175
|
-
|
|
2236
|
+
payments: z.ZodOptional<z.ZodEnum<{
|
|
2176
2237
|
none: "none";
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2238
|
+
revenuecat: "revenuecat";
|
|
2239
|
+
polar: "polar";
|
|
2240
|
+
stripe: "stripe";
|
|
2241
|
+
"lemon-squeezy": "lemon-squeezy";
|
|
2242
|
+
paddle: "paddle";
|
|
2243
|
+
dodo: "dodo";
|
|
2244
|
+
creem: "creem";
|
|
2245
|
+
autumn: "autumn";
|
|
2246
|
+
commet: "commet";
|
|
2180
2247
|
}>>;
|
|
2181
|
-
|
|
2182
|
-
none: "none";
|
|
2183
|
-
turso: "turso";
|
|
2184
|
-
neon: "neon";
|
|
2185
|
-
"prisma-postgres": "prisma-postgres";
|
|
2186
|
-
planetscale: "planetscale";
|
|
2187
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
2188
|
-
supabase: "supabase";
|
|
2189
|
-
upstash: "upstash";
|
|
2190
|
-
d1: "d1";
|
|
2191
|
-
docker: "docker";
|
|
2192
|
-
}>>;
|
|
2193
|
-
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2194
|
-
none: "none";
|
|
2195
|
-
"socket-io": "socket-io";
|
|
2196
|
-
partykit: "partykit";
|
|
2197
|
-
ably: "ably";
|
|
2198
|
-
pusher: "pusher";
|
|
2199
|
-
liveblocks: "liveblocks";
|
|
2200
|
-
yjs: "yjs";
|
|
2201
|
-
}>>;
|
|
2202
|
-
caching: z.ZodOptional<z.ZodEnum<{
|
|
2203
|
-
none: "none";
|
|
2204
|
-
"upstash-redis": "upstash-redis";
|
|
2205
|
-
}>>;
|
|
2206
|
-
observability: z.ZodOptional<z.ZodEnum<{
|
|
2207
|
-
none: "none";
|
|
2208
|
-
opentelemetry: "opentelemetry";
|
|
2209
|
-
sentry: "sentry";
|
|
2210
|
-
grafana: "grafana";
|
|
2211
|
-
datadog: "datadog";
|
|
2212
|
-
axiom: "axiom";
|
|
2213
|
-
betterstack: "betterstack";
|
|
2214
|
-
}>>;
|
|
2215
|
-
email: z.ZodOptional<z.ZodEnum<{
|
|
2248
|
+
email: z.ZodOptional<z.ZodEnum<{
|
|
2216
2249
|
none: "none";
|
|
2217
2250
|
"react-email": "react-email";
|
|
2218
2251
|
resend: "resend";
|
|
@@ -2223,46 +2256,40 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2223
2256
|
mailgun: "mailgun";
|
|
2224
2257
|
plunk: "plunk";
|
|
2225
2258
|
}>>;
|
|
2226
|
-
|
|
2227
|
-
none: "none";
|
|
2228
|
-
meilisearch: "meilisearch";
|
|
2229
|
-
typesense: "typesense";
|
|
2230
|
-
elasticsearch: "elasticsearch";
|
|
2231
|
-
opensearch: "opensearch";
|
|
2232
|
-
algolia: "algolia";
|
|
2233
|
-
}>>;
|
|
2234
|
-
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2259
|
+
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2235
2260
|
none: "none";
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
pinecone: "pinecone";
|
|
2261
|
+
uploadthing: "uploadthing";
|
|
2262
|
+
filepond: "filepond";
|
|
2263
|
+
uppy: "uppy";
|
|
2240
2264
|
}>>;
|
|
2241
|
-
|
|
2265
|
+
logging: z.ZodOptional<z.ZodEnum<{
|
|
2242
2266
|
none: "none";
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2267
|
+
pino: "pino";
|
|
2268
|
+
winston: "winston";
|
|
2269
|
+
evlog: "evlog";
|
|
2246
2270
|
}>>;
|
|
2247
|
-
|
|
2271
|
+
observability: z.ZodOptional<z.ZodEnum<{
|
|
2248
2272
|
none: "none";
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2273
|
+
opentelemetry: "opentelemetry";
|
|
2274
|
+
sentry: "sentry";
|
|
2275
|
+
grafana: "grafana";
|
|
2276
|
+
datadog: "datadog";
|
|
2277
|
+
axiom: "axiom";
|
|
2278
|
+
betterstack: "betterstack";
|
|
2253
2279
|
}>>;
|
|
2254
|
-
|
|
2280
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2255
2281
|
none: "none";
|
|
2256
|
-
|
|
2257
|
-
|
|
2282
|
+
growthbook: "growthbook";
|
|
2283
|
+
posthog: "posthog";
|
|
2284
|
+
launchdarkly: "launchdarkly";
|
|
2285
|
+
flagsmith: "flagsmith";
|
|
2286
|
+
unleash: "unleash";
|
|
2258
2287
|
}>>;
|
|
2259
|
-
|
|
2288
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
2260
2289
|
none: "none";
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
jest: "jest";
|
|
2265
|
-
cypress: "cypress";
|
|
2290
|
+
posthog: "posthog";
|
|
2291
|
+
plausible: "plausible";
|
|
2292
|
+
umami: "umami";
|
|
2266
2293
|
}>>;
|
|
2267
2294
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
2268
2295
|
none: "none";
|
|
@@ -2285,20 +2312,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2285
2312
|
conform: "conform";
|
|
2286
2313
|
"modular-forms": "modular-forms";
|
|
2287
2314
|
}>>;
|
|
2288
|
-
animation: z.ZodOptional<z.ZodEnum<{
|
|
2289
|
-
none: "none";
|
|
2290
|
-
"framer-motion": "framer-motion";
|
|
2291
|
-
gsap: "gsap";
|
|
2292
|
-
"react-spring": "react-spring";
|
|
2293
|
-
"auto-animate": "auto-animate";
|
|
2294
|
-
lottie: "lottie";
|
|
2295
|
-
}>>;
|
|
2296
|
-
fileUpload: z.ZodOptional<z.ZodEnum<{
|
|
2297
|
-
none: "none";
|
|
2298
|
-
uploadthing: "uploadthing";
|
|
2299
|
-
filepond: "filepond";
|
|
2300
|
-
uppy: "uppy";
|
|
2301
|
-
}>>;
|
|
2302
2315
|
validation: z.ZodOptional<z.ZodEnum<{
|
|
2303
2316
|
none: "none";
|
|
2304
2317
|
zod: "zod";
|
|
@@ -2309,155 +2322,47 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2309
2322
|
runtypes: "runtypes";
|
|
2310
2323
|
"effect-schema": "effect-schema";
|
|
2311
2324
|
}>>;
|
|
2312
|
-
|
|
2313
|
-
effect: "effect";
|
|
2314
|
-
none: "none";
|
|
2315
|
-
"effect-full": "effect-full";
|
|
2316
|
-
}>>;
|
|
2317
|
-
ai: z.ZodOptional<z.ZodEnum<{
|
|
2318
|
-
none: "none";
|
|
2319
|
-
"vercel-ai": "vercel-ai";
|
|
2320
|
-
mastra: "mastra";
|
|
2321
|
-
voltagent: "voltagent";
|
|
2322
|
-
langgraph: "langgraph";
|
|
2323
|
-
"openai-agents": "openai-agents";
|
|
2324
|
-
"google-adk": "google-adk";
|
|
2325
|
-
modelfusion: "modelfusion";
|
|
2326
|
-
langchain: "langchain";
|
|
2327
|
-
llamaindex: "llamaindex";
|
|
2328
|
-
"tanstack-ai": "tanstack-ai";
|
|
2329
|
-
"ai-cli": "ai-cli";
|
|
2330
|
-
}>>;
|
|
2331
|
-
payments: z.ZodOptional<z.ZodEnum<{
|
|
2332
|
-
none: "none";
|
|
2333
|
-
polar: "polar";
|
|
2334
|
-
stripe: "stripe";
|
|
2335
|
-
"lemon-squeezy": "lemon-squeezy";
|
|
2336
|
-
paddle: "paddle";
|
|
2337
|
-
dodo: "dodo";
|
|
2338
|
-
}>>;
|
|
2339
|
-
logging: z.ZodOptional<z.ZodEnum<{
|
|
2340
|
-
none: "none";
|
|
2341
|
-
pino: "pino";
|
|
2342
|
-
winston: "winston";
|
|
2343
|
-
evlog: "evlog";
|
|
2344
|
-
}>>;
|
|
2345
|
-
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
2346
|
-
none: "none";
|
|
2347
|
-
growthbook: "growthbook";
|
|
2348
|
-
posthog: "posthog";
|
|
2349
|
-
launchdarkly: "launchdarkly";
|
|
2350
|
-
flagsmith: "flagsmith";
|
|
2351
|
-
unleash: "unleash";
|
|
2352
|
-
}>>;
|
|
2353
|
-
analytics: z.ZodOptional<z.ZodEnum<{
|
|
2354
|
-
none: "none";
|
|
2355
|
-
plausible: "plausible";
|
|
2356
|
-
umami: "umami";
|
|
2357
|
-
}>>;
|
|
2358
|
-
cms: z.ZodOptional<z.ZodEnum<{
|
|
2359
|
-
none: "none";
|
|
2360
|
-
payload: "payload";
|
|
2361
|
-
sanity: "sanity";
|
|
2362
|
-
strapi: "strapi";
|
|
2363
|
-
tinacms: "tinacms";
|
|
2364
|
-
directus: "directus";
|
|
2365
|
-
keystatic: "keystatic";
|
|
2366
|
-
}>>;
|
|
2367
|
-
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2325
|
+
testing: z.ZodOptional<z.ZodEnum<{
|
|
2368
2326
|
none: "none";
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
"
|
|
2327
|
+
vitest: "vitest";
|
|
2328
|
+
playwright: "playwright";
|
|
2329
|
+
"vitest-playwright": "vitest-playwright";
|
|
2330
|
+
jest: "jest";
|
|
2331
|
+
cypress: "cypress";
|
|
2372
2332
|
}>>;
|
|
2373
|
-
|
|
2374
|
-
ai: "ai";
|
|
2333
|
+
realtime: z.ZodOptional<z.ZodEnum<{
|
|
2375
2334
|
none: "none";
|
|
2376
|
-
"
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
rust: "rust";
|
|
2383
|
-
python: "python";
|
|
2384
|
-
go: "go";
|
|
2385
|
-
java: "java";
|
|
2386
|
-
elixir: "elixir";
|
|
2387
|
-
dotnet: "dotnet";
|
|
2335
|
+
"socket-io": "socket-io";
|
|
2336
|
+
partykit: "partykit";
|
|
2337
|
+
ably: "ably";
|
|
2338
|
+
pusher: "pusher";
|
|
2339
|
+
liveblocks: "liveblocks";
|
|
2340
|
+
yjs: "yjs";
|
|
2388
2341
|
}>>;
|
|
2389
|
-
|
|
2390
|
-
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2342
|
+
jobQueue: z.ZodOptional<z.ZodEnum<{
|
|
2391
2343
|
none: "none";
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
lefthook: "lefthook";
|
|
2397
|
-
husky: "husky";
|
|
2398
|
-
ruler: "ruler";
|
|
2399
|
-
mcp: "mcp";
|
|
2400
|
-
skills: "skills";
|
|
2401
|
-
turborepo: "turborepo";
|
|
2402
|
-
nx: "nx";
|
|
2403
|
-
fumadocs: "fumadocs";
|
|
2404
|
-
ultracite: "ultracite";
|
|
2405
|
-
oxlint: "oxlint";
|
|
2406
|
-
opentui: "opentui";
|
|
2407
|
-
wxt: "wxt";
|
|
2408
|
-
msw: "msw";
|
|
2409
|
-
storybook: "storybook";
|
|
2410
|
-
swr: "swr";
|
|
2411
|
-
"tanstack-query": "tanstack-query";
|
|
2412
|
-
"tanstack-table": "tanstack-table";
|
|
2413
|
-
"tanstack-virtual": "tanstack-virtual";
|
|
2414
|
-
"tanstack-db": "tanstack-db";
|
|
2415
|
-
"tanstack-pacer": "tanstack-pacer";
|
|
2416
|
-
"backend-utils": "backend-utils";
|
|
2417
|
-
devcontainer: "devcontainer";
|
|
2418
|
-
"docker-compose": "docker-compose";
|
|
2419
|
-
"github-actions": "github-actions";
|
|
2420
|
-
}>>>;
|
|
2421
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
2422
|
-
bun: "bun";
|
|
2423
|
-
npm: "npm";
|
|
2424
|
-
pnpm: "pnpm";
|
|
2425
|
-
yarn: "yarn";
|
|
2426
|
-
}>>;
|
|
2427
|
-
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
2428
|
-
stable: "stable";
|
|
2429
|
-
latest: "latest";
|
|
2430
|
-
beta: "beta";
|
|
2344
|
+
bullmq: "bullmq";
|
|
2345
|
+
"trigger-dev": "trigger-dev";
|
|
2346
|
+
inngest: "inngest";
|
|
2347
|
+
temporal: "temporal";
|
|
2431
2348
|
}>>;
|
|
2432
|
-
|
|
2433
|
-
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2349
|
+
caching: z.ZodOptional<z.ZodEnum<{
|
|
2434
2350
|
none: "none";
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
fly: "fly";
|
|
2438
|
-
railway: "railway";
|
|
2439
|
-
render: "render";
|
|
2440
|
-
netlify: "netlify";
|
|
2441
|
-
sst: "sst";
|
|
2442
|
-
vercel: "vercel";
|
|
2351
|
+
redis: "redis";
|
|
2352
|
+
"upstash-redis": "upstash-redis";
|
|
2443
2353
|
}>>;
|
|
2444
|
-
|
|
2354
|
+
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
2445
2355
|
none: "none";
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
fly: "fly";
|
|
2449
|
-
railway: "railway";
|
|
2450
|
-
render: "render";
|
|
2451
|
-
netlify: "netlify";
|
|
2452
|
-
sst: "sst";
|
|
2453
|
-
vercel: "vercel";
|
|
2356
|
+
arcjet: "arcjet";
|
|
2357
|
+
"upstash-ratelimit": "upstash-ratelimit";
|
|
2454
2358
|
}>>;
|
|
2455
|
-
|
|
2359
|
+
animation: z.ZodOptional<z.ZodEnum<{
|
|
2456
2360
|
none: "none";
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
react: "react";
|
|
2460
|
-
|
|
2361
|
+
"framer-motion": "framer-motion";
|
|
2362
|
+
gsap: "gsap";
|
|
2363
|
+
"react-spring": "react-spring";
|
|
2364
|
+
"auto-animate": "auto-animate";
|
|
2365
|
+
lottie: "lottie";
|
|
2461
2366
|
}>>;
|
|
2462
2367
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
2463
2368
|
none: "none";
|
|
@@ -2467,6 +2372,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2467
2372
|
"postcss-only": "postcss-only";
|
|
2468
2373
|
}>>;
|
|
2469
2374
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
2375
|
+
mui: "mui";
|
|
2470
2376
|
none: "none";
|
|
2471
2377
|
"shadcn-ui": "shadcn-ui";
|
|
2472
2378
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2477,7 +2383,6 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2477
2383
|
"chakra-ui": "chakra-ui";
|
|
2478
2384
|
nextui: "nextui";
|
|
2479
2385
|
mantine: "mantine";
|
|
2480
|
-
mui: "mui";
|
|
2481
2386
|
antd: "antd";
|
|
2482
2387
|
"base-ui": "base-ui";
|
|
2483
2388
|
"ark-ui": "ark-ui";
|
|
@@ -2549,12 +2454,51 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2549
2454
|
"geist-mono": "geist-mono";
|
|
2550
2455
|
}>>;
|
|
2551
2456
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2552
|
-
default: "default";
|
|
2553
2457
|
none: "none";
|
|
2458
|
+
default: "default";
|
|
2554
2459
|
small: "small";
|
|
2555
2460
|
medium: "medium";
|
|
2556
2461
|
large: "large";
|
|
2557
2462
|
}>>;
|
|
2463
|
+
cms: z.ZodOptional<z.ZodEnum<{
|
|
2464
|
+
none: "none";
|
|
2465
|
+
payload: "payload";
|
|
2466
|
+
sanity: "sanity";
|
|
2467
|
+
strapi: "strapi";
|
|
2468
|
+
tinacms: "tinacms";
|
|
2469
|
+
directus: "directus";
|
|
2470
|
+
keystatic: "keystatic";
|
|
2471
|
+
}>>;
|
|
2472
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
2473
|
+
none: "none";
|
|
2474
|
+
paraglide: "paraglide";
|
|
2475
|
+
i18next: "i18next";
|
|
2476
|
+
"next-intl": "next-intl";
|
|
2477
|
+
intlayer: "intlayer";
|
|
2478
|
+
}>>;
|
|
2479
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
2480
|
+
none: "none";
|
|
2481
|
+
meilisearch: "meilisearch";
|
|
2482
|
+
typesense: "typesense";
|
|
2483
|
+
elasticsearch: "elasticsearch";
|
|
2484
|
+
opensearch: "opensearch";
|
|
2485
|
+
algolia: "algolia";
|
|
2486
|
+
bleve: "bleve";
|
|
2487
|
+
}>>;
|
|
2488
|
+
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
2489
|
+
none: "none";
|
|
2490
|
+
pgvector: "pgvector";
|
|
2491
|
+
qdrant: "qdrant";
|
|
2492
|
+
chroma: "chroma";
|
|
2493
|
+
pinecone: "pinecone";
|
|
2494
|
+
}>>;
|
|
2495
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
2496
|
+
none: "none";
|
|
2497
|
+
s3: "s3";
|
|
2498
|
+
r2: "r2";
|
|
2499
|
+
cloudinary: "cloudinary";
|
|
2500
|
+
"supabase-storage": "supabase-storage";
|
|
2501
|
+
}>>;
|
|
2558
2502
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
2559
2503
|
none: "none";
|
|
2560
2504
|
"expo-router": "expo-router";
|
|
@@ -2562,9 +2506,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2562
2506
|
}>>;
|
|
2563
2507
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2564
2508
|
none: "none";
|
|
2509
|
+
uniwind: "uniwind";
|
|
2565
2510
|
tamagui: "tamagui";
|
|
2566
2511
|
"gluestack-ui": "gluestack-ui";
|
|
2567
|
-
uniwind: "uniwind";
|
|
2568
2512
|
unistyles: "unistyles";
|
|
2569
2513
|
}>>;
|
|
2570
2514
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2589,11 +2533,73 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2589
2533
|
none: "none";
|
|
2590
2534
|
"expo-linking": "expo-linking";
|
|
2591
2535
|
}>>;
|
|
2536
|
+
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
2537
|
+
bun: "bun";
|
|
2538
|
+
npm: "npm";
|
|
2539
|
+
pnpm: "pnpm";
|
|
2540
|
+
yarn: "yarn";
|
|
2541
|
+
}>>;
|
|
2542
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
2543
|
+
monorepo: "monorepo";
|
|
2544
|
+
"single-app": "single-app";
|
|
2545
|
+
}>>;
|
|
2546
|
+
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
2547
|
+
stable: "stable";
|
|
2548
|
+
latest: "latest";
|
|
2549
|
+
beta: "beta";
|
|
2550
|
+
}>>;
|
|
2551
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2552
|
+
ai: "ai";
|
|
2553
|
+
none: "none";
|
|
2554
|
+
"chat-sdk": "chat-sdk";
|
|
2555
|
+
"tanstack-showcase": "tanstack-showcase";
|
|
2556
|
+
}>>>;
|
|
2557
|
+
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2558
|
+
none: "none";
|
|
2559
|
+
"claude-md": "claude-md";
|
|
2560
|
+
"agents-md": "agents-md";
|
|
2561
|
+
cursorrules: "cursorrules";
|
|
2562
|
+
}>>>;
|
|
2563
|
+
install: z.ZodOptional<z.ZodBoolean>;
|
|
2564
|
+
api: z.ZodOptional<z.ZodEnum<{
|
|
2565
|
+
none: "none";
|
|
2566
|
+
trpc: "trpc";
|
|
2567
|
+
orpc: "orpc";
|
|
2568
|
+
"ts-rest": "ts-rest";
|
|
2569
|
+
garph: "garph";
|
|
2570
|
+
"graphql-yoga": "graphql-yoga";
|
|
2571
|
+
"apollo-server": "apollo-server";
|
|
2572
|
+
openapi: "openapi";
|
|
2573
|
+
}>>;
|
|
2574
|
+
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2575
|
+
none: "none";
|
|
2576
|
+
docker: "docker";
|
|
2577
|
+
cloudflare: "cloudflare";
|
|
2578
|
+
fly: "fly";
|
|
2579
|
+
railway: "railway";
|
|
2580
|
+
render: "render";
|
|
2581
|
+
netlify: "netlify";
|
|
2582
|
+
sst: "sst";
|
|
2583
|
+
vercel: "vercel";
|
|
2584
|
+
}>>;
|
|
2585
|
+
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
2586
|
+
none: "none";
|
|
2587
|
+
docker: "docker";
|
|
2588
|
+
cloudflare: "cloudflare";
|
|
2589
|
+
fly: "fly";
|
|
2590
|
+
railway: "railway";
|
|
2591
|
+
render: "render";
|
|
2592
|
+
netlify: "netlify";
|
|
2593
|
+
sst: "sst";
|
|
2594
|
+
vercel: "vercel";
|
|
2595
|
+
}>>;
|
|
2592
2596
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2593
2597
|
none: "none";
|
|
2594
2598
|
axum: "axum";
|
|
2595
2599
|
"actix-web": "actix-web";
|
|
2596
2600
|
rocket: "rocket";
|
|
2601
|
+
poem: "poem";
|
|
2602
|
+
loco: "loco";
|
|
2597
2603
|
}>>;
|
|
2598
2604
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
2599
2605
|
none: "none";
|
|
@@ -2617,12 +2623,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2617
2623
|
ratatui: "ratatui";
|
|
2618
2624
|
}>>;
|
|
2619
2625
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2620
|
-
config: "config";
|
|
2621
2626
|
none: "none";
|
|
2622
2627
|
serde: "serde";
|
|
2623
2628
|
uuid: "uuid";
|
|
2624
2629
|
chrono: "chrono";
|
|
2625
2630
|
reqwest: "reqwest";
|
|
2631
|
+
config: "config";
|
|
2626
2632
|
dashmap: "dashmap";
|
|
2627
2633
|
"parking-lot": "parking-lot";
|
|
2628
2634
|
secrecy: "secrecy";
|
|
@@ -2766,10 +2772,12 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2766
2772
|
echo: "echo";
|
|
2767
2773
|
fiber: "fiber";
|
|
2768
2774
|
chi: "chi";
|
|
2775
|
+
stdlib: "stdlib";
|
|
2769
2776
|
}>>;
|
|
2770
2777
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2771
|
-
none: "none";
|
|
2772
2778
|
gorm: "gorm";
|
|
2779
|
+
none: "none";
|
|
2780
|
+
bun: "bun";
|
|
2773
2781
|
sqlc: "sqlc";
|
|
2774
2782
|
ent: "ent";
|
|
2775
2783
|
}>>;
|
|
@@ -2826,10 +2834,15 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2826
2834
|
none: "none";
|
|
2827
2835
|
opentelemetry: "opentelemetry";
|
|
2828
2836
|
}>>;
|
|
2837
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
2838
|
+
java: "java";
|
|
2839
|
+
kotlin: "kotlin";
|
|
2840
|
+
}>>;
|
|
2829
2841
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
2830
2842
|
none: "none";
|
|
2831
2843
|
"spring-boot": "spring-boot";
|
|
2832
2844
|
quarkus: "quarkus";
|
|
2845
|
+
micronaut: "micronaut";
|
|
2833
2846
|
}>>;
|
|
2834
2847
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
2835
2848
|
none: "none";
|
|
@@ -2850,10 +2863,13 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2850
2863
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
2851
2864
|
none: "none";
|
|
2852
2865
|
"spring-graphql": "spring-graphql";
|
|
2866
|
+
"openapi-generator": "openapi-generator";
|
|
2867
|
+
grpc: "grpc";
|
|
2853
2868
|
}>>;
|
|
2854
2869
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
2855
2870
|
none: "none";
|
|
2856
2871
|
logback: "logback";
|
|
2872
|
+
log4j2: "log4j2";
|
|
2857
2873
|
}>>;
|
|
2858
2874
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2859
2875
|
none: "none";
|
|
@@ -2970,9 +2986,9 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2970
2986
|
}>>;
|
|
2971
2987
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
2972
2988
|
none: "none";
|
|
2989
|
+
grpc: "grpc";
|
|
2973
2990
|
rest: "rest";
|
|
2974
2991
|
absinthe: "absinthe";
|
|
2975
|
-
grpc: "grpc";
|
|
2976
2992
|
}>>;
|
|
2977
2993
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
2978
2994
|
none: "none";
|
|
@@ -3040,23 +3056,91 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3040
3056
|
nx: "nx";
|
|
3041
3057
|
broadway: "broadway";
|
|
3042
3058
|
}>>>;
|
|
3043
|
-
|
|
3059
|
+
ai: z.ZodOptional<z.ZodEnum<{
|
|
3044
3060
|
none: "none";
|
|
3045
|
-
"
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3061
|
+
"vercel-ai": "vercel-ai";
|
|
3062
|
+
mastra: "mastra";
|
|
3063
|
+
voltagent: "voltagent";
|
|
3064
|
+
langgraph: "langgraph";
|
|
3065
|
+
"openai-agents": "openai-agents";
|
|
3066
|
+
"google-adk": "google-adk";
|
|
3067
|
+
modelfusion: "modelfusion";
|
|
3068
|
+
langchain: "langchain";
|
|
3069
|
+
llamaindex: "llamaindex";
|
|
3070
|
+
"tanstack-ai": "tanstack-ai";
|
|
3071
|
+
"ai-cli": "ai-cli";
|
|
3072
|
+
}>>;
|
|
3073
|
+
effect: z.ZodOptional<z.ZodEnum<{
|
|
3074
|
+
effect: "effect";
|
|
3075
|
+
none: "none";
|
|
3076
|
+
"effect-full": "effect-full";
|
|
3077
|
+
}>>;
|
|
3049
3078
|
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3079
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
3080
|
+
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3081
|
+
none: "none";
|
|
3082
|
+
"tanstack-router": "tanstack-router";
|
|
3083
|
+
"react-router": "react-router";
|
|
3084
|
+
"react-vite": "react-vite";
|
|
3085
|
+
"tanstack-start": "tanstack-start";
|
|
3086
|
+
next: "next";
|
|
3087
|
+
vinext: "vinext";
|
|
3088
|
+
nuxt: "nuxt";
|
|
3089
|
+
"native-bare": "native-bare";
|
|
3090
|
+
"native-uniwind": "native-uniwind";
|
|
3091
|
+
"native-unistyles": "native-unistyles";
|
|
3092
|
+
svelte: "svelte";
|
|
3093
|
+
solid: "solid";
|
|
3094
|
+
"solid-start": "solid-start";
|
|
3095
|
+
astro: "astro";
|
|
3096
|
+
qwik: "qwik";
|
|
3097
|
+
angular: "angular";
|
|
3098
|
+
redwood: "redwood";
|
|
3099
|
+
fresh: "fresh";
|
|
3100
|
+
}>>>;
|
|
3101
|
+
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3102
|
+
none: "none";
|
|
3103
|
+
pwa: "pwa";
|
|
3104
|
+
tauri: "tauri";
|
|
3105
|
+
starlight: "starlight";
|
|
3106
|
+
biome: "biome";
|
|
3107
|
+
lefthook: "lefthook";
|
|
3108
|
+
husky: "husky";
|
|
3109
|
+
ruler: "ruler";
|
|
3110
|
+
mcp: "mcp";
|
|
3111
|
+
skills: "skills";
|
|
3112
|
+
turborepo: "turborepo";
|
|
3113
|
+
nx: "nx";
|
|
3114
|
+
fumadocs: "fumadocs";
|
|
3115
|
+
ultracite: "ultracite";
|
|
3116
|
+
oxlint: "oxlint";
|
|
3117
|
+
opentui: "opentui";
|
|
3118
|
+
wxt: "wxt";
|
|
3119
|
+
msw: "msw";
|
|
3120
|
+
storybook: "storybook";
|
|
3121
|
+
swr: "swr";
|
|
3122
|
+
"tanstack-query": "tanstack-query";
|
|
3123
|
+
"tanstack-table": "tanstack-table";
|
|
3124
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
3125
|
+
"tanstack-db": "tanstack-db";
|
|
3126
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
3127
|
+
"backend-utils": "backend-utils";
|
|
3128
|
+
devcontainer: "devcontainer";
|
|
3129
|
+
"docker-compose": "docker-compose";
|
|
3130
|
+
"github-actions": "github-actions";
|
|
3131
|
+
}>>>;
|
|
3050
3132
|
projectDir: z.ZodOptional<z.ZodString>;
|
|
3133
|
+
acknowledgeArchitectureChange: z.ZodOptional<z.ZodBoolean>;
|
|
3051
3134
|
}, z.core.$strip>;
|
|
3052
3135
|
declare const CLIInputSchema: z.ZodObject<{
|
|
3053
3136
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3054
3137
|
template: z.ZodOptional<z.ZodEnum<{
|
|
3055
3138
|
none: "none";
|
|
3056
|
-
uniwind: "uniwind";
|
|
3057
3139
|
mern: "mern";
|
|
3058
3140
|
pern: "pern";
|
|
3059
3141
|
t3: "t3";
|
|
3142
|
+
saas: "saas";
|
|
3143
|
+
uniwind: "uniwind";
|
|
3060
3144
|
}>>;
|
|
3061
3145
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
3062
3146
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3107,11 +3191,15 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3107
3191
|
}>>;
|
|
3108
3192
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
3109
3193
|
none: "none";
|
|
3194
|
+
revenuecat: "revenuecat";
|
|
3110
3195
|
polar: "polar";
|
|
3111
3196
|
stripe: "stripe";
|
|
3112
3197
|
"lemon-squeezy": "lemon-squeezy";
|
|
3113
3198
|
paddle: "paddle";
|
|
3114
3199
|
dodo: "dodo";
|
|
3200
|
+
creem: "creem";
|
|
3201
|
+
autumn: "autumn";
|
|
3202
|
+
commet: "commet";
|
|
3115
3203
|
}>>;
|
|
3116
3204
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3117
3205
|
none: "none";
|
|
@@ -3178,6 +3266,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3178
3266
|
pnpm: "pnpm";
|
|
3179
3267
|
yarn: "yarn";
|
|
3180
3268
|
}>>;
|
|
3269
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3270
|
+
monorepo: "monorepo";
|
|
3271
|
+
"single-app": "single-app";
|
|
3272
|
+
}>>;
|
|
3181
3273
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
3182
3274
|
stable: "stable";
|
|
3183
3275
|
latest: "latest";
|
|
@@ -3197,6 +3289,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3197
3289
|
docker: "docker";
|
|
3198
3290
|
}>>;
|
|
3199
3291
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
3292
|
+
effect: "effect";
|
|
3200
3293
|
none: "none";
|
|
3201
3294
|
hono: "hono";
|
|
3202
3295
|
express: "express";
|
|
@@ -3249,10 +3342,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3249
3342
|
vercel: "vercel";
|
|
3250
3343
|
}>>;
|
|
3251
3344
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
3252
|
-
error: "error";
|
|
3253
3345
|
merge: "merge";
|
|
3254
3346
|
overwrite: "overwrite";
|
|
3255
3347
|
increment: "increment";
|
|
3348
|
+
error: "error";
|
|
3256
3349
|
}>>;
|
|
3257
3350
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
3258
3351
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3331,6 +3424,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3331
3424
|
"postcss-only": "postcss-only";
|
|
3332
3425
|
}>>;
|
|
3333
3426
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
3427
|
+
mui: "mui";
|
|
3334
3428
|
none: "none";
|
|
3335
3429
|
"shadcn-ui": "shadcn-ui";
|
|
3336
3430
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3341,7 +3435,6 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3341
3435
|
"chakra-ui": "chakra-ui";
|
|
3342
3436
|
nextui: "nextui";
|
|
3343
3437
|
mantine: "mantine";
|
|
3344
|
-
mui: "mui";
|
|
3345
3438
|
antd: "antd";
|
|
3346
3439
|
"base-ui": "base-ui";
|
|
3347
3440
|
"ark-ui": "ark-ui";
|
|
@@ -3413,8 +3506,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3413
3506
|
"geist-mono": "geist-mono";
|
|
3414
3507
|
}>>;
|
|
3415
3508
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3416
|
-
default: "default";
|
|
3417
3509
|
none: "none";
|
|
3510
|
+
default: "default";
|
|
3418
3511
|
small: "small";
|
|
3419
3512
|
medium: "medium";
|
|
3420
3513
|
large: "large";
|
|
@@ -3484,6 +3577,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3484
3577
|
}>>;
|
|
3485
3578
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
3486
3579
|
none: "none";
|
|
3580
|
+
posthog: "posthog";
|
|
3487
3581
|
plausible: "plausible";
|
|
3488
3582
|
umami: "umami";
|
|
3489
3583
|
}>>;
|
|
@@ -3498,6 +3592,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3498
3592
|
}>>;
|
|
3499
3593
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
3500
3594
|
none: "none";
|
|
3595
|
+
redis: "redis";
|
|
3501
3596
|
"upstash-redis": "upstash-redis";
|
|
3502
3597
|
}>>;
|
|
3503
3598
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3510,6 +3605,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3510
3605
|
paraglide: "paraglide";
|
|
3511
3606
|
i18next: "i18next";
|
|
3512
3607
|
"next-intl": "next-intl";
|
|
3608
|
+
intlayer: "intlayer";
|
|
3513
3609
|
}>>;
|
|
3514
3610
|
search: z.ZodOptional<z.ZodEnum<{
|
|
3515
3611
|
none: "none";
|
|
@@ -3518,6 +3614,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3518
3614
|
elasticsearch: "elasticsearch";
|
|
3519
3615
|
opensearch: "opensearch";
|
|
3520
3616
|
algolia: "algolia";
|
|
3617
|
+
bleve: "bleve";
|
|
3521
3618
|
}>>;
|
|
3522
3619
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
3523
3620
|
none: "none";
|
|
@@ -3531,6 +3628,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3531
3628
|
s3: "s3";
|
|
3532
3629
|
r2: "r2";
|
|
3533
3630
|
cloudinary: "cloudinary";
|
|
3631
|
+
"supabase-storage": "supabase-storage";
|
|
3534
3632
|
}>>;
|
|
3535
3633
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
3536
3634
|
none: "none";
|
|
@@ -3539,9 +3637,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3539
3637
|
}>>;
|
|
3540
3638
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
3541
3639
|
none: "none";
|
|
3640
|
+
uniwind: "uniwind";
|
|
3542
3641
|
tamagui: "tamagui";
|
|
3543
3642
|
"gluestack-ui": "gluestack-ui";
|
|
3544
|
-
uniwind: "uniwind";
|
|
3545
3643
|
unistyles: "unistyles";
|
|
3546
3644
|
}>>;
|
|
3547
3645
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3571,6 +3669,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3571
3669
|
axum: "axum";
|
|
3572
3670
|
"actix-web": "actix-web";
|
|
3573
3671
|
rocket: "rocket";
|
|
3672
|
+
poem: "poem";
|
|
3673
|
+
loco: "loco";
|
|
3574
3674
|
}>>;
|
|
3575
3675
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
3576
3676
|
none: "none";
|
|
@@ -3594,12 +3694,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3594
3694
|
ratatui: "ratatui";
|
|
3595
3695
|
}>>;
|
|
3596
3696
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3597
|
-
config: "config";
|
|
3598
3697
|
none: "none";
|
|
3599
3698
|
serde: "serde";
|
|
3600
3699
|
uuid: "uuid";
|
|
3601
3700
|
chrono: "chrono";
|
|
3602
3701
|
reqwest: "reqwest";
|
|
3702
|
+
config: "config";
|
|
3603
3703
|
dashmap: "dashmap";
|
|
3604
3704
|
"parking-lot": "parking-lot";
|
|
3605
3705
|
secrecy: "secrecy";
|
|
@@ -3743,10 +3843,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3743
3843
|
echo: "echo";
|
|
3744
3844
|
fiber: "fiber";
|
|
3745
3845
|
chi: "chi";
|
|
3846
|
+
stdlib: "stdlib";
|
|
3746
3847
|
}>>;
|
|
3747
3848
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
3748
|
-
none: "none";
|
|
3749
3849
|
gorm: "gorm";
|
|
3850
|
+
none: "none";
|
|
3851
|
+
bun: "bun";
|
|
3750
3852
|
sqlc: "sqlc";
|
|
3751
3853
|
ent: "ent";
|
|
3752
3854
|
}>>;
|
|
@@ -3803,10 +3905,15 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3803
3905
|
none: "none";
|
|
3804
3906
|
opentelemetry: "opentelemetry";
|
|
3805
3907
|
}>>;
|
|
3908
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
3909
|
+
java: "java";
|
|
3910
|
+
kotlin: "kotlin";
|
|
3911
|
+
}>>;
|
|
3806
3912
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
3807
3913
|
none: "none";
|
|
3808
3914
|
"spring-boot": "spring-boot";
|
|
3809
3915
|
quarkus: "quarkus";
|
|
3916
|
+
micronaut: "micronaut";
|
|
3810
3917
|
}>>;
|
|
3811
3918
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
3812
3919
|
none: "none";
|
|
@@ -3827,10 +3934,13 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3827
3934
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
3828
3935
|
none: "none";
|
|
3829
3936
|
"spring-graphql": "spring-graphql";
|
|
3937
|
+
"openapi-generator": "openapi-generator";
|
|
3938
|
+
grpc: "grpc";
|
|
3830
3939
|
}>>;
|
|
3831
3940
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
3832
3941
|
none: "none";
|
|
3833
3942
|
logback: "logback";
|
|
3943
|
+
log4j2: "log4j2";
|
|
3834
3944
|
}>>;
|
|
3835
3945
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3836
3946
|
none: "none";
|
|
@@ -3947,9 +4057,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3947
4057
|
}>>;
|
|
3948
4058
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
3949
4059
|
none: "none";
|
|
4060
|
+
grpc: "grpc";
|
|
3950
4061
|
rest: "rest";
|
|
3951
4062
|
absinthe: "absinthe";
|
|
3952
|
-
grpc: "grpc";
|
|
3953
4063
|
}>>;
|
|
3954
4064
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
3955
4065
|
none: "none";
|
|
@@ -4060,6 +4170,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4060
4170
|
sequelize: "sequelize";
|
|
4061
4171
|
}>;
|
|
4062
4172
|
backend: z.ZodEnum<{
|
|
4173
|
+
effect: "effect";
|
|
4063
4174
|
none: "none";
|
|
4064
4175
|
hono: "hono";
|
|
4065
4176
|
express: "express";
|
|
@@ -4152,11 +4263,15 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4152
4263
|
}>;
|
|
4153
4264
|
payments: z.ZodEnum<{
|
|
4154
4265
|
none: "none";
|
|
4266
|
+
revenuecat: "revenuecat";
|
|
4155
4267
|
polar: "polar";
|
|
4156
4268
|
stripe: "stripe";
|
|
4157
4269
|
"lemon-squeezy": "lemon-squeezy";
|
|
4158
4270
|
paddle: "paddle";
|
|
4159
4271
|
dodo: "dodo";
|
|
4272
|
+
creem: "creem";
|
|
4273
|
+
autumn: "autumn";
|
|
4274
|
+
commet: "commet";
|
|
4160
4275
|
}>;
|
|
4161
4276
|
git: z.ZodBoolean;
|
|
4162
4277
|
packageManager: z.ZodEnum<{
|
|
@@ -4165,6 +4280,10 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4165
4280
|
pnpm: "pnpm";
|
|
4166
4281
|
yarn: "yarn";
|
|
4167
4282
|
}>;
|
|
4283
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
4284
|
+
monorepo: "monorepo";
|
|
4285
|
+
"single-app": "single-app";
|
|
4286
|
+
}>>;
|
|
4168
4287
|
versionChannel: z.ZodEnum<{
|
|
4169
4288
|
stable: "stable";
|
|
4170
4289
|
latest: "latest";
|
|
@@ -4289,6 +4408,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4289
4408
|
"postcss-only": "postcss-only";
|
|
4290
4409
|
}>;
|
|
4291
4410
|
uiLibrary: z.ZodEnum<{
|
|
4411
|
+
mui: "mui";
|
|
4292
4412
|
none: "none";
|
|
4293
4413
|
"shadcn-ui": "shadcn-ui";
|
|
4294
4414
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4299,7 +4419,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4299
4419
|
"chakra-ui": "chakra-ui";
|
|
4300
4420
|
nextui: "nextui";
|
|
4301
4421
|
mantine: "mantine";
|
|
4302
|
-
mui: "mui";
|
|
4303
4422
|
antd: "antd";
|
|
4304
4423
|
"base-ui": "base-ui";
|
|
4305
4424
|
"ark-ui": "ark-ui";
|
|
@@ -4371,8 +4490,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4371
4490
|
"geist-mono": "geist-mono";
|
|
4372
4491
|
}>>;
|
|
4373
4492
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4374
|
-
default: "default";
|
|
4375
4493
|
none: "none";
|
|
4494
|
+
default: "default";
|
|
4376
4495
|
small: "small";
|
|
4377
4496
|
medium: "medium";
|
|
4378
4497
|
large: "large";
|
|
@@ -4442,6 +4561,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4442
4561
|
}>;
|
|
4443
4562
|
analytics: z.ZodEnum<{
|
|
4444
4563
|
none: "none";
|
|
4564
|
+
posthog: "posthog";
|
|
4445
4565
|
plausible: "plausible";
|
|
4446
4566
|
umami: "umami";
|
|
4447
4567
|
}>;
|
|
@@ -4456,6 +4576,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4456
4576
|
}>;
|
|
4457
4577
|
caching: z.ZodEnum<{
|
|
4458
4578
|
none: "none";
|
|
4579
|
+
redis: "redis";
|
|
4459
4580
|
"upstash-redis": "upstash-redis";
|
|
4460
4581
|
}>;
|
|
4461
4582
|
rateLimit: z.ZodEnum<{
|
|
@@ -4468,6 +4589,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4468
4589
|
paraglide: "paraglide";
|
|
4469
4590
|
i18next: "i18next";
|
|
4470
4591
|
"next-intl": "next-intl";
|
|
4592
|
+
intlayer: "intlayer";
|
|
4471
4593
|
}>;
|
|
4472
4594
|
search: z.ZodEnum<{
|
|
4473
4595
|
none: "none";
|
|
@@ -4476,6 +4598,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4476
4598
|
elasticsearch: "elasticsearch";
|
|
4477
4599
|
opensearch: "opensearch";
|
|
4478
4600
|
algolia: "algolia";
|
|
4601
|
+
bleve: "bleve";
|
|
4479
4602
|
}>;
|
|
4480
4603
|
vectorDb: z.ZodEnum<{
|
|
4481
4604
|
none: "none";
|
|
@@ -4489,6 +4612,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4489
4612
|
s3: "s3";
|
|
4490
4613
|
r2: "r2";
|
|
4491
4614
|
cloudinary: "cloudinary";
|
|
4615
|
+
"supabase-storage": "supabase-storage";
|
|
4492
4616
|
}>;
|
|
4493
4617
|
mobileNavigation: z.ZodEnum<{
|
|
4494
4618
|
none: "none";
|
|
@@ -4497,9 +4621,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4497
4621
|
}>;
|
|
4498
4622
|
mobileUI: z.ZodEnum<{
|
|
4499
4623
|
none: "none";
|
|
4624
|
+
uniwind: "uniwind";
|
|
4500
4625
|
tamagui: "tamagui";
|
|
4501
4626
|
"gluestack-ui": "gluestack-ui";
|
|
4502
|
-
uniwind: "uniwind";
|
|
4503
4627
|
unistyles: "unistyles";
|
|
4504
4628
|
}>;
|
|
4505
4629
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4529,6 +4653,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4529
4653
|
axum: "axum";
|
|
4530
4654
|
"actix-web": "actix-web";
|
|
4531
4655
|
rocket: "rocket";
|
|
4656
|
+
poem: "poem";
|
|
4657
|
+
loco: "loco";
|
|
4532
4658
|
}>;
|
|
4533
4659
|
rustFrontend: z.ZodEnum<{
|
|
4534
4660
|
none: "none";
|
|
@@ -4552,12 +4678,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4552
4678
|
ratatui: "ratatui";
|
|
4553
4679
|
}>;
|
|
4554
4680
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4555
|
-
config: "config";
|
|
4556
4681
|
none: "none";
|
|
4557
4682
|
serde: "serde";
|
|
4558
4683
|
uuid: "uuid";
|
|
4559
4684
|
chrono: "chrono";
|
|
4560
4685
|
reqwest: "reqwest";
|
|
4686
|
+
config: "config";
|
|
4561
4687
|
dashmap: "dashmap";
|
|
4562
4688
|
"parking-lot": "parking-lot";
|
|
4563
4689
|
secrecy: "secrecy";
|
|
@@ -4701,10 +4827,12 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4701
4827
|
echo: "echo";
|
|
4702
4828
|
fiber: "fiber";
|
|
4703
4829
|
chi: "chi";
|
|
4830
|
+
stdlib: "stdlib";
|
|
4704
4831
|
}>;
|
|
4705
4832
|
goOrm: z.ZodEnum<{
|
|
4706
|
-
none: "none";
|
|
4707
4833
|
gorm: "gorm";
|
|
4834
|
+
none: "none";
|
|
4835
|
+
bun: "bun";
|
|
4708
4836
|
sqlc: "sqlc";
|
|
4709
4837
|
ent: "ent";
|
|
4710
4838
|
}>;
|
|
@@ -4761,10 +4889,15 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4761
4889
|
none: "none";
|
|
4762
4890
|
opentelemetry: "opentelemetry";
|
|
4763
4891
|
}>;
|
|
4892
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
4893
|
+
java: "java";
|
|
4894
|
+
kotlin: "kotlin";
|
|
4895
|
+
}>>;
|
|
4764
4896
|
javaWebFramework: z.ZodEnum<{
|
|
4765
4897
|
none: "none";
|
|
4766
4898
|
"spring-boot": "spring-boot";
|
|
4767
4899
|
quarkus: "quarkus";
|
|
4900
|
+
micronaut: "micronaut";
|
|
4768
4901
|
}>;
|
|
4769
4902
|
javaBuildTool: z.ZodEnum<{
|
|
4770
4903
|
none: "none";
|
|
@@ -4785,10 +4918,13 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4785
4918
|
javaApi: z.ZodEnum<{
|
|
4786
4919
|
none: "none";
|
|
4787
4920
|
"spring-graphql": "spring-graphql";
|
|
4921
|
+
"openapi-generator": "openapi-generator";
|
|
4922
|
+
grpc: "grpc";
|
|
4788
4923
|
}>;
|
|
4789
4924
|
javaLogging: z.ZodEnum<{
|
|
4790
4925
|
none: "none";
|
|
4791
4926
|
logback: "logback";
|
|
4927
|
+
log4j2: "log4j2";
|
|
4792
4928
|
}>;
|
|
4793
4929
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
4794
4930
|
none: "none";
|
|
@@ -4905,9 +5041,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4905
5041
|
}>;
|
|
4906
5042
|
elixirApi: z.ZodEnum<{
|
|
4907
5043
|
none: "none";
|
|
5044
|
+
grpc: "grpc";
|
|
4908
5045
|
rest: "rest";
|
|
4909
5046
|
absinthe: "absinthe";
|
|
4910
|
-
grpc: "grpc";
|
|
4911
5047
|
}>;
|
|
4912
5048
|
elixirRealtime: z.ZodEnum<{
|
|
4913
5049
|
none: "none";
|
|
@@ -4984,59 +5120,60 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
4984
5120
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4985
5121
|
id: z.ZodString;
|
|
4986
5122
|
role: z.ZodEnum<{
|
|
4987
|
-
|
|
4988
|
-
frontend: "frontend";
|
|
5123
|
+
runtime: "runtime";
|
|
4989
5124
|
backend: "backend";
|
|
4990
|
-
mobile: "mobile";
|
|
4991
5125
|
database: "database";
|
|
4992
|
-
api: "api";
|
|
4993
|
-
graphql: "graphql";
|
|
4994
5126
|
orm: "orm";
|
|
4995
|
-
auth: "auth";
|
|
4996
|
-
runtime: "runtime";
|
|
4997
|
-
deploy: "deploy";
|
|
4998
5127
|
dbSetup: "dbSetup";
|
|
5128
|
+
auth: "auth";
|
|
5129
|
+
payments: "payments";
|
|
5130
|
+
email: "email";
|
|
5131
|
+
fileUpload: "fileUpload";
|
|
5132
|
+
logging: "logging";
|
|
5133
|
+
observability: "observability";
|
|
5134
|
+
featureFlags: "featureFlags";
|
|
5135
|
+
analytics: "analytics";
|
|
5136
|
+
stateManagement: "stateManagement";
|
|
5137
|
+
forms: "forms";
|
|
5138
|
+
validation: "validation";
|
|
5139
|
+
testing: "testing";
|
|
4999
5140
|
realtime: "realtime";
|
|
5000
|
-
|
|
5141
|
+
jobQueue: "jobQueue";
|
|
5001
5142
|
caching: "caching";
|
|
5002
|
-
|
|
5003
|
-
|
|
5143
|
+
rateLimit: "rateLimit";
|
|
5144
|
+
animation: "animation";
|
|
5145
|
+
cms: "cms";
|
|
5146
|
+
i18n: "i18n";
|
|
5004
5147
|
search: "search";
|
|
5005
5148
|
vectorDb: "vectorDb";
|
|
5006
5149
|
fileStorage: "fileStorage";
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
animation: "animation";
|
|
5013
|
-
fileUpload: "fileUpload";
|
|
5014
|
-
validation: "validation";
|
|
5150
|
+
codeQuality: "codeQuality";
|
|
5151
|
+
documentation: "documentation";
|
|
5152
|
+
examples: "examples";
|
|
5153
|
+
api: "api";
|
|
5154
|
+
ai: "ai";
|
|
5015
5155
|
effect: "effect";
|
|
5016
|
-
ui: "ui";
|
|
5017
5156
|
css: "css";
|
|
5157
|
+
ui: "ui";
|
|
5158
|
+
push: "push";
|
|
5159
|
+
frontend: "frontend";
|
|
5160
|
+
config: "config";
|
|
5161
|
+
mobile: "mobile";
|
|
5162
|
+
graphql: "graphql";
|
|
5163
|
+
deploy: "deploy";
|
|
5164
|
+
navigation: "navigation";
|
|
5018
5165
|
storage: "storage";
|
|
5019
5166
|
ota: "ota";
|
|
5020
5167
|
deepLinking: "deepLinking";
|
|
5021
|
-
ai: "ai";
|
|
5022
|
-
payments: "payments";
|
|
5023
|
-
logging: "logging";
|
|
5024
|
-
featureFlags: "featureFlags";
|
|
5025
|
-
analytics: "analytics";
|
|
5026
|
-
cms: "cms";
|
|
5027
|
-
i18n: "i18n";
|
|
5028
|
-
documentation: "documentation";
|
|
5029
|
-
codeQuality: "codeQuality";
|
|
5030
5168
|
appPlatform: "appPlatform";
|
|
5031
5169
|
dataFetching: "dataFetching";
|
|
5032
5170
|
workspaceTooling: "workspaceTooling";
|
|
5033
|
-
|
|
5171
|
+
language: "language";
|
|
5034
5172
|
buildTool: "buildTool";
|
|
5035
5173
|
cli: "cli";
|
|
5036
5174
|
errorHandling: "errorHandling";
|
|
5037
5175
|
httpClient: "httpClient";
|
|
5038
5176
|
libraries: "libraries";
|
|
5039
|
-
config: "config";
|
|
5040
5177
|
templating: "templating";
|
|
5041
5178
|
}>;
|
|
5042
5179
|
toolId: z.ZodString;
|
|
@@ -5098,6 +5235,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5098
5235
|
sequelize: "sequelize";
|
|
5099
5236
|
}>;
|
|
5100
5237
|
backend: z.ZodEnum<{
|
|
5238
|
+
effect: "effect";
|
|
5101
5239
|
none: "none";
|
|
5102
5240
|
hono: "hono";
|
|
5103
5241
|
express: "express";
|
|
@@ -5190,11 +5328,15 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5190
5328
|
}>;
|
|
5191
5329
|
payments: z.ZodEnum<{
|
|
5192
5330
|
none: "none";
|
|
5331
|
+
revenuecat: "revenuecat";
|
|
5193
5332
|
polar: "polar";
|
|
5194
5333
|
stripe: "stripe";
|
|
5195
5334
|
"lemon-squeezy": "lemon-squeezy";
|
|
5196
5335
|
paddle: "paddle";
|
|
5197
5336
|
dodo: "dodo";
|
|
5337
|
+
creem: "creem";
|
|
5338
|
+
autumn: "autumn";
|
|
5339
|
+
commet: "commet";
|
|
5198
5340
|
}>;
|
|
5199
5341
|
packageManager: z.ZodEnum<{
|
|
5200
5342
|
bun: "bun";
|
|
@@ -5202,6 +5344,10 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5202
5344
|
pnpm: "pnpm";
|
|
5203
5345
|
yarn: "yarn";
|
|
5204
5346
|
}>;
|
|
5347
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
5348
|
+
monorepo: "monorepo";
|
|
5349
|
+
"single-app": "single-app";
|
|
5350
|
+
}>>;
|
|
5205
5351
|
versionChannel: z.ZodEnum<{
|
|
5206
5352
|
stable: "stable";
|
|
5207
5353
|
latest: "latest";
|
|
@@ -5325,6 +5471,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5325
5471
|
"postcss-only": "postcss-only";
|
|
5326
5472
|
}>;
|
|
5327
5473
|
uiLibrary: z.ZodEnum<{
|
|
5474
|
+
mui: "mui";
|
|
5328
5475
|
none: "none";
|
|
5329
5476
|
"shadcn-ui": "shadcn-ui";
|
|
5330
5477
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -5335,7 +5482,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5335
5482
|
"chakra-ui": "chakra-ui";
|
|
5336
5483
|
nextui: "nextui";
|
|
5337
5484
|
mantine: "mantine";
|
|
5338
|
-
mui: "mui";
|
|
5339
5485
|
antd: "antd";
|
|
5340
5486
|
"base-ui": "base-ui";
|
|
5341
5487
|
"ark-ui": "ark-ui";
|
|
@@ -5407,8 +5553,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5407
5553
|
"geist-mono": "geist-mono";
|
|
5408
5554
|
}>>;
|
|
5409
5555
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5410
|
-
default: "default";
|
|
5411
5556
|
none: "none";
|
|
5557
|
+
default: "default";
|
|
5412
5558
|
small: "small";
|
|
5413
5559
|
medium: "medium";
|
|
5414
5560
|
large: "large";
|
|
@@ -5478,6 +5624,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5478
5624
|
}>;
|
|
5479
5625
|
analytics: z.ZodEnum<{
|
|
5480
5626
|
none: "none";
|
|
5627
|
+
posthog: "posthog";
|
|
5481
5628
|
plausible: "plausible";
|
|
5482
5629
|
umami: "umami";
|
|
5483
5630
|
}>;
|
|
@@ -5492,6 +5639,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5492
5639
|
}>;
|
|
5493
5640
|
caching: z.ZodEnum<{
|
|
5494
5641
|
none: "none";
|
|
5642
|
+
redis: "redis";
|
|
5495
5643
|
"upstash-redis": "upstash-redis";
|
|
5496
5644
|
}>;
|
|
5497
5645
|
rateLimit: z.ZodEnum<{
|
|
@@ -5504,6 +5652,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5504
5652
|
paraglide: "paraglide";
|
|
5505
5653
|
i18next: "i18next";
|
|
5506
5654
|
"next-intl": "next-intl";
|
|
5655
|
+
intlayer: "intlayer";
|
|
5507
5656
|
}>;
|
|
5508
5657
|
search: z.ZodEnum<{
|
|
5509
5658
|
none: "none";
|
|
@@ -5512,6 +5661,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5512
5661
|
elasticsearch: "elasticsearch";
|
|
5513
5662
|
opensearch: "opensearch";
|
|
5514
5663
|
algolia: "algolia";
|
|
5664
|
+
bleve: "bleve";
|
|
5515
5665
|
}>;
|
|
5516
5666
|
vectorDb: z.ZodEnum<{
|
|
5517
5667
|
none: "none";
|
|
@@ -5525,6 +5675,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5525
5675
|
s3: "s3";
|
|
5526
5676
|
r2: "r2";
|
|
5527
5677
|
cloudinary: "cloudinary";
|
|
5678
|
+
"supabase-storage": "supabase-storage";
|
|
5528
5679
|
}>;
|
|
5529
5680
|
mobileNavigation: z.ZodEnum<{
|
|
5530
5681
|
none: "none";
|
|
@@ -5533,9 +5684,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5533
5684
|
}>;
|
|
5534
5685
|
mobileUI: z.ZodEnum<{
|
|
5535
5686
|
none: "none";
|
|
5687
|
+
uniwind: "uniwind";
|
|
5536
5688
|
tamagui: "tamagui";
|
|
5537
5689
|
"gluestack-ui": "gluestack-ui";
|
|
5538
|
-
uniwind: "uniwind";
|
|
5539
5690
|
unistyles: "unistyles";
|
|
5540
5691
|
}>;
|
|
5541
5692
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5565,6 +5716,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5565
5716
|
axum: "axum";
|
|
5566
5717
|
"actix-web": "actix-web";
|
|
5567
5718
|
rocket: "rocket";
|
|
5719
|
+
poem: "poem";
|
|
5720
|
+
loco: "loco";
|
|
5568
5721
|
}>;
|
|
5569
5722
|
rustFrontend: z.ZodEnum<{
|
|
5570
5723
|
none: "none";
|
|
@@ -5588,12 +5741,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5588
5741
|
ratatui: "ratatui";
|
|
5589
5742
|
}>;
|
|
5590
5743
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5591
|
-
config: "config";
|
|
5592
5744
|
none: "none";
|
|
5593
5745
|
serde: "serde";
|
|
5594
5746
|
uuid: "uuid";
|
|
5595
5747
|
chrono: "chrono";
|
|
5596
5748
|
reqwest: "reqwest";
|
|
5749
|
+
config: "config";
|
|
5597
5750
|
dashmap: "dashmap";
|
|
5598
5751
|
"parking-lot": "parking-lot";
|
|
5599
5752
|
secrecy: "secrecy";
|
|
@@ -5737,10 +5890,12 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5737
5890
|
echo: "echo";
|
|
5738
5891
|
fiber: "fiber";
|
|
5739
5892
|
chi: "chi";
|
|
5893
|
+
stdlib: "stdlib";
|
|
5740
5894
|
}>;
|
|
5741
5895
|
goOrm: z.ZodEnum<{
|
|
5742
|
-
none: "none";
|
|
5743
5896
|
gorm: "gorm";
|
|
5897
|
+
none: "none";
|
|
5898
|
+
bun: "bun";
|
|
5744
5899
|
sqlc: "sqlc";
|
|
5745
5900
|
ent: "ent";
|
|
5746
5901
|
}>;
|
|
@@ -5797,10 +5952,15 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5797
5952
|
none: "none";
|
|
5798
5953
|
opentelemetry: "opentelemetry";
|
|
5799
5954
|
}>;
|
|
5955
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
5956
|
+
java: "java";
|
|
5957
|
+
kotlin: "kotlin";
|
|
5958
|
+
}>>;
|
|
5800
5959
|
javaWebFramework: z.ZodEnum<{
|
|
5801
5960
|
none: "none";
|
|
5802
5961
|
"spring-boot": "spring-boot";
|
|
5803
5962
|
quarkus: "quarkus";
|
|
5963
|
+
micronaut: "micronaut";
|
|
5804
5964
|
}>;
|
|
5805
5965
|
javaBuildTool: z.ZodEnum<{
|
|
5806
5966
|
none: "none";
|
|
@@ -5821,10 +5981,13 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5821
5981
|
javaApi: z.ZodEnum<{
|
|
5822
5982
|
none: "none";
|
|
5823
5983
|
"spring-graphql": "spring-graphql";
|
|
5984
|
+
"openapi-generator": "openapi-generator";
|
|
5985
|
+
grpc: "grpc";
|
|
5824
5986
|
}>;
|
|
5825
5987
|
javaLogging: z.ZodEnum<{
|
|
5826
5988
|
none: "none";
|
|
5827
5989
|
logback: "logback";
|
|
5990
|
+
log4j2: "log4j2";
|
|
5828
5991
|
}>;
|
|
5829
5992
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5830
5993
|
none: "none";
|
|
@@ -5941,9 +6104,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
5941
6104
|
}>;
|
|
5942
6105
|
elixirApi: z.ZodEnum<{
|
|
5943
6106
|
none: "none";
|
|
6107
|
+
grpc: "grpc";
|
|
5944
6108
|
rest: "rest";
|
|
5945
6109
|
absinthe: "absinthe";
|
|
5946
|
-
grpc: "grpc";
|
|
5947
6110
|
}>;
|
|
5948
6111
|
elixirRealtime: z.ZodEnum<{
|
|
5949
6112
|
none: "none";
|
|
@@ -6020,59 +6183,60 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6020
6183
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6021
6184
|
id: z.ZodString;
|
|
6022
6185
|
role: z.ZodEnum<{
|
|
6023
|
-
|
|
6024
|
-
frontend: "frontend";
|
|
6186
|
+
runtime: "runtime";
|
|
6025
6187
|
backend: "backend";
|
|
6026
|
-
mobile: "mobile";
|
|
6027
6188
|
database: "database";
|
|
6028
|
-
api: "api";
|
|
6029
|
-
graphql: "graphql";
|
|
6030
6189
|
orm: "orm";
|
|
6031
|
-
auth: "auth";
|
|
6032
|
-
runtime: "runtime";
|
|
6033
|
-
deploy: "deploy";
|
|
6034
6190
|
dbSetup: "dbSetup";
|
|
6191
|
+
auth: "auth";
|
|
6192
|
+
payments: "payments";
|
|
6193
|
+
email: "email";
|
|
6194
|
+
fileUpload: "fileUpload";
|
|
6195
|
+
logging: "logging";
|
|
6196
|
+
observability: "observability";
|
|
6197
|
+
featureFlags: "featureFlags";
|
|
6198
|
+
analytics: "analytics";
|
|
6199
|
+
stateManagement: "stateManagement";
|
|
6200
|
+
forms: "forms";
|
|
6201
|
+
validation: "validation";
|
|
6202
|
+
testing: "testing";
|
|
6035
6203
|
realtime: "realtime";
|
|
6036
|
-
|
|
6204
|
+
jobQueue: "jobQueue";
|
|
6037
6205
|
caching: "caching";
|
|
6038
|
-
|
|
6039
|
-
|
|
6206
|
+
rateLimit: "rateLimit";
|
|
6207
|
+
animation: "animation";
|
|
6208
|
+
cms: "cms";
|
|
6209
|
+
i18n: "i18n";
|
|
6040
6210
|
search: "search";
|
|
6041
6211
|
vectorDb: "vectorDb";
|
|
6042
6212
|
fileStorage: "fileStorage";
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6048
|
-
animation: "animation";
|
|
6049
|
-
fileUpload: "fileUpload";
|
|
6050
|
-
validation: "validation";
|
|
6213
|
+
codeQuality: "codeQuality";
|
|
6214
|
+
documentation: "documentation";
|
|
6215
|
+
examples: "examples";
|
|
6216
|
+
api: "api";
|
|
6217
|
+
ai: "ai";
|
|
6051
6218
|
effect: "effect";
|
|
6052
|
-
ui: "ui";
|
|
6053
6219
|
css: "css";
|
|
6220
|
+
ui: "ui";
|
|
6221
|
+
push: "push";
|
|
6222
|
+
frontend: "frontend";
|
|
6223
|
+
config: "config";
|
|
6224
|
+
mobile: "mobile";
|
|
6225
|
+
graphql: "graphql";
|
|
6226
|
+
deploy: "deploy";
|
|
6227
|
+
navigation: "navigation";
|
|
6054
6228
|
storage: "storage";
|
|
6055
6229
|
ota: "ota";
|
|
6056
6230
|
deepLinking: "deepLinking";
|
|
6057
|
-
ai: "ai";
|
|
6058
|
-
payments: "payments";
|
|
6059
|
-
logging: "logging";
|
|
6060
|
-
featureFlags: "featureFlags";
|
|
6061
|
-
analytics: "analytics";
|
|
6062
|
-
cms: "cms";
|
|
6063
|
-
i18n: "i18n";
|
|
6064
|
-
documentation: "documentation";
|
|
6065
|
-
codeQuality: "codeQuality";
|
|
6066
6231
|
appPlatform: "appPlatform";
|
|
6067
6232
|
dataFetching: "dataFetching";
|
|
6068
6233
|
workspaceTooling: "workspaceTooling";
|
|
6069
|
-
|
|
6234
|
+
language: "language";
|
|
6070
6235
|
buildTool: "buildTool";
|
|
6071
6236
|
cli: "cli";
|
|
6072
6237
|
errorHandling: "errorHandling";
|
|
6073
6238
|
httpClient: "httpClient";
|
|
6074
6239
|
libraries: "libraries";
|
|
6075
|
-
config: "config";
|
|
6076
6240
|
templating: "templating";
|
|
6077
6241
|
}>;
|
|
6078
6242
|
toolId: z.ZodString;
|
|
@@ -6134,6 +6298,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6134
6298
|
sequelize: "sequelize";
|
|
6135
6299
|
}>;
|
|
6136
6300
|
backend: z.ZodEnum<{
|
|
6301
|
+
effect: "effect";
|
|
6137
6302
|
none: "none";
|
|
6138
6303
|
hono: "hono";
|
|
6139
6304
|
express: "express";
|
|
@@ -6226,11 +6391,15 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6226
6391
|
}>;
|
|
6227
6392
|
payments: z.ZodEnum<{
|
|
6228
6393
|
none: "none";
|
|
6394
|
+
revenuecat: "revenuecat";
|
|
6229
6395
|
polar: "polar";
|
|
6230
6396
|
stripe: "stripe";
|
|
6231
6397
|
"lemon-squeezy": "lemon-squeezy";
|
|
6232
6398
|
paddle: "paddle";
|
|
6233
6399
|
dodo: "dodo";
|
|
6400
|
+
creem: "creem";
|
|
6401
|
+
autumn: "autumn";
|
|
6402
|
+
commet: "commet";
|
|
6234
6403
|
}>;
|
|
6235
6404
|
packageManager: z.ZodEnum<{
|
|
6236
6405
|
bun: "bun";
|
|
@@ -6238,6 +6407,10 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6238
6407
|
pnpm: "pnpm";
|
|
6239
6408
|
yarn: "yarn";
|
|
6240
6409
|
}>;
|
|
6410
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
6411
|
+
monorepo: "monorepo";
|
|
6412
|
+
"single-app": "single-app";
|
|
6413
|
+
}>>;
|
|
6241
6414
|
versionChannel: z.ZodEnum<{
|
|
6242
6415
|
stable: "stable";
|
|
6243
6416
|
latest: "latest";
|
|
@@ -6361,6 +6534,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6361
6534
|
"postcss-only": "postcss-only";
|
|
6362
6535
|
}>;
|
|
6363
6536
|
uiLibrary: z.ZodEnum<{
|
|
6537
|
+
mui: "mui";
|
|
6364
6538
|
none: "none";
|
|
6365
6539
|
"shadcn-ui": "shadcn-ui";
|
|
6366
6540
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6371,7 +6545,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6371
6545
|
"chakra-ui": "chakra-ui";
|
|
6372
6546
|
nextui: "nextui";
|
|
6373
6547
|
mantine: "mantine";
|
|
6374
|
-
mui: "mui";
|
|
6375
6548
|
antd: "antd";
|
|
6376
6549
|
"base-ui": "base-ui";
|
|
6377
6550
|
"ark-ui": "ark-ui";
|
|
@@ -6443,8 +6616,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6443
6616
|
"geist-mono": "geist-mono";
|
|
6444
6617
|
}>>;
|
|
6445
6618
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6446
|
-
default: "default";
|
|
6447
6619
|
none: "none";
|
|
6620
|
+
default: "default";
|
|
6448
6621
|
small: "small";
|
|
6449
6622
|
medium: "medium";
|
|
6450
6623
|
large: "large";
|
|
@@ -6514,6 +6687,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6514
6687
|
}>;
|
|
6515
6688
|
analytics: z.ZodEnum<{
|
|
6516
6689
|
none: "none";
|
|
6690
|
+
posthog: "posthog";
|
|
6517
6691
|
plausible: "plausible";
|
|
6518
6692
|
umami: "umami";
|
|
6519
6693
|
}>;
|
|
@@ -6528,6 +6702,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6528
6702
|
}>;
|
|
6529
6703
|
caching: z.ZodEnum<{
|
|
6530
6704
|
none: "none";
|
|
6705
|
+
redis: "redis";
|
|
6531
6706
|
"upstash-redis": "upstash-redis";
|
|
6532
6707
|
}>;
|
|
6533
6708
|
rateLimit: z.ZodEnum<{
|
|
@@ -6540,6 +6715,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6540
6715
|
paraglide: "paraglide";
|
|
6541
6716
|
i18next: "i18next";
|
|
6542
6717
|
"next-intl": "next-intl";
|
|
6718
|
+
intlayer: "intlayer";
|
|
6543
6719
|
}>;
|
|
6544
6720
|
search: z.ZodEnum<{
|
|
6545
6721
|
none: "none";
|
|
@@ -6548,6 +6724,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6548
6724
|
elasticsearch: "elasticsearch";
|
|
6549
6725
|
opensearch: "opensearch";
|
|
6550
6726
|
algolia: "algolia";
|
|
6727
|
+
bleve: "bleve";
|
|
6551
6728
|
}>;
|
|
6552
6729
|
vectorDb: z.ZodEnum<{
|
|
6553
6730
|
none: "none";
|
|
@@ -6561,6 +6738,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6561
6738
|
s3: "s3";
|
|
6562
6739
|
r2: "r2";
|
|
6563
6740
|
cloudinary: "cloudinary";
|
|
6741
|
+
"supabase-storage": "supabase-storage";
|
|
6564
6742
|
}>;
|
|
6565
6743
|
mobileNavigation: z.ZodEnum<{
|
|
6566
6744
|
none: "none";
|
|
@@ -6569,9 +6747,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6569
6747
|
}>;
|
|
6570
6748
|
mobileUI: z.ZodEnum<{
|
|
6571
6749
|
none: "none";
|
|
6750
|
+
uniwind: "uniwind";
|
|
6572
6751
|
tamagui: "tamagui";
|
|
6573
6752
|
"gluestack-ui": "gluestack-ui";
|
|
6574
|
-
uniwind: "uniwind";
|
|
6575
6753
|
unistyles: "unistyles";
|
|
6576
6754
|
}>;
|
|
6577
6755
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6601,6 +6779,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6601
6779
|
axum: "axum";
|
|
6602
6780
|
"actix-web": "actix-web";
|
|
6603
6781
|
rocket: "rocket";
|
|
6782
|
+
poem: "poem";
|
|
6783
|
+
loco: "loco";
|
|
6604
6784
|
}>;
|
|
6605
6785
|
rustFrontend: z.ZodEnum<{
|
|
6606
6786
|
none: "none";
|
|
@@ -6624,12 +6804,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6624
6804
|
ratatui: "ratatui";
|
|
6625
6805
|
}>;
|
|
6626
6806
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
6627
|
-
config: "config";
|
|
6628
6807
|
none: "none";
|
|
6629
6808
|
serde: "serde";
|
|
6630
6809
|
uuid: "uuid";
|
|
6631
6810
|
chrono: "chrono";
|
|
6632
6811
|
reqwest: "reqwest";
|
|
6812
|
+
config: "config";
|
|
6633
6813
|
dashmap: "dashmap";
|
|
6634
6814
|
"parking-lot": "parking-lot";
|
|
6635
6815
|
secrecy: "secrecy";
|
|
@@ -6773,10 +6953,12 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6773
6953
|
echo: "echo";
|
|
6774
6954
|
fiber: "fiber";
|
|
6775
6955
|
chi: "chi";
|
|
6956
|
+
stdlib: "stdlib";
|
|
6776
6957
|
}>;
|
|
6777
6958
|
goOrm: z.ZodEnum<{
|
|
6778
|
-
none: "none";
|
|
6779
6959
|
gorm: "gorm";
|
|
6960
|
+
none: "none";
|
|
6961
|
+
bun: "bun";
|
|
6780
6962
|
sqlc: "sqlc";
|
|
6781
6963
|
ent: "ent";
|
|
6782
6964
|
}>;
|
|
@@ -6833,10 +7015,15 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6833
7015
|
none: "none";
|
|
6834
7016
|
opentelemetry: "opentelemetry";
|
|
6835
7017
|
}>;
|
|
7018
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
7019
|
+
java: "java";
|
|
7020
|
+
kotlin: "kotlin";
|
|
7021
|
+
}>>;
|
|
6836
7022
|
javaWebFramework: z.ZodEnum<{
|
|
6837
7023
|
none: "none";
|
|
6838
7024
|
"spring-boot": "spring-boot";
|
|
6839
7025
|
quarkus: "quarkus";
|
|
7026
|
+
micronaut: "micronaut";
|
|
6840
7027
|
}>;
|
|
6841
7028
|
javaBuildTool: z.ZodEnum<{
|
|
6842
7029
|
none: "none";
|
|
@@ -6857,10 +7044,13 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6857
7044
|
javaApi: z.ZodEnum<{
|
|
6858
7045
|
none: "none";
|
|
6859
7046
|
"spring-graphql": "spring-graphql";
|
|
7047
|
+
"openapi-generator": "openapi-generator";
|
|
7048
|
+
grpc: "grpc";
|
|
6860
7049
|
}>;
|
|
6861
7050
|
javaLogging: z.ZodEnum<{
|
|
6862
7051
|
none: "none";
|
|
6863
7052
|
logback: "logback";
|
|
7053
|
+
log4j2: "log4j2";
|
|
6864
7054
|
}>;
|
|
6865
7055
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
6866
7056
|
none: "none";
|
|
@@ -6977,9 +7167,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
6977
7167
|
}>;
|
|
6978
7168
|
elixirApi: z.ZodEnum<{
|
|
6979
7169
|
none: "none";
|
|
7170
|
+
grpc: "grpc";
|
|
6980
7171
|
rest: "rest";
|
|
6981
7172
|
absinthe: "absinthe";
|
|
6982
|
-
grpc: "grpc";
|
|
6983
7173
|
}>;
|
|
6984
7174
|
elixirRealtime: z.ZodEnum<{
|
|
6985
7175
|
none: "none";
|
|
@@ -7056,59 +7246,60 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
7056
7246
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7057
7247
|
id: z.ZodString;
|
|
7058
7248
|
role: z.ZodEnum<{
|
|
7059
|
-
|
|
7060
|
-
frontend: "frontend";
|
|
7249
|
+
runtime: "runtime";
|
|
7061
7250
|
backend: "backend";
|
|
7062
|
-
mobile: "mobile";
|
|
7063
7251
|
database: "database";
|
|
7064
|
-
api: "api";
|
|
7065
|
-
graphql: "graphql";
|
|
7066
7252
|
orm: "orm";
|
|
7067
|
-
auth: "auth";
|
|
7068
|
-
runtime: "runtime";
|
|
7069
|
-
deploy: "deploy";
|
|
7070
7253
|
dbSetup: "dbSetup";
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
caching: "caching";
|
|
7074
|
-
observability: "observability";
|
|
7254
|
+
auth: "auth";
|
|
7255
|
+
payments: "payments";
|
|
7075
7256
|
email: "email";
|
|
7076
|
-
search: "search";
|
|
7077
|
-
vectorDb: "vectorDb";
|
|
7078
|
-
fileStorage: "fileStorage";
|
|
7079
|
-
jobQueue: "jobQueue";
|
|
7080
|
-
rateLimit: "rateLimit";
|
|
7081
|
-
testing: "testing";
|
|
7082
|
-
stateManagement: "stateManagement";
|
|
7083
|
-
forms: "forms";
|
|
7084
|
-
animation: "animation";
|
|
7085
7257
|
fileUpload: "fileUpload";
|
|
7086
|
-
validation: "validation";
|
|
7087
|
-
effect: "effect";
|
|
7088
|
-
ui: "ui";
|
|
7089
|
-
css: "css";
|
|
7090
|
-
storage: "storage";
|
|
7091
|
-
ota: "ota";
|
|
7092
|
-
deepLinking: "deepLinking";
|
|
7093
|
-
ai: "ai";
|
|
7094
|
-
payments: "payments";
|
|
7095
7258
|
logging: "logging";
|
|
7259
|
+
observability: "observability";
|
|
7096
7260
|
featureFlags: "featureFlags";
|
|
7097
7261
|
analytics: "analytics";
|
|
7262
|
+
stateManagement: "stateManagement";
|
|
7263
|
+
forms: "forms";
|
|
7264
|
+
validation: "validation";
|
|
7265
|
+
testing: "testing";
|
|
7266
|
+
realtime: "realtime";
|
|
7267
|
+
jobQueue: "jobQueue";
|
|
7268
|
+
caching: "caching";
|
|
7269
|
+
rateLimit: "rateLimit";
|
|
7270
|
+
animation: "animation";
|
|
7098
7271
|
cms: "cms";
|
|
7099
7272
|
i18n: "i18n";
|
|
7100
|
-
|
|
7273
|
+
search: "search";
|
|
7274
|
+
vectorDb: "vectorDb";
|
|
7275
|
+
fileStorage: "fileStorage";
|
|
7101
7276
|
codeQuality: "codeQuality";
|
|
7277
|
+
documentation: "documentation";
|
|
7278
|
+
examples: "examples";
|
|
7279
|
+
api: "api";
|
|
7280
|
+
ai: "ai";
|
|
7281
|
+
effect: "effect";
|
|
7282
|
+
css: "css";
|
|
7283
|
+
ui: "ui";
|
|
7284
|
+
push: "push";
|
|
7285
|
+
frontend: "frontend";
|
|
7286
|
+
config: "config";
|
|
7287
|
+
mobile: "mobile";
|
|
7288
|
+
graphql: "graphql";
|
|
7289
|
+
deploy: "deploy";
|
|
7290
|
+
navigation: "navigation";
|
|
7291
|
+
storage: "storage";
|
|
7292
|
+
ota: "ota";
|
|
7293
|
+
deepLinking: "deepLinking";
|
|
7102
7294
|
appPlatform: "appPlatform";
|
|
7103
7295
|
dataFetching: "dataFetching";
|
|
7104
7296
|
workspaceTooling: "workspaceTooling";
|
|
7105
|
-
|
|
7297
|
+
language: "language";
|
|
7106
7298
|
buildTool: "buildTool";
|
|
7107
7299
|
cli: "cli";
|
|
7108
7300
|
errorHandling: "errorHandling";
|
|
7109
7301
|
httpClient: "httpClient";
|
|
7110
7302
|
libraries: "libraries";
|
|
7111
|
-
config: "config";
|
|
7112
7303
|
templating: "templating";
|
|
7113
7304
|
}>;
|
|
7114
7305
|
toolId: z.ZodString;
|
|
@@ -7171,6 +7362,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7171
7362
|
sequelize: "sequelize";
|
|
7172
7363
|
}>;
|
|
7173
7364
|
backend: z.ZodEnum<{
|
|
7365
|
+
effect: "effect";
|
|
7174
7366
|
none: "none";
|
|
7175
7367
|
hono: "hono";
|
|
7176
7368
|
express: "express";
|
|
@@ -7263,11 +7455,15 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7263
7455
|
}>;
|
|
7264
7456
|
payments: z.ZodEnum<{
|
|
7265
7457
|
none: "none";
|
|
7458
|
+
revenuecat: "revenuecat";
|
|
7266
7459
|
polar: "polar";
|
|
7267
7460
|
stripe: "stripe";
|
|
7268
7461
|
"lemon-squeezy": "lemon-squeezy";
|
|
7269
7462
|
paddle: "paddle";
|
|
7270
7463
|
dodo: "dodo";
|
|
7464
|
+
creem: "creem";
|
|
7465
|
+
autumn: "autumn";
|
|
7466
|
+
commet: "commet";
|
|
7271
7467
|
}>;
|
|
7272
7468
|
packageManager: z.ZodEnum<{
|
|
7273
7469
|
bun: "bun";
|
|
@@ -7275,6 +7471,10 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7275
7471
|
pnpm: "pnpm";
|
|
7276
7472
|
yarn: "yarn";
|
|
7277
7473
|
}>;
|
|
7474
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
7475
|
+
monorepo: "monorepo";
|
|
7476
|
+
"single-app": "single-app";
|
|
7477
|
+
}>>;
|
|
7278
7478
|
versionChannel: z.ZodEnum<{
|
|
7279
7479
|
stable: "stable";
|
|
7280
7480
|
latest: "latest";
|
|
@@ -7398,6 +7598,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7398
7598
|
"postcss-only": "postcss-only";
|
|
7399
7599
|
}>;
|
|
7400
7600
|
uiLibrary: z.ZodEnum<{
|
|
7601
|
+
mui: "mui";
|
|
7401
7602
|
none: "none";
|
|
7402
7603
|
"shadcn-ui": "shadcn-ui";
|
|
7403
7604
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -7408,7 +7609,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7408
7609
|
"chakra-ui": "chakra-ui";
|
|
7409
7610
|
nextui: "nextui";
|
|
7410
7611
|
mantine: "mantine";
|
|
7411
|
-
mui: "mui";
|
|
7412
7612
|
antd: "antd";
|
|
7413
7613
|
"base-ui": "base-ui";
|
|
7414
7614
|
"ark-ui": "ark-ui";
|
|
@@ -7480,8 +7680,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7480
7680
|
"geist-mono": "geist-mono";
|
|
7481
7681
|
}>>;
|
|
7482
7682
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7483
|
-
default: "default";
|
|
7484
7683
|
none: "none";
|
|
7684
|
+
default: "default";
|
|
7485
7685
|
small: "small";
|
|
7486
7686
|
medium: "medium";
|
|
7487
7687
|
large: "large";
|
|
@@ -7551,6 +7751,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7551
7751
|
}>;
|
|
7552
7752
|
analytics: z.ZodEnum<{
|
|
7553
7753
|
none: "none";
|
|
7754
|
+
posthog: "posthog";
|
|
7554
7755
|
plausible: "plausible";
|
|
7555
7756
|
umami: "umami";
|
|
7556
7757
|
}>;
|
|
@@ -7565,6 +7766,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7565
7766
|
}>;
|
|
7566
7767
|
caching: z.ZodEnum<{
|
|
7567
7768
|
none: "none";
|
|
7769
|
+
redis: "redis";
|
|
7568
7770
|
"upstash-redis": "upstash-redis";
|
|
7569
7771
|
}>;
|
|
7570
7772
|
rateLimit: z.ZodEnum<{
|
|
@@ -7577,6 +7779,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7577
7779
|
paraglide: "paraglide";
|
|
7578
7780
|
i18next: "i18next";
|
|
7579
7781
|
"next-intl": "next-intl";
|
|
7782
|
+
intlayer: "intlayer";
|
|
7580
7783
|
}>;
|
|
7581
7784
|
search: z.ZodEnum<{
|
|
7582
7785
|
none: "none";
|
|
@@ -7585,6 +7788,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7585
7788
|
elasticsearch: "elasticsearch";
|
|
7586
7789
|
opensearch: "opensearch";
|
|
7587
7790
|
algolia: "algolia";
|
|
7791
|
+
bleve: "bleve";
|
|
7588
7792
|
}>;
|
|
7589
7793
|
vectorDb: z.ZodEnum<{
|
|
7590
7794
|
none: "none";
|
|
@@ -7598,6 +7802,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7598
7802
|
s3: "s3";
|
|
7599
7803
|
r2: "r2";
|
|
7600
7804
|
cloudinary: "cloudinary";
|
|
7805
|
+
"supabase-storage": "supabase-storage";
|
|
7601
7806
|
}>;
|
|
7602
7807
|
mobileNavigation: z.ZodEnum<{
|
|
7603
7808
|
none: "none";
|
|
@@ -7606,9 +7811,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7606
7811
|
}>;
|
|
7607
7812
|
mobileUI: z.ZodEnum<{
|
|
7608
7813
|
none: "none";
|
|
7814
|
+
uniwind: "uniwind";
|
|
7609
7815
|
tamagui: "tamagui";
|
|
7610
7816
|
"gluestack-ui": "gluestack-ui";
|
|
7611
|
-
uniwind: "uniwind";
|
|
7612
7817
|
unistyles: "unistyles";
|
|
7613
7818
|
}>;
|
|
7614
7819
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7638,6 +7843,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7638
7843
|
axum: "axum";
|
|
7639
7844
|
"actix-web": "actix-web";
|
|
7640
7845
|
rocket: "rocket";
|
|
7846
|
+
poem: "poem";
|
|
7847
|
+
loco: "loco";
|
|
7641
7848
|
}>;
|
|
7642
7849
|
rustFrontend: z.ZodEnum<{
|
|
7643
7850
|
none: "none";
|
|
@@ -7661,12 +7868,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7661
7868
|
ratatui: "ratatui";
|
|
7662
7869
|
}>;
|
|
7663
7870
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7664
|
-
config: "config";
|
|
7665
7871
|
none: "none";
|
|
7666
7872
|
serde: "serde";
|
|
7667
7873
|
uuid: "uuid";
|
|
7668
7874
|
chrono: "chrono";
|
|
7669
7875
|
reqwest: "reqwest";
|
|
7876
|
+
config: "config";
|
|
7670
7877
|
dashmap: "dashmap";
|
|
7671
7878
|
"parking-lot": "parking-lot";
|
|
7672
7879
|
secrecy: "secrecy";
|
|
@@ -7810,10 +8017,12 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7810
8017
|
echo: "echo";
|
|
7811
8018
|
fiber: "fiber";
|
|
7812
8019
|
chi: "chi";
|
|
8020
|
+
stdlib: "stdlib";
|
|
7813
8021
|
}>;
|
|
7814
8022
|
goOrm: z.ZodEnum<{
|
|
7815
|
-
none: "none";
|
|
7816
8023
|
gorm: "gorm";
|
|
8024
|
+
none: "none";
|
|
8025
|
+
bun: "bun";
|
|
7817
8026
|
sqlc: "sqlc";
|
|
7818
8027
|
ent: "ent";
|
|
7819
8028
|
}>;
|
|
@@ -7870,10 +8079,15 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7870
8079
|
none: "none";
|
|
7871
8080
|
opentelemetry: "opentelemetry";
|
|
7872
8081
|
}>;
|
|
8082
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
8083
|
+
java: "java";
|
|
8084
|
+
kotlin: "kotlin";
|
|
8085
|
+
}>>;
|
|
7873
8086
|
javaWebFramework: z.ZodEnum<{
|
|
7874
8087
|
none: "none";
|
|
7875
8088
|
"spring-boot": "spring-boot";
|
|
7876
8089
|
quarkus: "quarkus";
|
|
8090
|
+
micronaut: "micronaut";
|
|
7877
8091
|
}>;
|
|
7878
8092
|
javaBuildTool: z.ZodEnum<{
|
|
7879
8093
|
none: "none";
|
|
@@ -7894,10 +8108,13 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
7894
8108
|
javaApi: z.ZodEnum<{
|
|
7895
8109
|
none: "none";
|
|
7896
8110
|
"spring-graphql": "spring-graphql";
|
|
8111
|
+
"openapi-generator": "openapi-generator";
|
|
8112
|
+
grpc: "grpc";
|
|
7897
8113
|
}>;
|
|
7898
8114
|
javaLogging: z.ZodEnum<{
|
|
7899
8115
|
none: "none";
|
|
7900
8116
|
logback: "logback";
|
|
8117
|
+
log4j2: "log4j2";
|
|
7901
8118
|
}>;
|
|
7902
8119
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7903
8120
|
none: "none";
|
|
@@ -8014,9 +8231,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8014
8231
|
}>;
|
|
8015
8232
|
elixirApi: z.ZodEnum<{
|
|
8016
8233
|
none: "none";
|
|
8234
|
+
grpc: "grpc";
|
|
8017
8235
|
rest: "rest";
|
|
8018
8236
|
absinthe: "absinthe";
|
|
8019
|
-
grpc: "grpc";
|
|
8020
8237
|
}>;
|
|
8021
8238
|
elixirRealtime: z.ZodEnum<{
|
|
8022
8239
|
none: "none";
|
|
@@ -8093,59 +8310,60 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
8093
8310
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8094
8311
|
id: z.ZodString;
|
|
8095
8312
|
role: z.ZodEnum<{
|
|
8096
|
-
|
|
8097
|
-
frontend: "frontend";
|
|
8313
|
+
runtime: "runtime";
|
|
8098
8314
|
backend: "backend";
|
|
8099
|
-
mobile: "mobile";
|
|
8100
8315
|
database: "database";
|
|
8101
|
-
api: "api";
|
|
8102
|
-
graphql: "graphql";
|
|
8103
8316
|
orm: "orm";
|
|
8104
|
-
auth: "auth";
|
|
8105
|
-
runtime: "runtime";
|
|
8106
|
-
deploy: "deploy";
|
|
8107
8317
|
dbSetup: "dbSetup";
|
|
8318
|
+
auth: "auth";
|
|
8319
|
+
payments: "payments";
|
|
8320
|
+
email: "email";
|
|
8321
|
+
fileUpload: "fileUpload";
|
|
8322
|
+
logging: "logging";
|
|
8323
|
+
observability: "observability";
|
|
8324
|
+
featureFlags: "featureFlags";
|
|
8325
|
+
analytics: "analytics";
|
|
8326
|
+
stateManagement: "stateManagement";
|
|
8327
|
+
forms: "forms";
|
|
8328
|
+
validation: "validation";
|
|
8329
|
+
testing: "testing";
|
|
8108
8330
|
realtime: "realtime";
|
|
8109
|
-
|
|
8331
|
+
jobQueue: "jobQueue";
|
|
8110
8332
|
caching: "caching";
|
|
8111
|
-
|
|
8112
|
-
|
|
8333
|
+
rateLimit: "rateLimit";
|
|
8334
|
+
animation: "animation";
|
|
8335
|
+
cms: "cms";
|
|
8336
|
+
i18n: "i18n";
|
|
8113
8337
|
search: "search";
|
|
8114
8338
|
vectorDb: "vectorDb";
|
|
8115
8339
|
fileStorage: "fileStorage";
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8121
|
-
animation: "animation";
|
|
8122
|
-
fileUpload: "fileUpload";
|
|
8123
|
-
validation: "validation";
|
|
8340
|
+
codeQuality: "codeQuality";
|
|
8341
|
+
documentation: "documentation";
|
|
8342
|
+
examples: "examples";
|
|
8343
|
+
api: "api";
|
|
8344
|
+
ai: "ai";
|
|
8124
8345
|
effect: "effect";
|
|
8125
|
-
ui: "ui";
|
|
8126
8346
|
css: "css";
|
|
8347
|
+
ui: "ui";
|
|
8348
|
+
push: "push";
|
|
8349
|
+
frontend: "frontend";
|
|
8350
|
+
config: "config";
|
|
8351
|
+
mobile: "mobile";
|
|
8352
|
+
graphql: "graphql";
|
|
8353
|
+
deploy: "deploy";
|
|
8354
|
+
navigation: "navigation";
|
|
8127
8355
|
storage: "storage";
|
|
8128
8356
|
ota: "ota";
|
|
8129
8357
|
deepLinking: "deepLinking";
|
|
8130
|
-
ai: "ai";
|
|
8131
|
-
payments: "payments";
|
|
8132
|
-
logging: "logging";
|
|
8133
|
-
featureFlags: "featureFlags";
|
|
8134
|
-
analytics: "analytics";
|
|
8135
|
-
cms: "cms";
|
|
8136
|
-
i18n: "i18n";
|
|
8137
|
-
documentation: "documentation";
|
|
8138
|
-
codeQuality: "codeQuality";
|
|
8139
8358
|
appPlatform: "appPlatform";
|
|
8140
8359
|
dataFetching: "dataFetching";
|
|
8141
8360
|
workspaceTooling: "workspaceTooling";
|
|
8142
|
-
|
|
8361
|
+
language: "language";
|
|
8143
8362
|
buildTool: "buildTool";
|
|
8144
8363
|
cli: "cli";
|
|
8145
8364
|
errorHandling: "errorHandling";
|
|
8146
8365
|
httpClient: "httpClient";
|
|
8147
8366
|
libraries: "libraries";
|
|
8148
|
-
config: "config";
|
|
8149
8367
|
templating: "templating";
|
|
8150
8368
|
}>;
|
|
8151
8369
|
toolId: z.ZodString;
|
|
@@ -8208,6 +8426,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8208
8426
|
sequelize: "sequelize";
|
|
8209
8427
|
}>;
|
|
8210
8428
|
backend: z.ZodEnum<{
|
|
8429
|
+
effect: "effect";
|
|
8211
8430
|
none: "none";
|
|
8212
8431
|
hono: "hono";
|
|
8213
8432
|
express: "express";
|
|
@@ -8300,11 +8519,15 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8300
8519
|
}>;
|
|
8301
8520
|
payments: z.ZodEnum<{
|
|
8302
8521
|
none: "none";
|
|
8522
|
+
revenuecat: "revenuecat";
|
|
8303
8523
|
polar: "polar";
|
|
8304
8524
|
stripe: "stripe";
|
|
8305
8525
|
"lemon-squeezy": "lemon-squeezy";
|
|
8306
8526
|
paddle: "paddle";
|
|
8307
8527
|
dodo: "dodo";
|
|
8528
|
+
creem: "creem";
|
|
8529
|
+
autumn: "autumn";
|
|
8530
|
+
commet: "commet";
|
|
8308
8531
|
}>;
|
|
8309
8532
|
packageManager: z.ZodEnum<{
|
|
8310
8533
|
bun: "bun";
|
|
@@ -8312,6 +8535,10 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8312
8535
|
pnpm: "pnpm";
|
|
8313
8536
|
yarn: "yarn";
|
|
8314
8537
|
}>;
|
|
8538
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
8539
|
+
monorepo: "monorepo";
|
|
8540
|
+
"single-app": "single-app";
|
|
8541
|
+
}>>;
|
|
8315
8542
|
versionChannel: z.ZodEnum<{
|
|
8316
8543
|
stable: "stable";
|
|
8317
8544
|
latest: "latest";
|
|
@@ -8435,6 +8662,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8435
8662
|
"postcss-only": "postcss-only";
|
|
8436
8663
|
}>;
|
|
8437
8664
|
uiLibrary: z.ZodEnum<{
|
|
8665
|
+
mui: "mui";
|
|
8438
8666
|
none: "none";
|
|
8439
8667
|
"shadcn-ui": "shadcn-ui";
|
|
8440
8668
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -8445,7 +8673,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8445
8673
|
"chakra-ui": "chakra-ui";
|
|
8446
8674
|
nextui: "nextui";
|
|
8447
8675
|
mantine: "mantine";
|
|
8448
|
-
mui: "mui";
|
|
8449
8676
|
antd: "antd";
|
|
8450
8677
|
"base-ui": "base-ui";
|
|
8451
8678
|
"ark-ui": "ark-ui";
|
|
@@ -8517,8 +8744,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8517
8744
|
"geist-mono": "geist-mono";
|
|
8518
8745
|
}>>;
|
|
8519
8746
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8520
|
-
default: "default";
|
|
8521
8747
|
none: "none";
|
|
8748
|
+
default: "default";
|
|
8522
8749
|
small: "small";
|
|
8523
8750
|
medium: "medium";
|
|
8524
8751
|
large: "large";
|
|
@@ -8588,6 +8815,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8588
8815
|
}>;
|
|
8589
8816
|
analytics: z.ZodEnum<{
|
|
8590
8817
|
none: "none";
|
|
8818
|
+
posthog: "posthog";
|
|
8591
8819
|
plausible: "plausible";
|
|
8592
8820
|
umami: "umami";
|
|
8593
8821
|
}>;
|
|
@@ -8602,6 +8830,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8602
8830
|
}>;
|
|
8603
8831
|
caching: z.ZodEnum<{
|
|
8604
8832
|
none: "none";
|
|
8833
|
+
redis: "redis";
|
|
8605
8834
|
"upstash-redis": "upstash-redis";
|
|
8606
8835
|
}>;
|
|
8607
8836
|
rateLimit: z.ZodEnum<{
|
|
@@ -8614,6 +8843,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8614
8843
|
paraglide: "paraglide";
|
|
8615
8844
|
i18next: "i18next";
|
|
8616
8845
|
"next-intl": "next-intl";
|
|
8846
|
+
intlayer: "intlayer";
|
|
8617
8847
|
}>;
|
|
8618
8848
|
search: z.ZodEnum<{
|
|
8619
8849
|
none: "none";
|
|
@@ -8622,6 +8852,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8622
8852
|
elasticsearch: "elasticsearch";
|
|
8623
8853
|
opensearch: "opensearch";
|
|
8624
8854
|
algolia: "algolia";
|
|
8855
|
+
bleve: "bleve";
|
|
8625
8856
|
}>;
|
|
8626
8857
|
vectorDb: z.ZodEnum<{
|
|
8627
8858
|
none: "none";
|
|
@@ -8635,6 +8866,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8635
8866
|
s3: "s3";
|
|
8636
8867
|
r2: "r2";
|
|
8637
8868
|
cloudinary: "cloudinary";
|
|
8869
|
+
"supabase-storage": "supabase-storage";
|
|
8638
8870
|
}>;
|
|
8639
8871
|
mobileNavigation: z.ZodEnum<{
|
|
8640
8872
|
none: "none";
|
|
@@ -8643,9 +8875,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8643
8875
|
}>;
|
|
8644
8876
|
mobileUI: z.ZodEnum<{
|
|
8645
8877
|
none: "none";
|
|
8878
|
+
uniwind: "uniwind";
|
|
8646
8879
|
tamagui: "tamagui";
|
|
8647
8880
|
"gluestack-ui": "gluestack-ui";
|
|
8648
|
-
uniwind: "uniwind";
|
|
8649
8881
|
unistyles: "unistyles";
|
|
8650
8882
|
}>;
|
|
8651
8883
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8675,6 +8907,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8675
8907
|
axum: "axum";
|
|
8676
8908
|
"actix-web": "actix-web";
|
|
8677
8909
|
rocket: "rocket";
|
|
8910
|
+
poem: "poem";
|
|
8911
|
+
loco: "loco";
|
|
8678
8912
|
}>;
|
|
8679
8913
|
rustFrontend: z.ZodEnum<{
|
|
8680
8914
|
none: "none";
|
|
@@ -8698,12 +8932,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8698
8932
|
ratatui: "ratatui";
|
|
8699
8933
|
}>;
|
|
8700
8934
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8701
|
-
config: "config";
|
|
8702
8935
|
none: "none";
|
|
8703
8936
|
serde: "serde";
|
|
8704
8937
|
uuid: "uuid";
|
|
8705
8938
|
chrono: "chrono";
|
|
8706
8939
|
reqwest: "reqwest";
|
|
8940
|
+
config: "config";
|
|
8707
8941
|
dashmap: "dashmap";
|
|
8708
8942
|
"parking-lot": "parking-lot";
|
|
8709
8943
|
secrecy: "secrecy";
|
|
@@ -8847,10 +9081,12 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8847
9081
|
echo: "echo";
|
|
8848
9082
|
fiber: "fiber";
|
|
8849
9083
|
chi: "chi";
|
|
9084
|
+
stdlib: "stdlib";
|
|
8850
9085
|
}>;
|
|
8851
9086
|
goOrm: z.ZodEnum<{
|
|
8852
|
-
none: "none";
|
|
8853
9087
|
gorm: "gorm";
|
|
9088
|
+
none: "none";
|
|
9089
|
+
bun: "bun";
|
|
8854
9090
|
sqlc: "sqlc";
|
|
8855
9091
|
ent: "ent";
|
|
8856
9092
|
}>;
|
|
@@ -8907,10 +9143,15 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8907
9143
|
none: "none";
|
|
8908
9144
|
opentelemetry: "opentelemetry";
|
|
8909
9145
|
}>;
|
|
9146
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
9147
|
+
java: "java";
|
|
9148
|
+
kotlin: "kotlin";
|
|
9149
|
+
}>>;
|
|
8910
9150
|
javaWebFramework: z.ZodEnum<{
|
|
8911
9151
|
none: "none";
|
|
8912
9152
|
"spring-boot": "spring-boot";
|
|
8913
9153
|
quarkus: "quarkus";
|
|
9154
|
+
micronaut: "micronaut";
|
|
8914
9155
|
}>;
|
|
8915
9156
|
javaBuildTool: z.ZodEnum<{
|
|
8916
9157
|
none: "none";
|
|
@@ -8931,10 +9172,13 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
8931
9172
|
javaApi: z.ZodEnum<{
|
|
8932
9173
|
none: "none";
|
|
8933
9174
|
"spring-graphql": "spring-graphql";
|
|
9175
|
+
"openapi-generator": "openapi-generator";
|
|
9176
|
+
grpc: "grpc";
|
|
8934
9177
|
}>;
|
|
8935
9178
|
javaLogging: z.ZodEnum<{
|
|
8936
9179
|
none: "none";
|
|
8937
9180
|
logback: "logback";
|
|
9181
|
+
log4j2: "log4j2";
|
|
8938
9182
|
}>;
|
|
8939
9183
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
8940
9184
|
none: "none";
|
|
@@ -9051,9 +9295,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9051
9295
|
}>;
|
|
9052
9296
|
elixirApi: z.ZodEnum<{
|
|
9053
9297
|
none: "none";
|
|
9298
|
+
grpc: "grpc";
|
|
9054
9299
|
rest: "rest";
|
|
9055
9300
|
absinthe: "absinthe";
|
|
9056
|
-
grpc: "grpc";
|
|
9057
9301
|
}>;
|
|
9058
9302
|
elixirRealtime: z.ZodEnum<{
|
|
9059
9303
|
none: "none";
|
|
@@ -9130,59 +9374,60 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
9130
9374
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9131
9375
|
id: z.ZodString;
|
|
9132
9376
|
role: z.ZodEnum<{
|
|
9133
|
-
|
|
9134
|
-
frontend: "frontend";
|
|
9377
|
+
runtime: "runtime";
|
|
9135
9378
|
backend: "backend";
|
|
9136
|
-
mobile: "mobile";
|
|
9137
9379
|
database: "database";
|
|
9138
|
-
api: "api";
|
|
9139
|
-
graphql: "graphql";
|
|
9140
9380
|
orm: "orm";
|
|
9141
|
-
auth: "auth";
|
|
9142
|
-
runtime: "runtime";
|
|
9143
|
-
deploy: "deploy";
|
|
9144
9381
|
dbSetup: "dbSetup";
|
|
9382
|
+
auth: "auth";
|
|
9383
|
+
payments: "payments";
|
|
9384
|
+
email: "email";
|
|
9385
|
+
fileUpload: "fileUpload";
|
|
9386
|
+
logging: "logging";
|
|
9387
|
+
observability: "observability";
|
|
9388
|
+
featureFlags: "featureFlags";
|
|
9389
|
+
analytics: "analytics";
|
|
9390
|
+
stateManagement: "stateManagement";
|
|
9391
|
+
forms: "forms";
|
|
9392
|
+
validation: "validation";
|
|
9393
|
+
testing: "testing";
|
|
9145
9394
|
realtime: "realtime";
|
|
9146
|
-
|
|
9395
|
+
jobQueue: "jobQueue";
|
|
9147
9396
|
caching: "caching";
|
|
9148
|
-
|
|
9149
|
-
|
|
9397
|
+
rateLimit: "rateLimit";
|
|
9398
|
+
animation: "animation";
|
|
9399
|
+
cms: "cms";
|
|
9400
|
+
i18n: "i18n";
|
|
9150
9401
|
search: "search";
|
|
9151
9402
|
vectorDb: "vectorDb";
|
|
9152
9403
|
fileStorage: "fileStorage";
|
|
9153
|
-
|
|
9154
|
-
|
|
9155
|
-
|
|
9156
|
-
|
|
9157
|
-
|
|
9158
|
-
animation: "animation";
|
|
9159
|
-
fileUpload: "fileUpload";
|
|
9160
|
-
validation: "validation";
|
|
9404
|
+
codeQuality: "codeQuality";
|
|
9405
|
+
documentation: "documentation";
|
|
9406
|
+
examples: "examples";
|
|
9407
|
+
api: "api";
|
|
9408
|
+
ai: "ai";
|
|
9161
9409
|
effect: "effect";
|
|
9162
|
-
ui: "ui";
|
|
9163
9410
|
css: "css";
|
|
9411
|
+
ui: "ui";
|
|
9412
|
+
push: "push";
|
|
9413
|
+
frontend: "frontend";
|
|
9414
|
+
config: "config";
|
|
9415
|
+
mobile: "mobile";
|
|
9416
|
+
graphql: "graphql";
|
|
9417
|
+
deploy: "deploy";
|
|
9418
|
+
navigation: "navigation";
|
|
9164
9419
|
storage: "storage";
|
|
9165
9420
|
ota: "ota";
|
|
9166
9421
|
deepLinking: "deepLinking";
|
|
9167
|
-
ai: "ai";
|
|
9168
|
-
payments: "payments";
|
|
9169
|
-
logging: "logging";
|
|
9170
|
-
featureFlags: "featureFlags";
|
|
9171
|
-
analytics: "analytics";
|
|
9172
|
-
cms: "cms";
|
|
9173
|
-
i18n: "i18n";
|
|
9174
|
-
documentation: "documentation";
|
|
9175
|
-
codeQuality: "codeQuality";
|
|
9176
9422
|
appPlatform: "appPlatform";
|
|
9177
9423
|
dataFetching: "dataFetching";
|
|
9178
9424
|
workspaceTooling: "workspaceTooling";
|
|
9179
|
-
|
|
9425
|
+
language: "language";
|
|
9180
9426
|
buildTool: "buildTool";
|
|
9181
9427
|
cli: "cli";
|
|
9182
9428
|
errorHandling: "errorHandling";
|
|
9183
9429
|
httpClient: "httpClient";
|
|
9184
9430
|
libraries: "libraries";
|
|
9185
|
-
config: "config";
|
|
9186
9431
|
templating: "templating";
|
|
9187
9432
|
}>;
|
|
9188
9433
|
toolId: z.ZodString;
|
|
@@ -9245,6 +9490,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9245
9490
|
sequelize: "sequelize";
|
|
9246
9491
|
}>;
|
|
9247
9492
|
backend: z.ZodEnum<{
|
|
9493
|
+
effect: "effect";
|
|
9248
9494
|
none: "none";
|
|
9249
9495
|
hono: "hono";
|
|
9250
9496
|
express: "express";
|
|
@@ -9337,11 +9583,15 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9337
9583
|
}>;
|
|
9338
9584
|
payments: z.ZodEnum<{
|
|
9339
9585
|
none: "none";
|
|
9586
|
+
revenuecat: "revenuecat";
|
|
9340
9587
|
polar: "polar";
|
|
9341
9588
|
stripe: "stripe";
|
|
9342
9589
|
"lemon-squeezy": "lemon-squeezy";
|
|
9343
9590
|
paddle: "paddle";
|
|
9344
9591
|
dodo: "dodo";
|
|
9592
|
+
creem: "creem";
|
|
9593
|
+
autumn: "autumn";
|
|
9594
|
+
commet: "commet";
|
|
9345
9595
|
}>;
|
|
9346
9596
|
git: z.ZodBoolean;
|
|
9347
9597
|
packageManager: z.ZodEnum<{
|
|
@@ -9350,6 +9600,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9350
9600
|
pnpm: "pnpm";
|
|
9351
9601
|
yarn: "yarn";
|
|
9352
9602
|
}>;
|
|
9603
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
9604
|
+
monorepo: "monorepo";
|
|
9605
|
+
"single-app": "single-app";
|
|
9606
|
+
}>>;
|
|
9353
9607
|
versionChannel: z.ZodEnum<{
|
|
9354
9608
|
stable: "stable";
|
|
9355
9609
|
latest: "latest";
|
|
@@ -9474,6 +9728,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9474
9728
|
"postcss-only": "postcss-only";
|
|
9475
9729
|
}>;
|
|
9476
9730
|
uiLibrary: z.ZodEnum<{
|
|
9731
|
+
mui: "mui";
|
|
9477
9732
|
none: "none";
|
|
9478
9733
|
"shadcn-ui": "shadcn-ui";
|
|
9479
9734
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -9484,7 +9739,6 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9484
9739
|
"chakra-ui": "chakra-ui";
|
|
9485
9740
|
nextui: "nextui";
|
|
9486
9741
|
mantine: "mantine";
|
|
9487
|
-
mui: "mui";
|
|
9488
9742
|
antd: "antd";
|
|
9489
9743
|
"base-ui": "base-ui";
|
|
9490
9744
|
"ark-ui": "ark-ui";
|
|
@@ -9556,8 +9810,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9556
9810
|
"geist-mono": "geist-mono";
|
|
9557
9811
|
}>>;
|
|
9558
9812
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9559
|
-
default: "default";
|
|
9560
9813
|
none: "none";
|
|
9814
|
+
default: "default";
|
|
9561
9815
|
small: "small";
|
|
9562
9816
|
medium: "medium";
|
|
9563
9817
|
large: "large";
|
|
@@ -9627,6 +9881,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9627
9881
|
}>;
|
|
9628
9882
|
analytics: z.ZodEnum<{
|
|
9629
9883
|
none: "none";
|
|
9884
|
+
posthog: "posthog";
|
|
9630
9885
|
plausible: "plausible";
|
|
9631
9886
|
umami: "umami";
|
|
9632
9887
|
}>;
|
|
@@ -9641,6 +9896,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9641
9896
|
}>;
|
|
9642
9897
|
caching: z.ZodEnum<{
|
|
9643
9898
|
none: "none";
|
|
9899
|
+
redis: "redis";
|
|
9644
9900
|
"upstash-redis": "upstash-redis";
|
|
9645
9901
|
}>;
|
|
9646
9902
|
rateLimit: z.ZodEnum<{
|
|
@@ -9653,6 +9909,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9653
9909
|
paraglide: "paraglide";
|
|
9654
9910
|
i18next: "i18next";
|
|
9655
9911
|
"next-intl": "next-intl";
|
|
9912
|
+
intlayer: "intlayer";
|
|
9656
9913
|
}>;
|
|
9657
9914
|
search: z.ZodEnum<{
|
|
9658
9915
|
none: "none";
|
|
@@ -9661,6 +9918,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9661
9918
|
elasticsearch: "elasticsearch";
|
|
9662
9919
|
opensearch: "opensearch";
|
|
9663
9920
|
algolia: "algolia";
|
|
9921
|
+
bleve: "bleve";
|
|
9664
9922
|
}>;
|
|
9665
9923
|
vectorDb: z.ZodEnum<{
|
|
9666
9924
|
none: "none";
|
|
@@ -9674,6 +9932,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9674
9932
|
s3: "s3";
|
|
9675
9933
|
r2: "r2";
|
|
9676
9934
|
cloudinary: "cloudinary";
|
|
9935
|
+
"supabase-storage": "supabase-storage";
|
|
9677
9936
|
}>;
|
|
9678
9937
|
mobileNavigation: z.ZodEnum<{
|
|
9679
9938
|
none: "none";
|
|
@@ -9682,9 +9941,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9682
9941
|
}>;
|
|
9683
9942
|
mobileUI: z.ZodEnum<{
|
|
9684
9943
|
none: "none";
|
|
9944
|
+
uniwind: "uniwind";
|
|
9685
9945
|
tamagui: "tamagui";
|
|
9686
9946
|
"gluestack-ui": "gluestack-ui";
|
|
9687
|
-
uniwind: "uniwind";
|
|
9688
9947
|
unistyles: "unistyles";
|
|
9689
9948
|
}>;
|
|
9690
9949
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9714,6 +9973,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9714
9973
|
axum: "axum";
|
|
9715
9974
|
"actix-web": "actix-web";
|
|
9716
9975
|
rocket: "rocket";
|
|
9976
|
+
poem: "poem";
|
|
9977
|
+
loco: "loco";
|
|
9717
9978
|
}>;
|
|
9718
9979
|
rustFrontend: z.ZodEnum<{
|
|
9719
9980
|
none: "none";
|
|
@@ -9737,12 +9998,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9737
9998
|
ratatui: "ratatui";
|
|
9738
9999
|
}>;
|
|
9739
10000
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9740
|
-
config: "config";
|
|
9741
10001
|
none: "none";
|
|
9742
10002
|
serde: "serde";
|
|
9743
10003
|
uuid: "uuid";
|
|
9744
10004
|
chrono: "chrono";
|
|
9745
10005
|
reqwest: "reqwest";
|
|
10006
|
+
config: "config";
|
|
9746
10007
|
dashmap: "dashmap";
|
|
9747
10008
|
"parking-lot": "parking-lot";
|
|
9748
10009
|
secrecy: "secrecy";
|
|
@@ -9886,10 +10147,12 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9886
10147
|
echo: "echo";
|
|
9887
10148
|
fiber: "fiber";
|
|
9888
10149
|
chi: "chi";
|
|
10150
|
+
stdlib: "stdlib";
|
|
9889
10151
|
}>;
|
|
9890
10152
|
goOrm: z.ZodEnum<{
|
|
9891
|
-
none: "none";
|
|
9892
10153
|
gorm: "gorm";
|
|
10154
|
+
none: "none";
|
|
10155
|
+
bun: "bun";
|
|
9893
10156
|
sqlc: "sqlc";
|
|
9894
10157
|
ent: "ent";
|
|
9895
10158
|
}>;
|
|
@@ -9946,10 +10209,15 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9946
10209
|
none: "none";
|
|
9947
10210
|
opentelemetry: "opentelemetry";
|
|
9948
10211
|
}>;
|
|
10212
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
10213
|
+
java: "java";
|
|
10214
|
+
kotlin: "kotlin";
|
|
10215
|
+
}>>;
|
|
9949
10216
|
javaWebFramework: z.ZodEnum<{
|
|
9950
10217
|
none: "none";
|
|
9951
10218
|
"spring-boot": "spring-boot";
|
|
9952
10219
|
quarkus: "quarkus";
|
|
10220
|
+
micronaut: "micronaut";
|
|
9953
10221
|
}>;
|
|
9954
10222
|
javaBuildTool: z.ZodEnum<{
|
|
9955
10223
|
none: "none";
|
|
@@ -9970,10 +10238,13 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
9970
10238
|
javaApi: z.ZodEnum<{
|
|
9971
10239
|
none: "none";
|
|
9972
10240
|
"spring-graphql": "spring-graphql";
|
|
10241
|
+
"openapi-generator": "openapi-generator";
|
|
10242
|
+
grpc: "grpc";
|
|
9973
10243
|
}>;
|
|
9974
10244
|
javaLogging: z.ZodEnum<{
|
|
9975
10245
|
none: "none";
|
|
9976
10246
|
logback: "logback";
|
|
10247
|
+
log4j2: "log4j2";
|
|
9977
10248
|
}>;
|
|
9978
10249
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
9979
10250
|
none: "none";
|
|
@@ -10090,9 +10361,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10090
10361
|
}>;
|
|
10091
10362
|
elixirApi: z.ZodEnum<{
|
|
10092
10363
|
none: "none";
|
|
10364
|
+
grpc: "grpc";
|
|
10093
10365
|
rest: "rest";
|
|
10094
10366
|
absinthe: "absinthe";
|
|
10095
|
-
grpc: "grpc";
|
|
10096
10367
|
}>;
|
|
10097
10368
|
elixirRealtime: z.ZodEnum<{
|
|
10098
10369
|
none: "none";
|
|
@@ -10169,59 +10440,60 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10169
10440
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10170
10441
|
id: z.ZodString;
|
|
10171
10442
|
role: z.ZodEnum<{
|
|
10172
|
-
|
|
10173
|
-
frontend: "frontend";
|
|
10443
|
+
runtime: "runtime";
|
|
10174
10444
|
backend: "backend";
|
|
10175
|
-
mobile: "mobile";
|
|
10176
10445
|
database: "database";
|
|
10177
|
-
api: "api";
|
|
10178
|
-
graphql: "graphql";
|
|
10179
10446
|
orm: "orm";
|
|
10180
|
-
auth: "auth";
|
|
10181
|
-
runtime: "runtime";
|
|
10182
|
-
deploy: "deploy";
|
|
10183
10447
|
dbSetup: "dbSetup";
|
|
10448
|
+
auth: "auth";
|
|
10449
|
+
payments: "payments";
|
|
10450
|
+
email: "email";
|
|
10451
|
+
fileUpload: "fileUpload";
|
|
10452
|
+
logging: "logging";
|
|
10453
|
+
observability: "observability";
|
|
10454
|
+
featureFlags: "featureFlags";
|
|
10455
|
+
analytics: "analytics";
|
|
10456
|
+
stateManagement: "stateManagement";
|
|
10457
|
+
forms: "forms";
|
|
10458
|
+
validation: "validation";
|
|
10459
|
+
testing: "testing";
|
|
10184
10460
|
realtime: "realtime";
|
|
10185
|
-
|
|
10461
|
+
jobQueue: "jobQueue";
|
|
10186
10462
|
caching: "caching";
|
|
10187
|
-
|
|
10188
|
-
|
|
10463
|
+
rateLimit: "rateLimit";
|
|
10464
|
+
animation: "animation";
|
|
10465
|
+
cms: "cms";
|
|
10466
|
+
i18n: "i18n";
|
|
10189
10467
|
search: "search";
|
|
10190
10468
|
vectorDb: "vectorDb";
|
|
10191
10469
|
fileStorage: "fileStorage";
|
|
10192
|
-
|
|
10193
|
-
|
|
10194
|
-
|
|
10195
|
-
|
|
10196
|
-
|
|
10197
|
-
animation: "animation";
|
|
10198
|
-
fileUpload: "fileUpload";
|
|
10199
|
-
validation: "validation";
|
|
10470
|
+
codeQuality: "codeQuality";
|
|
10471
|
+
documentation: "documentation";
|
|
10472
|
+
examples: "examples";
|
|
10473
|
+
api: "api";
|
|
10474
|
+
ai: "ai";
|
|
10200
10475
|
effect: "effect";
|
|
10201
|
-
ui: "ui";
|
|
10202
10476
|
css: "css";
|
|
10477
|
+
ui: "ui";
|
|
10478
|
+
push: "push";
|
|
10479
|
+
frontend: "frontend";
|
|
10480
|
+
config: "config";
|
|
10481
|
+
mobile: "mobile";
|
|
10482
|
+
graphql: "graphql";
|
|
10483
|
+
deploy: "deploy";
|
|
10484
|
+
navigation: "navigation";
|
|
10203
10485
|
storage: "storage";
|
|
10204
10486
|
ota: "ota";
|
|
10205
10487
|
deepLinking: "deepLinking";
|
|
10206
|
-
ai: "ai";
|
|
10207
|
-
payments: "payments";
|
|
10208
|
-
logging: "logging";
|
|
10209
|
-
featureFlags: "featureFlags";
|
|
10210
|
-
analytics: "analytics";
|
|
10211
|
-
cms: "cms";
|
|
10212
|
-
i18n: "i18n";
|
|
10213
|
-
documentation: "documentation";
|
|
10214
|
-
codeQuality: "codeQuality";
|
|
10215
10488
|
appPlatform: "appPlatform";
|
|
10216
10489
|
dataFetching: "dataFetching";
|
|
10217
10490
|
workspaceTooling: "workspaceTooling";
|
|
10218
|
-
|
|
10491
|
+
language: "language";
|
|
10219
10492
|
buildTool: "buildTool";
|
|
10220
10493
|
cli: "cli";
|
|
10221
10494
|
errorHandling: "errorHandling";
|
|
10222
10495
|
httpClient: "httpClient";
|
|
10223
10496
|
libraries: "libraries";
|
|
10224
|
-
config: "config";
|
|
10225
10497
|
templating: "templating";
|
|
10226
10498
|
}>;
|
|
10227
10499
|
toolId: z.ZodString;
|
|
@@ -10261,21 +10533,22 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
10261
10533
|
}, z.core.$strip>;
|
|
10262
10534
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
10263
10535
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
10264
|
-
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
10536
|
+
declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
10265
10537
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
10266
10538
|
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")[];
|
|
10267
10539
|
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions")[];
|
|
10268
10540
|
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
10269
10541
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
10542
|
+
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
10270
10543
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
10271
10544
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
10272
10545
|
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi")[];
|
|
10273
10546
|
declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde")[];
|
|
10274
|
-
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
10547
|
+
declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo" | "creem" | "autumn" | "commet")[];
|
|
10275
10548
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
10276
10549
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
10277
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
10278
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
10550
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
10551
|
+
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "saas" | "uniwind")[];
|
|
10279
10552
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
10280
10553
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
10281
10554
|
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
@@ -10284,7 +10557,7 @@ declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "for
|
|
|
10284
10557
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
10285
10558
|
declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
|
|
10286
10559
|
declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
|
|
10287
|
-
declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "
|
|
10560
|
+
declare const UI_LIBRARY_VALUES: ("mui" | "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
|
|
10288
10561
|
declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
|
|
10289
10562
|
declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
|
|
10290
10563
|
declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
|
|
@@ -10293,28 +10566,28 @@ declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")
|
|
|
10293
10566
|
declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
|
|
10294
10567
|
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
|
|
10295
10568
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
10296
|
-
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
10569
|
+
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami")[];
|
|
10297
10570
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
10298
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
10571
|
+
declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
|
|
10299
10572
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
10300
10573
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
10301
10574
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
10302
10575
|
declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
|
|
10303
10576
|
declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
|
|
10304
10577
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic")[];
|
|
10305
|
-
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
10578
|
+
declare const CACHING_VALUES: ("none" | "redis" | "upstash-redis")[];
|
|
10306
10579
|
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
10307
|
-
declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl")[];
|
|
10308
|
-
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia")[];
|
|
10580
|
+
declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl" | "intlayer")[];
|
|
10581
|
+
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia" | "bleve")[];
|
|
10309
10582
|
declare const VECTOR_DB_VALUES: ("none" | "pgvector" | "qdrant" | "chroma" | "pinecone")[];
|
|
10310
|
-
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
|
|
10583
|
+
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary" | "supabase-storage")[];
|
|
10311
10584
|
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir" | "dotnet")[];
|
|
10312
|
-
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
10585
|
+
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket" | "poem" | "loco")[];
|
|
10313
10586
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
10314
10587
|
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx" | "diesel")[];
|
|
10315
10588
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
|
|
10316
10589
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
10317
|
-
declare const RUST_LIBRARIES_VALUES: ("
|
|
10590
|
+
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "uuid" | "chrono" | "reqwest" | "config" | "dashmap" | "parking-lot" | "secrecy" | "tokio-util" | "utoipa" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall" | "proptest" | "insta")[];
|
|
10318
10591
|
declare const RUST_LOGGING_VALUES: ("none" | "tracing" | "env-logger")[];
|
|
10319
10592
|
declare const RUST_ERROR_HANDLING_VALUES: ("none" | "anyhow-thiserror" | "eyre")[];
|
|
10320
10593
|
declare const RUST_CACHING_VALUES: ("none" | "redis" | "moka")[];
|
|
@@ -10337,8 +10610,8 @@ declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
|
|
|
10337
10610
|
declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
|
|
10338
10611
|
declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
10339
10612
|
declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
|
|
10340
|
-
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
10341
|
-
declare const GO_ORM_VALUES: ("none" | "
|
|
10613
|
+
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi" | "stdlib")[];
|
|
10614
|
+
declare const GO_ORM_VALUES: ("gorm" | "none" | "bun" | "sqlc" | "ent")[];
|
|
10342
10615
|
declare const GO_API_VALUES: ("none" | "grpc-go" | "gqlgen")[];
|
|
10343
10616
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
10344
10617
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
@@ -10349,12 +10622,13 @@ declare const GO_MESSAGE_QUEUE_VALUES: ("none" | "nats" | "watermill")[];
|
|
|
10349
10622
|
declare const GO_CACHING_VALUES: ("none" | "redis" | "ristretto")[];
|
|
10350
10623
|
declare const GO_CONFIG_VALUES: ("none" | "viper" | "koanf")[];
|
|
10351
10624
|
declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
10352
|
-
declare const
|
|
10625
|
+
declare const JAVA_LANGUAGE_VALUES: ("java" | "kotlin")[];
|
|
10626
|
+
declare const JAVA_WEB_FRAMEWORK_VALUES: ("none" | "spring-boot" | "quarkus" | "micronaut")[];
|
|
10353
10627
|
declare const JAVA_BUILD_TOOL_VALUES: ("none" | "maven" | "gradle")[];
|
|
10354
10628
|
declare const JAVA_ORM_VALUES: ("none" | "spring-data-jpa" | "jooq" | "mybatis")[];
|
|
10355
10629
|
declare const JAVA_AUTH_VALUES: ("none" | "spring-security" | "keycloak")[];
|
|
10356
|
-
declare const JAVA_API_VALUES: ("none" | "spring-graphql")[];
|
|
10357
|
-
declare const JAVA_LOGGING_VALUES: ("none" | "logback")[];
|
|
10630
|
+
declare const JAVA_API_VALUES: ("none" | "spring-graphql" | "openapi-generator" | "grpc")[];
|
|
10631
|
+
declare const JAVA_LOGGING_VALUES: ("none" | "logback" | "log4j2")[];
|
|
10358
10632
|
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")[];
|
|
10359
10633
|
declare const JAVA_TESTING_LIBRARIES_VALUES: ("none" | "junit5" | "mockito" | "testcontainers" | "assertj" | "rest-assured" | "wiremock" | "awaitility" | "archunit" | "jqwik")[];
|
|
10360
10634
|
declare const DOTNET_WEB_FRAMEWORK_VALUES: ("none" | "aspnet-minimal" | "aspnet-mvc" | "aspnet-blazor")[];
|
|
@@ -10371,7 +10645,7 @@ declare const DOTNET_DEPLOY_VALUES: ("none" | "docker" | "azure" | "aws")[];
|
|
|
10371
10645
|
declare const ELIXIR_WEB_FRAMEWORK_VALUES: ("none" | "phoenix" | "phoenix-live-view")[];
|
|
10372
10646
|
declare const ELIXIR_ORM_VALUES: ("none" | "ecto" | "ecto-sql")[];
|
|
10373
10647
|
declare const ELIXIR_AUTH_VALUES: ("none" | "phx-gen-auth" | "ueberauth" | "guardian")[];
|
|
10374
|
-
declare const ELIXIR_API_VALUES: ("none" | "
|
|
10648
|
+
declare const ELIXIR_API_VALUES: ("none" | "grpc" | "rest" | "absinthe")[];
|
|
10375
10649
|
declare const ELIXIR_LIBRARIES_VALUES: ("none" | "nx" | "broadway")[];
|
|
10376
10650
|
declare const ELIXIR_REALTIME_VALUES: ("none" | "channels" | "presence" | "pubsub" | "live-view-streams")[];
|
|
10377
10651
|
declare const ELIXIR_JOBS_VALUES: ("none" | "oban" | "quantum")[];
|
|
@@ -10391,7 +10665,7 @@ declare const SHADCN_ICON_LIBRARY_VALUES: ("lucide" | "tabler" | "hugeicons" | "
|
|
|
10391
10665
|
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")[];
|
|
10392
10666
|
declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[];
|
|
10393
10667
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
10394
|
-
declare const SHADCN_RADIUS_VALUES: ("
|
|
10668
|
+
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
10395
10669
|
//#endregion
|
|
10396
|
-
export { DotnetJobQueueSchema as $,
|
|
10397
|
-
//# sourceMappingURL=schemas-
|
|
10670
|
+
export { DotnetJobQueueSchema as $, TEMPLATE_VALUES as $i, MOBILE_OTA_VALUES as $n, RUST_AUTH_VALUES as $r, FileUploadSchema as $t, CachingSchema as A, SERVER_DEPLOY_VALUES as Ai, JAVA_AUTH_VALUES as An, PYTHON_WEB_FRAMEWORK_VALUES as Ar, ElixirCachingSchema as At, DOTNET_OBSERVABILITY_VALUES as B, ServerDeploySchema as Bi, JavaAuthSchema as Bn, PythonGraphqlSchema as Br, ElixirRealtimeSchema as Bt, BetterTStackConfigSchema as C, RustMessageQueueSchema as Ci, GoRealtimeSchema as Cn, PYTHON_OBSERVABILITY_VALUES as Cr, ELIXIR_WEB_FRAMEWORK_VALUES as Ct, CMS_VALUES as D, RustTemplatingSchema as Di, I18nSchema as Dn, PYTHON_TASK_QUEUE_VALUES as Dr, EffectSchema as Dt, CMSSchema as E, RustRealtimeSchema as Ei, I18N_VALUES as En, PYTHON_REALTIME_VALUES as Er, EcosystemSchema as Et, DOTNET_API_VALUES as F, SHADCN_ICON_LIBRARY_VALUES as Fi, JAVA_ORM_VALUES as Fn, PythonAiSchema as Fr, ElixirJsonSchema as Ft, DOTNET_WEB_FRAMEWORK_VALUES as G, ShadcnIconLibrarySchema as Gi, JavaOrmSchema as Gn, PythonTaskQueueSchema as Gr, ExamplesSchema as Gt, DOTNET_REALTIME_VALUES as H, ShadcnBaseSchema as Hi, JavaLanguageSchema as Hn, PythonOrmSchema as Hr, ElixirValidationSchema as Ht, DOTNET_AUTH_VALUES as I, SHADCN_RADIUS_VALUES as Ii, JAVA_TESTING_LIBRARIES_VALUES as In, PythonApiSchema as Ir, ElixirLibrariesSchema as It, DirectoryConflictSchema as J, StackPartEcosystemSchema as Ji, JobQueueSchema as Jn, PythonWebFrameworkSchema as Jr, FILE_UPLOAD_VALUES as Jt, DatabaseSchema as K, ShadcnRadiusSchema as Ki, JavaTestingLibrariesSchema as Kn, PythonTestingSchema as Kr, FEATURE_FLAGS_VALUES as Kt, DOTNET_CACHING_VALUES as L, SHADCN_STYLE_VALUES as Li, JAVA_WEB_FRAMEWORK_VALUES as Ln, PythonAuthSchema as Lr, ElixirObservabilitySchema as Lt, DATABASE_SETUP_VALUES as M, SHADCN_BASE_VALUES as Mi, JAVA_LANGUAGE_VALUES as Mn, PaymentsSchema as Mr, ElixirEmailSchema as Mt, DATABASE_VALUES as N, SHADCN_COLOR_THEME_VALUES as Ni, JAVA_LIBRARIES_VALUES as Nn, ProjectConfigSchema as Nr, ElixirHttpSchema as Nt, CSSFrameworkSchema as O, RustWebFrameworkSchema as Oi, InitResultSchema as On, PYTHON_TESTING_VALUES as Or, ElixirApiSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, SHADCN_FONT_VALUES as Pi, JAVA_LOGGING_VALUES as Pn, ProjectNameSchema as Pr, ElixirJobsSchema as Pt, DotnetDeploySchema as Q, StateManagementSchema as Qi, MOBILE_NAVIGATION_VALUES as Qn, RUST_API_VALUES as Qr, FileStorageSchema as Qt, DOTNET_DEPLOY_VALUES as R, STATE_MANAGEMENT_VALUES as Ri, JOB_QUEUE_VALUES as Rn, PythonCachingSchema as Rr, ElixirOrmSchema as Rt, BetterTStackConfigFileSchema as S, RustLoggingSchema as Si, GoOrmSchema as Sn, PYTHON_GRAPHQL_VALUES as Sr, ELIXIR_VALIDATION_VALUES as St, CLIInputSchema as T, RustOrmSchema as Ti, GoWebFrameworkSchema as Tn, PYTHON_QUALITY_VALUES as Tr, EXAMPLES_VALUES as Tt, DOTNET_TESTING_VALUES as U, ShadcnColorThemeSchema as Ui, JavaLibrariesSchema as Un, PythonQualitySchema as Ur, ElixirWebFrameworkSchema as Ut, DOTNET_ORM_VALUES as V, ShadcnBaseColorSchema as Vi, JavaBuildToolSchema as Vn, PythonObservabilitySchema as Vr, ElixirTestingSchema as Vt, DOTNET_VALIDATION_VALUES as W, ShadcnFontSchema as Wi, JavaLoggingSchema as Wn, PythonRealtimeSchema as Wr, EmailSchema as Wt, DotnetAuthSchema as X, StackPartSchema as Xi, LoggingSchema as Xn, REALTIME_VALUES as Xr, FRONTEND_VALUES as Xt, DotnetApiSchema as Y, StackPartRoleSchema as Yi, LOGGING_VALUES as Yn, RATE_LIMIT_VALUES as Yr, FORMS_VALUES as Yt, DotnetCachingSchema as Z, StackPartSourceSchema as Zi, MOBILE_DEEP_LINKING_VALUES as Zn, RUNTIME_VALUES as Zr, FeatureFlagsSchema as Zt, AuthSchema as _, RustCachingSchema as _i, GoCliSchema as _n, PYTHON_AI_VALUES as _r, ELIXIR_OBSERVABILITY_VALUES as _t, ANALYTICS_VALUES as a, VALIDATION_VALUES as aa, RUST_LOGGING_VALUES as ai, GO_CLI_VALUES as an, MobileNavigationSchema as ar, DotnetWebFrameworkSchema as at, BetterFullstackConfigFileSchema as b, RustFrontendSchema as bi, GoMessageQueueSchema as bn, PYTHON_CACHING_VALUES as br, ELIXIR_REALTIME_VALUES as bt, API_VALUES as c, ValidationSchema as ca, RUST_ORM_VALUES as ci, GO_MESSAGE_QUEUE_VALUES as cn, MobileStorageSchema as cr, ELIXIR_API_VALUES as ct, AddInputSchema as d, WEB_DEPLOY_VALUES as da, RUST_WEB_FRAMEWORK_VALUES as di, GO_REALTIME_VALUES as dn, OBSERVABILITY_VALUES as dr, ELIXIR_DEPLOY_VALUES as dt, TESTING_VALUES as ea, RUST_CACHING_VALUES as ei, FormsSchema as en, MOBILE_PUSH_VALUES as er, DotnetObservabilitySchema as et, AddonsSchema as f, WORKSPACE_SHAPE_VALUES as fa, RateLimitSchema as fi, GO_TESTING_VALUES as fn, ORMSchema as fr, ELIXIR_EMAIL_VALUES as ft, AstroIntegrationSchema as g, RustAuthSchema as gi, GoCachingSchema as gn, PAYMENTS_VALUES as gr, ELIXIR_LIBRARIES_VALUES as gt, AnimationSchema as h, RustApiSchema as hi, GoAuthSchema as hn, PACKAGE_MANAGER_VALUES as hr, ELIXIR_JSON_VALUES as ht, AI_VALUES as i, UI_LIBRARY_VALUES as ia, RUST_LIBRARIES_VALUES as ii, GO_CACHING_VALUES as in, MobileDeepLinkingSchema as ir, DotnetValidationSchema as it, CreateInputSchema as j, SHADCN_BASE_COLOR_VALUES as ji, JAVA_BUILD_TOOL_VALUES as jn, PackageManagerSchema as jr, ElixirDeploySchema as jt, CSS_FRAMEWORK_VALUES as k, SEARCH_VALUES as ki, JAVA_API_VALUES as kn, PYTHON_VALIDATION_VALUES as kr, ElixirAuthSchema as kt, ASTRO_INTEGRATION_VALUES as l, VectorDbSchema as la, RUST_REALTIME_VALUES as li, GO_OBSERVABILITY_VALUES as ln, MobileTestingSchema as lr, ELIXIR_AUTH_VALUES as lt, AnalyticsSchema as m, WorkspaceShapeSchema as ma, RuntimeSchema as mi, GoApiSchema as mn, ObservabilitySchema as mr, ELIXIR_JOBS_VALUES as mt, AISchema as n, TestingSchema as na, RUST_ERROR_HANDLING_VALUES as ni, GO_API_VALUES as nn, MOBILE_TESTING_VALUES as nr, DotnetRealtimeSchema as nt, ANIMATION_VALUES as o, VECTOR_DB_VALUES as oa, RUST_MESSAGE_QUEUE_VALUES as oi, GO_CONFIG_VALUES as on, MobileOTASchema as or, ECOSYSTEM_VALUES as ot, AiDocsSchema as p, WebDeploySchema as pa, RealtimeSchema as pi, GO_WEB_FRAMEWORK_VALUES as pn, ORM_VALUES as pr, ELIXIR_HTTP_VALUES as pt, DatabaseSetupSchema as q, ShadcnStyleSchema as qi, JavaWebFrameworkSchema as qn, PythonValidationSchema as qr, FILE_STORAGE_VALUES as qt, AI_DOCS_VALUES as r, UILibrarySchema as ra, RUST_FRONTEND_VALUES as ri, GO_AUTH_VALUES as rn, MOBILE_UI_VALUES as rr, DotnetTestingSchema as rt, APISchema as s, VERSION_CHANNEL_VALUES as sa, RUST_OBSERVABILITY_VALUES as si, GO_LOGGING_VALUES as sn, MobilePushSchema as sr, EFFECT_VALUES as st, ADDONS_VALUES as t, TemplateSchema as ta, RUST_CLI_VALUES as ti, FrontendSchema as tn, MOBILE_STORAGE_VALUES as tr, DotnetOrmSchema as tt, AUTH_VALUES as u, VersionChannelSchema as ua, RUST_TEMPLATING_VALUES as ui, GO_ORM_VALUES as un, MobileUISchema as ur, ELIXIR_CACHING_VALUES as ut, BACKEND_VALUES as v, RustCliSchema as vi, GoConfigSchema as vn, PYTHON_API_VALUES as vr, ELIXIR_ORM_VALUES as vt, CACHING_VALUES as w, RustObservabilitySchema as wi, GoTestingSchema as wn, PYTHON_ORM_VALUES as wr, EMAIL_VALUES as wt, BetterFullstackConfigSchema as x, RustLibrariesSchema as xi, GoObservabilitySchema as xn, PYTHON_CLI_VALUES as xr, ELIXIR_TESTING_VALUES as xt, BackendSchema as y, RustErrorHandlingSchema as yi, GoLoggingSchema as yn, PYTHON_AUTH_VALUES as yr, ELIXIR_QUALITY_VALUES as yt, DOTNET_JOB_QUEUE_VALUES as z, SearchSchema as zi, JavaApiSchema as zn, PythonCliSchema as zr, ElixirQualitySchema as zt };
|
|
10671
|
+
//# sourceMappingURL=schemas-Dby5Bb6H.d.mts.map
|