@better-fullstack/types 1.8.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{defaults-CFAJhN--.d.mts → defaults-BSM_JIBn.d.mts} +2 -2
- package/dist/defaults-BSM_JIBn.d.mts.map +1 -0
- package/dist/{defaults-D23vxGYl.mjs → defaults-DNmNiuxG.mjs} +1 -1
- package/dist/{defaults-D23vxGYl.mjs.map → defaults-DNmNiuxG.mjs.map} +1 -1
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -4
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +570 -42
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-Bs_n2xLj.d.mts → schemas-B5EgRfVL.d.mts} +556 -46
- package/dist/schemas-B5EgRfVL.d.mts.map +1 -0
- package/dist/{schemas-BHCZL3uR.mjs → schemas-DnEGgQzA.mjs} +74 -7
- package/dist/schemas-DnEGgQzA.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/stack-graph-C2tzuzRe.mjs +585 -0
- package/dist/stack-graph-C2tzuzRe.mjs.map +1 -0
- package/dist/stack-graph-_551XvrL.d.mts +68 -0
- package/dist/stack-graph-_551XvrL.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -0
- package/dist/stack-graph.mjs +4 -0
- package/dist/{stack-translation-_uOX-Io0.mjs → stack-translation-BcsaMRuV.mjs} +260 -22
- package/dist/stack-translation-BcsaMRuV.mjs.map +1 -0
- package/dist/{stack-translation-xj8JvbAI.d.mts → stack-translation-CqslePvp.d.mts} +14 -7
- package/dist/stack-translation-CqslePvp.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +5 -5
- package/dist/stack-translation.mjs +4 -3
- package/dist/{types-DwFVhx5c.d.mts → types-DorAmN4i.d.mts} +7 -3
- package/dist/{types-DwFVhx5c.d.mts.map → types-DorAmN4i.d.mts.map} +1 -1
- package/dist/types.d.mts +3 -3
- package/package.json +5 -1
- package/dist/defaults-CFAJhN--.d.mts.map +0 -1
- package/dist/schemas-BHCZL3uR.mjs.map +0 -1
- package/dist/schemas-Bs_n2xLj.d.mts.map +0 -1
- package/dist/stack-translation-_uOX-Io0.mjs.map +0 -1
- package/dist/stack-translation-xj8JvbAI.d.mts.map +0 -1
|
@@ -10,6 +10,112 @@ declare const EcosystemSchema: z.ZodEnum<{
|
|
|
10
10
|
java: "java";
|
|
11
11
|
elixir: "elixir";
|
|
12
12
|
}>;
|
|
13
|
+
declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
14
|
+
typescript: "typescript";
|
|
15
|
+
"react-native": "react-native";
|
|
16
|
+
rust: "rust";
|
|
17
|
+
python: "python";
|
|
18
|
+
go: "go";
|
|
19
|
+
java: "java";
|
|
20
|
+
elixir: "elixir";
|
|
21
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
22
|
+
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
23
|
+
ai: "ai";
|
|
24
|
+
database: "database";
|
|
25
|
+
orm: "orm";
|
|
26
|
+
auth: "auth";
|
|
27
|
+
payments: "payments";
|
|
28
|
+
frontend: "frontend";
|
|
29
|
+
backend: "backend";
|
|
30
|
+
runtime: "runtime";
|
|
31
|
+
api: "api";
|
|
32
|
+
stateManagement: "stateManagement";
|
|
33
|
+
forms: "forms";
|
|
34
|
+
testing: "testing";
|
|
35
|
+
email: "email";
|
|
36
|
+
validation: "validation";
|
|
37
|
+
jobQueue: "jobQueue";
|
|
38
|
+
logging: "logging";
|
|
39
|
+
observability: "observability";
|
|
40
|
+
featureFlags: "featureFlags";
|
|
41
|
+
analytics: "analytics";
|
|
42
|
+
cms: "cms";
|
|
43
|
+
caching: "caching";
|
|
44
|
+
i18n: "i18n";
|
|
45
|
+
search: "search";
|
|
46
|
+
fileStorage: "fileStorage";
|
|
47
|
+
mobile: "mobile";
|
|
48
|
+
deploy: "deploy";
|
|
49
|
+
ui: "ui";
|
|
50
|
+
css: "css";
|
|
51
|
+
documentation: "documentation";
|
|
52
|
+
codeQuality: "codeQuality";
|
|
53
|
+
appPlatform: "appPlatform";
|
|
54
|
+
}>;
|
|
55
|
+
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
56
|
+
selected: "selected";
|
|
57
|
+
defaulted: "defaulted";
|
|
58
|
+
provided: "provided";
|
|
59
|
+
legacy: "legacy";
|
|
60
|
+
adjusted: "adjusted";
|
|
61
|
+
}>;
|
|
62
|
+
declare const StackPartSchema: z.ZodObject<{
|
|
63
|
+
id: z.ZodString;
|
|
64
|
+
role: z.ZodEnum<{
|
|
65
|
+
ai: "ai";
|
|
66
|
+
database: "database";
|
|
67
|
+
orm: "orm";
|
|
68
|
+
auth: "auth";
|
|
69
|
+
payments: "payments";
|
|
70
|
+
frontend: "frontend";
|
|
71
|
+
backend: "backend";
|
|
72
|
+
runtime: "runtime";
|
|
73
|
+
api: "api";
|
|
74
|
+
stateManagement: "stateManagement";
|
|
75
|
+
forms: "forms";
|
|
76
|
+
testing: "testing";
|
|
77
|
+
email: "email";
|
|
78
|
+
validation: "validation";
|
|
79
|
+
jobQueue: "jobQueue";
|
|
80
|
+
logging: "logging";
|
|
81
|
+
observability: "observability";
|
|
82
|
+
featureFlags: "featureFlags";
|
|
83
|
+
analytics: "analytics";
|
|
84
|
+
cms: "cms";
|
|
85
|
+
caching: "caching";
|
|
86
|
+
i18n: "i18n";
|
|
87
|
+
search: "search";
|
|
88
|
+
fileStorage: "fileStorage";
|
|
89
|
+
mobile: "mobile";
|
|
90
|
+
deploy: "deploy";
|
|
91
|
+
ui: "ui";
|
|
92
|
+
css: "css";
|
|
93
|
+
documentation: "documentation";
|
|
94
|
+
codeQuality: "codeQuality";
|
|
95
|
+
appPlatform: "appPlatform";
|
|
96
|
+
}>;
|
|
97
|
+
toolId: z.ZodString;
|
|
98
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
99
|
+
typescript: "typescript";
|
|
100
|
+
"react-native": "react-native";
|
|
101
|
+
rust: "rust";
|
|
102
|
+
python: "python";
|
|
103
|
+
go: "go";
|
|
104
|
+
java: "java";
|
|
105
|
+
elixir: "elixir";
|
|
106
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
107
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
108
|
+
source: z.ZodEnum<{
|
|
109
|
+
selected: "selected";
|
|
110
|
+
defaulted: "defaulted";
|
|
111
|
+
provided: "provided";
|
|
112
|
+
legacy: "legacy";
|
|
113
|
+
adjusted: "adjusted";
|
|
114
|
+
}>;
|
|
115
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
116
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
117
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
118
|
+
}, z.core.$strip>;
|
|
13
119
|
declare const DatabaseSchema: z.ZodEnum<{
|
|
14
120
|
none: "none";
|
|
15
121
|
sqlite: "sqlite";
|
|
@@ -96,6 +202,7 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
96
202
|
wxt: "wxt";
|
|
97
203
|
msw: "msw";
|
|
98
204
|
storybook: "storybook";
|
|
205
|
+
swr: "swr";
|
|
99
206
|
"tanstack-query": "tanstack-query";
|
|
100
207
|
"tanstack-table": "tanstack-table";
|
|
101
208
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -104,8 +211,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
104
211
|
"docker-compose": "docker-compose";
|
|
105
212
|
}>;
|
|
106
213
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
107
|
-
ai: "ai";
|
|
108
214
|
none: "none";
|
|
215
|
+
ai: "ai";
|
|
109
216
|
"chat-sdk": "chat-sdk";
|
|
110
217
|
"tanstack-showcase": "tanstack-showcase";
|
|
111
218
|
}>;
|
|
@@ -191,8 +298,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
191
298
|
"ai-cli": "ai-cli";
|
|
192
299
|
}>;
|
|
193
300
|
declare const EffectSchema: z.ZodEnum<{
|
|
194
|
-
effect: "effect";
|
|
195
301
|
none: "none";
|
|
302
|
+
effect: "effect";
|
|
196
303
|
"effect-full": "effect-full";
|
|
197
304
|
}>;
|
|
198
305
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -267,6 +374,7 @@ declare const CMSSchema: z.ZodEnum<{
|
|
|
267
374
|
sanity: "sanity";
|
|
268
375
|
strapi: "strapi";
|
|
269
376
|
tinacms: "tinacms";
|
|
377
|
+
directus: "directus";
|
|
270
378
|
}>;
|
|
271
379
|
declare const CachingSchema: z.ZodEnum<{
|
|
272
380
|
none: "none";
|
|
@@ -288,6 +396,7 @@ declare const FileStorageSchema: z.ZodEnum<{
|
|
|
288
396
|
none: "none";
|
|
289
397
|
s3: "s3";
|
|
290
398
|
r2: "r2";
|
|
399
|
+
cloudinary: "cloudinary";
|
|
291
400
|
}>;
|
|
292
401
|
declare const AnimationSchema: z.ZodEnum<{
|
|
293
402
|
none: "none";
|
|
@@ -307,6 +416,7 @@ declare const LoggingSchema: z.ZodEnum<{
|
|
|
307
416
|
none: "none";
|
|
308
417
|
pino: "pino";
|
|
309
418
|
winston: "winston";
|
|
419
|
+
evlog: "evlog";
|
|
310
420
|
}>;
|
|
311
421
|
declare const ObservabilitySchema: z.ZodEnum<{
|
|
312
422
|
none: "none";
|
|
@@ -490,8 +600,8 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
490
600
|
chi: "chi";
|
|
491
601
|
}>;
|
|
492
602
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
493
|
-
gorm: "gorm";
|
|
494
603
|
none: "none";
|
|
604
|
+
gorm: "gorm";
|
|
495
605
|
sqlc: "sqlc";
|
|
496
606
|
ent: "ent";
|
|
497
607
|
}>;
|
|
@@ -662,9 +772,9 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
|
662
772
|
"postcss-only": "postcss-only";
|
|
663
773
|
}>;
|
|
664
774
|
declare const UILibrarySchema: z.ZodEnum<{
|
|
665
|
-
mui: "mui";
|
|
666
775
|
none: "none";
|
|
667
776
|
"shadcn-ui": "shadcn-ui";
|
|
777
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
668
778
|
daisyui: "daisyui";
|
|
669
779
|
"radix-ui": "radix-ui";
|
|
670
780
|
"headless-ui": "headless-ui";
|
|
@@ -672,6 +782,7 @@ declare const UILibrarySchema: z.ZodEnum<{
|
|
|
672
782
|
"chakra-ui": "chakra-ui";
|
|
673
783
|
nextui: "nextui";
|
|
674
784
|
mantine: "mantine";
|
|
785
|
+
mui: "mui";
|
|
675
786
|
antd: "antd";
|
|
676
787
|
"base-ui": "base-ui";
|
|
677
788
|
"ark-ui": "ark-ui";
|
|
@@ -776,6 +887,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
776
887
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
777
888
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
778
889
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
890
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
779
891
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
780
892
|
typescript: "typescript";
|
|
781
893
|
"react-native": "react-native";
|
|
@@ -862,6 +974,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
862
974
|
wxt: "wxt";
|
|
863
975
|
msw: "msw";
|
|
864
976
|
storybook: "storybook";
|
|
977
|
+
swr: "swr";
|
|
865
978
|
"tanstack-query": "tanstack-query";
|
|
866
979
|
"tanstack-table": "tanstack-table";
|
|
867
980
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -870,8 +983,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
870
983
|
"docker-compose": "docker-compose";
|
|
871
984
|
}>>>;
|
|
872
985
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
873
|
-
ai: "ai";
|
|
874
986
|
none: "none";
|
|
987
|
+
ai: "ai";
|
|
875
988
|
"chat-sdk": "chat-sdk";
|
|
876
989
|
"tanstack-showcase": "tanstack-showcase";
|
|
877
990
|
}>>>;
|
|
@@ -977,8 +1090,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
977
1090
|
"ai-cli": "ai-cli";
|
|
978
1091
|
}>>;
|
|
979
1092
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
980
|
-
effect: "effect";
|
|
981
1093
|
none: "none";
|
|
1094
|
+
effect: "effect";
|
|
982
1095
|
"effect-full": "effect-full";
|
|
983
1096
|
}>>;
|
|
984
1097
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1029,9 +1142,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1029
1142
|
"postcss-only": "postcss-only";
|
|
1030
1143
|
}>>;
|
|
1031
1144
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1032
|
-
mui: "mui";
|
|
1033
1145
|
none: "none";
|
|
1034
1146
|
"shadcn-ui": "shadcn-ui";
|
|
1147
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1035
1148
|
daisyui: "daisyui";
|
|
1036
1149
|
"radix-ui": "radix-ui";
|
|
1037
1150
|
"headless-ui": "headless-ui";
|
|
@@ -1039,6 +1152,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1039
1152
|
"chakra-ui": "chakra-ui";
|
|
1040
1153
|
nextui: "nextui";
|
|
1041
1154
|
mantine: "mantine";
|
|
1155
|
+
mui: "mui";
|
|
1042
1156
|
antd: "antd";
|
|
1043
1157
|
"base-ui": "base-ui";
|
|
1044
1158
|
"ark-ui": "ark-ui";
|
|
@@ -1160,6 +1274,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1160
1274
|
none: "none";
|
|
1161
1275
|
pino: "pino";
|
|
1162
1276
|
winston: "winston";
|
|
1277
|
+
evlog: "evlog";
|
|
1163
1278
|
}>>;
|
|
1164
1279
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
1165
1280
|
none: "none";
|
|
@@ -1186,6 +1301,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1186
1301
|
sanity: "sanity";
|
|
1187
1302
|
strapi: "strapi";
|
|
1188
1303
|
tinacms: "tinacms";
|
|
1304
|
+
directus: "directus";
|
|
1189
1305
|
}>>;
|
|
1190
1306
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
1191
1307
|
none: "none";
|
|
@@ -1207,6 +1323,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1207
1323
|
none: "none";
|
|
1208
1324
|
s3: "s3";
|
|
1209
1325
|
r2: "r2";
|
|
1326
|
+
cloudinary: "cloudinary";
|
|
1210
1327
|
}>>;
|
|
1211
1328
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
1212
1329
|
none: "none";
|
|
@@ -1371,8 +1488,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1371
1488
|
chi: "chi";
|
|
1372
1489
|
}>>;
|
|
1373
1490
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1374
|
-
gorm: "gorm";
|
|
1375
1491
|
none: "none";
|
|
1492
|
+
gorm: "gorm";
|
|
1376
1493
|
sqlc: "sqlc";
|
|
1377
1494
|
ent: "ent";
|
|
1378
1495
|
}>>;
|
|
@@ -1535,6 +1652,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1535
1652
|
"agents-md": "agents-md";
|
|
1536
1653
|
cursorrules: "cursorrules";
|
|
1537
1654
|
}>>>;
|
|
1655
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1538
1656
|
}, z.core.$strip>;
|
|
1539
1657
|
declare const AddInputSchema: z.ZodObject<{
|
|
1540
1658
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1556,6 +1674,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1556
1674
|
wxt: "wxt";
|
|
1557
1675
|
msw: "msw";
|
|
1558
1676
|
storybook: "storybook";
|
|
1677
|
+
swr: "swr";
|
|
1559
1678
|
"tanstack-query": "tanstack-query";
|
|
1560
1679
|
"tanstack-table": "tanstack-table";
|
|
1561
1680
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1603,6 +1722,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1603
1722
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
1604
1723
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
1605
1724
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
1725
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
1606
1726
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
1607
1727
|
typescript: "typescript";
|
|
1608
1728
|
"react-native": "react-native";
|
|
@@ -1689,6 +1809,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1689
1809
|
wxt: "wxt";
|
|
1690
1810
|
msw: "msw";
|
|
1691
1811
|
storybook: "storybook";
|
|
1812
|
+
swr: "swr";
|
|
1692
1813
|
"tanstack-query": "tanstack-query";
|
|
1693
1814
|
"tanstack-table": "tanstack-table";
|
|
1694
1815
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1697,8 +1818,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1697
1818
|
"docker-compose": "docker-compose";
|
|
1698
1819
|
}>>>;
|
|
1699
1820
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1700
|
-
ai: "ai";
|
|
1701
1821
|
none: "none";
|
|
1822
|
+
ai: "ai";
|
|
1702
1823
|
"chat-sdk": "chat-sdk";
|
|
1703
1824
|
"tanstack-showcase": "tanstack-showcase";
|
|
1704
1825
|
}>>>;
|
|
@@ -1804,8 +1925,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1804
1925
|
"ai-cli": "ai-cli";
|
|
1805
1926
|
}>>;
|
|
1806
1927
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1807
|
-
effect: "effect";
|
|
1808
1928
|
none: "none";
|
|
1929
|
+
effect: "effect";
|
|
1809
1930
|
"effect-full": "effect-full";
|
|
1810
1931
|
}>>;
|
|
1811
1932
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1856,9 +1977,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1856
1977
|
"postcss-only": "postcss-only";
|
|
1857
1978
|
}>>;
|
|
1858
1979
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1859
|
-
mui: "mui";
|
|
1860
1980
|
none: "none";
|
|
1861
1981
|
"shadcn-ui": "shadcn-ui";
|
|
1982
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1862
1983
|
daisyui: "daisyui";
|
|
1863
1984
|
"radix-ui": "radix-ui";
|
|
1864
1985
|
"headless-ui": "headless-ui";
|
|
@@ -1866,6 +1987,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1866
1987
|
"chakra-ui": "chakra-ui";
|
|
1867
1988
|
nextui: "nextui";
|
|
1868
1989
|
mantine: "mantine";
|
|
1990
|
+
mui: "mui";
|
|
1869
1991
|
antd: "antd";
|
|
1870
1992
|
"base-ui": "base-ui";
|
|
1871
1993
|
"ark-ui": "ark-ui";
|
|
@@ -1987,6 +2109,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1987
2109
|
none: "none";
|
|
1988
2110
|
pino: "pino";
|
|
1989
2111
|
winston: "winston";
|
|
2112
|
+
evlog: "evlog";
|
|
1990
2113
|
}>>;
|
|
1991
2114
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
1992
2115
|
none: "none";
|
|
@@ -2013,6 +2136,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2013
2136
|
sanity: "sanity";
|
|
2014
2137
|
strapi: "strapi";
|
|
2015
2138
|
tinacms: "tinacms";
|
|
2139
|
+
directus: "directus";
|
|
2016
2140
|
}>>;
|
|
2017
2141
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
2018
2142
|
none: "none";
|
|
@@ -2034,6 +2158,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2034
2158
|
none: "none";
|
|
2035
2159
|
s3: "s3";
|
|
2036
2160
|
r2: "r2";
|
|
2161
|
+
cloudinary: "cloudinary";
|
|
2037
2162
|
}>>;
|
|
2038
2163
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
2039
2164
|
none: "none";
|
|
@@ -2198,8 +2323,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2198
2323
|
chi: "chi";
|
|
2199
2324
|
}>>;
|
|
2200
2325
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2201
|
-
gorm: "gorm";
|
|
2202
2326
|
none: "none";
|
|
2327
|
+
gorm: "gorm";
|
|
2203
2328
|
sqlc: "sqlc";
|
|
2204
2329
|
ent: "ent";
|
|
2205
2330
|
}>>;
|
|
@@ -2362,6 +2487,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2362
2487
|
"agents-md": "agents-md";
|
|
2363
2488
|
cursorrules: "cursorrules";
|
|
2364
2489
|
}>>>;
|
|
2490
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2365
2491
|
projectDirectory: z.ZodOptional<z.ZodString>;
|
|
2366
2492
|
}, z.core.$strip>;
|
|
2367
2493
|
declare const ProjectConfigSchema: z.ZodObject<{
|
|
@@ -2456,6 +2582,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2456
2582
|
wxt: "wxt";
|
|
2457
2583
|
msw: "msw";
|
|
2458
2584
|
storybook: "storybook";
|
|
2585
|
+
swr: "swr";
|
|
2459
2586
|
"tanstack-query": "tanstack-query";
|
|
2460
2587
|
"tanstack-table": "tanstack-table";
|
|
2461
2588
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -2464,8 +2591,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2464
2591
|
"docker-compose": "docker-compose";
|
|
2465
2592
|
}>>;
|
|
2466
2593
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2467
|
-
ai: "ai";
|
|
2468
2594
|
none: "none";
|
|
2595
|
+
ai: "ai";
|
|
2469
2596
|
"chat-sdk": "chat-sdk";
|
|
2470
2597
|
"tanstack-showcase": "tanstack-showcase";
|
|
2471
2598
|
}>>;
|
|
@@ -2560,8 +2687,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2560
2687
|
"ai-cli": "ai-cli";
|
|
2561
2688
|
}>;
|
|
2562
2689
|
effect: z.ZodEnum<{
|
|
2563
|
-
effect: "effect";
|
|
2564
2690
|
none: "none";
|
|
2691
|
+
effect: "effect";
|
|
2565
2692
|
"effect-full": "effect-full";
|
|
2566
2693
|
}>;
|
|
2567
2694
|
stateManagement: z.ZodEnum<{
|
|
@@ -2612,9 +2739,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2612
2739
|
"postcss-only": "postcss-only";
|
|
2613
2740
|
}>;
|
|
2614
2741
|
uiLibrary: z.ZodEnum<{
|
|
2615
|
-
mui: "mui";
|
|
2616
2742
|
none: "none";
|
|
2617
2743
|
"shadcn-ui": "shadcn-ui";
|
|
2744
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
2618
2745
|
daisyui: "daisyui";
|
|
2619
2746
|
"radix-ui": "radix-ui";
|
|
2620
2747
|
"headless-ui": "headless-ui";
|
|
@@ -2622,6 +2749,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2622
2749
|
"chakra-ui": "chakra-ui";
|
|
2623
2750
|
nextui: "nextui";
|
|
2624
2751
|
mantine: "mantine";
|
|
2752
|
+
mui: "mui";
|
|
2625
2753
|
antd: "antd";
|
|
2626
2754
|
"base-ui": "base-ui";
|
|
2627
2755
|
"ark-ui": "ark-ui";
|
|
@@ -2743,6 +2871,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2743
2871
|
none: "none";
|
|
2744
2872
|
pino: "pino";
|
|
2745
2873
|
winston: "winston";
|
|
2874
|
+
evlog: "evlog";
|
|
2746
2875
|
}>;
|
|
2747
2876
|
observability: z.ZodEnum<{
|
|
2748
2877
|
none: "none";
|
|
@@ -2769,6 +2898,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2769
2898
|
sanity: "sanity";
|
|
2770
2899
|
strapi: "strapi";
|
|
2771
2900
|
tinacms: "tinacms";
|
|
2901
|
+
directus: "directus";
|
|
2772
2902
|
}>;
|
|
2773
2903
|
caching: z.ZodEnum<{
|
|
2774
2904
|
none: "none";
|
|
@@ -2790,6 +2920,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2790
2920
|
none: "none";
|
|
2791
2921
|
s3: "s3";
|
|
2792
2922
|
r2: "r2";
|
|
2923
|
+
cloudinary: "cloudinary";
|
|
2793
2924
|
}>;
|
|
2794
2925
|
mobileNavigation: z.ZodEnum<{
|
|
2795
2926
|
none: "none";
|
|
@@ -2954,8 +3085,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2954
3085
|
chi: "chi";
|
|
2955
3086
|
}>;
|
|
2956
3087
|
goOrm: z.ZodEnum<{
|
|
2957
|
-
gorm: "gorm";
|
|
2958
3088
|
none: "none";
|
|
3089
|
+
gorm: "gorm";
|
|
2959
3090
|
sqlc: "sqlc";
|
|
2960
3091
|
ent: "ent";
|
|
2961
3092
|
}>;
|
|
@@ -3118,10 +3249,69 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3118
3249
|
"agents-md": "agents-md";
|
|
3119
3250
|
cursorrules: "cursorrules";
|
|
3120
3251
|
}>>;
|
|
3252
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
|
+
id: z.ZodString;
|
|
3254
|
+
role: z.ZodEnum<{
|
|
3255
|
+
ai: "ai";
|
|
3256
|
+
database: "database";
|
|
3257
|
+
orm: "orm";
|
|
3258
|
+
auth: "auth";
|
|
3259
|
+
payments: "payments";
|
|
3260
|
+
frontend: "frontend";
|
|
3261
|
+
backend: "backend";
|
|
3262
|
+
runtime: "runtime";
|
|
3263
|
+
api: "api";
|
|
3264
|
+
stateManagement: "stateManagement";
|
|
3265
|
+
forms: "forms";
|
|
3266
|
+
testing: "testing";
|
|
3267
|
+
email: "email";
|
|
3268
|
+
validation: "validation";
|
|
3269
|
+
jobQueue: "jobQueue";
|
|
3270
|
+
logging: "logging";
|
|
3271
|
+
observability: "observability";
|
|
3272
|
+
featureFlags: "featureFlags";
|
|
3273
|
+
analytics: "analytics";
|
|
3274
|
+
cms: "cms";
|
|
3275
|
+
caching: "caching";
|
|
3276
|
+
i18n: "i18n";
|
|
3277
|
+
search: "search";
|
|
3278
|
+
fileStorage: "fileStorage";
|
|
3279
|
+
mobile: "mobile";
|
|
3280
|
+
deploy: "deploy";
|
|
3281
|
+
ui: "ui";
|
|
3282
|
+
css: "css";
|
|
3283
|
+
documentation: "documentation";
|
|
3284
|
+
codeQuality: "codeQuality";
|
|
3285
|
+
appPlatform: "appPlatform";
|
|
3286
|
+
}>;
|
|
3287
|
+
toolId: z.ZodString;
|
|
3288
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
3289
|
+
typescript: "typescript";
|
|
3290
|
+
"react-native": "react-native";
|
|
3291
|
+
rust: "rust";
|
|
3292
|
+
python: "python";
|
|
3293
|
+
go: "go";
|
|
3294
|
+
java: "java";
|
|
3295
|
+
elixir: "elixir";
|
|
3296
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
3297
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3298
|
+
source: z.ZodEnum<{
|
|
3299
|
+
selected: "selected";
|
|
3300
|
+
defaulted: "defaulted";
|
|
3301
|
+
provided: "provided";
|
|
3302
|
+
legacy: "legacy";
|
|
3303
|
+
adjusted: "adjusted";
|
|
3304
|
+
}>;
|
|
3305
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
3306
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
3307
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3308
|
+
}, z.core.$strip>>>;
|
|
3121
3309
|
}, z.core.$strip>;
|
|
3122
3310
|
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
3123
3311
|
version: z.ZodString;
|
|
3124
3312
|
createdAt: z.ZodString;
|
|
3313
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
3314
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3125
3315
|
ecosystem: z.ZodEnum<{
|
|
3126
3316
|
typescript: "typescript";
|
|
3127
3317
|
"react-native": "react-native";
|
|
@@ -3210,6 +3400,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3210
3400
|
wxt: "wxt";
|
|
3211
3401
|
msw: "msw";
|
|
3212
3402
|
storybook: "storybook";
|
|
3403
|
+
swr: "swr";
|
|
3213
3404
|
"tanstack-query": "tanstack-query";
|
|
3214
3405
|
"tanstack-table": "tanstack-table";
|
|
3215
3406
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -3218,8 +3409,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3218
3409
|
"docker-compose": "docker-compose";
|
|
3219
3410
|
}>>;
|
|
3220
3411
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3221
|
-
ai: "ai";
|
|
3222
3412
|
none: "none";
|
|
3413
|
+
ai: "ai";
|
|
3223
3414
|
"chat-sdk": "chat-sdk";
|
|
3224
3415
|
"tanstack-showcase": "tanstack-showcase";
|
|
3225
3416
|
}>>;
|
|
@@ -3312,8 +3503,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3312
3503
|
"ai-cli": "ai-cli";
|
|
3313
3504
|
}>;
|
|
3314
3505
|
effect: z.ZodEnum<{
|
|
3315
|
-
effect: "effect";
|
|
3316
3506
|
none: "none";
|
|
3507
|
+
effect: "effect";
|
|
3317
3508
|
"effect-full": "effect-full";
|
|
3318
3509
|
}>;
|
|
3319
3510
|
stateManagement: z.ZodEnum<{
|
|
@@ -3364,9 +3555,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3364
3555
|
"postcss-only": "postcss-only";
|
|
3365
3556
|
}>;
|
|
3366
3557
|
uiLibrary: z.ZodEnum<{
|
|
3367
|
-
mui: "mui";
|
|
3368
3558
|
none: "none";
|
|
3369
3559
|
"shadcn-ui": "shadcn-ui";
|
|
3560
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
3370
3561
|
daisyui: "daisyui";
|
|
3371
3562
|
"radix-ui": "radix-ui";
|
|
3372
3563
|
"headless-ui": "headless-ui";
|
|
@@ -3374,6 +3565,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3374
3565
|
"chakra-ui": "chakra-ui";
|
|
3375
3566
|
nextui: "nextui";
|
|
3376
3567
|
mantine: "mantine";
|
|
3568
|
+
mui: "mui";
|
|
3377
3569
|
antd: "antd";
|
|
3378
3570
|
"base-ui": "base-ui";
|
|
3379
3571
|
"ark-ui": "ark-ui";
|
|
@@ -3495,6 +3687,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3495
3687
|
none: "none";
|
|
3496
3688
|
pino: "pino";
|
|
3497
3689
|
winston: "winston";
|
|
3690
|
+
evlog: "evlog";
|
|
3498
3691
|
}>;
|
|
3499
3692
|
observability: z.ZodEnum<{
|
|
3500
3693
|
none: "none";
|
|
@@ -3521,6 +3714,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3521
3714
|
sanity: "sanity";
|
|
3522
3715
|
strapi: "strapi";
|
|
3523
3716
|
tinacms: "tinacms";
|
|
3717
|
+
directus: "directus";
|
|
3524
3718
|
}>;
|
|
3525
3719
|
caching: z.ZodEnum<{
|
|
3526
3720
|
none: "none";
|
|
@@ -3542,6 +3736,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3542
3736
|
none: "none";
|
|
3543
3737
|
s3: "s3";
|
|
3544
3738
|
r2: "r2";
|
|
3739
|
+
cloudinary: "cloudinary";
|
|
3545
3740
|
}>;
|
|
3546
3741
|
mobileNavigation: z.ZodEnum<{
|
|
3547
3742
|
none: "none";
|
|
@@ -3706,8 +3901,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3706
3901
|
chi: "chi";
|
|
3707
3902
|
}>;
|
|
3708
3903
|
goOrm: z.ZodEnum<{
|
|
3709
|
-
gorm: "gorm";
|
|
3710
3904
|
none: "none";
|
|
3905
|
+
gorm: "gorm";
|
|
3711
3906
|
sqlc: "sqlc";
|
|
3712
3907
|
ent: "ent";
|
|
3713
3908
|
}>;
|
|
@@ -3870,10 +4065,69 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3870
4065
|
"agents-md": "agents-md";
|
|
3871
4066
|
cursorrules: "cursorrules";
|
|
3872
4067
|
}>>;
|
|
4068
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
|
+
id: z.ZodString;
|
|
4070
|
+
role: z.ZodEnum<{
|
|
4071
|
+
ai: "ai";
|
|
4072
|
+
database: "database";
|
|
4073
|
+
orm: "orm";
|
|
4074
|
+
auth: "auth";
|
|
4075
|
+
payments: "payments";
|
|
4076
|
+
frontend: "frontend";
|
|
4077
|
+
backend: "backend";
|
|
4078
|
+
runtime: "runtime";
|
|
4079
|
+
api: "api";
|
|
4080
|
+
stateManagement: "stateManagement";
|
|
4081
|
+
forms: "forms";
|
|
4082
|
+
testing: "testing";
|
|
4083
|
+
email: "email";
|
|
4084
|
+
validation: "validation";
|
|
4085
|
+
jobQueue: "jobQueue";
|
|
4086
|
+
logging: "logging";
|
|
4087
|
+
observability: "observability";
|
|
4088
|
+
featureFlags: "featureFlags";
|
|
4089
|
+
analytics: "analytics";
|
|
4090
|
+
cms: "cms";
|
|
4091
|
+
caching: "caching";
|
|
4092
|
+
i18n: "i18n";
|
|
4093
|
+
search: "search";
|
|
4094
|
+
fileStorage: "fileStorage";
|
|
4095
|
+
mobile: "mobile";
|
|
4096
|
+
deploy: "deploy";
|
|
4097
|
+
ui: "ui";
|
|
4098
|
+
css: "css";
|
|
4099
|
+
documentation: "documentation";
|
|
4100
|
+
codeQuality: "codeQuality";
|
|
4101
|
+
appPlatform: "appPlatform";
|
|
4102
|
+
}>;
|
|
4103
|
+
toolId: z.ZodString;
|
|
4104
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
4105
|
+
typescript: "typescript";
|
|
4106
|
+
"react-native": "react-native";
|
|
4107
|
+
rust: "rust";
|
|
4108
|
+
python: "python";
|
|
4109
|
+
go: "go";
|
|
4110
|
+
java: "java";
|
|
4111
|
+
elixir: "elixir";
|
|
4112
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
4113
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4114
|
+
source: z.ZodEnum<{
|
|
4115
|
+
selected: "selected";
|
|
4116
|
+
defaulted: "defaulted";
|
|
4117
|
+
provided: "provided";
|
|
4118
|
+
legacy: "legacy";
|
|
4119
|
+
adjusted: "adjusted";
|
|
4120
|
+
}>;
|
|
4121
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
4122
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
4123
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4124
|
+
}, z.core.$strip>>>;
|
|
3873
4125
|
}, z.core.$strip>;
|
|
3874
4126
|
declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
3875
4127
|
version: z.ZodString;
|
|
3876
4128
|
createdAt: z.ZodString;
|
|
4129
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4130
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3877
4131
|
ecosystem: z.ZodEnum<{
|
|
3878
4132
|
typescript: "typescript";
|
|
3879
4133
|
"react-native": "react-native";
|
|
@@ -3962,6 +4216,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
3962
4216
|
wxt: "wxt";
|
|
3963
4217
|
msw: "msw";
|
|
3964
4218
|
storybook: "storybook";
|
|
4219
|
+
swr: "swr";
|
|
3965
4220
|
"tanstack-query": "tanstack-query";
|
|
3966
4221
|
"tanstack-table": "tanstack-table";
|
|
3967
4222
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -3970,8 +4225,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
3970
4225
|
"docker-compose": "docker-compose";
|
|
3971
4226
|
}>>;
|
|
3972
4227
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3973
|
-
ai: "ai";
|
|
3974
4228
|
none: "none";
|
|
4229
|
+
ai: "ai";
|
|
3975
4230
|
"chat-sdk": "chat-sdk";
|
|
3976
4231
|
"tanstack-showcase": "tanstack-showcase";
|
|
3977
4232
|
}>>;
|
|
@@ -4064,8 +4319,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4064
4319
|
"ai-cli": "ai-cli";
|
|
4065
4320
|
}>;
|
|
4066
4321
|
effect: z.ZodEnum<{
|
|
4067
|
-
effect: "effect";
|
|
4068
4322
|
none: "none";
|
|
4323
|
+
effect: "effect";
|
|
4069
4324
|
"effect-full": "effect-full";
|
|
4070
4325
|
}>;
|
|
4071
4326
|
stateManagement: z.ZodEnum<{
|
|
@@ -4116,9 +4371,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4116
4371
|
"postcss-only": "postcss-only";
|
|
4117
4372
|
}>;
|
|
4118
4373
|
uiLibrary: z.ZodEnum<{
|
|
4119
|
-
mui: "mui";
|
|
4120
4374
|
none: "none";
|
|
4121
4375
|
"shadcn-ui": "shadcn-ui";
|
|
4376
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
4122
4377
|
daisyui: "daisyui";
|
|
4123
4378
|
"radix-ui": "radix-ui";
|
|
4124
4379
|
"headless-ui": "headless-ui";
|
|
@@ -4126,6 +4381,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4126
4381
|
"chakra-ui": "chakra-ui";
|
|
4127
4382
|
nextui: "nextui";
|
|
4128
4383
|
mantine: "mantine";
|
|
4384
|
+
mui: "mui";
|
|
4129
4385
|
antd: "antd";
|
|
4130
4386
|
"base-ui": "base-ui";
|
|
4131
4387
|
"ark-ui": "ark-ui";
|
|
@@ -4247,6 +4503,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4247
4503
|
none: "none";
|
|
4248
4504
|
pino: "pino";
|
|
4249
4505
|
winston: "winston";
|
|
4506
|
+
evlog: "evlog";
|
|
4250
4507
|
}>;
|
|
4251
4508
|
observability: z.ZodEnum<{
|
|
4252
4509
|
none: "none";
|
|
@@ -4273,6 +4530,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4273
4530
|
sanity: "sanity";
|
|
4274
4531
|
strapi: "strapi";
|
|
4275
4532
|
tinacms: "tinacms";
|
|
4533
|
+
directus: "directus";
|
|
4276
4534
|
}>;
|
|
4277
4535
|
caching: z.ZodEnum<{
|
|
4278
4536
|
none: "none";
|
|
@@ -4294,6 +4552,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4294
4552
|
none: "none";
|
|
4295
4553
|
s3: "s3";
|
|
4296
4554
|
r2: "r2";
|
|
4555
|
+
cloudinary: "cloudinary";
|
|
4297
4556
|
}>;
|
|
4298
4557
|
mobileNavigation: z.ZodEnum<{
|
|
4299
4558
|
none: "none";
|
|
@@ -4458,8 +4717,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4458
4717
|
chi: "chi";
|
|
4459
4718
|
}>;
|
|
4460
4719
|
goOrm: z.ZodEnum<{
|
|
4461
|
-
gorm: "gorm";
|
|
4462
4720
|
none: "none";
|
|
4721
|
+
gorm: "gorm";
|
|
4463
4722
|
sqlc: "sqlc";
|
|
4464
4723
|
ent: "ent";
|
|
4465
4724
|
}>;
|
|
@@ -4622,11 +4881,70 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4622
4881
|
"agents-md": "agents-md";
|
|
4623
4882
|
cursorrules: "cursorrules";
|
|
4624
4883
|
}>>;
|
|
4884
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
|
+
id: z.ZodString;
|
|
4886
|
+
role: z.ZodEnum<{
|
|
4887
|
+
ai: "ai";
|
|
4888
|
+
database: "database";
|
|
4889
|
+
orm: "orm";
|
|
4890
|
+
auth: "auth";
|
|
4891
|
+
payments: "payments";
|
|
4892
|
+
frontend: "frontend";
|
|
4893
|
+
backend: "backend";
|
|
4894
|
+
runtime: "runtime";
|
|
4895
|
+
api: "api";
|
|
4896
|
+
stateManagement: "stateManagement";
|
|
4897
|
+
forms: "forms";
|
|
4898
|
+
testing: "testing";
|
|
4899
|
+
email: "email";
|
|
4900
|
+
validation: "validation";
|
|
4901
|
+
jobQueue: "jobQueue";
|
|
4902
|
+
logging: "logging";
|
|
4903
|
+
observability: "observability";
|
|
4904
|
+
featureFlags: "featureFlags";
|
|
4905
|
+
analytics: "analytics";
|
|
4906
|
+
cms: "cms";
|
|
4907
|
+
caching: "caching";
|
|
4908
|
+
i18n: "i18n";
|
|
4909
|
+
search: "search";
|
|
4910
|
+
fileStorage: "fileStorage";
|
|
4911
|
+
mobile: "mobile";
|
|
4912
|
+
deploy: "deploy";
|
|
4913
|
+
ui: "ui";
|
|
4914
|
+
css: "css";
|
|
4915
|
+
documentation: "documentation";
|
|
4916
|
+
codeQuality: "codeQuality";
|
|
4917
|
+
appPlatform: "appPlatform";
|
|
4918
|
+
}>;
|
|
4919
|
+
toolId: z.ZodString;
|
|
4920
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
4921
|
+
typescript: "typescript";
|
|
4922
|
+
"react-native": "react-native";
|
|
4923
|
+
rust: "rust";
|
|
4924
|
+
python: "python";
|
|
4925
|
+
go: "go";
|
|
4926
|
+
java: "java";
|
|
4927
|
+
elixir: "elixir";
|
|
4928
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
4929
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4930
|
+
source: z.ZodEnum<{
|
|
4931
|
+
selected: "selected";
|
|
4932
|
+
defaulted: "defaulted";
|
|
4933
|
+
provided: "provided";
|
|
4934
|
+
legacy: "legacy";
|
|
4935
|
+
adjusted: "adjusted";
|
|
4936
|
+
}>;
|
|
4937
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
4938
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
4939
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4940
|
+
}, z.core.$strip>>>;
|
|
4625
4941
|
}, z.core.$strip>;
|
|
4626
4942
|
declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
4627
4943
|
$schema: z.ZodOptional<z.ZodString>;
|
|
4628
4944
|
version: z.ZodString;
|
|
4629
4945
|
createdAt: z.ZodString;
|
|
4946
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4947
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4630
4948
|
ecosystem: z.ZodEnum<{
|
|
4631
4949
|
typescript: "typescript";
|
|
4632
4950
|
"react-native": "react-native";
|
|
@@ -4715,6 +5033,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4715
5033
|
wxt: "wxt";
|
|
4716
5034
|
msw: "msw";
|
|
4717
5035
|
storybook: "storybook";
|
|
5036
|
+
swr: "swr";
|
|
4718
5037
|
"tanstack-query": "tanstack-query";
|
|
4719
5038
|
"tanstack-table": "tanstack-table";
|
|
4720
5039
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -4723,8 +5042,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4723
5042
|
"docker-compose": "docker-compose";
|
|
4724
5043
|
}>>;
|
|
4725
5044
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4726
|
-
ai: "ai";
|
|
4727
5045
|
none: "none";
|
|
5046
|
+
ai: "ai";
|
|
4728
5047
|
"chat-sdk": "chat-sdk";
|
|
4729
5048
|
"tanstack-showcase": "tanstack-showcase";
|
|
4730
5049
|
}>>;
|
|
@@ -4817,8 +5136,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4817
5136
|
"ai-cli": "ai-cli";
|
|
4818
5137
|
}>;
|
|
4819
5138
|
effect: z.ZodEnum<{
|
|
4820
|
-
effect: "effect";
|
|
4821
5139
|
none: "none";
|
|
5140
|
+
effect: "effect";
|
|
4822
5141
|
"effect-full": "effect-full";
|
|
4823
5142
|
}>;
|
|
4824
5143
|
stateManagement: z.ZodEnum<{
|
|
@@ -4869,9 +5188,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4869
5188
|
"postcss-only": "postcss-only";
|
|
4870
5189
|
}>;
|
|
4871
5190
|
uiLibrary: z.ZodEnum<{
|
|
4872
|
-
mui: "mui";
|
|
4873
5191
|
none: "none";
|
|
4874
5192
|
"shadcn-ui": "shadcn-ui";
|
|
5193
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
4875
5194
|
daisyui: "daisyui";
|
|
4876
5195
|
"radix-ui": "radix-ui";
|
|
4877
5196
|
"headless-ui": "headless-ui";
|
|
@@ -4879,6 +5198,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4879
5198
|
"chakra-ui": "chakra-ui";
|
|
4880
5199
|
nextui: "nextui";
|
|
4881
5200
|
mantine: "mantine";
|
|
5201
|
+
mui: "mui";
|
|
4882
5202
|
antd: "antd";
|
|
4883
5203
|
"base-ui": "base-ui";
|
|
4884
5204
|
"ark-ui": "ark-ui";
|
|
@@ -5000,6 +5320,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5000
5320
|
none: "none";
|
|
5001
5321
|
pino: "pino";
|
|
5002
5322
|
winston: "winston";
|
|
5323
|
+
evlog: "evlog";
|
|
5003
5324
|
}>;
|
|
5004
5325
|
observability: z.ZodEnum<{
|
|
5005
5326
|
none: "none";
|
|
@@ -5026,6 +5347,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5026
5347
|
sanity: "sanity";
|
|
5027
5348
|
strapi: "strapi";
|
|
5028
5349
|
tinacms: "tinacms";
|
|
5350
|
+
directus: "directus";
|
|
5029
5351
|
}>;
|
|
5030
5352
|
caching: z.ZodEnum<{
|
|
5031
5353
|
none: "none";
|
|
@@ -5047,6 +5369,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5047
5369
|
none: "none";
|
|
5048
5370
|
s3: "s3";
|
|
5049
5371
|
r2: "r2";
|
|
5372
|
+
cloudinary: "cloudinary";
|
|
5050
5373
|
}>;
|
|
5051
5374
|
mobileNavigation: z.ZodEnum<{
|
|
5052
5375
|
none: "none";
|
|
@@ -5211,8 +5534,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5211
5534
|
chi: "chi";
|
|
5212
5535
|
}>;
|
|
5213
5536
|
goOrm: z.ZodEnum<{
|
|
5214
|
-
gorm: "gorm";
|
|
5215
5537
|
none: "none";
|
|
5538
|
+
gorm: "gorm";
|
|
5216
5539
|
sqlc: "sqlc";
|
|
5217
5540
|
ent: "ent";
|
|
5218
5541
|
}>;
|
|
@@ -5375,11 +5698,70 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5375
5698
|
"agents-md": "agents-md";
|
|
5376
5699
|
cursorrules: "cursorrules";
|
|
5377
5700
|
}>>;
|
|
5701
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
|
+
id: z.ZodString;
|
|
5703
|
+
role: z.ZodEnum<{
|
|
5704
|
+
ai: "ai";
|
|
5705
|
+
database: "database";
|
|
5706
|
+
orm: "orm";
|
|
5707
|
+
auth: "auth";
|
|
5708
|
+
payments: "payments";
|
|
5709
|
+
frontend: "frontend";
|
|
5710
|
+
backend: "backend";
|
|
5711
|
+
runtime: "runtime";
|
|
5712
|
+
api: "api";
|
|
5713
|
+
stateManagement: "stateManagement";
|
|
5714
|
+
forms: "forms";
|
|
5715
|
+
testing: "testing";
|
|
5716
|
+
email: "email";
|
|
5717
|
+
validation: "validation";
|
|
5718
|
+
jobQueue: "jobQueue";
|
|
5719
|
+
logging: "logging";
|
|
5720
|
+
observability: "observability";
|
|
5721
|
+
featureFlags: "featureFlags";
|
|
5722
|
+
analytics: "analytics";
|
|
5723
|
+
cms: "cms";
|
|
5724
|
+
caching: "caching";
|
|
5725
|
+
i18n: "i18n";
|
|
5726
|
+
search: "search";
|
|
5727
|
+
fileStorage: "fileStorage";
|
|
5728
|
+
mobile: "mobile";
|
|
5729
|
+
deploy: "deploy";
|
|
5730
|
+
ui: "ui";
|
|
5731
|
+
css: "css";
|
|
5732
|
+
documentation: "documentation";
|
|
5733
|
+
codeQuality: "codeQuality";
|
|
5734
|
+
appPlatform: "appPlatform";
|
|
5735
|
+
}>;
|
|
5736
|
+
toolId: z.ZodString;
|
|
5737
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
5738
|
+
typescript: "typescript";
|
|
5739
|
+
"react-native": "react-native";
|
|
5740
|
+
rust: "rust";
|
|
5741
|
+
python: "python";
|
|
5742
|
+
go: "go";
|
|
5743
|
+
java: "java";
|
|
5744
|
+
elixir: "elixir";
|
|
5745
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
5746
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
5747
|
+
source: z.ZodEnum<{
|
|
5748
|
+
selected: "selected";
|
|
5749
|
+
defaulted: "defaulted";
|
|
5750
|
+
provided: "provided";
|
|
5751
|
+
legacy: "legacy";
|
|
5752
|
+
adjusted: "adjusted";
|
|
5753
|
+
}>;
|
|
5754
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
5755
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
5756
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5757
|
+
}, z.core.$strip>>>;
|
|
5378
5758
|
}, z.core.$strip>;
|
|
5379
5759
|
declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
5380
5760
|
$schema: z.ZodOptional<z.ZodString>;
|
|
5381
5761
|
version: z.ZodString;
|
|
5382
5762
|
createdAt: z.ZodString;
|
|
5763
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
5764
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5383
5765
|
ecosystem: z.ZodEnum<{
|
|
5384
5766
|
typescript: "typescript";
|
|
5385
5767
|
"react-native": "react-native";
|
|
@@ -5468,6 +5850,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5468
5850
|
wxt: "wxt";
|
|
5469
5851
|
msw: "msw";
|
|
5470
5852
|
storybook: "storybook";
|
|
5853
|
+
swr: "swr";
|
|
5471
5854
|
"tanstack-query": "tanstack-query";
|
|
5472
5855
|
"tanstack-table": "tanstack-table";
|
|
5473
5856
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -5476,8 +5859,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5476
5859
|
"docker-compose": "docker-compose";
|
|
5477
5860
|
}>>;
|
|
5478
5861
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5479
|
-
ai: "ai";
|
|
5480
5862
|
none: "none";
|
|
5863
|
+
ai: "ai";
|
|
5481
5864
|
"chat-sdk": "chat-sdk";
|
|
5482
5865
|
"tanstack-showcase": "tanstack-showcase";
|
|
5483
5866
|
}>>;
|
|
@@ -5570,8 +5953,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5570
5953
|
"ai-cli": "ai-cli";
|
|
5571
5954
|
}>;
|
|
5572
5955
|
effect: z.ZodEnum<{
|
|
5573
|
-
effect: "effect";
|
|
5574
5956
|
none: "none";
|
|
5957
|
+
effect: "effect";
|
|
5575
5958
|
"effect-full": "effect-full";
|
|
5576
5959
|
}>;
|
|
5577
5960
|
stateManagement: z.ZodEnum<{
|
|
@@ -5622,9 +6005,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5622
6005
|
"postcss-only": "postcss-only";
|
|
5623
6006
|
}>;
|
|
5624
6007
|
uiLibrary: z.ZodEnum<{
|
|
5625
|
-
mui: "mui";
|
|
5626
6008
|
none: "none";
|
|
5627
6009
|
"shadcn-ui": "shadcn-ui";
|
|
6010
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
5628
6011
|
daisyui: "daisyui";
|
|
5629
6012
|
"radix-ui": "radix-ui";
|
|
5630
6013
|
"headless-ui": "headless-ui";
|
|
@@ -5632,6 +6015,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5632
6015
|
"chakra-ui": "chakra-ui";
|
|
5633
6016
|
nextui: "nextui";
|
|
5634
6017
|
mantine: "mantine";
|
|
6018
|
+
mui: "mui";
|
|
5635
6019
|
antd: "antd";
|
|
5636
6020
|
"base-ui": "base-ui";
|
|
5637
6021
|
"ark-ui": "ark-ui";
|
|
@@ -5753,6 +6137,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5753
6137
|
none: "none";
|
|
5754
6138
|
pino: "pino";
|
|
5755
6139
|
winston: "winston";
|
|
6140
|
+
evlog: "evlog";
|
|
5756
6141
|
}>;
|
|
5757
6142
|
observability: z.ZodEnum<{
|
|
5758
6143
|
none: "none";
|
|
@@ -5779,6 +6164,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5779
6164
|
sanity: "sanity";
|
|
5780
6165
|
strapi: "strapi";
|
|
5781
6166
|
tinacms: "tinacms";
|
|
6167
|
+
directus: "directus";
|
|
5782
6168
|
}>;
|
|
5783
6169
|
caching: z.ZodEnum<{
|
|
5784
6170
|
none: "none";
|
|
@@ -5800,6 +6186,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5800
6186
|
none: "none";
|
|
5801
6187
|
s3: "s3";
|
|
5802
6188
|
r2: "r2";
|
|
6189
|
+
cloudinary: "cloudinary";
|
|
5803
6190
|
}>;
|
|
5804
6191
|
mobileNavigation: z.ZodEnum<{
|
|
5805
6192
|
none: "none";
|
|
@@ -5964,8 +6351,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5964
6351
|
chi: "chi";
|
|
5965
6352
|
}>;
|
|
5966
6353
|
goOrm: z.ZodEnum<{
|
|
5967
|
-
gorm: "gorm";
|
|
5968
6354
|
none: "none";
|
|
6355
|
+
gorm: "gorm";
|
|
5969
6356
|
sqlc: "sqlc";
|
|
5970
6357
|
ent: "ent";
|
|
5971
6358
|
}>;
|
|
@@ -6128,6 +6515,63 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6128
6515
|
"agents-md": "agents-md";
|
|
6129
6516
|
cursorrules: "cursorrules";
|
|
6130
6517
|
}>>;
|
|
6518
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
|
+
id: z.ZodString;
|
|
6520
|
+
role: z.ZodEnum<{
|
|
6521
|
+
ai: "ai";
|
|
6522
|
+
database: "database";
|
|
6523
|
+
orm: "orm";
|
|
6524
|
+
auth: "auth";
|
|
6525
|
+
payments: "payments";
|
|
6526
|
+
frontend: "frontend";
|
|
6527
|
+
backend: "backend";
|
|
6528
|
+
runtime: "runtime";
|
|
6529
|
+
api: "api";
|
|
6530
|
+
stateManagement: "stateManagement";
|
|
6531
|
+
forms: "forms";
|
|
6532
|
+
testing: "testing";
|
|
6533
|
+
email: "email";
|
|
6534
|
+
validation: "validation";
|
|
6535
|
+
jobQueue: "jobQueue";
|
|
6536
|
+
logging: "logging";
|
|
6537
|
+
observability: "observability";
|
|
6538
|
+
featureFlags: "featureFlags";
|
|
6539
|
+
analytics: "analytics";
|
|
6540
|
+
cms: "cms";
|
|
6541
|
+
caching: "caching";
|
|
6542
|
+
i18n: "i18n";
|
|
6543
|
+
search: "search";
|
|
6544
|
+
fileStorage: "fileStorage";
|
|
6545
|
+
mobile: "mobile";
|
|
6546
|
+
deploy: "deploy";
|
|
6547
|
+
ui: "ui";
|
|
6548
|
+
css: "css";
|
|
6549
|
+
documentation: "documentation";
|
|
6550
|
+
codeQuality: "codeQuality";
|
|
6551
|
+
appPlatform: "appPlatform";
|
|
6552
|
+
}>;
|
|
6553
|
+
toolId: z.ZodString;
|
|
6554
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
6555
|
+
typescript: "typescript";
|
|
6556
|
+
"react-native": "react-native";
|
|
6557
|
+
rust: "rust";
|
|
6558
|
+
python: "python";
|
|
6559
|
+
go: "go";
|
|
6560
|
+
java: "java";
|
|
6561
|
+
elixir: "elixir";
|
|
6562
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
6563
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6564
|
+
source: z.ZodEnum<{
|
|
6565
|
+
selected: "selected";
|
|
6566
|
+
defaulted: "defaulted";
|
|
6567
|
+
provided: "provided";
|
|
6568
|
+
legacy: "legacy";
|
|
6569
|
+
adjusted: "adjusted";
|
|
6570
|
+
}>;
|
|
6571
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
6572
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
6573
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6574
|
+
}, z.core.$strip>>>;
|
|
6131
6575
|
}, z.core.$strip>;
|
|
6132
6576
|
declare const InitResultSchema: z.ZodObject<{
|
|
6133
6577
|
success: z.ZodBoolean;
|
|
@@ -6223,6 +6667,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6223
6667
|
wxt: "wxt";
|
|
6224
6668
|
msw: "msw";
|
|
6225
6669
|
storybook: "storybook";
|
|
6670
|
+
swr: "swr";
|
|
6226
6671
|
"tanstack-query": "tanstack-query";
|
|
6227
6672
|
"tanstack-table": "tanstack-table";
|
|
6228
6673
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -6231,8 +6676,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6231
6676
|
"docker-compose": "docker-compose";
|
|
6232
6677
|
}>>;
|
|
6233
6678
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6234
|
-
ai: "ai";
|
|
6235
6679
|
none: "none";
|
|
6680
|
+
ai: "ai";
|
|
6236
6681
|
"chat-sdk": "chat-sdk";
|
|
6237
6682
|
"tanstack-showcase": "tanstack-showcase";
|
|
6238
6683
|
}>>;
|
|
@@ -6327,8 +6772,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6327
6772
|
"ai-cli": "ai-cli";
|
|
6328
6773
|
}>;
|
|
6329
6774
|
effect: z.ZodEnum<{
|
|
6330
|
-
effect: "effect";
|
|
6331
6775
|
none: "none";
|
|
6776
|
+
effect: "effect";
|
|
6332
6777
|
"effect-full": "effect-full";
|
|
6333
6778
|
}>;
|
|
6334
6779
|
stateManagement: z.ZodEnum<{
|
|
@@ -6379,9 +6824,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6379
6824
|
"postcss-only": "postcss-only";
|
|
6380
6825
|
}>;
|
|
6381
6826
|
uiLibrary: z.ZodEnum<{
|
|
6382
|
-
mui: "mui";
|
|
6383
6827
|
none: "none";
|
|
6384
6828
|
"shadcn-ui": "shadcn-ui";
|
|
6829
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
6385
6830
|
daisyui: "daisyui";
|
|
6386
6831
|
"radix-ui": "radix-ui";
|
|
6387
6832
|
"headless-ui": "headless-ui";
|
|
@@ -6389,6 +6834,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6389
6834
|
"chakra-ui": "chakra-ui";
|
|
6390
6835
|
nextui: "nextui";
|
|
6391
6836
|
mantine: "mantine";
|
|
6837
|
+
mui: "mui";
|
|
6392
6838
|
antd: "antd";
|
|
6393
6839
|
"base-ui": "base-ui";
|
|
6394
6840
|
"ark-ui": "ark-ui";
|
|
@@ -6510,6 +6956,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6510
6956
|
none: "none";
|
|
6511
6957
|
pino: "pino";
|
|
6512
6958
|
winston: "winston";
|
|
6959
|
+
evlog: "evlog";
|
|
6513
6960
|
}>;
|
|
6514
6961
|
observability: z.ZodEnum<{
|
|
6515
6962
|
none: "none";
|
|
@@ -6536,6 +6983,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6536
6983
|
sanity: "sanity";
|
|
6537
6984
|
strapi: "strapi";
|
|
6538
6985
|
tinacms: "tinacms";
|
|
6986
|
+
directus: "directus";
|
|
6539
6987
|
}>;
|
|
6540
6988
|
caching: z.ZodEnum<{
|
|
6541
6989
|
none: "none";
|
|
@@ -6557,6 +7005,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6557
7005
|
none: "none";
|
|
6558
7006
|
s3: "s3";
|
|
6559
7007
|
r2: "r2";
|
|
7008
|
+
cloudinary: "cloudinary";
|
|
6560
7009
|
}>;
|
|
6561
7010
|
mobileNavigation: z.ZodEnum<{
|
|
6562
7011
|
none: "none";
|
|
@@ -6721,8 +7170,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6721
7170
|
chi: "chi";
|
|
6722
7171
|
}>;
|
|
6723
7172
|
goOrm: z.ZodEnum<{
|
|
6724
|
-
gorm: "gorm";
|
|
6725
7173
|
none: "none";
|
|
7174
|
+
gorm: "gorm";
|
|
6726
7175
|
sqlc: "sqlc";
|
|
6727
7176
|
ent: "ent";
|
|
6728
7177
|
}>;
|
|
@@ -6885,6 +7334,63 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6885
7334
|
"agents-md": "agents-md";
|
|
6886
7335
|
cursorrules: "cursorrules";
|
|
6887
7336
|
}>>;
|
|
7337
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
|
+
id: z.ZodString;
|
|
7339
|
+
role: z.ZodEnum<{
|
|
7340
|
+
ai: "ai";
|
|
7341
|
+
database: "database";
|
|
7342
|
+
orm: "orm";
|
|
7343
|
+
auth: "auth";
|
|
7344
|
+
payments: "payments";
|
|
7345
|
+
frontend: "frontend";
|
|
7346
|
+
backend: "backend";
|
|
7347
|
+
runtime: "runtime";
|
|
7348
|
+
api: "api";
|
|
7349
|
+
stateManagement: "stateManagement";
|
|
7350
|
+
forms: "forms";
|
|
7351
|
+
testing: "testing";
|
|
7352
|
+
email: "email";
|
|
7353
|
+
validation: "validation";
|
|
7354
|
+
jobQueue: "jobQueue";
|
|
7355
|
+
logging: "logging";
|
|
7356
|
+
observability: "observability";
|
|
7357
|
+
featureFlags: "featureFlags";
|
|
7358
|
+
analytics: "analytics";
|
|
7359
|
+
cms: "cms";
|
|
7360
|
+
caching: "caching";
|
|
7361
|
+
i18n: "i18n";
|
|
7362
|
+
search: "search";
|
|
7363
|
+
fileStorage: "fileStorage";
|
|
7364
|
+
mobile: "mobile";
|
|
7365
|
+
deploy: "deploy";
|
|
7366
|
+
ui: "ui";
|
|
7367
|
+
css: "css";
|
|
7368
|
+
documentation: "documentation";
|
|
7369
|
+
codeQuality: "codeQuality";
|
|
7370
|
+
appPlatform: "appPlatform";
|
|
7371
|
+
}>;
|
|
7372
|
+
toolId: z.ZodString;
|
|
7373
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
7374
|
+
typescript: "typescript";
|
|
7375
|
+
"react-native": "react-native";
|
|
7376
|
+
rust: "rust";
|
|
7377
|
+
python: "python";
|
|
7378
|
+
go: "go";
|
|
7379
|
+
java: "java";
|
|
7380
|
+
elixir: "elixir";
|
|
7381
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
7382
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7383
|
+
source: z.ZodEnum<{
|
|
7384
|
+
selected: "selected";
|
|
7385
|
+
defaulted: "defaulted";
|
|
7386
|
+
provided: "provided";
|
|
7387
|
+
legacy: "legacy";
|
|
7388
|
+
adjusted: "adjusted";
|
|
7389
|
+
}>;
|
|
7390
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
7391
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
7392
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7393
|
+
}, z.core.$strip>>>;
|
|
6888
7394
|
}, z.core.$strip>;
|
|
6889
7395
|
reproducibleCommand: z.ZodString;
|
|
6890
7396
|
timeScaffolded: z.ZodString;
|
|
@@ -6892,14 +7398,18 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6892
7398
|
projectDirectory: z.ZodString;
|
|
6893
7399
|
relativePath: z.ZodString;
|
|
6894
7400
|
error: z.ZodOptional<z.ZodString>;
|
|
7401
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
7402
|
+
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
7403
|
+
directoryCount: z.ZodOptional<z.ZodNumber>;
|
|
7404
|
+
files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6895
7405
|
}, z.core.$strip>;
|
|
6896
7406
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
6897
7407
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
6898
7408
|
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
6899
7409
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
6900
7410
|
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")[];
|
|
6901
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
|
|
6902
|
-
declare const EXAMPLES_VALUES: ("
|
|
7411
|
+
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
|
|
7412
|
+
declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
|
|
6903
7413
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
6904
7414
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
6905
7415
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
@@ -6912,19 +7422,19 @@ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" |
|
|
|
6912
7422
|
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
6913
7423
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
6914
7424
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
6915
|
-
declare const EFFECT_VALUES: ("
|
|
7425
|
+
declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
|
|
6916
7426
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
6917
7427
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
6918
7428
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
6919
7429
|
declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
|
|
6920
7430
|
declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
|
|
6921
|
-
declare const UI_LIBRARY_VALUES: ("
|
|
7431
|
+
declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "mui" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
|
|
6922
7432
|
declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
|
|
6923
7433
|
declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
|
|
6924
7434
|
declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
|
|
6925
7435
|
declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
|
|
6926
7436
|
declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
|
|
6927
|
-
declare const LOGGING_VALUES: ("none" | "pino" | "winston")[];
|
|
7437
|
+
declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
|
|
6928
7438
|
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
|
|
6929
7439
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
6930
7440
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
@@ -6935,11 +7445,11 @@ declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing
|
|
|
6935
7445
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
6936
7446
|
declare const MOBILE_OTA_VALUES: ("none" | "expo-updates")[];
|
|
6937
7447
|
declare const MOBILE_DEEP_LINKING_VALUES: ("none" | "expo-linking")[];
|
|
6938
|
-
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms")[];
|
|
7448
|
+
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus")[];
|
|
6939
7449
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
6940
7450
|
declare const I18N_VALUES: ("none" | "i18next" | "next-intl")[];
|
|
6941
7451
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia")[];
|
|
6942
|
-
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
|
|
7452
|
+
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2" | "cloudinary")[];
|
|
6943
7453
|
declare const ECOSYSTEM_VALUES: ("typescript" | "react-native" | "rust" | "python" | "go" | "java" | "elixir")[];
|
|
6944
7454
|
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web" | "rocket")[];
|
|
6945
7455
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
@@ -6961,7 +7471,7 @@ declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" |
|
|
|
6961
7471
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
6962
7472
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
6963
7473
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
6964
|
-
declare const GO_ORM_VALUES: ("
|
|
7474
|
+
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc" | "ent")[];
|
|
6965
7475
|
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
6966
7476
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
6967
7477
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
@@ -6996,5 +7506,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
6996
7506
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
6997
7507
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
6998
7508
|
//#endregion
|
|
6999
|
-
export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn,
|
|
7000
|
-
//# sourceMappingURL=schemas-
|
|
7509
|
+
export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, ValidationSchema as $r, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn, StackPartEcosystemSchema as Br, GoCliSchema as Bt, BetterTStackConfigSchema as C, OBSERVABILITY_VALUES as Cn, SHADCN_BASE_COLOR_VALUES as Cr, FILE_STORAGE_VALUES as Ct, CMS_VALUES as D, PACKAGE_MANAGER_VALUES as Dn, SHADCN_ICON_LIBRARY_VALUES as Dr, FeatureFlagsSchema as Dt, CMSSchema as E, ObservabilitySchema as En, SHADCN_FONT_VALUES as Er, FRONTEND_VALUES as Et, DatabaseSchema as F, PYTHON_TASK_QUEUE_VALUES as Fn, ShadcnColorThemeSchema as Fr, GO_LOGGING_VALUES as Ft, ELIXIR_HTTP_VALUES as G, PythonGraphqlSchema as Gn, TEMPLATE_VALUES as Gr, I18nSchema as Gt, ELIXIR_CACHING_VALUES as H, PythonAiSchema as Hn, StackPartSchema as Hr, GoOrmSchema as Ht, DatabaseSetupSchema as I, PYTHON_VALIDATION_VALUES as In, ShadcnFontSchema as Ir, GO_ORM_VALUES as It, ELIXIR_OBSERVABILITY_VALUES as J, PythonTaskQueueSchema as Jn, TestingSchema as Jr, JAVA_BUILD_TOOL_VALUES as Jt, ELIXIR_JOBS_VALUES as K, PythonOrmSchema as Kn, TESTING_VALUES as Kr, InitResultSchema as Kt, DirectoryConflictSchema as L, PYTHON_WEB_FRAMEWORK_VALUES as Ln, ShadcnIconLibrarySchema as Lr, GO_WEB_FRAMEWORK_VALUES as Lt, DATABASE_SETUP_VALUES as M, PYTHON_GRAPHQL_VALUES as Mn, ServerDeploySchema as Mr, GO_API_VALUES as Mt, DATABASE_VALUES as N, PYTHON_ORM_VALUES as Nn, ShadcnBaseColorSchema as Nr, GO_AUTH_VALUES as Nt, CSSFrameworkSchema as O, PAYMENTS_VALUES as On, SHADCN_RADIUS_VALUES as Or, FileStorageSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, PYTHON_QUALITY_VALUES as Pn, ShadcnBaseSchema as Pr, GO_CLI_VALUES as Pt, ELIXIR_TESTING_VALUES as Q, RUNTIME_VALUES as Qn, VERSION_CHANNEL_VALUES as Qr, JAVA_WEB_FRAMEWORK_VALUES as Qt, ECOSYSTEM_VALUES as R, PackageManagerSchema as Rn, ShadcnRadiusSchema as Rr, GoApiSchema as Rt, BetterTStackConfigFileSchema as S, MobileUISchema as Sn, SERVER_DEPLOY_VALUES as Sr, FEATURE_FLAGS_VALUES as St, CLIInputSchema as T, ORM_VALUES as Tn, SHADCN_COLOR_THEME_VALUES as Tr, FORMS_VALUES as Tt, ELIXIR_DEPLOY_VALUES as U, PythonApiSchema as Un, StackPartSourceSchema as Ur, GoWebFrameworkSchema as Ut, ELIXIR_AUTH_VALUES as V, ProjectNameSchema as Vn, StackPartRoleSchema as Vr, GoLoggingSchema as Vt, ELIXIR_EMAIL_VALUES as W, PythonAuthSchema as Wn, StateManagementSchema as Wr, I18N_VALUES as Wt, ELIXIR_QUALITY_VALUES as X, PythonWebFrameworkSchema as Xn, UI_LIBRARY_VALUES as Xr, JAVA_ORM_VALUES as Xt, ELIXIR_ORM_VALUES as Y, PythonValidationSchema as Yn, UILibrarySchema as Yr, JAVA_LIBRARIES_VALUES as Yt, ELIXIR_REALTIME_VALUES as Z, REALTIME_VALUES as Zn, VALIDATION_VALUES as Zr, JAVA_TESTING_LIBRARIES_VALUES as Zt, AuthSchema as _, MobileNavigationSchema as _n, RustLibrariesSchema as _r, ElixirTestingSchema as _t, ANALYTICS_VALUES as a, JavaWebFrameworkSchema as an, RUST_LIBRARIES_VALUES as ar, ElixirApiSchema as at, BetterFullstackConfigFileSchema as b, MobileStorageSchema as bn, RustWebFrameworkSchema as br, EmailSchema as bt, API_VALUES as c, LoggingSchema as cn, RUST_WEB_FRAMEWORK_VALUES as cr, ElixirDeploySchema as ct, AddInputSchema as d, MOBILE_OTA_VALUES as dn, RustApiSchema as dr, ElixirJobsSchema as dt, VersionChannelSchema as ei, JavaAuthSchema as en, RUST_AUTH_VALUES as er, ELIXIR_WEB_FRAMEWORK_VALUES as et, AddonsSchema as f, MOBILE_PUSH_VALUES as fn, RustAuthSchema as fr, ElixirJsonSchema as ft, AstroIntegrationSchema as g, MobileDeepLinkingSchema as gn, RustFrontendSchema as gr, ElixirRealtimeSchema as gt, AnimationSchema as h, MOBILE_UI_VALUES as hn, RustErrorHandlingSchema as hr, ElixirQualitySchema as ht, AI_VALUES as i, JavaTestingLibrariesSchema as in, RUST_FRONTEND_VALUES as ir, EffectSchema as it, CreateInputSchema as j, PYTHON_AUTH_VALUES as jn, SearchSchema as jr, FrontendSchema as jt, CSS_FRAMEWORK_VALUES as k, PYTHON_AI_VALUES as kn, SHADCN_STYLE_VALUES as kr, FileUploadSchema as kt, ASTRO_INTEGRATION_VALUES as l, MOBILE_DEEP_LINKING_VALUES as ln, RealtimeSchema as lr, ElixirEmailSchema as lt, AnalyticsSchema as m, MOBILE_TESTING_VALUES as mn, RustCliSchema as mr, ElixirOrmSchema as mt, AISchema as n, WebDeploySchema as ni, JavaLibrariesSchema as nn, RUST_CLI_VALUES as nr, EXAMPLES_VALUES as nt, ANIMATION_VALUES as o, JobQueueSchema as on, RUST_LOGGING_VALUES as or, ElixirAuthSchema as ot, AiDocsSchema as p, MOBILE_STORAGE_VALUES as pn, RustCachingSchema as pr, ElixirObservabilitySchema as pt, ELIXIR_JSON_VALUES as q, PythonQualitySchema as qn, TemplateSchema as qr, JAVA_AUTH_VALUES as qt, AI_DOCS_VALUES as r, JavaOrmSchema as rn, RUST_ERROR_HANDLING_VALUES as rr, EcosystemSchema as rt, APISchema as s, LOGGING_VALUES as sn, RUST_ORM_VALUES as sr, ElixirCachingSchema as st, ADDONS_VALUES as t, WEB_DEPLOY_VALUES as ti, JavaBuildToolSchema as tn, RUST_CACHING_VALUES as tr, EMAIL_VALUES as tt, AUTH_VALUES as u, MOBILE_NAVIGATION_VALUES as un, RuntimeSchema as ur, ElixirHttpSchema as ut, BACKEND_VALUES as v, MobileOTASchema as vn, RustLoggingSchema as vr, ElixirValidationSchema as vt, CACHING_VALUES as w, ORMSchema as wn, SHADCN_BASE_VALUES as wr, FILE_UPLOAD_VALUES as wt, BetterFullstackConfigSchema as x, MobileTestingSchema as xn, SEARCH_VALUES as xr, ExamplesSchema as xt, BackendSchema as y, MobilePushSchema as yn, RustOrmSchema as yr, ElixirWebFrameworkSchema as yt, EFFECT_VALUES as z, PaymentsSchema as zn, ShadcnStyleSchema as zr, GoAuthSchema as zt };
|
|
7510
|
+
//# sourceMappingURL=schemas-B5EgRfVL.d.mts.map
|