@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
package/dist/json-schema.d.mts
CHANGED
|
@@ -80,6 +80,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
80
80
|
wxt: "wxt";
|
|
81
81
|
msw: "msw";
|
|
82
82
|
storybook: "storybook";
|
|
83
|
+
swr: "swr";
|
|
83
84
|
"tanstack-query": "tanstack-query";
|
|
84
85
|
"tanstack-table": "tanstack-table";
|
|
85
86
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -88,8 +89,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
88
89
|
"docker-compose": "docker-compose";
|
|
89
90
|
}>>;
|
|
90
91
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
91
|
-
ai: "ai";
|
|
92
92
|
none: "none";
|
|
93
|
+
ai: "ai";
|
|
93
94
|
"chat-sdk": "chat-sdk";
|
|
94
95
|
"tanstack-showcase": "tanstack-showcase";
|
|
95
96
|
}>>;
|
|
@@ -181,6 +182,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
181
182
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
182
183
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
183
184
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
185
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
184
186
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
185
187
|
typescript: "typescript";
|
|
186
188
|
"react-native": "react-native";
|
|
@@ -267,6 +269,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
267
269
|
wxt: "wxt";
|
|
268
270
|
msw: "msw";
|
|
269
271
|
storybook: "storybook";
|
|
272
|
+
swr: "swr";
|
|
270
273
|
"tanstack-query": "tanstack-query";
|
|
271
274
|
"tanstack-table": "tanstack-table";
|
|
272
275
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -275,8 +278,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
275
278
|
"docker-compose": "docker-compose";
|
|
276
279
|
}>>>;
|
|
277
280
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
278
|
-
ai: "ai";
|
|
279
281
|
none: "none";
|
|
282
|
+
ai: "ai";
|
|
280
283
|
"chat-sdk": "chat-sdk";
|
|
281
284
|
"tanstack-showcase": "tanstack-showcase";
|
|
282
285
|
}>>>;
|
|
@@ -382,8 +385,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
382
385
|
"ai-cli": "ai-cli";
|
|
383
386
|
}>>;
|
|
384
387
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
385
|
-
effect: "effect";
|
|
386
388
|
none: "none";
|
|
389
|
+
effect: "effect";
|
|
387
390
|
"effect-full": "effect-full";
|
|
388
391
|
}>>;
|
|
389
392
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -434,9 +437,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
434
437
|
"postcss-only": "postcss-only";
|
|
435
438
|
}>>;
|
|
436
439
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
437
|
-
mui: "mui";
|
|
438
440
|
none: "none";
|
|
439
441
|
"shadcn-ui": "shadcn-ui";
|
|
442
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
440
443
|
daisyui: "daisyui";
|
|
441
444
|
"radix-ui": "radix-ui";
|
|
442
445
|
"headless-ui": "headless-ui";
|
|
@@ -444,6 +447,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
444
447
|
"chakra-ui": "chakra-ui";
|
|
445
448
|
nextui: "nextui";
|
|
446
449
|
mantine: "mantine";
|
|
450
|
+
mui: "mui";
|
|
447
451
|
antd: "antd";
|
|
448
452
|
"base-ui": "base-ui";
|
|
449
453
|
"ark-ui": "ark-ui";
|
|
@@ -565,6 +569,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
565
569
|
none: "none";
|
|
566
570
|
pino: "pino";
|
|
567
571
|
winston: "winston";
|
|
572
|
+
evlog: "evlog";
|
|
568
573
|
}>>;
|
|
569
574
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
570
575
|
none: "none";
|
|
@@ -591,6 +596,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
591
596
|
sanity: "sanity";
|
|
592
597
|
strapi: "strapi";
|
|
593
598
|
tinacms: "tinacms";
|
|
599
|
+
directus: "directus";
|
|
594
600
|
}>>;
|
|
595
601
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
596
602
|
none: "none";
|
|
@@ -612,6 +618,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
612
618
|
none: "none";
|
|
613
619
|
s3: "s3";
|
|
614
620
|
r2: "r2";
|
|
621
|
+
cloudinary: "cloudinary";
|
|
615
622
|
}>>;
|
|
616
623
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
617
624
|
none: "none";
|
|
@@ -776,8 +783,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
776
783
|
chi: "chi";
|
|
777
784
|
}>>;
|
|
778
785
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
779
|
-
gorm: "gorm";
|
|
780
786
|
none: "none";
|
|
787
|
+
gorm: "gorm";
|
|
781
788
|
sqlc: "sqlc";
|
|
782
789
|
ent: "ent";
|
|
783
790
|
}>>;
|
|
@@ -940,6 +947,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
940
947
|
"agents-md": "agents-md";
|
|
941
948
|
cursorrules: "cursorrules";
|
|
942
949
|
}>>>;
|
|
950
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
943
951
|
}, z.core.$strip>>;
|
|
944
952
|
declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
945
953
|
projectName: z.ZodString;
|
|
@@ -1033,6 +1041,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1033
1041
|
wxt: "wxt";
|
|
1034
1042
|
msw: "msw";
|
|
1035
1043
|
storybook: "storybook";
|
|
1044
|
+
swr: "swr";
|
|
1036
1045
|
"tanstack-query": "tanstack-query";
|
|
1037
1046
|
"tanstack-table": "tanstack-table";
|
|
1038
1047
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1041,8 +1050,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1041
1050
|
"docker-compose": "docker-compose";
|
|
1042
1051
|
}>>;
|
|
1043
1052
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1044
|
-
ai: "ai";
|
|
1045
1053
|
none: "none";
|
|
1054
|
+
ai: "ai";
|
|
1046
1055
|
"chat-sdk": "chat-sdk";
|
|
1047
1056
|
"tanstack-showcase": "tanstack-showcase";
|
|
1048
1057
|
}>>;
|
|
@@ -1137,8 +1146,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1137
1146
|
"ai-cli": "ai-cli";
|
|
1138
1147
|
}>;
|
|
1139
1148
|
effect: z.ZodEnum<{
|
|
1140
|
-
effect: "effect";
|
|
1141
1149
|
none: "none";
|
|
1150
|
+
effect: "effect";
|
|
1142
1151
|
"effect-full": "effect-full";
|
|
1143
1152
|
}>;
|
|
1144
1153
|
stateManagement: z.ZodEnum<{
|
|
@@ -1189,9 +1198,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1189
1198
|
"postcss-only": "postcss-only";
|
|
1190
1199
|
}>;
|
|
1191
1200
|
uiLibrary: z.ZodEnum<{
|
|
1192
|
-
mui: "mui";
|
|
1193
1201
|
none: "none";
|
|
1194
1202
|
"shadcn-ui": "shadcn-ui";
|
|
1203
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1195
1204
|
daisyui: "daisyui";
|
|
1196
1205
|
"radix-ui": "radix-ui";
|
|
1197
1206
|
"headless-ui": "headless-ui";
|
|
@@ -1199,6 +1208,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1199
1208
|
"chakra-ui": "chakra-ui";
|
|
1200
1209
|
nextui: "nextui";
|
|
1201
1210
|
mantine: "mantine";
|
|
1211
|
+
mui: "mui";
|
|
1202
1212
|
antd: "antd";
|
|
1203
1213
|
"base-ui": "base-ui";
|
|
1204
1214
|
"ark-ui": "ark-ui";
|
|
@@ -1320,6 +1330,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1320
1330
|
none: "none";
|
|
1321
1331
|
pino: "pino";
|
|
1322
1332
|
winston: "winston";
|
|
1333
|
+
evlog: "evlog";
|
|
1323
1334
|
}>;
|
|
1324
1335
|
observability: z.ZodEnum<{
|
|
1325
1336
|
none: "none";
|
|
@@ -1346,6 +1357,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1346
1357
|
sanity: "sanity";
|
|
1347
1358
|
strapi: "strapi";
|
|
1348
1359
|
tinacms: "tinacms";
|
|
1360
|
+
directus: "directus";
|
|
1349
1361
|
}>;
|
|
1350
1362
|
caching: z.ZodEnum<{
|
|
1351
1363
|
none: "none";
|
|
@@ -1367,6 +1379,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1367
1379
|
none: "none";
|
|
1368
1380
|
s3: "s3";
|
|
1369
1381
|
r2: "r2";
|
|
1382
|
+
cloudinary: "cloudinary";
|
|
1370
1383
|
}>;
|
|
1371
1384
|
mobileNavigation: z.ZodEnum<{
|
|
1372
1385
|
none: "none";
|
|
@@ -1531,8 +1544,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1531
1544
|
chi: "chi";
|
|
1532
1545
|
}>;
|
|
1533
1546
|
goOrm: z.ZodEnum<{
|
|
1534
|
-
gorm: "gorm";
|
|
1535
1547
|
none: "none";
|
|
1548
|
+
gorm: "gorm";
|
|
1536
1549
|
sqlc: "sqlc";
|
|
1537
1550
|
ent: "ent";
|
|
1538
1551
|
}>;
|
|
@@ -1695,10 +1708,69 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1695
1708
|
"agents-md": "agents-md";
|
|
1696
1709
|
cursorrules: "cursorrules";
|
|
1697
1710
|
}>>;
|
|
1711
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1712
|
+
id: z.ZodString;
|
|
1713
|
+
role: z.ZodEnum<{
|
|
1714
|
+
ai: "ai";
|
|
1715
|
+
database: "database";
|
|
1716
|
+
orm: "orm";
|
|
1717
|
+
auth: "auth";
|
|
1718
|
+
payments: "payments";
|
|
1719
|
+
frontend: "frontend";
|
|
1720
|
+
backend: "backend";
|
|
1721
|
+
runtime: "runtime";
|
|
1722
|
+
api: "api";
|
|
1723
|
+
stateManagement: "stateManagement";
|
|
1724
|
+
forms: "forms";
|
|
1725
|
+
testing: "testing";
|
|
1726
|
+
email: "email";
|
|
1727
|
+
validation: "validation";
|
|
1728
|
+
jobQueue: "jobQueue";
|
|
1729
|
+
logging: "logging";
|
|
1730
|
+
observability: "observability";
|
|
1731
|
+
featureFlags: "featureFlags";
|
|
1732
|
+
analytics: "analytics";
|
|
1733
|
+
cms: "cms";
|
|
1734
|
+
caching: "caching";
|
|
1735
|
+
i18n: "i18n";
|
|
1736
|
+
search: "search";
|
|
1737
|
+
fileStorage: "fileStorage";
|
|
1738
|
+
mobile: "mobile";
|
|
1739
|
+
deploy: "deploy";
|
|
1740
|
+
ui: "ui";
|
|
1741
|
+
css: "css";
|
|
1742
|
+
documentation: "documentation";
|
|
1743
|
+
codeQuality: "codeQuality";
|
|
1744
|
+
appPlatform: "appPlatform";
|
|
1745
|
+
}>;
|
|
1746
|
+
toolId: z.ZodString;
|
|
1747
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
1748
|
+
typescript: "typescript";
|
|
1749
|
+
"react-native": "react-native";
|
|
1750
|
+
rust: "rust";
|
|
1751
|
+
python: "python";
|
|
1752
|
+
go: "go";
|
|
1753
|
+
java: "java";
|
|
1754
|
+
elixir: "elixir";
|
|
1755
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
1756
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
source: z.ZodEnum<{
|
|
1758
|
+
selected: "selected";
|
|
1759
|
+
defaulted: "defaulted";
|
|
1760
|
+
provided: "provided";
|
|
1761
|
+
legacy: "legacy";
|
|
1762
|
+
adjusted: "adjusted";
|
|
1763
|
+
}>;
|
|
1764
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
1765
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
1766
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1767
|
+
}, z.core.$strip>>>;
|
|
1698
1768
|
}, z.core.$strip>>;
|
|
1699
1769
|
declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1700
1770
|
version: z.ZodString;
|
|
1701
1771
|
createdAt: z.ZodString;
|
|
1772
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
1773
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1702
1774
|
ecosystem: z.ZodEnum<{
|
|
1703
1775
|
typescript: "typescript";
|
|
1704
1776
|
"react-native": "react-native";
|
|
@@ -1787,6 +1859,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1787
1859
|
wxt: "wxt";
|
|
1788
1860
|
msw: "msw";
|
|
1789
1861
|
storybook: "storybook";
|
|
1862
|
+
swr: "swr";
|
|
1790
1863
|
"tanstack-query": "tanstack-query";
|
|
1791
1864
|
"tanstack-table": "tanstack-table";
|
|
1792
1865
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1795,8 +1868,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1795
1868
|
"docker-compose": "docker-compose";
|
|
1796
1869
|
}>>;
|
|
1797
1870
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1798
|
-
ai: "ai";
|
|
1799
1871
|
none: "none";
|
|
1872
|
+
ai: "ai";
|
|
1800
1873
|
"chat-sdk": "chat-sdk";
|
|
1801
1874
|
"tanstack-showcase": "tanstack-showcase";
|
|
1802
1875
|
}>>;
|
|
@@ -1889,8 +1962,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1889
1962
|
"ai-cli": "ai-cli";
|
|
1890
1963
|
}>;
|
|
1891
1964
|
effect: z.ZodEnum<{
|
|
1892
|
-
effect: "effect";
|
|
1893
1965
|
none: "none";
|
|
1966
|
+
effect: "effect";
|
|
1894
1967
|
"effect-full": "effect-full";
|
|
1895
1968
|
}>;
|
|
1896
1969
|
stateManagement: z.ZodEnum<{
|
|
@@ -1941,9 +2014,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1941
2014
|
"postcss-only": "postcss-only";
|
|
1942
2015
|
}>;
|
|
1943
2016
|
uiLibrary: z.ZodEnum<{
|
|
1944
|
-
mui: "mui";
|
|
1945
2017
|
none: "none";
|
|
1946
2018
|
"shadcn-ui": "shadcn-ui";
|
|
2019
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1947
2020
|
daisyui: "daisyui";
|
|
1948
2021
|
"radix-ui": "radix-ui";
|
|
1949
2022
|
"headless-ui": "headless-ui";
|
|
@@ -1951,6 +2024,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1951
2024
|
"chakra-ui": "chakra-ui";
|
|
1952
2025
|
nextui: "nextui";
|
|
1953
2026
|
mantine: "mantine";
|
|
2027
|
+
mui: "mui";
|
|
1954
2028
|
antd: "antd";
|
|
1955
2029
|
"base-ui": "base-ui";
|
|
1956
2030
|
"ark-ui": "ark-ui";
|
|
@@ -2072,6 +2146,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2072
2146
|
none: "none";
|
|
2073
2147
|
pino: "pino";
|
|
2074
2148
|
winston: "winston";
|
|
2149
|
+
evlog: "evlog";
|
|
2075
2150
|
}>;
|
|
2076
2151
|
observability: z.ZodEnum<{
|
|
2077
2152
|
none: "none";
|
|
@@ -2098,6 +2173,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2098
2173
|
sanity: "sanity";
|
|
2099
2174
|
strapi: "strapi";
|
|
2100
2175
|
tinacms: "tinacms";
|
|
2176
|
+
directus: "directus";
|
|
2101
2177
|
}>;
|
|
2102
2178
|
caching: z.ZodEnum<{
|
|
2103
2179
|
none: "none";
|
|
@@ -2119,6 +2195,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2119
2195
|
none: "none";
|
|
2120
2196
|
s3: "s3";
|
|
2121
2197
|
r2: "r2";
|
|
2198
|
+
cloudinary: "cloudinary";
|
|
2122
2199
|
}>;
|
|
2123
2200
|
mobileNavigation: z.ZodEnum<{
|
|
2124
2201
|
none: "none";
|
|
@@ -2283,8 +2360,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2283
2360
|
chi: "chi";
|
|
2284
2361
|
}>;
|
|
2285
2362
|
goOrm: z.ZodEnum<{
|
|
2286
|
-
gorm: "gorm";
|
|
2287
2363
|
none: "none";
|
|
2364
|
+
gorm: "gorm";
|
|
2288
2365
|
sqlc: "sqlc";
|
|
2289
2366
|
ent: "ent";
|
|
2290
2367
|
}>;
|
|
@@ -2447,10 +2524,69 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2447
2524
|
"agents-md": "agents-md";
|
|
2448
2525
|
cursorrules: "cursorrules";
|
|
2449
2526
|
}>>;
|
|
2527
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2528
|
+
id: z.ZodString;
|
|
2529
|
+
role: z.ZodEnum<{
|
|
2530
|
+
ai: "ai";
|
|
2531
|
+
database: "database";
|
|
2532
|
+
orm: "orm";
|
|
2533
|
+
auth: "auth";
|
|
2534
|
+
payments: "payments";
|
|
2535
|
+
frontend: "frontend";
|
|
2536
|
+
backend: "backend";
|
|
2537
|
+
runtime: "runtime";
|
|
2538
|
+
api: "api";
|
|
2539
|
+
stateManagement: "stateManagement";
|
|
2540
|
+
forms: "forms";
|
|
2541
|
+
testing: "testing";
|
|
2542
|
+
email: "email";
|
|
2543
|
+
validation: "validation";
|
|
2544
|
+
jobQueue: "jobQueue";
|
|
2545
|
+
logging: "logging";
|
|
2546
|
+
observability: "observability";
|
|
2547
|
+
featureFlags: "featureFlags";
|
|
2548
|
+
analytics: "analytics";
|
|
2549
|
+
cms: "cms";
|
|
2550
|
+
caching: "caching";
|
|
2551
|
+
i18n: "i18n";
|
|
2552
|
+
search: "search";
|
|
2553
|
+
fileStorage: "fileStorage";
|
|
2554
|
+
mobile: "mobile";
|
|
2555
|
+
deploy: "deploy";
|
|
2556
|
+
ui: "ui";
|
|
2557
|
+
css: "css";
|
|
2558
|
+
documentation: "documentation";
|
|
2559
|
+
codeQuality: "codeQuality";
|
|
2560
|
+
appPlatform: "appPlatform";
|
|
2561
|
+
}>;
|
|
2562
|
+
toolId: z.ZodString;
|
|
2563
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
2564
|
+
typescript: "typescript";
|
|
2565
|
+
"react-native": "react-native";
|
|
2566
|
+
rust: "rust";
|
|
2567
|
+
python: "python";
|
|
2568
|
+
go: "go";
|
|
2569
|
+
java: "java";
|
|
2570
|
+
elixir: "elixir";
|
|
2571
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
2572
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
2573
|
+
source: z.ZodEnum<{
|
|
2574
|
+
selected: "selected";
|
|
2575
|
+
defaulted: "defaulted";
|
|
2576
|
+
provided: "provided";
|
|
2577
|
+
legacy: "legacy";
|
|
2578
|
+
adjusted: "adjusted";
|
|
2579
|
+
}>;
|
|
2580
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
2582
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2583
|
+
}, z.core.$strip>>>;
|
|
2450
2584
|
}, z.core.$strip>>;
|
|
2451
2585
|
declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2452
2586
|
version: z.ZodString;
|
|
2453
2587
|
createdAt: z.ZodString;
|
|
2588
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
2589
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2454
2590
|
ecosystem: z.ZodEnum<{
|
|
2455
2591
|
typescript: "typescript";
|
|
2456
2592
|
"react-native": "react-native";
|
|
@@ -2539,6 +2675,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2539
2675
|
wxt: "wxt";
|
|
2540
2676
|
msw: "msw";
|
|
2541
2677
|
storybook: "storybook";
|
|
2678
|
+
swr: "swr";
|
|
2542
2679
|
"tanstack-query": "tanstack-query";
|
|
2543
2680
|
"tanstack-table": "tanstack-table";
|
|
2544
2681
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -2547,8 +2684,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2547
2684
|
"docker-compose": "docker-compose";
|
|
2548
2685
|
}>>;
|
|
2549
2686
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2550
|
-
ai: "ai";
|
|
2551
2687
|
none: "none";
|
|
2688
|
+
ai: "ai";
|
|
2552
2689
|
"chat-sdk": "chat-sdk";
|
|
2553
2690
|
"tanstack-showcase": "tanstack-showcase";
|
|
2554
2691
|
}>>;
|
|
@@ -2641,8 +2778,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2641
2778
|
"ai-cli": "ai-cli";
|
|
2642
2779
|
}>;
|
|
2643
2780
|
effect: z.ZodEnum<{
|
|
2644
|
-
effect: "effect";
|
|
2645
2781
|
none: "none";
|
|
2782
|
+
effect: "effect";
|
|
2646
2783
|
"effect-full": "effect-full";
|
|
2647
2784
|
}>;
|
|
2648
2785
|
stateManagement: z.ZodEnum<{
|
|
@@ -2693,9 +2830,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2693
2830
|
"postcss-only": "postcss-only";
|
|
2694
2831
|
}>;
|
|
2695
2832
|
uiLibrary: z.ZodEnum<{
|
|
2696
|
-
mui: "mui";
|
|
2697
2833
|
none: "none";
|
|
2698
2834
|
"shadcn-ui": "shadcn-ui";
|
|
2835
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
2699
2836
|
daisyui: "daisyui";
|
|
2700
2837
|
"radix-ui": "radix-ui";
|
|
2701
2838
|
"headless-ui": "headless-ui";
|
|
@@ -2703,6 +2840,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2703
2840
|
"chakra-ui": "chakra-ui";
|
|
2704
2841
|
nextui: "nextui";
|
|
2705
2842
|
mantine: "mantine";
|
|
2843
|
+
mui: "mui";
|
|
2706
2844
|
antd: "antd";
|
|
2707
2845
|
"base-ui": "base-ui";
|
|
2708
2846
|
"ark-ui": "ark-ui";
|
|
@@ -2824,6 +2962,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2824
2962
|
none: "none";
|
|
2825
2963
|
pino: "pino";
|
|
2826
2964
|
winston: "winston";
|
|
2965
|
+
evlog: "evlog";
|
|
2827
2966
|
}>;
|
|
2828
2967
|
observability: z.ZodEnum<{
|
|
2829
2968
|
none: "none";
|
|
@@ -2850,6 +2989,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2850
2989
|
sanity: "sanity";
|
|
2851
2990
|
strapi: "strapi";
|
|
2852
2991
|
tinacms: "tinacms";
|
|
2992
|
+
directus: "directus";
|
|
2853
2993
|
}>;
|
|
2854
2994
|
caching: z.ZodEnum<{
|
|
2855
2995
|
none: "none";
|
|
@@ -2871,6 +3011,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2871
3011
|
none: "none";
|
|
2872
3012
|
s3: "s3";
|
|
2873
3013
|
r2: "r2";
|
|
3014
|
+
cloudinary: "cloudinary";
|
|
2874
3015
|
}>;
|
|
2875
3016
|
mobileNavigation: z.ZodEnum<{
|
|
2876
3017
|
none: "none";
|
|
@@ -3035,8 +3176,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3035
3176
|
chi: "chi";
|
|
3036
3177
|
}>;
|
|
3037
3178
|
goOrm: z.ZodEnum<{
|
|
3038
|
-
gorm: "gorm";
|
|
3039
3179
|
none: "none";
|
|
3180
|
+
gorm: "gorm";
|
|
3040
3181
|
sqlc: "sqlc";
|
|
3041
3182
|
ent: "ent";
|
|
3042
3183
|
}>;
|
|
@@ -3199,6 +3340,63 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3199
3340
|
"agents-md": "agents-md";
|
|
3200
3341
|
cursorrules: "cursorrules";
|
|
3201
3342
|
}>>;
|
|
3343
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3344
|
+
id: z.ZodString;
|
|
3345
|
+
role: z.ZodEnum<{
|
|
3346
|
+
ai: "ai";
|
|
3347
|
+
database: "database";
|
|
3348
|
+
orm: "orm";
|
|
3349
|
+
auth: "auth";
|
|
3350
|
+
payments: "payments";
|
|
3351
|
+
frontend: "frontend";
|
|
3352
|
+
backend: "backend";
|
|
3353
|
+
runtime: "runtime";
|
|
3354
|
+
api: "api";
|
|
3355
|
+
stateManagement: "stateManagement";
|
|
3356
|
+
forms: "forms";
|
|
3357
|
+
testing: "testing";
|
|
3358
|
+
email: "email";
|
|
3359
|
+
validation: "validation";
|
|
3360
|
+
jobQueue: "jobQueue";
|
|
3361
|
+
logging: "logging";
|
|
3362
|
+
observability: "observability";
|
|
3363
|
+
featureFlags: "featureFlags";
|
|
3364
|
+
analytics: "analytics";
|
|
3365
|
+
cms: "cms";
|
|
3366
|
+
caching: "caching";
|
|
3367
|
+
i18n: "i18n";
|
|
3368
|
+
search: "search";
|
|
3369
|
+
fileStorage: "fileStorage";
|
|
3370
|
+
mobile: "mobile";
|
|
3371
|
+
deploy: "deploy";
|
|
3372
|
+
ui: "ui";
|
|
3373
|
+
css: "css";
|
|
3374
|
+
documentation: "documentation";
|
|
3375
|
+
codeQuality: "codeQuality";
|
|
3376
|
+
appPlatform: "appPlatform";
|
|
3377
|
+
}>;
|
|
3378
|
+
toolId: z.ZodString;
|
|
3379
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
3380
|
+
typescript: "typescript";
|
|
3381
|
+
"react-native": "react-native";
|
|
3382
|
+
rust: "rust";
|
|
3383
|
+
python: "python";
|
|
3384
|
+
go: "go";
|
|
3385
|
+
java: "java";
|
|
3386
|
+
elixir: "elixir";
|
|
3387
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
3388
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3389
|
+
source: z.ZodEnum<{
|
|
3390
|
+
selected: "selected";
|
|
3391
|
+
defaulted: "defaulted";
|
|
3392
|
+
provided: "provided";
|
|
3393
|
+
legacy: "legacy";
|
|
3394
|
+
adjusted: "adjusted";
|
|
3395
|
+
}>;
|
|
3396
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
3397
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
3398
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3399
|
+
}, z.core.$strip>>>;
|
|
3202
3400
|
}, z.core.$strip>>;
|
|
3203
3401
|
declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
3204
3402
|
success: z.ZodBoolean;
|
|
@@ -3294,6 +3492,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3294
3492
|
wxt: "wxt";
|
|
3295
3493
|
msw: "msw";
|
|
3296
3494
|
storybook: "storybook";
|
|
3495
|
+
swr: "swr";
|
|
3297
3496
|
"tanstack-query": "tanstack-query";
|
|
3298
3497
|
"tanstack-table": "tanstack-table";
|
|
3299
3498
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -3302,8 +3501,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3302
3501
|
"docker-compose": "docker-compose";
|
|
3303
3502
|
}>>;
|
|
3304
3503
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3305
|
-
ai: "ai";
|
|
3306
3504
|
none: "none";
|
|
3505
|
+
ai: "ai";
|
|
3307
3506
|
"chat-sdk": "chat-sdk";
|
|
3308
3507
|
"tanstack-showcase": "tanstack-showcase";
|
|
3309
3508
|
}>>;
|
|
@@ -3398,8 +3597,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3398
3597
|
"ai-cli": "ai-cli";
|
|
3399
3598
|
}>;
|
|
3400
3599
|
effect: z.ZodEnum<{
|
|
3401
|
-
effect: "effect";
|
|
3402
3600
|
none: "none";
|
|
3601
|
+
effect: "effect";
|
|
3403
3602
|
"effect-full": "effect-full";
|
|
3404
3603
|
}>;
|
|
3405
3604
|
stateManagement: z.ZodEnum<{
|
|
@@ -3450,9 +3649,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3450
3649
|
"postcss-only": "postcss-only";
|
|
3451
3650
|
}>;
|
|
3452
3651
|
uiLibrary: z.ZodEnum<{
|
|
3453
|
-
mui: "mui";
|
|
3454
3652
|
none: "none";
|
|
3455
3653
|
"shadcn-ui": "shadcn-ui";
|
|
3654
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
3456
3655
|
daisyui: "daisyui";
|
|
3457
3656
|
"radix-ui": "radix-ui";
|
|
3458
3657
|
"headless-ui": "headless-ui";
|
|
@@ -3460,6 +3659,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3460
3659
|
"chakra-ui": "chakra-ui";
|
|
3461
3660
|
nextui: "nextui";
|
|
3462
3661
|
mantine: "mantine";
|
|
3662
|
+
mui: "mui";
|
|
3463
3663
|
antd: "antd";
|
|
3464
3664
|
"base-ui": "base-ui";
|
|
3465
3665
|
"ark-ui": "ark-ui";
|
|
@@ -3581,6 +3781,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3581
3781
|
none: "none";
|
|
3582
3782
|
pino: "pino";
|
|
3583
3783
|
winston: "winston";
|
|
3784
|
+
evlog: "evlog";
|
|
3584
3785
|
}>;
|
|
3585
3786
|
observability: z.ZodEnum<{
|
|
3586
3787
|
none: "none";
|
|
@@ -3607,6 +3808,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3607
3808
|
sanity: "sanity";
|
|
3608
3809
|
strapi: "strapi";
|
|
3609
3810
|
tinacms: "tinacms";
|
|
3811
|
+
directus: "directus";
|
|
3610
3812
|
}>;
|
|
3611
3813
|
caching: z.ZodEnum<{
|
|
3612
3814
|
none: "none";
|
|
@@ -3628,6 +3830,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3628
3830
|
none: "none";
|
|
3629
3831
|
s3: "s3";
|
|
3630
3832
|
r2: "r2";
|
|
3833
|
+
cloudinary: "cloudinary";
|
|
3631
3834
|
}>;
|
|
3632
3835
|
mobileNavigation: z.ZodEnum<{
|
|
3633
3836
|
none: "none";
|
|
@@ -3792,8 +3995,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3792
3995
|
chi: "chi";
|
|
3793
3996
|
}>;
|
|
3794
3997
|
goOrm: z.ZodEnum<{
|
|
3795
|
-
gorm: "gorm";
|
|
3796
3998
|
none: "none";
|
|
3999
|
+
gorm: "gorm";
|
|
3797
4000
|
sqlc: "sqlc";
|
|
3798
4001
|
ent: "ent";
|
|
3799
4002
|
}>;
|
|
@@ -3956,6 +4159,63 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3956
4159
|
"agents-md": "agents-md";
|
|
3957
4160
|
cursorrules: "cursorrules";
|
|
3958
4161
|
}>>;
|
|
4162
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4163
|
+
id: z.ZodString;
|
|
4164
|
+
role: z.ZodEnum<{
|
|
4165
|
+
ai: "ai";
|
|
4166
|
+
database: "database";
|
|
4167
|
+
orm: "orm";
|
|
4168
|
+
auth: "auth";
|
|
4169
|
+
payments: "payments";
|
|
4170
|
+
frontend: "frontend";
|
|
4171
|
+
backend: "backend";
|
|
4172
|
+
runtime: "runtime";
|
|
4173
|
+
api: "api";
|
|
4174
|
+
stateManagement: "stateManagement";
|
|
4175
|
+
forms: "forms";
|
|
4176
|
+
testing: "testing";
|
|
4177
|
+
email: "email";
|
|
4178
|
+
validation: "validation";
|
|
4179
|
+
jobQueue: "jobQueue";
|
|
4180
|
+
logging: "logging";
|
|
4181
|
+
observability: "observability";
|
|
4182
|
+
featureFlags: "featureFlags";
|
|
4183
|
+
analytics: "analytics";
|
|
4184
|
+
cms: "cms";
|
|
4185
|
+
caching: "caching";
|
|
4186
|
+
i18n: "i18n";
|
|
4187
|
+
search: "search";
|
|
4188
|
+
fileStorage: "fileStorage";
|
|
4189
|
+
mobile: "mobile";
|
|
4190
|
+
deploy: "deploy";
|
|
4191
|
+
ui: "ui";
|
|
4192
|
+
css: "css";
|
|
4193
|
+
documentation: "documentation";
|
|
4194
|
+
codeQuality: "codeQuality";
|
|
4195
|
+
appPlatform: "appPlatform";
|
|
4196
|
+
}>;
|
|
4197
|
+
toolId: z.ZodString;
|
|
4198
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
4199
|
+
typescript: "typescript";
|
|
4200
|
+
"react-native": "react-native";
|
|
4201
|
+
rust: "rust";
|
|
4202
|
+
python: "python";
|
|
4203
|
+
go: "go";
|
|
4204
|
+
java: "java";
|
|
4205
|
+
elixir: "elixir";
|
|
4206
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
4207
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4208
|
+
source: z.ZodEnum<{
|
|
4209
|
+
selected: "selected";
|
|
4210
|
+
defaulted: "defaulted";
|
|
4211
|
+
provided: "provided";
|
|
4212
|
+
legacy: "legacy";
|
|
4213
|
+
adjusted: "adjusted";
|
|
4214
|
+
}>;
|
|
4215
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
4216
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
4217
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4218
|
+
}, z.core.$strip>>>;
|
|
3959
4219
|
}, z.core.$strip>;
|
|
3960
4220
|
reproducibleCommand: z.ZodString;
|
|
3961
4221
|
timeScaffolded: z.ZodString;
|
|
@@ -3963,6 +4223,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3963
4223
|
projectDirectory: z.ZodString;
|
|
3964
4224
|
relativePath: z.ZodString;
|
|
3965
4225
|
error: z.ZodOptional<z.ZodString>;
|
|
4226
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
4227
|
+
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
4228
|
+
directoryCount: z.ZodOptional<z.ZodNumber>;
|
|
4229
|
+
files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3966
4230
|
}, z.core.$strip>>;
|
|
3967
4231
|
declare function getJavaWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
3968
4232
|
none: "none";
|
|
@@ -4175,6 +4439,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4175
4439
|
wxt: "wxt";
|
|
4176
4440
|
msw: "msw";
|
|
4177
4441
|
storybook: "storybook";
|
|
4442
|
+
swr: "swr";
|
|
4178
4443
|
"tanstack-query": "tanstack-query";
|
|
4179
4444
|
"tanstack-table": "tanstack-table";
|
|
4180
4445
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -4183,8 +4448,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4183
4448
|
"docker-compose": "docker-compose";
|
|
4184
4449
|
}>>;
|
|
4185
4450
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4186
|
-
ai: "ai";
|
|
4187
4451
|
none: "none";
|
|
4452
|
+
ai: "ai";
|
|
4188
4453
|
"chat-sdk": "chat-sdk";
|
|
4189
4454
|
"tanstack-showcase": "tanstack-showcase";
|
|
4190
4455
|
}>>;
|
|
@@ -4407,6 +4672,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4407
4672
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
4408
4673
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
4409
4674
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
4675
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
4410
4676
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
4411
4677
|
typescript: "typescript";
|
|
4412
4678
|
"react-native": "react-native";
|
|
@@ -4493,6 +4759,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4493
4759
|
wxt: "wxt";
|
|
4494
4760
|
msw: "msw";
|
|
4495
4761
|
storybook: "storybook";
|
|
4762
|
+
swr: "swr";
|
|
4496
4763
|
"tanstack-query": "tanstack-query";
|
|
4497
4764
|
"tanstack-table": "tanstack-table";
|
|
4498
4765
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -4501,8 +4768,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4501
4768
|
"docker-compose": "docker-compose";
|
|
4502
4769
|
}>>>;
|
|
4503
4770
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4504
|
-
ai: "ai";
|
|
4505
4771
|
none: "none";
|
|
4772
|
+
ai: "ai";
|
|
4506
4773
|
"chat-sdk": "chat-sdk";
|
|
4507
4774
|
"tanstack-showcase": "tanstack-showcase";
|
|
4508
4775
|
}>>>;
|
|
@@ -4608,8 +4875,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4608
4875
|
"ai-cli": "ai-cli";
|
|
4609
4876
|
}>>;
|
|
4610
4877
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
4611
|
-
effect: "effect";
|
|
4612
4878
|
none: "none";
|
|
4879
|
+
effect: "effect";
|
|
4613
4880
|
"effect-full": "effect-full";
|
|
4614
4881
|
}>>;
|
|
4615
4882
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4660,9 +4927,9 @@ declare function getAllJsonSchemas(): {
|
|
|
4660
4927
|
"postcss-only": "postcss-only";
|
|
4661
4928
|
}>>;
|
|
4662
4929
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
4663
|
-
mui: "mui";
|
|
4664
4930
|
none: "none";
|
|
4665
4931
|
"shadcn-ui": "shadcn-ui";
|
|
4932
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
4666
4933
|
daisyui: "daisyui";
|
|
4667
4934
|
"radix-ui": "radix-ui";
|
|
4668
4935
|
"headless-ui": "headless-ui";
|
|
@@ -4670,6 +4937,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4670
4937
|
"chakra-ui": "chakra-ui";
|
|
4671
4938
|
nextui: "nextui";
|
|
4672
4939
|
mantine: "mantine";
|
|
4940
|
+
mui: "mui";
|
|
4673
4941
|
antd: "antd";
|
|
4674
4942
|
"base-ui": "base-ui";
|
|
4675
4943
|
"ark-ui": "ark-ui";
|
|
@@ -4791,6 +5059,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4791
5059
|
none: "none";
|
|
4792
5060
|
pino: "pino";
|
|
4793
5061
|
winston: "winston";
|
|
5062
|
+
evlog: "evlog";
|
|
4794
5063
|
}>>;
|
|
4795
5064
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
4796
5065
|
none: "none";
|
|
@@ -4817,6 +5086,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4817
5086
|
sanity: "sanity";
|
|
4818
5087
|
strapi: "strapi";
|
|
4819
5088
|
tinacms: "tinacms";
|
|
5089
|
+
directus: "directus";
|
|
4820
5090
|
}>>;
|
|
4821
5091
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
4822
5092
|
none: "none";
|
|
@@ -4838,6 +5108,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4838
5108
|
none: "none";
|
|
4839
5109
|
s3: "s3";
|
|
4840
5110
|
r2: "r2";
|
|
5111
|
+
cloudinary: "cloudinary";
|
|
4841
5112
|
}>>;
|
|
4842
5113
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
4843
5114
|
none: "none";
|
|
@@ -5002,8 +5273,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5002
5273
|
chi: "chi";
|
|
5003
5274
|
}>>;
|
|
5004
5275
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
5005
|
-
gorm: "gorm";
|
|
5006
5276
|
none: "none";
|
|
5277
|
+
gorm: "gorm";
|
|
5007
5278
|
sqlc: "sqlc";
|
|
5008
5279
|
ent: "ent";
|
|
5009
5280
|
}>>;
|
|
@@ -5166,6 +5437,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5166
5437
|
"agents-md": "agents-md";
|
|
5167
5438
|
cursorrules: "cursorrules";
|
|
5168
5439
|
}>>>;
|
|
5440
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5169
5441
|
}, z.core.$strip>>;
|
|
5170
5442
|
projectConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
5171
5443
|
projectName: z.ZodString;
|
|
@@ -5259,6 +5531,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5259
5531
|
wxt: "wxt";
|
|
5260
5532
|
msw: "msw";
|
|
5261
5533
|
storybook: "storybook";
|
|
5534
|
+
swr: "swr";
|
|
5262
5535
|
"tanstack-query": "tanstack-query";
|
|
5263
5536
|
"tanstack-table": "tanstack-table";
|
|
5264
5537
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -5267,8 +5540,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5267
5540
|
"docker-compose": "docker-compose";
|
|
5268
5541
|
}>>;
|
|
5269
5542
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5270
|
-
ai: "ai";
|
|
5271
5543
|
none: "none";
|
|
5544
|
+
ai: "ai";
|
|
5272
5545
|
"chat-sdk": "chat-sdk";
|
|
5273
5546
|
"tanstack-showcase": "tanstack-showcase";
|
|
5274
5547
|
}>>;
|
|
@@ -5363,8 +5636,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5363
5636
|
"ai-cli": "ai-cli";
|
|
5364
5637
|
}>;
|
|
5365
5638
|
effect: z.ZodEnum<{
|
|
5366
|
-
effect: "effect";
|
|
5367
5639
|
none: "none";
|
|
5640
|
+
effect: "effect";
|
|
5368
5641
|
"effect-full": "effect-full";
|
|
5369
5642
|
}>;
|
|
5370
5643
|
stateManagement: z.ZodEnum<{
|
|
@@ -5415,9 +5688,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5415
5688
|
"postcss-only": "postcss-only";
|
|
5416
5689
|
}>;
|
|
5417
5690
|
uiLibrary: z.ZodEnum<{
|
|
5418
|
-
mui: "mui";
|
|
5419
5691
|
none: "none";
|
|
5420
5692
|
"shadcn-ui": "shadcn-ui";
|
|
5693
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
5421
5694
|
daisyui: "daisyui";
|
|
5422
5695
|
"radix-ui": "radix-ui";
|
|
5423
5696
|
"headless-ui": "headless-ui";
|
|
@@ -5425,6 +5698,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5425
5698
|
"chakra-ui": "chakra-ui";
|
|
5426
5699
|
nextui: "nextui";
|
|
5427
5700
|
mantine: "mantine";
|
|
5701
|
+
mui: "mui";
|
|
5428
5702
|
antd: "antd";
|
|
5429
5703
|
"base-ui": "base-ui";
|
|
5430
5704
|
"ark-ui": "ark-ui";
|
|
@@ -5546,6 +5820,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5546
5820
|
none: "none";
|
|
5547
5821
|
pino: "pino";
|
|
5548
5822
|
winston: "winston";
|
|
5823
|
+
evlog: "evlog";
|
|
5549
5824
|
}>;
|
|
5550
5825
|
observability: z.ZodEnum<{
|
|
5551
5826
|
none: "none";
|
|
@@ -5572,6 +5847,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5572
5847
|
sanity: "sanity";
|
|
5573
5848
|
strapi: "strapi";
|
|
5574
5849
|
tinacms: "tinacms";
|
|
5850
|
+
directus: "directus";
|
|
5575
5851
|
}>;
|
|
5576
5852
|
caching: z.ZodEnum<{
|
|
5577
5853
|
none: "none";
|
|
@@ -5593,6 +5869,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5593
5869
|
none: "none";
|
|
5594
5870
|
s3: "s3";
|
|
5595
5871
|
r2: "r2";
|
|
5872
|
+
cloudinary: "cloudinary";
|
|
5596
5873
|
}>;
|
|
5597
5874
|
mobileNavigation: z.ZodEnum<{
|
|
5598
5875
|
none: "none";
|
|
@@ -5757,8 +6034,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5757
6034
|
chi: "chi";
|
|
5758
6035
|
}>;
|
|
5759
6036
|
goOrm: z.ZodEnum<{
|
|
5760
|
-
gorm: "gorm";
|
|
5761
6037
|
none: "none";
|
|
6038
|
+
gorm: "gorm";
|
|
5762
6039
|
sqlc: "sqlc";
|
|
5763
6040
|
ent: "ent";
|
|
5764
6041
|
}>;
|
|
@@ -5921,10 +6198,69 @@ declare function getAllJsonSchemas(): {
|
|
|
5921
6198
|
"agents-md": "agents-md";
|
|
5922
6199
|
cursorrules: "cursorrules";
|
|
5923
6200
|
}>>;
|
|
6201
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6202
|
+
id: z.ZodString;
|
|
6203
|
+
role: z.ZodEnum<{
|
|
6204
|
+
ai: "ai";
|
|
6205
|
+
database: "database";
|
|
6206
|
+
orm: "orm";
|
|
6207
|
+
auth: "auth";
|
|
6208
|
+
payments: "payments";
|
|
6209
|
+
frontend: "frontend";
|
|
6210
|
+
backend: "backend";
|
|
6211
|
+
runtime: "runtime";
|
|
6212
|
+
api: "api";
|
|
6213
|
+
stateManagement: "stateManagement";
|
|
6214
|
+
forms: "forms";
|
|
6215
|
+
testing: "testing";
|
|
6216
|
+
email: "email";
|
|
6217
|
+
validation: "validation";
|
|
6218
|
+
jobQueue: "jobQueue";
|
|
6219
|
+
logging: "logging";
|
|
6220
|
+
observability: "observability";
|
|
6221
|
+
featureFlags: "featureFlags";
|
|
6222
|
+
analytics: "analytics";
|
|
6223
|
+
cms: "cms";
|
|
6224
|
+
caching: "caching";
|
|
6225
|
+
i18n: "i18n";
|
|
6226
|
+
search: "search";
|
|
6227
|
+
fileStorage: "fileStorage";
|
|
6228
|
+
mobile: "mobile";
|
|
6229
|
+
deploy: "deploy";
|
|
6230
|
+
ui: "ui";
|
|
6231
|
+
css: "css";
|
|
6232
|
+
documentation: "documentation";
|
|
6233
|
+
codeQuality: "codeQuality";
|
|
6234
|
+
appPlatform: "appPlatform";
|
|
6235
|
+
}>;
|
|
6236
|
+
toolId: z.ZodString;
|
|
6237
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
6238
|
+
typescript: "typescript";
|
|
6239
|
+
"react-native": "react-native";
|
|
6240
|
+
rust: "rust";
|
|
6241
|
+
python: "python";
|
|
6242
|
+
go: "go";
|
|
6243
|
+
java: "java";
|
|
6244
|
+
elixir: "elixir";
|
|
6245
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
6246
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6247
|
+
source: z.ZodEnum<{
|
|
6248
|
+
selected: "selected";
|
|
6249
|
+
defaulted: "defaulted";
|
|
6250
|
+
provided: "provided";
|
|
6251
|
+
legacy: "legacy";
|
|
6252
|
+
adjusted: "adjusted";
|
|
6253
|
+
}>;
|
|
6254
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
6255
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
6256
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6257
|
+
}, z.core.$strip>>>;
|
|
5924
6258
|
}, z.core.$strip>>;
|
|
5925
6259
|
betterFullstackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
5926
6260
|
version: z.ZodString;
|
|
5927
6261
|
createdAt: z.ZodString;
|
|
6262
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
6263
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5928
6264
|
ecosystem: z.ZodEnum<{
|
|
5929
6265
|
typescript: "typescript";
|
|
5930
6266
|
"react-native": "react-native";
|
|
@@ -6013,6 +6349,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6013
6349
|
wxt: "wxt";
|
|
6014
6350
|
msw: "msw";
|
|
6015
6351
|
storybook: "storybook";
|
|
6352
|
+
swr: "swr";
|
|
6016
6353
|
"tanstack-query": "tanstack-query";
|
|
6017
6354
|
"tanstack-table": "tanstack-table";
|
|
6018
6355
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -6021,8 +6358,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6021
6358
|
"docker-compose": "docker-compose";
|
|
6022
6359
|
}>>;
|
|
6023
6360
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6024
|
-
ai: "ai";
|
|
6025
6361
|
none: "none";
|
|
6362
|
+
ai: "ai";
|
|
6026
6363
|
"chat-sdk": "chat-sdk";
|
|
6027
6364
|
"tanstack-showcase": "tanstack-showcase";
|
|
6028
6365
|
}>>;
|
|
@@ -6115,8 +6452,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6115
6452
|
"ai-cli": "ai-cli";
|
|
6116
6453
|
}>;
|
|
6117
6454
|
effect: z.ZodEnum<{
|
|
6118
|
-
effect: "effect";
|
|
6119
6455
|
none: "none";
|
|
6456
|
+
effect: "effect";
|
|
6120
6457
|
"effect-full": "effect-full";
|
|
6121
6458
|
}>;
|
|
6122
6459
|
stateManagement: z.ZodEnum<{
|
|
@@ -6167,9 +6504,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6167
6504
|
"postcss-only": "postcss-only";
|
|
6168
6505
|
}>;
|
|
6169
6506
|
uiLibrary: z.ZodEnum<{
|
|
6170
|
-
mui: "mui";
|
|
6171
6507
|
none: "none";
|
|
6172
6508
|
"shadcn-ui": "shadcn-ui";
|
|
6509
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
6173
6510
|
daisyui: "daisyui";
|
|
6174
6511
|
"radix-ui": "radix-ui";
|
|
6175
6512
|
"headless-ui": "headless-ui";
|
|
@@ -6177,6 +6514,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6177
6514
|
"chakra-ui": "chakra-ui";
|
|
6178
6515
|
nextui: "nextui";
|
|
6179
6516
|
mantine: "mantine";
|
|
6517
|
+
mui: "mui";
|
|
6180
6518
|
antd: "antd";
|
|
6181
6519
|
"base-ui": "base-ui";
|
|
6182
6520
|
"ark-ui": "ark-ui";
|
|
@@ -6298,6 +6636,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6298
6636
|
none: "none";
|
|
6299
6637
|
pino: "pino";
|
|
6300
6638
|
winston: "winston";
|
|
6639
|
+
evlog: "evlog";
|
|
6301
6640
|
}>;
|
|
6302
6641
|
observability: z.ZodEnum<{
|
|
6303
6642
|
none: "none";
|
|
@@ -6324,6 +6663,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6324
6663
|
sanity: "sanity";
|
|
6325
6664
|
strapi: "strapi";
|
|
6326
6665
|
tinacms: "tinacms";
|
|
6666
|
+
directus: "directus";
|
|
6327
6667
|
}>;
|
|
6328
6668
|
caching: z.ZodEnum<{
|
|
6329
6669
|
none: "none";
|
|
@@ -6345,6 +6685,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6345
6685
|
none: "none";
|
|
6346
6686
|
s3: "s3";
|
|
6347
6687
|
r2: "r2";
|
|
6688
|
+
cloudinary: "cloudinary";
|
|
6348
6689
|
}>;
|
|
6349
6690
|
mobileNavigation: z.ZodEnum<{
|
|
6350
6691
|
none: "none";
|
|
@@ -6509,8 +6850,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6509
6850
|
chi: "chi";
|
|
6510
6851
|
}>;
|
|
6511
6852
|
goOrm: z.ZodEnum<{
|
|
6512
|
-
gorm: "gorm";
|
|
6513
6853
|
none: "none";
|
|
6854
|
+
gorm: "gorm";
|
|
6514
6855
|
sqlc: "sqlc";
|
|
6515
6856
|
ent: "ent";
|
|
6516
6857
|
}>;
|
|
@@ -6673,10 +7014,69 @@ declare function getAllJsonSchemas(): {
|
|
|
6673
7014
|
"agents-md": "agents-md";
|
|
6674
7015
|
cursorrules: "cursorrules";
|
|
6675
7016
|
}>>;
|
|
7017
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7018
|
+
id: z.ZodString;
|
|
7019
|
+
role: z.ZodEnum<{
|
|
7020
|
+
ai: "ai";
|
|
7021
|
+
database: "database";
|
|
7022
|
+
orm: "orm";
|
|
7023
|
+
auth: "auth";
|
|
7024
|
+
payments: "payments";
|
|
7025
|
+
frontend: "frontend";
|
|
7026
|
+
backend: "backend";
|
|
7027
|
+
runtime: "runtime";
|
|
7028
|
+
api: "api";
|
|
7029
|
+
stateManagement: "stateManagement";
|
|
7030
|
+
forms: "forms";
|
|
7031
|
+
testing: "testing";
|
|
7032
|
+
email: "email";
|
|
7033
|
+
validation: "validation";
|
|
7034
|
+
jobQueue: "jobQueue";
|
|
7035
|
+
logging: "logging";
|
|
7036
|
+
observability: "observability";
|
|
7037
|
+
featureFlags: "featureFlags";
|
|
7038
|
+
analytics: "analytics";
|
|
7039
|
+
cms: "cms";
|
|
7040
|
+
caching: "caching";
|
|
7041
|
+
i18n: "i18n";
|
|
7042
|
+
search: "search";
|
|
7043
|
+
fileStorage: "fileStorage";
|
|
7044
|
+
mobile: "mobile";
|
|
7045
|
+
deploy: "deploy";
|
|
7046
|
+
ui: "ui";
|
|
7047
|
+
css: "css";
|
|
7048
|
+
documentation: "documentation";
|
|
7049
|
+
codeQuality: "codeQuality";
|
|
7050
|
+
appPlatform: "appPlatform";
|
|
7051
|
+
}>;
|
|
7052
|
+
toolId: z.ZodString;
|
|
7053
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
7054
|
+
typescript: "typescript";
|
|
7055
|
+
"react-native": "react-native";
|
|
7056
|
+
rust: "rust";
|
|
7057
|
+
python: "python";
|
|
7058
|
+
go: "go";
|
|
7059
|
+
java: "java";
|
|
7060
|
+
elixir: "elixir";
|
|
7061
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
7062
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7063
|
+
source: z.ZodEnum<{
|
|
7064
|
+
selected: "selected";
|
|
7065
|
+
defaulted: "defaulted";
|
|
7066
|
+
provided: "provided";
|
|
7067
|
+
legacy: "legacy";
|
|
7068
|
+
adjusted: "adjusted";
|
|
7069
|
+
}>;
|
|
7070
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
7071
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
7072
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7073
|
+
}, z.core.$strip>>>;
|
|
6676
7074
|
}, z.core.$strip>>;
|
|
6677
7075
|
betterTStackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
6678
7076
|
version: z.ZodString;
|
|
6679
7077
|
createdAt: z.ZodString;
|
|
7078
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
7079
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6680
7080
|
ecosystem: z.ZodEnum<{
|
|
6681
7081
|
typescript: "typescript";
|
|
6682
7082
|
"react-native": "react-native";
|
|
@@ -6765,6 +7165,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6765
7165
|
wxt: "wxt";
|
|
6766
7166
|
msw: "msw";
|
|
6767
7167
|
storybook: "storybook";
|
|
7168
|
+
swr: "swr";
|
|
6768
7169
|
"tanstack-query": "tanstack-query";
|
|
6769
7170
|
"tanstack-table": "tanstack-table";
|
|
6770
7171
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -6773,8 +7174,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6773
7174
|
"docker-compose": "docker-compose";
|
|
6774
7175
|
}>>;
|
|
6775
7176
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6776
|
-
ai: "ai";
|
|
6777
7177
|
none: "none";
|
|
7178
|
+
ai: "ai";
|
|
6778
7179
|
"chat-sdk": "chat-sdk";
|
|
6779
7180
|
"tanstack-showcase": "tanstack-showcase";
|
|
6780
7181
|
}>>;
|
|
@@ -6867,8 +7268,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6867
7268
|
"ai-cli": "ai-cli";
|
|
6868
7269
|
}>;
|
|
6869
7270
|
effect: z.ZodEnum<{
|
|
6870
|
-
effect: "effect";
|
|
6871
7271
|
none: "none";
|
|
7272
|
+
effect: "effect";
|
|
6872
7273
|
"effect-full": "effect-full";
|
|
6873
7274
|
}>;
|
|
6874
7275
|
stateManagement: z.ZodEnum<{
|
|
@@ -6919,9 +7320,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6919
7320
|
"postcss-only": "postcss-only";
|
|
6920
7321
|
}>;
|
|
6921
7322
|
uiLibrary: z.ZodEnum<{
|
|
6922
|
-
mui: "mui";
|
|
6923
7323
|
none: "none";
|
|
6924
7324
|
"shadcn-ui": "shadcn-ui";
|
|
7325
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
6925
7326
|
daisyui: "daisyui";
|
|
6926
7327
|
"radix-ui": "radix-ui";
|
|
6927
7328
|
"headless-ui": "headless-ui";
|
|
@@ -6929,6 +7330,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6929
7330
|
"chakra-ui": "chakra-ui";
|
|
6930
7331
|
nextui: "nextui";
|
|
6931
7332
|
mantine: "mantine";
|
|
7333
|
+
mui: "mui";
|
|
6932
7334
|
antd: "antd";
|
|
6933
7335
|
"base-ui": "base-ui";
|
|
6934
7336
|
"ark-ui": "ark-ui";
|
|
@@ -7050,6 +7452,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7050
7452
|
none: "none";
|
|
7051
7453
|
pino: "pino";
|
|
7052
7454
|
winston: "winston";
|
|
7455
|
+
evlog: "evlog";
|
|
7053
7456
|
}>;
|
|
7054
7457
|
observability: z.ZodEnum<{
|
|
7055
7458
|
none: "none";
|
|
@@ -7076,6 +7479,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7076
7479
|
sanity: "sanity";
|
|
7077
7480
|
strapi: "strapi";
|
|
7078
7481
|
tinacms: "tinacms";
|
|
7482
|
+
directus: "directus";
|
|
7079
7483
|
}>;
|
|
7080
7484
|
caching: z.ZodEnum<{
|
|
7081
7485
|
none: "none";
|
|
@@ -7097,6 +7501,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7097
7501
|
none: "none";
|
|
7098
7502
|
s3: "s3";
|
|
7099
7503
|
r2: "r2";
|
|
7504
|
+
cloudinary: "cloudinary";
|
|
7100
7505
|
}>;
|
|
7101
7506
|
mobileNavigation: z.ZodEnum<{
|
|
7102
7507
|
none: "none";
|
|
@@ -7261,8 +7666,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7261
7666
|
chi: "chi";
|
|
7262
7667
|
}>;
|
|
7263
7668
|
goOrm: z.ZodEnum<{
|
|
7264
|
-
gorm: "gorm";
|
|
7265
7669
|
none: "none";
|
|
7670
|
+
gorm: "gorm";
|
|
7266
7671
|
sqlc: "sqlc";
|
|
7267
7672
|
ent: "ent";
|
|
7268
7673
|
}>;
|
|
@@ -7425,6 +7830,63 @@ declare function getAllJsonSchemas(): {
|
|
|
7425
7830
|
"agents-md": "agents-md";
|
|
7426
7831
|
cursorrules: "cursorrules";
|
|
7427
7832
|
}>>;
|
|
7833
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7834
|
+
id: z.ZodString;
|
|
7835
|
+
role: z.ZodEnum<{
|
|
7836
|
+
ai: "ai";
|
|
7837
|
+
database: "database";
|
|
7838
|
+
orm: "orm";
|
|
7839
|
+
auth: "auth";
|
|
7840
|
+
payments: "payments";
|
|
7841
|
+
frontend: "frontend";
|
|
7842
|
+
backend: "backend";
|
|
7843
|
+
runtime: "runtime";
|
|
7844
|
+
api: "api";
|
|
7845
|
+
stateManagement: "stateManagement";
|
|
7846
|
+
forms: "forms";
|
|
7847
|
+
testing: "testing";
|
|
7848
|
+
email: "email";
|
|
7849
|
+
validation: "validation";
|
|
7850
|
+
jobQueue: "jobQueue";
|
|
7851
|
+
logging: "logging";
|
|
7852
|
+
observability: "observability";
|
|
7853
|
+
featureFlags: "featureFlags";
|
|
7854
|
+
analytics: "analytics";
|
|
7855
|
+
cms: "cms";
|
|
7856
|
+
caching: "caching";
|
|
7857
|
+
i18n: "i18n";
|
|
7858
|
+
search: "search";
|
|
7859
|
+
fileStorage: "fileStorage";
|
|
7860
|
+
mobile: "mobile";
|
|
7861
|
+
deploy: "deploy";
|
|
7862
|
+
ui: "ui";
|
|
7863
|
+
css: "css";
|
|
7864
|
+
documentation: "documentation";
|
|
7865
|
+
codeQuality: "codeQuality";
|
|
7866
|
+
appPlatform: "appPlatform";
|
|
7867
|
+
}>;
|
|
7868
|
+
toolId: z.ZodString;
|
|
7869
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
7870
|
+
typescript: "typescript";
|
|
7871
|
+
"react-native": "react-native";
|
|
7872
|
+
rust: "rust";
|
|
7873
|
+
python: "python";
|
|
7874
|
+
go: "go";
|
|
7875
|
+
java: "java";
|
|
7876
|
+
elixir: "elixir";
|
|
7877
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
7878
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7879
|
+
source: z.ZodEnum<{
|
|
7880
|
+
selected: "selected";
|
|
7881
|
+
defaulted: "defaulted";
|
|
7882
|
+
provided: "provided";
|
|
7883
|
+
legacy: "legacy";
|
|
7884
|
+
adjusted: "adjusted";
|
|
7885
|
+
}>;
|
|
7886
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
7887
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
7888
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7889
|
+
}, z.core.$strip>>>;
|
|
7428
7890
|
}, z.core.$strip>>;
|
|
7429
7891
|
initResult: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
7430
7892
|
success: z.ZodBoolean;
|
|
@@ -7520,6 +7982,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7520
7982
|
wxt: "wxt";
|
|
7521
7983
|
msw: "msw";
|
|
7522
7984
|
storybook: "storybook";
|
|
7985
|
+
swr: "swr";
|
|
7523
7986
|
"tanstack-query": "tanstack-query";
|
|
7524
7987
|
"tanstack-table": "tanstack-table";
|
|
7525
7988
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -7528,8 +7991,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7528
7991
|
"docker-compose": "docker-compose";
|
|
7529
7992
|
}>>;
|
|
7530
7993
|
examples: z.ZodArray<z.ZodEnum<{
|
|
7531
|
-
ai: "ai";
|
|
7532
7994
|
none: "none";
|
|
7995
|
+
ai: "ai";
|
|
7533
7996
|
"chat-sdk": "chat-sdk";
|
|
7534
7997
|
"tanstack-showcase": "tanstack-showcase";
|
|
7535
7998
|
}>>;
|
|
@@ -7624,8 +8087,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7624
8087
|
"ai-cli": "ai-cli";
|
|
7625
8088
|
}>;
|
|
7626
8089
|
effect: z.ZodEnum<{
|
|
7627
|
-
effect: "effect";
|
|
7628
8090
|
none: "none";
|
|
8091
|
+
effect: "effect";
|
|
7629
8092
|
"effect-full": "effect-full";
|
|
7630
8093
|
}>;
|
|
7631
8094
|
stateManagement: z.ZodEnum<{
|
|
@@ -7676,9 +8139,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7676
8139
|
"postcss-only": "postcss-only";
|
|
7677
8140
|
}>;
|
|
7678
8141
|
uiLibrary: z.ZodEnum<{
|
|
7679
|
-
mui: "mui";
|
|
7680
8142
|
none: "none";
|
|
7681
8143
|
"shadcn-ui": "shadcn-ui";
|
|
8144
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
7682
8145
|
daisyui: "daisyui";
|
|
7683
8146
|
"radix-ui": "radix-ui";
|
|
7684
8147
|
"headless-ui": "headless-ui";
|
|
@@ -7686,6 +8149,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7686
8149
|
"chakra-ui": "chakra-ui";
|
|
7687
8150
|
nextui: "nextui";
|
|
7688
8151
|
mantine: "mantine";
|
|
8152
|
+
mui: "mui";
|
|
7689
8153
|
antd: "antd";
|
|
7690
8154
|
"base-ui": "base-ui";
|
|
7691
8155
|
"ark-ui": "ark-ui";
|
|
@@ -7807,6 +8271,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7807
8271
|
none: "none";
|
|
7808
8272
|
pino: "pino";
|
|
7809
8273
|
winston: "winston";
|
|
8274
|
+
evlog: "evlog";
|
|
7810
8275
|
}>;
|
|
7811
8276
|
observability: z.ZodEnum<{
|
|
7812
8277
|
none: "none";
|
|
@@ -7833,6 +8298,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7833
8298
|
sanity: "sanity";
|
|
7834
8299
|
strapi: "strapi";
|
|
7835
8300
|
tinacms: "tinacms";
|
|
8301
|
+
directus: "directus";
|
|
7836
8302
|
}>;
|
|
7837
8303
|
caching: z.ZodEnum<{
|
|
7838
8304
|
none: "none";
|
|
@@ -7854,6 +8320,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7854
8320
|
none: "none";
|
|
7855
8321
|
s3: "s3";
|
|
7856
8322
|
r2: "r2";
|
|
8323
|
+
cloudinary: "cloudinary";
|
|
7857
8324
|
}>;
|
|
7858
8325
|
mobileNavigation: z.ZodEnum<{
|
|
7859
8326
|
none: "none";
|
|
@@ -8018,8 +8485,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8018
8485
|
chi: "chi";
|
|
8019
8486
|
}>;
|
|
8020
8487
|
goOrm: z.ZodEnum<{
|
|
8021
|
-
gorm: "gorm";
|
|
8022
8488
|
none: "none";
|
|
8489
|
+
gorm: "gorm";
|
|
8023
8490
|
sqlc: "sqlc";
|
|
8024
8491
|
ent: "ent";
|
|
8025
8492
|
}>;
|
|
@@ -8182,6 +8649,63 @@ declare function getAllJsonSchemas(): {
|
|
|
8182
8649
|
"agents-md": "agents-md";
|
|
8183
8650
|
cursorrules: "cursorrules";
|
|
8184
8651
|
}>>;
|
|
8652
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8653
|
+
id: z.ZodString;
|
|
8654
|
+
role: z.ZodEnum<{
|
|
8655
|
+
ai: "ai";
|
|
8656
|
+
database: "database";
|
|
8657
|
+
orm: "orm";
|
|
8658
|
+
auth: "auth";
|
|
8659
|
+
payments: "payments";
|
|
8660
|
+
frontend: "frontend";
|
|
8661
|
+
backend: "backend";
|
|
8662
|
+
runtime: "runtime";
|
|
8663
|
+
api: "api";
|
|
8664
|
+
stateManagement: "stateManagement";
|
|
8665
|
+
forms: "forms";
|
|
8666
|
+
testing: "testing";
|
|
8667
|
+
email: "email";
|
|
8668
|
+
validation: "validation";
|
|
8669
|
+
jobQueue: "jobQueue";
|
|
8670
|
+
logging: "logging";
|
|
8671
|
+
observability: "observability";
|
|
8672
|
+
featureFlags: "featureFlags";
|
|
8673
|
+
analytics: "analytics";
|
|
8674
|
+
cms: "cms";
|
|
8675
|
+
caching: "caching";
|
|
8676
|
+
i18n: "i18n";
|
|
8677
|
+
search: "search";
|
|
8678
|
+
fileStorage: "fileStorage";
|
|
8679
|
+
mobile: "mobile";
|
|
8680
|
+
deploy: "deploy";
|
|
8681
|
+
ui: "ui";
|
|
8682
|
+
css: "css";
|
|
8683
|
+
documentation: "documentation";
|
|
8684
|
+
codeQuality: "codeQuality";
|
|
8685
|
+
appPlatform: "appPlatform";
|
|
8686
|
+
}>;
|
|
8687
|
+
toolId: z.ZodString;
|
|
8688
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
8689
|
+
typescript: "typescript";
|
|
8690
|
+
"react-native": "react-native";
|
|
8691
|
+
rust: "rust";
|
|
8692
|
+
python: "python";
|
|
8693
|
+
go: "go";
|
|
8694
|
+
java: "java";
|
|
8695
|
+
elixir: "elixir";
|
|
8696
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
8697
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
8698
|
+
source: z.ZodEnum<{
|
|
8699
|
+
selected: "selected";
|
|
8700
|
+
defaulted: "defaulted";
|
|
8701
|
+
provided: "provided";
|
|
8702
|
+
legacy: "legacy";
|
|
8703
|
+
adjusted: "adjusted";
|
|
8704
|
+
}>;
|
|
8705
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
8706
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
8707
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8708
|
+
}, z.core.$strip>>>;
|
|
8185
8709
|
}, z.core.$strip>;
|
|
8186
8710
|
reproducibleCommand: z.ZodString;
|
|
8187
8711
|
timeScaffolded: z.ZodString;
|
|
@@ -8189,6 +8713,10 @@ declare function getAllJsonSchemas(): {
|
|
|
8189
8713
|
projectDirectory: z.ZodString;
|
|
8190
8714
|
relativePath: z.ZodString;
|
|
8191
8715
|
error: z.ZodOptional<z.ZodString>;
|
|
8716
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
8717
|
+
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
8718
|
+
directoryCount: z.ZodOptional<z.ZodNumber>;
|
|
8719
|
+
files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8192
8720
|
}, z.core.$strip>>;
|
|
8193
8721
|
};
|
|
8194
8722
|
//#endregion
|