@better-fullstack/types 1.8.1 → 2.0.1
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-05kDqAVs.d.mts → defaults-ByJzfP7_.d.mts} +2 -2
- package/dist/defaults-ByJzfP7_.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 +522 -46
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-CUFM_Cdl.d.mts → schemas-62dqb8iS.d.mts} +510 -46
- package/dist/schemas-62dqb8iS.d.mts.map +1 -0
- package/dist/{schemas-Hj_Gbdf0.mjs → schemas-DnEGgQzA.mjs} +68 -6
- 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-UgPd4sup.d.mts +68 -0
- package/dist/stack-graph-UgPd4sup.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -0
- package/dist/stack-graph.mjs +4 -0
- package/dist/{stack-translation-BpsvxDrw.mjs → stack-translation-COVG5IPm.mjs} +248 -16
- package/dist/stack-translation-COVG5IPm.mjs.map +1 -0
- package/dist/{stack-translation-D7H3h8Vs.d.mts → stack-translation-CYNMQUUu.d.mts} +13 -6
- package/dist/stack-translation-CYNMQUUu.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +5 -5
- package/dist/stack-translation.mjs +4 -3
- package/dist/{types-C0KHWyJI.d.mts → types-CWpfWGSN.d.mts} +7 -3
- package/dist/{types-C0KHWyJI.d.mts.map → types-CWpfWGSN.d.mts.map} +1 -1
- package/dist/types.d.mts +3 -3
- package/package.json +5 -1
- package/dist/defaults-05kDqAVs.d.mts.map +0 -1
- package/dist/schemas-CUFM_Cdl.d.mts.map +0 -1
- package/dist/schemas-Hj_Gbdf0.mjs.map +0 -1
- package/dist/stack-translation-BpsvxDrw.mjs.map +0 -1
- package/dist/stack-translation-D7H3h8Vs.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
|
+
runtime: "runtime";
|
|
24
|
+
backend: "backend";
|
|
25
|
+
database: "database";
|
|
26
|
+
orm: "orm";
|
|
27
|
+
auth: "auth";
|
|
28
|
+
payments: "payments";
|
|
29
|
+
email: "email";
|
|
30
|
+
logging: "logging";
|
|
31
|
+
observability: "observability";
|
|
32
|
+
featureFlags: "featureFlags";
|
|
33
|
+
analytics: "analytics";
|
|
34
|
+
stateManagement: "stateManagement";
|
|
35
|
+
forms: "forms";
|
|
36
|
+
validation: "validation";
|
|
37
|
+
testing: "testing";
|
|
38
|
+
jobQueue: "jobQueue";
|
|
39
|
+
caching: "caching";
|
|
40
|
+
cms: "cms";
|
|
41
|
+
i18n: "i18n";
|
|
42
|
+
search: "search";
|
|
43
|
+
fileStorage: "fileStorage";
|
|
44
|
+
codeQuality: "codeQuality";
|
|
45
|
+
documentation: "documentation";
|
|
46
|
+
api: "api";
|
|
47
|
+
ai: "ai";
|
|
48
|
+
css: "css";
|
|
49
|
+
ui: "ui";
|
|
50
|
+
frontend: "frontend";
|
|
51
|
+
mobile: "mobile";
|
|
52
|
+
deploy: "deploy";
|
|
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
|
+
runtime: "runtime";
|
|
66
|
+
backend: "backend";
|
|
67
|
+
database: "database";
|
|
68
|
+
orm: "orm";
|
|
69
|
+
auth: "auth";
|
|
70
|
+
payments: "payments";
|
|
71
|
+
email: "email";
|
|
72
|
+
logging: "logging";
|
|
73
|
+
observability: "observability";
|
|
74
|
+
featureFlags: "featureFlags";
|
|
75
|
+
analytics: "analytics";
|
|
76
|
+
stateManagement: "stateManagement";
|
|
77
|
+
forms: "forms";
|
|
78
|
+
validation: "validation";
|
|
79
|
+
testing: "testing";
|
|
80
|
+
jobQueue: "jobQueue";
|
|
81
|
+
caching: "caching";
|
|
82
|
+
cms: "cms";
|
|
83
|
+
i18n: "i18n";
|
|
84
|
+
search: "search";
|
|
85
|
+
fileStorage: "fileStorage";
|
|
86
|
+
codeQuality: "codeQuality";
|
|
87
|
+
documentation: "documentation";
|
|
88
|
+
api: "api";
|
|
89
|
+
ai: "ai";
|
|
90
|
+
css: "css";
|
|
91
|
+
ui: "ui";
|
|
92
|
+
frontend: "frontend";
|
|
93
|
+
mobile: "mobile";
|
|
94
|
+
deploy: "deploy";
|
|
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";
|
|
@@ -105,8 +211,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
105
211
|
"docker-compose": "docker-compose";
|
|
106
212
|
}>;
|
|
107
213
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
108
|
-
none: "none";
|
|
109
214
|
ai: "ai";
|
|
215
|
+
none: "none";
|
|
110
216
|
"chat-sdk": "chat-sdk";
|
|
111
217
|
"tanstack-showcase": "tanstack-showcase";
|
|
112
218
|
}>;
|
|
@@ -192,8 +298,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
192
298
|
"ai-cli": "ai-cli";
|
|
193
299
|
}>;
|
|
194
300
|
declare const EffectSchema: z.ZodEnum<{
|
|
195
|
-
none: "none";
|
|
196
301
|
effect: "effect";
|
|
302
|
+
none: "none";
|
|
197
303
|
"effect-full": "effect-full";
|
|
198
304
|
}>;
|
|
199
305
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -494,8 +600,8 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
494
600
|
chi: "chi";
|
|
495
601
|
}>;
|
|
496
602
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
497
|
-
none: "none";
|
|
498
603
|
gorm: "gorm";
|
|
604
|
+
none: "none";
|
|
499
605
|
sqlc: "sqlc";
|
|
500
606
|
ent: "ent";
|
|
501
607
|
}>;
|
|
@@ -666,6 +772,7 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
|
666
772
|
"postcss-only": "postcss-only";
|
|
667
773
|
}>;
|
|
668
774
|
declare const UILibrarySchema: z.ZodEnum<{
|
|
775
|
+
mui: "mui";
|
|
669
776
|
none: "none";
|
|
670
777
|
"shadcn-ui": "shadcn-ui";
|
|
671
778
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -676,7 +783,6 @@ declare const UILibrarySchema: z.ZodEnum<{
|
|
|
676
783
|
"chakra-ui": "chakra-ui";
|
|
677
784
|
nextui: "nextui";
|
|
678
785
|
mantine: "mantine";
|
|
679
|
-
mui: "mui";
|
|
680
786
|
antd: "antd";
|
|
681
787
|
"base-ui": "base-ui";
|
|
682
788
|
"ark-ui": "ark-ui";
|
|
@@ -755,10 +861,10 @@ declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
|
755
861
|
large: "large";
|
|
756
862
|
}>;
|
|
757
863
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
864
|
+
error: "error";
|
|
758
865
|
merge: "merge";
|
|
759
866
|
overwrite: "overwrite";
|
|
760
867
|
increment: "increment";
|
|
761
|
-
error: "error";
|
|
762
868
|
}>;
|
|
763
869
|
declare const TemplateSchema: z.ZodEnum<{
|
|
764
870
|
none: "none";
|
|
@@ -781,6 +887,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
781
887
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
782
888
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
783
889
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
890
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
784
891
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
785
892
|
typescript: "typescript";
|
|
786
893
|
"react-native": "react-native";
|
|
@@ -876,8 +983,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
876
983
|
"docker-compose": "docker-compose";
|
|
877
984
|
}>>>;
|
|
878
985
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
879
|
-
none: "none";
|
|
880
986
|
ai: "ai";
|
|
987
|
+
none: "none";
|
|
881
988
|
"chat-sdk": "chat-sdk";
|
|
882
989
|
"tanstack-showcase": "tanstack-showcase";
|
|
883
990
|
}>>>;
|
|
@@ -953,10 +1060,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
953
1060
|
vercel: "vercel";
|
|
954
1061
|
}>>;
|
|
955
1062
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1063
|
+
error: "error";
|
|
956
1064
|
merge: "merge";
|
|
957
1065
|
overwrite: "overwrite";
|
|
958
1066
|
increment: "increment";
|
|
959
|
-
error: "error";
|
|
960
1067
|
}>>;
|
|
961
1068
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
962
1069
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -983,8 +1090,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
983
1090
|
"ai-cli": "ai-cli";
|
|
984
1091
|
}>>;
|
|
985
1092
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
986
|
-
none: "none";
|
|
987
1093
|
effect: "effect";
|
|
1094
|
+
none: "none";
|
|
988
1095
|
"effect-full": "effect-full";
|
|
989
1096
|
}>>;
|
|
990
1097
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1035,6 +1142,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1035
1142
|
"postcss-only": "postcss-only";
|
|
1036
1143
|
}>>;
|
|
1037
1144
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1145
|
+
mui: "mui";
|
|
1038
1146
|
none: "none";
|
|
1039
1147
|
"shadcn-ui": "shadcn-ui";
|
|
1040
1148
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1045,7 +1153,6 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1045
1153
|
"chakra-ui": "chakra-ui";
|
|
1046
1154
|
nextui: "nextui";
|
|
1047
1155
|
mantine: "mantine";
|
|
1048
|
-
mui: "mui";
|
|
1049
1156
|
antd: "antd";
|
|
1050
1157
|
"base-ui": "base-ui";
|
|
1051
1158
|
"ark-ui": "ark-ui";
|
|
@@ -1381,8 +1488,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1381
1488
|
chi: "chi";
|
|
1382
1489
|
}>>;
|
|
1383
1490
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1384
|
-
none: "none";
|
|
1385
1491
|
gorm: "gorm";
|
|
1492
|
+
none: "none";
|
|
1386
1493
|
sqlc: "sqlc";
|
|
1387
1494
|
ent: "ent";
|
|
1388
1495
|
}>>;
|
|
@@ -1545,6 +1652,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1545
1652
|
"agents-md": "agents-md";
|
|
1546
1653
|
cursorrules: "cursorrules";
|
|
1547
1654
|
}>>>;
|
|
1655
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1548
1656
|
}, z.core.$strip>;
|
|
1549
1657
|
declare const AddInputSchema: z.ZodObject<{
|
|
1550
1658
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1614,6 +1722,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1614
1722
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
1615
1723
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
1616
1724
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
1725
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
1617
1726
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
1618
1727
|
typescript: "typescript";
|
|
1619
1728
|
"react-native": "react-native";
|
|
@@ -1709,8 +1818,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1709
1818
|
"docker-compose": "docker-compose";
|
|
1710
1819
|
}>>>;
|
|
1711
1820
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1712
|
-
none: "none";
|
|
1713
1821
|
ai: "ai";
|
|
1822
|
+
none: "none";
|
|
1714
1823
|
"chat-sdk": "chat-sdk";
|
|
1715
1824
|
"tanstack-showcase": "tanstack-showcase";
|
|
1716
1825
|
}>>>;
|
|
@@ -1786,10 +1895,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1786
1895
|
vercel: "vercel";
|
|
1787
1896
|
}>>;
|
|
1788
1897
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1898
|
+
error: "error";
|
|
1789
1899
|
merge: "merge";
|
|
1790
1900
|
overwrite: "overwrite";
|
|
1791
1901
|
increment: "increment";
|
|
1792
|
-
error: "error";
|
|
1793
1902
|
}>>;
|
|
1794
1903
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1795
1904
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1816,8 +1925,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1816
1925
|
"ai-cli": "ai-cli";
|
|
1817
1926
|
}>>;
|
|
1818
1927
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1819
|
-
none: "none";
|
|
1820
1928
|
effect: "effect";
|
|
1929
|
+
none: "none";
|
|
1821
1930
|
"effect-full": "effect-full";
|
|
1822
1931
|
}>>;
|
|
1823
1932
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1868,6 +1977,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1868
1977
|
"postcss-only": "postcss-only";
|
|
1869
1978
|
}>>;
|
|
1870
1979
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1980
|
+
mui: "mui";
|
|
1871
1981
|
none: "none";
|
|
1872
1982
|
"shadcn-ui": "shadcn-ui";
|
|
1873
1983
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1878,7 +1988,6 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1878
1988
|
"chakra-ui": "chakra-ui";
|
|
1879
1989
|
nextui: "nextui";
|
|
1880
1990
|
mantine: "mantine";
|
|
1881
|
-
mui: "mui";
|
|
1882
1991
|
antd: "antd";
|
|
1883
1992
|
"base-ui": "base-ui";
|
|
1884
1993
|
"ark-ui": "ark-ui";
|
|
@@ -2214,8 +2323,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2214
2323
|
chi: "chi";
|
|
2215
2324
|
}>>;
|
|
2216
2325
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2217
|
-
none: "none";
|
|
2218
2326
|
gorm: "gorm";
|
|
2327
|
+
none: "none";
|
|
2219
2328
|
sqlc: "sqlc";
|
|
2220
2329
|
ent: "ent";
|
|
2221
2330
|
}>>;
|
|
@@ -2378,6 +2487,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2378
2487
|
"agents-md": "agents-md";
|
|
2379
2488
|
cursorrules: "cursorrules";
|
|
2380
2489
|
}>>>;
|
|
2490
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2381
2491
|
projectDirectory: z.ZodOptional<z.ZodString>;
|
|
2382
2492
|
}, z.core.$strip>;
|
|
2383
2493
|
declare const ProjectConfigSchema: z.ZodObject<{
|
|
@@ -2481,8 +2591,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2481
2591
|
"docker-compose": "docker-compose";
|
|
2482
2592
|
}>>;
|
|
2483
2593
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2484
|
-
none: "none";
|
|
2485
2594
|
ai: "ai";
|
|
2595
|
+
none: "none";
|
|
2486
2596
|
"chat-sdk": "chat-sdk";
|
|
2487
2597
|
"tanstack-showcase": "tanstack-showcase";
|
|
2488
2598
|
}>>;
|
|
@@ -2577,8 +2687,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2577
2687
|
"ai-cli": "ai-cli";
|
|
2578
2688
|
}>;
|
|
2579
2689
|
effect: z.ZodEnum<{
|
|
2580
|
-
none: "none";
|
|
2581
2690
|
effect: "effect";
|
|
2691
|
+
none: "none";
|
|
2582
2692
|
"effect-full": "effect-full";
|
|
2583
2693
|
}>;
|
|
2584
2694
|
stateManagement: z.ZodEnum<{
|
|
@@ -2629,6 +2739,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2629
2739
|
"postcss-only": "postcss-only";
|
|
2630
2740
|
}>;
|
|
2631
2741
|
uiLibrary: z.ZodEnum<{
|
|
2742
|
+
mui: "mui";
|
|
2632
2743
|
none: "none";
|
|
2633
2744
|
"shadcn-ui": "shadcn-ui";
|
|
2634
2745
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2639,7 +2750,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2639
2750
|
"chakra-ui": "chakra-ui";
|
|
2640
2751
|
nextui: "nextui";
|
|
2641
2752
|
mantine: "mantine";
|
|
2642
|
-
mui: "mui";
|
|
2643
2753
|
antd: "antd";
|
|
2644
2754
|
"base-ui": "base-ui";
|
|
2645
2755
|
"ark-ui": "ark-ui";
|
|
@@ -2975,8 +3085,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2975
3085
|
chi: "chi";
|
|
2976
3086
|
}>;
|
|
2977
3087
|
goOrm: z.ZodEnum<{
|
|
2978
|
-
none: "none";
|
|
2979
3088
|
gorm: "gorm";
|
|
3089
|
+
none: "none";
|
|
2980
3090
|
sqlc: "sqlc";
|
|
2981
3091
|
ent: "ent";
|
|
2982
3092
|
}>;
|
|
@@ -3139,10 +3249,69 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3139
3249
|
"agents-md": "agents-md";
|
|
3140
3250
|
cursorrules: "cursorrules";
|
|
3141
3251
|
}>>;
|
|
3252
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
|
+
id: z.ZodString;
|
|
3254
|
+
role: z.ZodEnum<{
|
|
3255
|
+
runtime: "runtime";
|
|
3256
|
+
backend: "backend";
|
|
3257
|
+
database: "database";
|
|
3258
|
+
orm: "orm";
|
|
3259
|
+
auth: "auth";
|
|
3260
|
+
payments: "payments";
|
|
3261
|
+
email: "email";
|
|
3262
|
+
logging: "logging";
|
|
3263
|
+
observability: "observability";
|
|
3264
|
+
featureFlags: "featureFlags";
|
|
3265
|
+
analytics: "analytics";
|
|
3266
|
+
stateManagement: "stateManagement";
|
|
3267
|
+
forms: "forms";
|
|
3268
|
+
validation: "validation";
|
|
3269
|
+
testing: "testing";
|
|
3270
|
+
jobQueue: "jobQueue";
|
|
3271
|
+
caching: "caching";
|
|
3272
|
+
cms: "cms";
|
|
3273
|
+
i18n: "i18n";
|
|
3274
|
+
search: "search";
|
|
3275
|
+
fileStorage: "fileStorage";
|
|
3276
|
+
codeQuality: "codeQuality";
|
|
3277
|
+
documentation: "documentation";
|
|
3278
|
+
api: "api";
|
|
3279
|
+
ai: "ai";
|
|
3280
|
+
css: "css";
|
|
3281
|
+
ui: "ui";
|
|
3282
|
+
frontend: "frontend";
|
|
3283
|
+
mobile: "mobile";
|
|
3284
|
+
deploy: "deploy";
|
|
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>>>;
|
|
3142
3309
|
}, z.core.$strip>;
|
|
3143
3310
|
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
3144
3311
|
version: z.ZodString;
|
|
3145
3312
|
createdAt: z.ZodString;
|
|
3313
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
3314
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3146
3315
|
ecosystem: z.ZodEnum<{
|
|
3147
3316
|
typescript: "typescript";
|
|
3148
3317
|
"react-native": "react-native";
|
|
@@ -3240,8 +3409,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3240
3409
|
"docker-compose": "docker-compose";
|
|
3241
3410
|
}>>;
|
|
3242
3411
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3243
|
-
none: "none";
|
|
3244
3412
|
ai: "ai";
|
|
3413
|
+
none: "none";
|
|
3245
3414
|
"chat-sdk": "chat-sdk";
|
|
3246
3415
|
"tanstack-showcase": "tanstack-showcase";
|
|
3247
3416
|
}>>;
|
|
@@ -3334,8 +3503,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3334
3503
|
"ai-cli": "ai-cli";
|
|
3335
3504
|
}>;
|
|
3336
3505
|
effect: z.ZodEnum<{
|
|
3337
|
-
none: "none";
|
|
3338
3506
|
effect: "effect";
|
|
3507
|
+
none: "none";
|
|
3339
3508
|
"effect-full": "effect-full";
|
|
3340
3509
|
}>;
|
|
3341
3510
|
stateManagement: z.ZodEnum<{
|
|
@@ -3386,6 +3555,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3386
3555
|
"postcss-only": "postcss-only";
|
|
3387
3556
|
}>;
|
|
3388
3557
|
uiLibrary: z.ZodEnum<{
|
|
3558
|
+
mui: "mui";
|
|
3389
3559
|
none: "none";
|
|
3390
3560
|
"shadcn-ui": "shadcn-ui";
|
|
3391
3561
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3396,7 +3566,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3396
3566
|
"chakra-ui": "chakra-ui";
|
|
3397
3567
|
nextui: "nextui";
|
|
3398
3568
|
mantine: "mantine";
|
|
3399
|
-
mui: "mui";
|
|
3400
3569
|
antd: "antd";
|
|
3401
3570
|
"base-ui": "base-ui";
|
|
3402
3571
|
"ark-ui": "ark-ui";
|
|
@@ -3732,8 +3901,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3732
3901
|
chi: "chi";
|
|
3733
3902
|
}>;
|
|
3734
3903
|
goOrm: z.ZodEnum<{
|
|
3735
|
-
none: "none";
|
|
3736
3904
|
gorm: "gorm";
|
|
3905
|
+
none: "none";
|
|
3737
3906
|
sqlc: "sqlc";
|
|
3738
3907
|
ent: "ent";
|
|
3739
3908
|
}>;
|
|
@@ -3896,10 +4065,69 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3896
4065
|
"agents-md": "agents-md";
|
|
3897
4066
|
cursorrules: "cursorrules";
|
|
3898
4067
|
}>>;
|
|
4068
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
|
+
id: z.ZodString;
|
|
4070
|
+
role: z.ZodEnum<{
|
|
4071
|
+
runtime: "runtime";
|
|
4072
|
+
backend: "backend";
|
|
4073
|
+
database: "database";
|
|
4074
|
+
orm: "orm";
|
|
4075
|
+
auth: "auth";
|
|
4076
|
+
payments: "payments";
|
|
4077
|
+
email: "email";
|
|
4078
|
+
logging: "logging";
|
|
4079
|
+
observability: "observability";
|
|
4080
|
+
featureFlags: "featureFlags";
|
|
4081
|
+
analytics: "analytics";
|
|
4082
|
+
stateManagement: "stateManagement";
|
|
4083
|
+
forms: "forms";
|
|
4084
|
+
validation: "validation";
|
|
4085
|
+
testing: "testing";
|
|
4086
|
+
jobQueue: "jobQueue";
|
|
4087
|
+
caching: "caching";
|
|
4088
|
+
cms: "cms";
|
|
4089
|
+
i18n: "i18n";
|
|
4090
|
+
search: "search";
|
|
4091
|
+
fileStorage: "fileStorage";
|
|
4092
|
+
codeQuality: "codeQuality";
|
|
4093
|
+
documentation: "documentation";
|
|
4094
|
+
api: "api";
|
|
4095
|
+
ai: "ai";
|
|
4096
|
+
css: "css";
|
|
4097
|
+
ui: "ui";
|
|
4098
|
+
frontend: "frontend";
|
|
4099
|
+
mobile: "mobile";
|
|
4100
|
+
deploy: "deploy";
|
|
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>>>;
|
|
3899
4125
|
}, z.core.$strip>;
|
|
3900
4126
|
declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
3901
4127
|
version: z.ZodString;
|
|
3902
4128
|
createdAt: z.ZodString;
|
|
4129
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4130
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3903
4131
|
ecosystem: z.ZodEnum<{
|
|
3904
4132
|
typescript: "typescript";
|
|
3905
4133
|
"react-native": "react-native";
|
|
@@ -3997,8 +4225,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
3997
4225
|
"docker-compose": "docker-compose";
|
|
3998
4226
|
}>>;
|
|
3999
4227
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4000
|
-
none: "none";
|
|
4001
4228
|
ai: "ai";
|
|
4229
|
+
none: "none";
|
|
4002
4230
|
"chat-sdk": "chat-sdk";
|
|
4003
4231
|
"tanstack-showcase": "tanstack-showcase";
|
|
4004
4232
|
}>>;
|
|
@@ -4091,8 +4319,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4091
4319
|
"ai-cli": "ai-cli";
|
|
4092
4320
|
}>;
|
|
4093
4321
|
effect: z.ZodEnum<{
|
|
4094
|
-
none: "none";
|
|
4095
4322
|
effect: "effect";
|
|
4323
|
+
none: "none";
|
|
4096
4324
|
"effect-full": "effect-full";
|
|
4097
4325
|
}>;
|
|
4098
4326
|
stateManagement: z.ZodEnum<{
|
|
@@ -4143,6 +4371,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4143
4371
|
"postcss-only": "postcss-only";
|
|
4144
4372
|
}>;
|
|
4145
4373
|
uiLibrary: z.ZodEnum<{
|
|
4374
|
+
mui: "mui";
|
|
4146
4375
|
none: "none";
|
|
4147
4376
|
"shadcn-ui": "shadcn-ui";
|
|
4148
4377
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4153,7 +4382,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4153
4382
|
"chakra-ui": "chakra-ui";
|
|
4154
4383
|
nextui: "nextui";
|
|
4155
4384
|
mantine: "mantine";
|
|
4156
|
-
mui: "mui";
|
|
4157
4385
|
antd: "antd";
|
|
4158
4386
|
"base-ui": "base-ui";
|
|
4159
4387
|
"ark-ui": "ark-ui";
|
|
@@ -4489,8 +4717,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4489
4717
|
chi: "chi";
|
|
4490
4718
|
}>;
|
|
4491
4719
|
goOrm: z.ZodEnum<{
|
|
4492
|
-
none: "none";
|
|
4493
4720
|
gorm: "gorm";
|
|
4721
|
+
none: "none";
|
|
4494
4722
|
sqlc: "sqlc";
|
|
4495
4723
|
ent: "ent";
|
|
4496
4724
|
}>;
|
|
@@ -4653,11 +4881,70 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4653
4881
|
"agents-md": "agents-md";
|
|
4654
4882
|
cursorrules: "cursorrules";
|
|
4655
4883
|
}>>;
|
|
4884
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
|
+
id: z.ZodString;
|
|
4886
|
+
role: z.ZodEnum<{
|
|
4887
|
+
runtime: "runtime";
|
|
4888
|
+
backend: "backend";
|
|
4889
|
+
database: "database";
|
|
4890
|
+
orm: "orm";
|
|
4891
|
+
auth: "auth";
|
|
4892
|
+
payments: "payments";
|
|
4893
|
+
email: "email";
|
|
4894
|
+
logging: "logging";
|
|
4895
|
+
observability: "observability";
|
|
4896
|
+
featureFlags: "featureFlags";
|
|
4897
|
+
analytics: "analytics";
|
|
4898
|
+
stateManagement: "stateManagement";
|
|
4899
|
+
forms: "forms";
|
|
4900
|
+
validation: "validation";
|
|
4901
|
+
testing: "testing";
|
|
4902
|
+
jobQueue: "jobQueue";
|
|
4903
|
+
caching: "caching";
|
|
4904
|
+
cms: "cms";
|
|
4905
|
+
i18n: "i18n";
|
|
4906
|
+
search: "search";
|
|
4907
|
+
fileStorage: "fileStorage";
|
|
4908
|
+
codeQuality: "codeQuality";
|
|
4909
|
+
documentation: "documentation";
|
|
4910
|
+
api: "api";
|
|
4911
|
+
ai: "ai";
|
|
4912
|
+
css: "css";
|
|
4913
|
+
ui: "ui";
|
|
4914
|
+
frontend: "frontend";
|
|
4915
|
+
mobile: "mobile";
|
|
4916
|
+
deploy: "deploy";
|
|
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>>>;
|
|
4656
4941
|
}, z.core.$strip>;
|
|
4657
4942
|
declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
4658
4943
|
$schema: z.ZodOptional<z.ZodString>;
|
|
4659
4944
|
version: z.ZodString;
|
|
4660
4945
|
createdAt: z.ZodString;
|
|
4946
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4947
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4661
4948
|
ecosystem: z.ZodEnum<{
|
|
4662
4949
|
typescript: "typescript";
|
|
4663
4950
|
"react-native": "react-native";
|
|
@@ -4755,8 +5042,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4755
5042
|
"docker-compose": "docker-compose";
|
|
4756
5043
|
}>>;
|
|
4757
5044
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4758
|
-
none: "none";
|
|
4759
5045
|
ai: "ai";
|
|
5046
|
+
none: "none";
|
|
4760
5047
|
"chat-sdk": "chat-sdk";
|
|
4761
5048
|
"tanstack-showcase": "tanstack-showcase";
|
|
4762
5049
|
}>>;
|
|
@@ -4849,8 +5136,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4849
5136
|
"ai-cli": "ai-cli";
|
|
4850
5137
|
}>;
|
|
4851
5138
|
effect: z.ZodEnum<{
|
|
4852
|
-
none: "none";
|
|
4853
5139
|
effect: "effect";
|
|
5140
|
+
none: "none";
|
|
4854
5141
|
"effect-full": "effect-full";
|
|
4855
5142
|
}>;
|
|
4856
5143
|
stateManagement: z.ZodEnum<{
|
|
@@ -4901,6 +5188,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4901
5188
|
"postcss-only": "postcss-only";
|
|
4902
5189
|
}>;
|
|
4903
5190
|
uiLibrary: z.ZodEnum<{
|
|
5191
|
+
mui: "mui";
|
|
4904
5192
|
none: "none";
|
|
4905
5193
|
"shadcn-ui": "shadcn-ui";
|
|
4906
5194
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4911,7 +5199,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
4911
5199
|
"chakra-ui": "chakra-ui";
|
|
4912
5200
|
nextui: "nextui";
|
|
4913
5201
|
mantine: "mantine";
|
|
4914
|
-
mui: "mui";
|
|
4915
5202
|
antd: "antd";
|
|
4916
5203
|
"base-ui": "base-ui";
|
|
4917
5204
|
"ark-ui": "ark-ui";
|
|
@@ -5247,8 +5534,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5247
5534
|
chi: "chi";
|
|
5248
5535
|
}>;
|
|
5249
5536
|
goOrm: z.ZodEnum<{
|
|
5250
|
-
none: "none";
|
|
5251
5537
|
gorm: "gorm";
|
|
5538
|
+
none: "none";
|
|
5252
5539
|
sqlc: "sqlc";
|
|
5253
5540
|
ent: "ent";
|
|
5254
5541
|
}>;
|
|
@@ -5411,11 +5698,70 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5411
5698
|
"agents-md": "agents-md";
|
|
5412
5699
|
cursorrules: "cursorrules";
|
|
5413
5700
|
}>>;
|
|
5701
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
|
+
id: z.ZodString;
|
|
5703
|
+
role: z.ZodEnum<{
|
|
5704
|
+
runtime: "runtime";
|
|
5705
|
+
backend: "backend";
|
|
5706
|
+
database: "database";
|
|
5707
|
+
orm: "orm";
|
|
5708
|
+
auth: "auth";
|
|
5709
|
+
payments: "payments";
|
|
5710
|
+
email: "email";
|
|
5711
|
+
logging: "logging";
|
|
5712
|
+
observability: "observability";
|
|
5713
|
+
featureFlags: "featureFlags";
|
|
5714
|
+
analytics: "analytics";
|
|
5715
|
+
stateManagement: "stateManagement";
|
|
5716
|
+
forms: "forms";
|
|
5717
|
+
validation: "validation";
|
|
5718
|
+
testing: "testing";
|
|
5719
|
+
jobQueue: "jobQueue";
|
|
5720
|
+
caching: "caching";
|
|
5721
|
+
cms: "cms";
|
|
5722
|
+
i18n: "i18n";
|
|
5723
|
+
search: "search";
|
|
5724
|
+
fileStorage: "fileStorage";
|
|
5725
|
+
codeQuality: "codeQuality";
|
|
5726
|
+
documentation: "documentation";
|
|
5727
|
+
api: "api";
|
|
5728
|
+
ai: "ai";
|
|
5729
|
+
css: "css";
|
|
5730
|
+
ui: "ui";
|
|
5731
|
+
frontend: "frontend";
|
|
5732
|
+
mobile: "mobile";
|
|
5733
|
+
deploy: "deploy";
|
|
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>>>;
|
|
5414
5758
|
}, z.core.$strip>;
|
|
5415
5759
|
declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
5416
5760
|
$schema: z.ZodOptional<z.ZodString>;
|
|
5417
5761
|
version: z.ZodString;
|
|
5418
5762
|
createdAt: z.ZodString;
|
|
5763
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
5764
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5419
5765
|
ecosystem: z.ZodEnum<{
|
|
5420
5766
|
typescript: "typescript";
|
|
5421
5767
|
"react-native": "react-native";
|
|
@@ -5513,8 +5859,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5513
5859
|
"docker-compose": "docker-compose";
|
|
5514
5860
|
}>>;
|
|
5515
5861
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5516
|
-
none: "none";
|
|
5517
5862
|
ai: "ai";
|
|
5863
|
+
none: "none";
|
|
5518
5864
|
"chat-sdk": "chat-sdk";
|
|
5519
5865
|
"tanstack-showcase": "tanstack-showcase";
|
|
5520
5866
|
}>>;
|
|
@@ -5607,8 +5953,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5607
5953
|
"ai-cli": "ai-cli";
|
|
5608
5954
|
}>;
|
|
5609
5955
|
effect: z.ZodEnum<{
|
|
5610
|
-
none: "none";
|
|
5611
5956
|
effect: "effect";
|
|
5957
|
+
none: "none";
|
|
5612
5958
|
"effect-full": "effect-full";
|
|
5613
5959
|
}>;
|
|
5614
5960
|
stateManagement: z.ZodEnum<{
|
|
@@ -5659,6 +6005,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5659
6005
|
"postcss-only": "postcss-only";
|
|
5660
6006
|
}>;
|
|
5661
6007
|
uiLibrary: z.ZodEnum<{
|
|
6008
|
+
mui: "mui";
|
|
5662
6009
|
none: "none";
|
|
5663
6010
|
"shadcn-ui": "shadcn-ui";
|
|
5664
6011
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -5669,7 +6016,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5669
6016
|
"chakra-ui": "chakra-ui";
|
|
5670
6017
|
nextui: "nextui";
|
|
5671
6018
|
mantine: "mantine";
|
|
5672
|
-
mui: "mui";
|
|
5673
6019
|
antd: "antd";
|
|
5674
6020
|
"base-ui": "base-ui";
|
|
5675
6021
|
"ark-ui": "ark-ui";
|
|
@@ -6005,8 +6351,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6005
6351
|
chi: "chi";
|
|
6006
6352
|
}>;
|
|
6007
6353
|
goOrm: z.ZodEnum<{
|
|
6008
|
-
none: "none";
|
|
6009
6354
|
gorm: "gorm";
|
|
6355
|
+
none: "none";
|
|
6010
6356
|
sqlc: "sqlc";
|
|
6011
6357
|
ent: "ent";
|
|
6012
6358
|
}>;
|
|
@@ -6169,6 +6515,63 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6169
6515
|
"agents-md": "agents-md";
|
|
6170
6516
|
cursorrules: "cursorrules";
|
|
6171
6517
|
}>>;
|
|
6518
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
|
+
id: z.ZodString;
|
|
6520
|
+
role: z.ZodEnum<{
|
|
6521
|
+
runtime: "runtime";
|
|
6522
|
+
backend: "backend";
|
|
6523
|
+
database: "database";
|
|
6524
|
+
orm: "orm";
|
|
6525
|
+
auth: "auth";
|
|
6526
|
+
payments: "payments";
|
|
6527
|
+
email: "email";
|
|
6528
|
+
logging: "logging";
|
|
6529
|
+
observability: "observability";
|
|
6530
|
+
featureFlags: "featureFlags";
|
|
6531
|
+
analytics: "analytics";
|
|
6532
|
+
stateManagement: "stateManagement";
|
|
6533
|
+
forms: "forms";
|
|
6534
|
+
validation: "validation";
|
|
6535
|
+
testing: "testing";
|
|
6536
|
+
jobQueue: "jobQueue";
|
|
6537
|
+
caching: "caching";
|
|
6538
|
+
cms: "cms";
|
|
6539
|
+
i18n: "i18n";
|
|
6540
|
+
search: "search";
|
|
6541
|
+
fileStorage: "fileStorage";
|
|
6542
|
+
codeQuality: "codeQuality";
|
|
6543
|
+
documentation: "documentation";
|
|
6544
|
+
api: "api";
|
|
6545
|
+
ai: "ai";
|
|
6546
|
+
css: "css";
|
|
6547
|
+
ui: "ui";
|
|
6548
|
+
frontend: "frontend";
|
|
6549
|
+
mobile: "mobile";
|
|
6550
|
+
deploy: "deploy";
|
|
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>>>;
|
|
6172
6575
|
}, z.core.$strip>;
|
|
6173
6576
|
declare const InitResultSchema: z.ZodObject<{
|
|
6174
6577
|
success: z.ZodBoolean;
|
|
@@ -6273,8 +6676,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6273
6676
|
"docker-compose": "docker-compose";
|
|
6274
6677
|
}>>;
|
|
6275
6678
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6276
|
-
none: "none";
|
|
6277
6679
|
ai: "ai";
|
|
6680
|
+
none: "none";
|
|
6278
6681
|
"chat-sdk": "chat-sdk";
|
|
6279
6682
|
"tanstack-showcase": "tanstack-showcase";
|
|
6280
6683
|
}>>;
|
|
@@ -6369,8 +6772,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6369
6772
|
"ai-cli": "ai-cli";
|
|
6370
6773
|
}>;
|
|
6371
6774
|
effect: z.ZodEnum<{
|
|
6372
|
-
none: "none";
|
|
6373
6775
|
effect: "effect";
|
|
6776
|
+
none: "none";
|
|
6374
6777
|
"effect-full": "effect-full";
|
|
6375
6778
|
}>;
|
|
6376
6779
|
stateManagement: z.ZodEnum<{
|
|
@@ -6421,6 +6824,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6421
6824
|
"postcss-only": "postcss-only";
|
|
6422
6825
|
}>;
|
|
6423
6826
|
uiLibrary: z.ZodEnum<{
|
|
6827
|
+
mui: "mui";
|
|
6424
6828
|
none: "none";
|
|
6425
6829
|
"shadcn-ui": "shadcn-ui";
|
|
6426
6830
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6431,7 +6835,6 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6431
6835
|
"chakra-ui": "chakra-ui";
|
|
6432
6836
|
nextui: "nextui";
|
|
6433
6837
|
mantine: "mantine";
|
|
6434
|
-
mui: "mui";
|
|
6435
6838
|
antd: "antd";
|
|
6436
6839
|
"base-ui": "base-ui";
|
|
6437
6840
|
"ark-ui": "ark-ui";
|
|
@@ -6767,8 +7170,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6767
7170
|
chi: "chi";
|
|
6768
7171
|
}>;
|
|
6769
7172
|
goOrm: z.ZodEnum<{
|
|
6770
|
-
none: "none";
|
|
6771
7173
|
gorm: "gorm";
|
|
7174
|
+
none: "none";
|
|
6772
7175
|
sqlc: "sqlc";
|
|
6773
7176
|
ent: "ent";
|
|
6774
7177
|
}>;
|
|
@@ -6931,6 +7334,63 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6931
7334
|
"agents-md": "agents-md";
|
|
6932
7335
|
cursorrules: "cursorrules";
|
|
6933
7336
|
}>>;
|
|
7337
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
|
+
id: z.ZodString;
|
|
7339
|
+
role: z.ZodEnum<{
|
|
7340
|
+
runtime: "runtime";
|
|
7341
|
+
backend: "backend";
|
|
7342
|
+
database: "database";
|
|
7343
|
+
orm: "orm";
|
|
7344
|
+
auth: "auth";
|
|
7345
|
+
payments: "payments";
|
|
7346
|
+
email: "email";
|
|
7347
|
+
logging: "logging";
|
|
7348
|
+
observability: "observability";
|
|
7349
|
+
featureFlags: "featureFlags";
|
|
7350
|
+
analytics: "analytics";
|
|
7351
|
+
stateManagement: "stateManagement";
|
|
7352
|
+
forms: "forms";
|
|
7353
|
+
validation: "validation";
|
|
7354
|
+
testing: "testing";
|
|
7355
|
+
jobQueue: "jobQueue";
|
|
7356
|
+
caching: "caching";
|
|
7357
|
+
cms: "cms";
|
|
7358
|
+
i18n: "i18n";
|
|
7359
|
+
search: "search";
|
|
7360
|
+
fileStorage: "fileStorage";
|
|
7361
|
+
codeQuality: "codeQuality";
|
|
7362
|
+
documentation: "documentation";
|
|
7363
|
+
api: "api";
|
|
7364
|
+
ai: "ai";
|
|
7365
|
+
css: "css";
|
|
7366
|
+
ui: "ui";
|
|
7367
|
+
frontend: "frontend";
|
|
7368
|
+
mobile: "mobile";
|
|
7369
|
+
deploy: "deploy";
|
|
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>>>;
|
|
6934
7394
|
}, z.core.$strip>;
|
|
6935
7395
|
reproducibleCommand: z.ZodString;
|
|
6936
7396
|
timeScaffolded: z.ZodString;
|
|
@@ -6938,6 +7398,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6938
7398
|
projectDirectory: z.ZodString;
|
|
6939
7399
|
relativePath: z.ZodString;
|
|
6940
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>>;
|
|
6941
7405
|
}, z.core.$strip>;
|
|
6942
7406
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
6943
7407
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
@@ -6945,7 +7409,7 @@ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia
|
|
|
6945
7409
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
6946
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")[];
|
|
6947
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")[];
|
|
6948
|
-
declare const EXAMPLES_VALUES: ("
|
|
7412
|
+
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
6949
7413
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
6950
7414
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
6951
7415
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
@@ -6954,17 +7418,17 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk"
|
|
|
6954
7418
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
6955
7419
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
6956
7420
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
6957
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
7421
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
6958
7422
|
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3")[];
|
|
6959
7423
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
6960
7424
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
6961
|
-
declare const EFFECT_VALUES: ("
|
|
7425
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
6962
7426
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
6963
7427
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
6964
7428
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
6965
7429
|
declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
|
|
6966
7430
|
declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
|
|
6967
|
-
declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "
|
|
7431
|
+
declare const UI_LIBRARY_VALUES: ("mui" | "none" | "shadcn-ui" | "shadcn-svelte" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "antd" | "base-ui" | "ark-ui" | "react-aria")[];
|
|
6968
7432
|
declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
|
|
6969
7433
|
declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
|
|
6970
7434
|
declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
|
|
@@ -7007,7 +7471,7 @@ declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" |
|
|
|
7007
7471
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
7008
7472
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
7009
7473
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
7010
|
-
declare const GO_ORM_VALUES: ("
|
|
7474
|
+
declare const GO_ORM_VALUES: ("gorm" | "none" | "sqlc" | "ent")[];
|
|
7011
7475
|
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
7012
7476
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
7013
7477
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
@@ -7042,5 +7506,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
7042
7506
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
7043
7507
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
7044
7508
|
//#endregion
|
|
7045
|
-
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,
|
|
7046
|
-
//# 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-62dqb8iS.d.mts.map
|