@better-fullstack/types 2.0.0 → 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-BSM_JIBn.d.mts → defaults-ByJzfP7_.d.mts} +2 -2
- package/dist/defaults-ByJzfP7_.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +1 -1
- package/dist/json-schema.d.mts +180 -180
- package/dist/{schemas-B5EgRfVL.d.mts → schemas-62dqb8iS.d.mts} +179 -179
- package/dist/schemas-62dqb8iS.d.mts.map +1 -0
- package/dist/schemas.d.mts +1 -1
- package/dist/{stack-graph-_551XvrL.d.mts → stack-graph-UgPd4sup.d.mts} +2 -2
- package/dist/{stack-graph-_551XvrL.d.mts.map → stack-graph-UgPd4sup.d.mts.map} +1 -1
- package/dist/stack-graph.d.mts +3 -3
- package/dist/{stack-translation-BcsaMRuV.mjs → stack-translation-COVG5IPm.mjs} +43 -2
- package/dist/{stack-translation-BcsaMRuV.mjs.map → stack-translation-COVG5IPm.mjs.map} +1 -1
- package/dist/{stack-translation-CqslePvp.d.mts → stack-translation-CYNMQUUu.d.mts} +3 -3
- package/dist/{stack-translation-CqslePvp.d.mts.map → stack-translation-CYNMQUUu.d.mts.map} +1 -1
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +1 -1
- package/dist/{types-DorAmN4i.d.mts → types-CWpfWGSN.d.mts} +2 -2
- package/dist/types-CWpfWGSN.d.mts.map +1 -0
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
- package/dist/defaults-BSM_JIBn.d.mts.map +0 -1
- package/dist/schemas-B5EgRfVL.d.mts.map +0 -1
- package/dist/types-DorAmN4i.d.mts.map +0 -1
|
@@ -20,36 +20,36 @@ declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
20
20
|
elixir: "elixir";
|
|
21
21
|
}>, z.ZodLiteral<"universal">]>;
|
|
22
22
|
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
23
|
-
|
|
23
|
+
runtime: "runtime";
|
|
24
|
+
backend: "backend";
|
|
24
25
|
database: "database";
|
|
25
26
|
orm: "orm";
|
|
26
27
|
auth: "auth";
|
|
27
28
|
payments: "payments";
|
|
28
|
-
frontend: "frontend";
|
|
29
|
-
backend: "backend";
|
|
30
|
-
runtime: "runtime";
|
|
31
|
-
api: "api";
|
|
32
|
-
stateManagement: "stateManagement";
|
|
33
|
-
forms: "forms";
|
|
34
|
-
testing: "testing";
|
|
35
29
|
email: "email";
|
|
36
|
-
validation: "validation";
|
|
37
|
-
jobQueue: "jobQueue";
|
|
38
30
|
logging: "logging";
|
|
39
31
|
observability: "observability";
|
|
40
32
|
featureFlags: "featureFlags";
|
|
41
33
|
analytics: "analytics";
|
|
42
|
-
|
|
34
|
+
stateManagement: "stateManagement";
|
|
35
|
+
forms: "forms";
|
|
36
|
+
validation: "validation";
|
|
37
|
+
testing: "testing";
|
|
38
|
+
jobQueue: "jobQueue";
|
|
43
39
|
caching: "caching";
|
|
40
|
+
cms: "cms";
|
|
44
41
|
i18n: "i18n";
|
|
45
42
|
search: "search";
|
|
46
43
|
fileStorage: "fileStorage";
|
|
44
|
+
codeQuality: "codeQuality";
|
|
45
|
+
documentation: "documentation";
|
|
46
|
+
api: "api";
|
|
47
|
+
ai: "ai";
|
|
48
|
+
css: "css";
|
|
49
|
+
ui: "ui";
|
|
50
|
+
frontend: "frontend";
|
|
47
51
|
mobile: "mobile";
|
|
48
52
|
deploy: "deploy";
|
|
49
|
-
ui: "ui";
|
|
50
|
-
css: "css";
|
|
51
|
-
documentation: "documentation";
|
|
52
|
-
codeQuality: "codeQuality";
|
|
53
53
|
appPlatform: "appPlatform";
|
|
54
54
|
}>;
|
|
55
55
|
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
@@ -62,36 +62,36 @@ declare const StackPartSourceSchema: z.ZodEnum<{
|
|
|
62
62
|
declare const StackPartSchema: z.ZodObject<{
|
|
63
63
|
id: z.ZodString;
|
|
64
64
|
role: z.ZodEnum<{
|
|
65
|
-
|
|
65
|
+
runtime: "runtime";
|
|
66
|
+
backend: "backend";
|
|
66
67
|
database: "database";
|
|
67
68
|
orm: "orm";
|
|
68
69
|
auth: "auth";
|
|
69
70
|
payments: "payments";
|
|
70
|
-
frontend: "frontend";
|
|
71
|
-
backend: "backend";
|
|
72
|
-
runtime: "runtime";
|
|
73
|
-
api: "api";
|
|
74
|
-
stateManagement: "stateManagement";
|
|
75
|
-
forms: "forms";
|
|
76
|
-
testing: "testing";
|
|
77
71
|
email: "email";
|
|
78
|
-
validation: "validation";
|
|
79
|
-
jobQueue: "jobQueue";
|
|
80
72
|
logging: "logging";
|
|
81
73
|
observability: "observability";
|
|
82
74
|
featureFlags: "featureFlags";
|
|
83
75
|
analytics: "analytics";
|
|
84
|
-
|
|
76
|
+
stateManagement: "stateManagement";
|
|
77
|
+
forms: "forms";
|
|
78
|
+
validation: "validation";
|
|
79
|
+
testing: "testing";
|
|
80
|
+
jobQueue: "jobQueue";
|
|
85
81
|
caching: "caching";
|
|
82
|
+
cms: "cms";
|
|
86
83
|
i18n: "i18n";
|
|
87
84
|
search: "search";
|
|
88
85
|
fileStorage: "fileStorage";
|
|
86
|
+
codeQuality: "codeQuality";
|
|
87
|
+
documentation: "documentation";
|
|
88
|
+
api: "api";
|
|
89
|
+
ai: "ai";
|
|
90
|
+
css: "css";
|
|
91
|
+
ui: "ui";
|
|
92
|
+
frontend: "frontend";
|
|
89
93
|
mobile: "mobile";
|
|
90
94
|
deploy: "deploy";
|
|
91
|
-
ui: "ui";
|
|
92
|
-
css: "css";
|
|
93
|
-
documentation: "documentation";
|
|
94
|
-
codeQuality: "codeQuality";
|
|
95
95
|
appPlatform: "appPlatform";
|
|
96
96
|
}>;
|
|
97
97
|
toolId: z.ZodString;
|
|
@@ -211,8 +211,8 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
211
211
|
"docker-compose": "docker-compose";
|
|
212
212
|
}>;
|
|
213
213
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
214
|
-
none: "none";
|
|
215
214
|
ai: "ai";
|
|
215
|
+
none: "none";
|
|
216
216
|
"chat-sdk": "chat-sdk";
|
|
217
217
|
"tanstack-showcase": "tanstack-showcase";
|
|
218
218
|
}>;
|
|
@@ -298,8 +298,8 @@ declare const AISchema: z.ZodEnum<{
|
|
|
298
298
|
"ai-cli": "ai-cli";
|
|
299
299
|
}>;
|
|
300
300
|
declare const EffectSchema: z.ZodEnum<{
|
|
301
|
-
none: "none";
|
|
302
301
|
effect: "effect";
|
|
302
|
+
none: "none";
|
|
303
303
|
"effect-full": "effect-full";
|
|
304
304
|
}>;
|
|
305
305
|
declare const StateManagementSchema: z.ZodEnum<{
|
|
@@ -444,9 +444,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
444
444
|
}>;
|
|
445
445
|
declare const MobileUISchema: z.ZodEnum<{
|
|
446
446
|
none: "none";
|
|
447
|
-
uniwind: "uniwind";
|
|
448
447
|
tamagui: "tamagui";
|
|
449
448
|
"gluestack-ui": "gluestack-ui";
|
|
449
|
+
uniwind: "uniwind";
|
|
450
450
|
unistyles: "unistyles";
|
|
451
451
|
}>;
|
|
452
452
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -600,8 +600,8 @@ declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
|
600
600
|
chi: "chi";
|
|
601
601
|
}>;
|
|
602
602
|
declare const GoOrmSchema: z.ZodEnum<{
|
|
603
|
-
none: "none";
|
|
604
603
|
gorm: "gorm";
|
|
604
|
+
none: "none";
|
|
605
605
|
sqlc: "sqlc";
|
|
606
606
|
ent: "ent";
|
|
607
607
|
}>;
|
|
@@ -772,6 +772,7 @@ declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
|
772
772
|
"postcss-only": "postcss-only";
|
|
773
773
|
}>;
|
|
774
774
|
declare const UILibrarySchema: z.ZodEnum<{
|
|
775
|
+
mui: "mui";
|
|
775
776
|
none: "none";
|
|
776
777
|
"shadcn-ui": "shadcn-ui";
|
|
777
778
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -782,7 +783,6 @@ declare const UILibrarySchema: z.ZodEnum<{
|
|
|
782
783
|
"chakra-ui": "chakra-ui";
|
|
783
784
|
nextui: "nextui";
|
|
784
785
|
mantine: "mantine";
|
|
785
|
-
mui: "mui";
|
|
786
786
|
antd: "antd";
|
|
787
787
|
"base-ui": "base-ui";
|
|
788
788
|
"ark-ui": "ark-ui";
|
|
@@ -861,27 +861,27 @@ declare const ShadcnRadiusSchema: z.ZodEnum<{
|
|
|
861
861
|
large: "large";
|
|
862
862
|
}>;
|
|
863
863
|
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
864
|
+
error: "error";
|
|
864
865
|
merge: "merge";
|
|
865
866
|
overwrite: "overwrite";
|
|
866
867
|
increment: "increment";
|
|
867
|
-
error: "error";
|
|
868
868
|
}>;
|
|
869
869
|
declare const TemplateSchema: z.ZodEnum<{
|
|
870
870
|
none: "none";
|
|
871
|
+
uniwind: "uniwind";
|
|
871
872
|
mern: "mern";
|
|
872
873
|
pern: "pern";
|
|
873
874
|
t3: "t3";
|
|
874
|
-
uniwind: "uniwind";
|
|
875
875
|
}>;
|
|
876
876
|
declare const ProjectNameSchema: z.ZodString;
|
|
877
877
|
declare const CreateInputSchema: z.ZodObject<{
|
|
878
878
|
projectName: z.ZodOptional<z.ZodString>;
|
|
879
879
|
template: z.ZodOptional<z.ZodEnum<{
|
|
880
880
|
none: "none";
|
|
881
|
+
uniwind: "uniwind";
|
|
881
882
|
mern: "mern";
|
|
882
883
|
pern: "pern";
|
|
883
884
|
t3: "t3";
|
|
884
|
-
uniwind: "uniwind";
|
|
885
885
|
}>>;
|
|
886
886
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
887
887
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -983,8 +983,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
983
983
|
"docker-compose": "docker-compose";
|
|
984
984
|
}>>>;
|
|
985
985
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
986
|
-
none: "none";
|
|
987
986
|
ai: "ai";
|
|
987
|
+
none: "none";
|
|
988
988
|
"chat-sdk": "chat-sdk";
|
|
989
989
|
"tanstack-showcase": "tanstack-showcase";
|
|
990
990
|
}>>>;
|
|
@@ -1060,10 +1060,10 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1060
1060
|
vercel: "vercel";
|
|
1061
1061
|
}>>;
|
|
1062
1062
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1063
|
+
error: "error";
|
|
1063
1064
|
merge: "merge";
|
|
1064
1065
|
overwrite: "overwrite";
|
|
1065
1066
|
increment: "increment";
|
|
1066
|
-
error: "error";
|
|
1067
1067
|
}>>;
|
|
1068
1068
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1069
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1090,8 +1090,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1090
1090
|
"ai-cli": "ai-cli";
|
|
1091
1091
|
}>>;
|
|
1092
1092
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1093
|
-
none: "none";
|
|
1094
1093
|
effect: "effect";
|
|
1094
|
+
none: "none";
|
|
1095
1095
|
"effect-full": "effect-full";
|
|
1096
1096
|
}>>;
|
|
1097
1097
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1142,6 +1142,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1142
1142
|
"postcss-only": "postcss-only";
|
|
1143
1143
|
}>>;
|
|
1144
1144
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1145
|
+
mui: "mui";
|
|
1145
1146
|
none: "none";
|
|
1146
1147
|
"shadcn-ui": "shadcn-ui";
|
|
1147
1148
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1152,7 +1153,6 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1152
1153
|
"chakra-ui": "chakra-ui";
|
|
1153
1154
|
nextui: "nextui";
|
|
1154
1155
|
mantine: "mantine";
|
|
1155
|
-
mui: "mui";
|
|
1156
1156
|
antd: "antd";
|
|
1157
1157
|
"base-ui": "base-ui";
|
|
1158
1158
|
"ark-ui": "ark-ui";
|
|
@@ -1332,9 +1332,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1332
1332
|
}>>;
|
|
1333
1333
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1334
1334
|
none: "none";
|
|
1335
|
-
uniwind: "uniwind";
|
|
1336
1335
|
tamagui: "tamagui";
|
|
1337
1336
|
"gluestack-ui": "gluestack-ui";
|
|
1337
|
+
uniwind: "uniwind";
|
|
1338
1338
|
unistyles: "unistyles";
|
|
1339
1339
|
}>>;
|
|
1340
1340
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1488,8 +1488,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1488
1488
|
chi: "chi";
|
|
1489
1489
|
}>>;
|
|
1490
1490
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1491
|
-
none: "none";
|
|
1492
1491
|
gorm: "gorm";
|
|
1492
|
+
none: "none";
|
|
1493
1493
|
sqlc: "sqlc";
|
|
1494
1494
|
ent: "ent";
|
|
1495
1495
|
}>>;
|
|
@@ -1713,10 +1713,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1713
1713
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1714
1714
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1715
1715
|
none: "none";
|
|
1716
|
+
uniwind: "uniwind";
|
|
1716
1717
|
mern: "mern";
|
|
1717
1718
|
pern: "pern";
|
|
1718
1719
|
t3: "t3";
|
|
1719
|
-
uniwind: "uniwind";
|
|
1720
1720
|
}>>;
|
|
1721
1721
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1722
1722
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1818,8 +1818,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1818
1818
|
"docker-compose": "docker-compose";
|
|
1819
1819
|
}>>>;
|
|
1820
1820
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1821
|
-
none: "none";
|
|
1822
1821
|
ai: "ai";
|
|
1822
|
+
none: "none";
|
|
1823
1823
|
"chat-sdk": "chat-sdk";
|
|
1824
1824
|
"tanstack-showcase": "tanstack-showcase";
|
|
1825
1825
|
}>>>;
|
|
@@ -1895,10 +1895,10 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1895
1895
|
vercel: "vercel";
|
|
1896
1896
|
}>>;
|
|
1897
1897
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
1898
|
+
error: "error";
|
|
1898
1899
|
merge: "merge";
|
|
1899
1900
|
overwrite: "overwrite";
|
|
1900
1901
|
increment: "increment";
|
|
1901
|
-
error: "error";
|
|
1902
1902
|
}>>;
|
|
1903
1903
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
1904
1904
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1925,8 +1925,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1925
1925
|
"ai-cli": "ai-cli";
|
|
1926
1926
|
}>>;
|
|
1927
1927
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1928
|
-
none: "none";
|
|
1929
1928
|
effect: "effect";
|
|
1929
|
+
none: "none";
|
|
1930
1930
|
"effect-full": "effect-full";
|
|
1931
1931
|
}>>;
|
|
1932
1932
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1977,6 +1977,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1977
1977
|
"postcss-only": "postcss-only";
|
|
1978
1978
|
}>>;
|
|
1979
1979
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
1980
|
+
mui: "mui";
|
|
1980
1981
|
none: "none";
|
|
1981
1982
|
"shadcn-ui": "shadcn-ui";
|
|
1982
1983
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -1987,7 +1988,6 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1987
1988
|
"chakra-ui": "chakra-ui";
|
|
1988
1989
|
nextui: "nextui";
|
|
1989
1990
|
mantine: "mantine";
|
|
1990
|
-
mui: "mui";
|
|
1991
1991
|
antd: "antd";
|
|
1992
1992
|
"base-ui": "base-ui";
|
|
1993
1993
|
"ark-ui": "ark-ui";
|
|
@@ -2167,9 +2167,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2167
2167
|
}>>;
|
|
2168
2168
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2169
2169
|
none: "none";
|
|
2170
|
-
uniwind: "uniwind";
|
|
2171
2170
|
tamagui: "tamagui";
|
|
2172
2171
|
"gluestack-ui": "gluestack-ui";
|
|
2172
|
+
uniwind: "uniwind";
|
|
2173
2173
|
unistyles: "unistyles";
|
|
2174
2174
|
}>>;
|
|
2175
2175
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2323,8 +2323,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2323
2323
|
chi: "chi";
|
|
2324
2324
|
}>>;
|
|
2325
2325
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
2326
|
-
none: "none";
|
|
2327
2326
|
gorm: "gorm";
|
|
2327
|
+
none: "none";
|
|
2328
2328
|
sqlc: "sqlc";
|
|
2329
2329
|
ent: "ent";
|
|
2330
2330
|
}>>;
|
|
@@ -2591,8 +2591,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2591
2591
|
"docker-compose": "docker-compose";
|
|
2592
2592
|
}>>;
|
|
2593
2593
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2594
|
-
none: "none";
|
|
2595
2594
|
ai: "ai";
|
|
2595
|
+
none: "none";
|
|
2596
2596
|
"chat-sdk": "chat-sdk";
|
|
2597
2597
|
"tanstack-showcase": "tanstack-showcase";
|
|
2598
2598
|
}>>;
|
|
@@ -2687,8 +2687,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2687
2687
|
"ai-cli": "ai-cli";
|
|
2688
2688
|
}>;
|
|
2689
2689
|
effect: z.ZodEnum<{
|
|
2690
|
-
none: "none";
|
|
2691
2690
|
effect: "effect";
|
|
2691
|
+
none: "none";
|
|
2692
2692
|
"effect-full": "effect-full";
|
|
2693
2693
|
}>;
|
|
2694
2694
|
stateManagement: z.ZodEnum<{
|
|
@@ -2739,6 +2739,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2739
2739
|
"postcss-only": "postcss-only";
|
|
2740
2740
|
}>;
|
|
2741
2741
|
uiLibrary: z.ZodEnum<{
|
|
2742
|
+
mui: "mui";
|
|
2742
2743
|
none: "none";
|
|
2743
2744
|
"shadcn-ui": "shadcn-ui";
|
|
2744
2745
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -2749,7 +2750,6 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2749
2750
|
"chakra-ui": "chakra-ui";
|
|
2750
2751
|
nextui: "nextui";
|
|
2751
2752
|
mantine: "mantine";
|
|
2752
|
-
mui: "mui";
|
|
2753
2753
|
antd: "antd";
|
|
2754
2754
|
"base-ui": "base-ui";
|
|
2755
2755
|
"ark-ui": "ark-ui";
|
|
@@ -2929,9 +2929,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2929
2929
|
}>;
|
|
2930
2930
|
mobileUI: z.ZodEnum<{
|
|
2931
2931
|
none: "none";
|
|
2932
|
-
uniwind: "uniwind";
|
|
2933
2932
|
tamagui: "tamagui";
|
|
2934
2933
|
"gluestack-ui": "gluestack-ui";
|
|
2934
|
+
uniwind: "uniwind";
|
|
2935
2935
|
unistyles: "unistyles";
|
|
2936
2936
|
}>;
|
|
2937
2937
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3085,8 +3085,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3085
3085
|
chi: "chi";
|
|
3086
3086
|
}>;
|
|
3087
3087
|
goOrm: z.ZodEnum<{
|
|
3088
|
-
none: "none";
|
|
3089
3088
|
gorm: "gorm";
|
|
3089
|
+
none: "none";
|
|
3090
3090
|
sqlc: "sqlc";
|
|
3091
3091
|
ent: "ent";
|
|
3092
3092
|
}>;
|
|
@@ -3252,36 +3252,36 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3252
3252
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
3253
|
id: z.ZodString;
|
|
3254
3254
|
role: z.ZodEnum<{
|
|
3255
|
-
|
|
3255
|
+
runtime: "runtime";
|
|
3256
|
+
backend: "backend";
|
|
3256
3257
|
database: "database";
|
|
3257
3258
|
orm: "orm";
|
|
3258
3259
|
auth: "auth";
|
|
3259
3260
|
payments: "payments";
|
|
3260
|
-
frontend: "frontend";
|
|
3261
|
-
backend: "backend";
|
|
3262
|
-
runtime: "runtime";
|
|
3263
|
-
api: "api";
|
|
3264
|
-
stateManagement: "stateManagement";
|
|
3265
|
-
forms: "forms";
|
|
3266
|
-
testing: "testing";
|
|
3267
3261
|
email: "email";
|
|
3268
|
-
validation: "validation";
|
|
3269
|
-
jobQueue: "jobQueue";
|
|
3270
3262
|
logging: "logging";
|
|
3271
3263
|
observability: "observability";
|
|
3272
3264
|
featureFlags: "featureFlags";
|
|
3273
3265
|
analytics: "analytics";
|
|
3274
|
-
|
|
3266
|
+
stateManagement: "stateManagement";
|
|
3267
|
+
forms: "forms";
|
|
3268
|
+
validation: "validation";
|
|
3269
|
+
testing: "testing";
|
|
3270
|
+
jobQueue: "jobQueue";
|
|
3275
3271
|
caching: "caching";
|
|
3272
|
+
cms: "cms";
|
|
3276
3273
|
i18n: "i18n";
|
|
3277
3274
|
search: "search";
|
|
3278
3275
|
fileStorage: "fileStorage";
|
|
3276
|
+
codeQuality: "codeQuality";
|
|
3277
|
+
documentation: "documentation";
|
|
3278
|
+
api: "api";
|
|
3279
|
+
ai: "ai";
|
|
3280
|
+
css: "css";
|
|
3281
|
+
ui: "ui";
|
|
3282
|
+
frontend: "frontend";
|
|
3279
3283
|
mobile: "mobile";
|
|
3280
3284
|
deploy: "deploy";
|
|
3281
|
-
ui: "ui";
|
|
3282
|
-
css: "css";
|
|
3283
|
-
documentation: "documentation";
|
|
3284
|
-
codeQuality: "codeQuality";
|
|
3285
3285
|
appPlatform: "appPlatform";
|
|
3286
3286
|
}>;
|
|
3287
3287
|
toolId: z.ZodString;
|
|
@@ -3409,8 +3409,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3409
3409
|
"docker-compose": "docker-compose";
|
|
3410
3410
|
}>>;
|
|
3411
3411
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3412
|
-
none: "none";
|
|
3413
3412
|
ai: "ai";
|
|
3413
|
+
none: "none";
|
|
3414
3414
|
"chat-sdk": "chat-sdk";
|
|
3415
3415
|
"tanstack-showcase": "tanstack-showcase";
|
|
3416
3416
|
}>>;
|
|
@@ -3503,8 +3503,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3503
3503
|
"ai-cli": "ai-cli";
|
|
3504
3504
|
}>;
|
|
3505
3505
|
effect: z.ZodEnum<{
|
|
3506
|
-
none: "none";
|
|
3507
3506
|
effect: "effect";
|
|
3507
|
+
none: "none";
|
|
3508
3508
|
"effect-full": "effect-full";
|
|
3509
3509
|
}>;
|
|
3510
3510
|
stateManagement: z.ZodEnum<{
|
|
@@ -3555,6 +3555,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3555
3555
|
"postcss-only": "postcss-only";
|
|
3556
3556
|
}>;
|
|
3557
3557
|
uiLibrary: z.ZodEnum<{
|
|
3558
|
+
mui: "mui";
|
|
3558
3559
|
none: "none";
|
|
3559
3560
|
"shadcn-ui": "shadcn-ui";
|
|
3560
3561
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -3565,7 +3566,6 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3565
3566
|
"chakra-ui": "chakra-ui";
|
|
3566
3567
|
nextui: "nextui";
|
|
3567
3568
|
mantine: "mantine";
|
|
3568
|
-
mui: "mui";
|
|
3569
3569
|
antd: "antd";
|
|
3570
3570
|
"base-ui": "base-ui";
|
|
3571
3571
|
"ark-ui": "ark-ui";
|
|
@@ -3745,9 +3745,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3745
3745
|
}>;
|
|
3746
3746
|
mobileUI: z.ZodEnum<{
|
|
3747
3747
|
none: "none";
|
|
3748
|
-
uniwind: "uniwind";
|
|
3749
3748
|
tamagui: "tamagui";
|
|
3750
3749
|
"gluestack-ui": "gluestack-ui";
|
|
3750
|
+
uniwind: "uniwind";
|
|
3751
3751
|
unistyles: "unistyles";
|
|
3752
3752
|
}>;
|
|
3753
3753
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3901,8 +3901,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3901
3901
|
chi: "chi";
|
|
3902
3902
|
}>;
|
|
3903
3903
|
goOrm: z.ZodEnum<{
|
|
3904
|
-
none: "none";
|
|
3905
3904
|
gorm: "gorm";
|
|
3905
|
+
none: "none";
|
|
3906
3906
|
sqlc: "sqlc";
|
|
3907
3907
|
ent: "ent";
|
|
3908
3908
|
}>;
|
|
@@ -4068,36 +4068,36 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
4068
4068
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
4069
|
id: z.ZodString;
|
|
4070
4070
|
role: z.ZodEnum<{
|
|
4071
|
-
|
|
4071
|
+
runtime: "runtime";
|
|
4072
|
+
backend: "backend";
|
|
4072
4073
|
database: "database";
|
|
4073
4074
|
orm: "orm";
|
|
4074
4075
|
auth: "auth";
|
|
4075
4076
|
payments: "payments";
|
|
4076
|
-
frontend: "frontend";
|
|
4077
|
-
backend: "backend";
|
|
4078
|
-
runtime: "runtime";
|
|
4079
|
-
api: "api";
|
|
4080
|
-
stateManagement: "stateManagement";
|
|
4081
|
-
forms: "forms";
|
|
4082
|
-
testing: "testing";
|
|
4083
4077
|
email: "email";
|
|
4084
|
-
validation: "validation";
|
|
4085
|
-
jobQueue: "jobQueue";
|
|
4086
4078
|
logging: "logging";
|
|
4087
4079
|
observability: "observability";
|
|
4088
4080
|
featureFlags: "featureFlags";
|
|
4089
4081
|
analytics: "analytics";
|
|
4090
|
-
|
|
4082
|
+
stateManagement: "stateManagement";
|
|
4083
|
+
forms: "forms";
|
|
4084
|
+
validation: "validation";
|
|
4085
|
+
testing: "testing";
|
|
4086
|
+
jobQueue: "jobQueue";
|
|
4091
4087
|
caching: "caching";
|
|
4088
|
+
cms: "cms";
|
|
4092
4089
|
i18n: "i18n";
|
|
4093
4090
|
search: "search";
|
|
4094
4091
|
fileStorage: "fileStorage";
|
|
4092
|
+
codeQuality: "codeQuality";
|
|
4093
|
+
documentation: "documentation";
|
|
4094
|
+
api: "api";
|
|
4095
|
+
ai: "ai";
|
|
4096
|
+
css: "css";
|
|
4097
|
+
ui: "ui";
|
|
4098
|
+
frontend: "frontend";
|
|
4095
4099
|
mobile: "mobile";
|
|
4096
4100
|
deploy: "deploy";
|
|
4097
|
-
ui: "ui";
|
|
4098
|
-
css: "css";
|
|
4099
|
-
documentation: "documentation";
|
|
4100
|
-
codeQuality: "codeQuality";
|
|
4101
4101
|
appPlatform: "appPlatform";
|
|
4102
4102
|
}>;
|
|
4103
4103
|
toolId: z.ZodString;
|
|
@@ -4225,8 +4225,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4225
4225
|
"docker-compose": "docker-compose";
|
|
4226
4226
|
}>>;
|
|
4227
4227
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4228
|
-
none: "none";
|
|
4229
4228
|
ai: "ai";
|
|
4229
|
+
none: "none";
|
|
4230
4230
|
"chat-sdk": "chat-sdk";
|
|
4231
4231
|
"tanstack-showcase": "tanstack-showcase";
|
|
4232
4232
|
}>>;
|
|
@@ -4319,8 +4319,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4319
4319
|
"ai-cli": "ai-cli";
|
|
4320
4320
|
}>;
|
|
4321
4321
|
effect: z.ZodEnum<{
|
|
4322
|
-
none: "none";
|
|
4323
4322
|
effect: "effect";
|
|
4323
|
+
none: "none";
|
|
4324
4324
|
"effect-full": "effect-full";
|
|
4325
4325
|
}>;
|
|
4326
4326
|
stateManagement: z.ZodEnum<{
|
|
@@ -4371,6 +4371,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4371
4371
|
"postcss-only": "postcss-only";
|
|
4372
4372
|
}>;
|
|
4373
4373
|
uiLibrary: z.ZodEnum<{
|
|
4374
|
+
mui: "mui";
|
|
4374
4375
|
none: "none";
|
|
4375
4376
|
"shadcn-ui": "shadcn-ui";
|
|
4376
4377
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -4381,7 +4382,6 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4381
4382
|
"chakra-ui": "chakra-ui";
|
|
4382
4383
|
nextui: "nextui";
|
|
4383
4384
|
mantine: "mantine";
|
|
4384
|
-
mui: "mui";
|
|
4385
4385
|
antd: "antd";
|
|
4386
4386
|
"base-ui": "base-ui";
|
|
4387
4387
|
"ark-ui": "ark-ui";
|
|
@@ -4561,9 +4561,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4561
4561
|
}>;
|
|
4562
4562
|
mobileUI: z.ZodEnum<{
|
|
4563
4563
|
none: "none";
|
|
4564
|
-
uniwind: "uniwind";
|
|
4565
4564
|
tamagui: "tamagui";
|
|
4566
4565
|
"gluestack-ui": "gluestack-ui";
|
|
4566
|
+
uniwind: "uniwind";
|
|
4567
4567
|
unistyles: "unistyles";
|
|
4568
4568
|
}>;
|
|
4569
4569
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4717,8 +4717,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4717
4717
|
chi: "chi";
|
|
4718
4718
|
}>;
|
|
4719
4719
|
goOrm: z.ZodEnum<{
|
|
4720
|
-
none: "none";
|
|
4721
4720
|
gorm: "gorm";
|
|
4721
|
+
none: "none";
|
|
4722
4722
|
sqlc: "sqlc";
|
|
4723
4723
|
ent: "ent";
|
|
4724
4724
|
}>;
|
|
@@ -4884,36 +4884,36 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4884
4884
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
4885
|
id: z.ZodString;
|
|
4886
4886
|
role: z.ZodEnum<{
|
|
4887
|
-
|
|
4887
|
+
runtime: "runtime";
|
|
4888
|
+
backend: "backend";
|
|
4888
4889
|
database: "database";
|
|
4889
4890
|
orm: "orm";
|
|
4890
4891
|
auth: "auth";
|
|
4891
4892
|
payments: "payments";
|
|
4892
|
-
frontend: "frontend";
|
|
4893
|
-
backend: "backend";
|
|
4894
|
-
runtime: "runtime";
|
|
4895
|
-
api: "api";
|
|
4896
|
-
stateManagement: "stateManagement";
|
|
4897
|
-
forms: "forms";
|
|
4898
|
-
testing: "testing";
|
|
4899
4893
|
email: "email";
|
|
4900
|
-
validation: "validation";
|
|
4901
|
-
jobQueue: "jobQueue";
|
|
4902
4894
|
logging: "logging";
|
|
4903
4895
|
observability: "observability";
|
|
4904
4896
|
featureFlags: "featureFlags";
|
|
4905
4897
|
analytics: "analytics";
|
|
4906
|
-
|
|
4898
|
+
stateManagement: "stateManagement";
|
|
4899
|
+
forms: "forms";
|
|
4900
|
+
validation: "validation";
|
|
4901
|
+
testing: "testing";
|
|
4902
|
+
jobQueue: "jobQueue";
|
|
4907
4903
|
caching: "caching";
|
|
4904
|
+
cms: "cms";
|
|
4908
4905
|
i18n: "i18n";
|
|
4909
4906
|
search: "search";
|
|
4910
4907
|
fileStorage: "fileStorage";
|
|
4908
|
+
codeQuality: "codeQuality";
|
|
4909
|
+
documentation: "documentation";
|
|
4910
|
+
api: "api";
|
|
4911
|
+
ai: "ai";
|
|
4912
|
+
css: "css";
|
|
4913
|
+
ui: "ui";
|
|
4914
|
+
frontend: "frontend";
|
|
4911
4915
|
mobile: "mobile";
|
|
4912
4916
|
deploy: "deploy";
|
|
4913
|
-
ui: "ui";
|
|
4914
|
-
css: "css";
|
|
4915
|
-
documentation: "documentation";
|
|
4916
|
-
codeQuality: "codeQuality";
|
|
4917
4917
|
appPlatform: "appPlatform";
|
|
4918
4918
|
}>;
|
|
4919
4919
|
toolId: z.ZodString;
|
|
@@ -5042,8 +5042,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5042
5042
|
"docker-compose": "docker-compose";
|
|
5043
5043
|
}>>;
|
|
5044
5044
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5045
|
-
none: "none";
|
|
5046
5045
|
ai: "ai";
|
|
5046
|
+
none: "none";
|
|
5047
5047
|
"chat-sdk": "chat-sdk";
|
|
5048
5048
|
"tanstack-showcase": "tanstack-showcase";
|
|
5049
5049
|
}>>;
|
|
@@ -5136,8 +5136,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5136
5136
|
"ai-cli": "ai-cli";
|
|
5137
5137
|
}>;
|
|
5138
5138
|
effect: z.ZodEnum<{
|
|
5139
|
-
none: "none";
|
|
5140
5139
|
effect: "effect";
|
|
5140
|
+
none: "none";
|
|
5141
5141
|
"effect-full": "effect-full";
|
|
5142
5142
|
}>;
|
|
5143
5143
|
stateManagement: z.ZodEnum<{
|
|
@@ -5188,6 +5188,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5188
5188
|
"postcss-only": "postcss-only";
|
|
5189
5189
|
}>;
|
|
5190
5190
|
uiLibrary: z.ZodEnum<{
|
|
5191
|
+
mui: "mui";
|
|
5191
5192
|
none: "none";
|
|
5192
5193
|
"shadcn-ui": "shadcn-ui";
|
|
5193
5194
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -5198,7 +5199,6 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5198
5199
|
"chakra-ui": "chakra-ui";
|
|
5199
5200
|
nextui: "nextui";
|
|
5200
5201
|
mantine: "mantine";
|
|
5201
|
-
mui: "mui";
|
|
5202
5202
|
antd: "antd";
|
|
5203
5203
|
"base-ui": "base-ui";
|
|
5204
5204
|
"ark-ui": "ark-ui";
|
|
@@ -5378,9 +5378,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5378
5378
|
}>;
|
|
5379
5379
|
mobileUI: z.ZodEnum<{
|
|
5380
5380
|
none: "none";
|
|
5381
|
-
uniwind: "uniwind";
|
|
5382
5381
|
tamagui: "tamagui";
|
|
5383
5382
|
"gluestack-ui": "gluestack-ui";
|
|
5383
|
+
uniwind: "uniwind";
|
|
5384
5384
|
unistyles: "unistyles";
|
|
5385
5385
|
}>;
|
|
5386
5386
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5534,8 +5534,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5534
5534
|
chi: "chi";
|
|
5535
5535
|
}>;
|
|
5536
5536
|
goOrm: z.ZodEnum<{
|
|
5537
|
-
none: "none";
|
|
5538
5537
|
gorm: "gorm";
|
|
5538
|
+
none: "none";
|
|
5539
5539
|
sqlc: "sqlc";
|
|
5540
5540
|
ent: "ent";
|
|
5541
5541
|
}>;
|
|
@@ -5701,36 +5701,36 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5701
5701
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
5702
|
id: z.ZodString;
|
|
5703
5703
|
role: z.ZodEnum<{
|
|
5704
|
-
|
|
5704
|
+
runtime: "runtime";
|
|
5705
|
+
backend: "backend";
|
|
5705
5706
|
database: "database";
|
|
5706
5707
|
orm: "orm";
|
|
5707
5708
|
auth: "auth";
|
|
5708
5709
|
payments: "payments";
|
|
5709
|
-
frontend: "frontend";
|
|
5710
|
-
backend: "backend";
|
|
5711
|
-
runtime: "runtime";
|
|
5712
|
-
api: "api";
|
|
5713
|
-
stateManagement: "stateManagement";
|
|
5714
|
-
forms: "forms";
|
|
5715
|
-
testing: "testing";
|
|
5716
5710
|
email: "email";
|
|
5717
|
-
validation: "validation";
|
|
5718
|
-
jobQueue: "jobQueue";
|
|
5719
5711
|
logging: "logging";
|
|
5720
5712
|
observability: "observability";
|
|
5721
5713
|
featureFlags: "featureFlags";
|
|
5722
5714
|
analytics: "analytics";
|
|
5723
|
-
|
|
5715
|
+
stateManagement: "stateManagement";
|
|
5716
|
+
forms: "forms";
|
|
5717
|
+
validation: "validation";
|
|
5718
|
+
testing: "testing";
|
|
5719
|
+
jobQueue: "jobQueue";
|
|
5724
5720
|
caching: "caching";
|
|
5721
|
+
cms: "cms";
|
|
5725
5722
|
i18n: "i18n";
|
|
5726
5723
|
search: "search";
|
|
5727
5724
|
fileStorage: "fileStorage";
|
|
5725
|
+
codeQuality: "codeQuality";
|
|
5726
|
+
documentation: "documentation";
|
|
5727
|
+
api: "api";
|
|
5728
|
+
ai: "ai";
|
|
5729
|
+
css: "css";
|
|
5730
|
+
ui: "ui";
|
|
5731
|
+
frontend: "frontend";
|
|
5728
5732
|
mobile: "mobile";
|
|
5729
5733
|
deploy: "deploy";
|
|
5730
|
-
ui: "ui";
|
|
5731
|
-
css: "css";
|
|
5732
|
-
documentation: "documentation";
|
|
5733
|
-
codeQuality: "codeQuality";
|
|
5734
5734
|
appPlatform: "appPlatform";
|
|
5735
5735
|
}>;
|
|
5736
5736
|
toolId: z.ZodString;
|
|
@@ -5859,8 +5859,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5859
5859
|
"docker-compose": "docker-compose";
|
|
5860
5860
|
}>>;
|
|
5861
5861
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5862
|
-
none: "none";
|
|
5863
5862
|
ai: "ai";
|
|
5863
|
+
none: "none";
|
|
5864
5864
|
"chat-sdk": "chat-sdk";
|
|
5865
5865
|
"tanstack-showcase": "tanstack-showcase";
|
|
5866
5866
|
}>>;
|
|
@@ -5953,8 +5953,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5953
5953
|
"ai-cli": "ai-cli";
|
|
5954
5954
|
}>;
|
|
5955
5955
|
effect: z.ZodEnum<{
|
|
5956
|
-
none: "none";
|
|
5957
5956
|
effect: "effect";
|
|
5957
|
+
none: "none";
|
|
5958
5958
|
"effect-full": "effect-full";
|
|
5959
5959
|
}>;
|
|
5960
5960
|
stateManagement: z.ZodEnum<{
|
|
@@ -6005,6 +6005,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6005
6005
|
"postcss-only": "postcss-only";
|
|
6006
6006
|
}>;
|
|
6007
6007
|
uiLibrary: z.ZodEnum<{
|
|
6008
|
+
mui: "mui";
|
|
6008
6009
|
none: "none";
|
|
6009
6010
|
"shadcn-ui": "shadcn-ui";
|
|
6010
6011
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6015,7 +6016,6 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6015
6016
|
"chakra-ui": "chakra-ui";
|
|
6016
6017
|
nextui: "nextui";
|
|
6017
6018
|
mantine: "mantine";
|
|
6018
|
-
mui: "mui";
|
|
6019
6019
|
antd: "antd";
|
|
6020
6020
|
"base-ui": "base-ui";
|
|
6021
6021
|
"ark-ui": "ark-ui";
|
|
@@ -6195,9 +6195,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6195
6195
|
}>;
|
|
6196
6196
|
mobileUI: z.ZodEnum<{
|
|
6197
6197
|
none: "none";
|
|
6198
|
-
uniwind: "uniwind";
|
|
6199
6198
|
tamagui: "tamagui";
|
|
6200
6199
|
"gluestack-ui": "gluestack-ui";
|
|
6200
|
+
uniwind: "uniwind";
|
|
6201
6201
|
unistyles: "unistyles";
|
|
6202
6202
|
}>;
|
|
6203
6203
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6351,8 +6351,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6351
6351
|
chi: "chi";
|
|
6352
6352
|
}>;
|
|
6353
6353
|
goOrm: z.ZodEnum<{
|
|
6354
|
-
none: "none";
|
|
6355
6354
|
gorm: "gorm";
|
|
6355
|
+
none: "none";
|
|
6356
6356
|
sqlc: "sqlc";
|
|
6357
6357
|
ent: "ent";
|
|
6358
6358
|
}>;
|
|
@@ -6518,36 +6518,36 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6518
6518
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
6519
|
id: z.ZodString;
|
|
6520
6520
|
role: z.ZodEnum<{
|
|
6521
|
-
|
|
6521
|
+
runtime: "runtime";
|
|
6522
|
+
backend: "backend";
|
|
6522
6523
|
database: "database";
|
|
6523
6524
|
orm: "orm";
|
|
6524
6525
|
auth: "auth";
|
|
6525
6526
|
payments: "payments";
|
|
6526
|
-
frontend: "frontend";
|
|
6527
|
-
backend: "backend";
|
|
6528
|
-
runtime: "runtime";
|
|
6529
|
-
api: "api";
|
|
6530
|
-
stateManagement: "stateManagement";
|
|
6531
|
-
forms: "forms";
|
|
6532
|
-
testing: "testing";
|
|
6533
6527
|
email: "email";
|
|
6534
|
-
validation: "validation";
|
|
6535
|
-
jobQueue: "jobQueue";
|
|
6536
6528
|
logging: "logging";
|
|
6537
6529
|
observability: "observability";
|
|
6538
6530
|
featureFlags: "featureFlags";
|
|
6539
6531
|
analytics: "analytics";
|
|
6540
|
-
|
|
6532
|
+
stateManagement: "stateManagement";
|
|
6533
|
+
forms: "forms";
|
|
6534
|
+
validation: "validation";
|
|
6535
|
+
testing: "testing";
|
|
6536
|
+
jobQueue: "jobQueue";
|
|
6541
6537
|
caching: "caching";
|
|
6538
|
+
cms: "cms";
|
|
6542
6539
|
i18n: "i18n";
|
|
6543
6540
|
search: "search";
|
|
6544
6541
|
fileStorage: "fileStorage";
|
|
6542
|
+
codeQuality: "codeQuality";
|
|
6543
|
+
documentation: "documentation";
|
|
6544
|
+
api: "api";
|
|
6545
|
+
ai: "ai";
|
|
6546
|
+
css: "css";
|
|
6547
|
+
ui: "ui";
|
|
6548
|
+
frontend: "frontend";
|
|
6545
6549
|
mobile: "mobile";
|
|
6546
6550
|
deploy: "deploy";
|
|
6547
|
-
ui: "ui";
|
|
6548
|
-
css: "css";
|
|
6549
|
-
documentation: "documentation";
|
|
6550
|
-
codeQuality: "codeQuality";
|
|
6551
6551
|
appPlatform: "appPlatform";
|
|
6552
6552
|
}>;
|
|
6553
6553
|
toolId: z.ZodString;
|
|
@@ -6676,8 +6676,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6676
6676
|
"docker-compose": "docker-compose";
|
|
6677
6677
|
}>>;
|
|
6678
6678
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6679
|
-
none: "none";
|
|
6680
6679
|
ai: "ai";
|
|
6680
|
+
none: "none";
|
|
6681
6681
|
"chat-sdk": "chat-sdk";
|
|
6682
6682
|
"tanstack-showcase": "tanstack-showcase";
|
|
6683
6683
|
}>>;
|
|
@@ -6772,8 +6772,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6772
6772
|
"ai-cli": "ai-cli";
|
|
6773
6773
|
}>;
|
|
6774
6774
|
effect: z.ZodEnum<{
|
|
6775
|
-
none: "none";
|
|
6776
6775
|
effect: "effect";
|
|
6776
|
+
none: "none";
|
|
6777
6777
|
"effect-full": "effect-full";
|
|
6778
6778
|
}>;
|
|
6779
6779
|
stateManagement: z.ZodEnum<{
|
|
@@ -6824,6 +6824,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6824
6824
|
"postcss-only": "postcss-only";
|
|
6825
6825
|
}>;
|
|
6826
6826
|
uiLibrary: z.ZodEnum<{
|
|
6827
|
+
mui: "mui";
|
|
6827
6828
|
none: "none";
|
|
6828
6829
|
"shadcn-ui": "shadcn-ui";
|
|
6829
6830
|
"shadcn-svelte": "shadcn-svelte";
|
|
@@ -6834,7 +6835,6 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6834
6835
|
"chakra-ui": "chakra-ui";
|
|
6835
6836
|
nextui: "nextui";
|
|
6836
6837
|
mantine: "mantine";
|
|
6837
|
-
mui: "mui";
|
|
6838
6838
|
antd: "antd";
|
|
6839
6839
|
"base-ui": "base-ui";
|
|
6840
6840
|
"ark-ui": "ark-ui";
|
|
@@ -7014,9 +7014,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7014
7014
|
}>;
|
|
7015
7015
|
mobileUI: z.ZodEnum<{
|
|
7016
7016
|
none: "none";
|
|
7017
|
-
uniwind: "uniwind";
|
|
7018
7017
|
tamagui: "tamagui";
|
|
7019
7018
|
"gluestack-ui": "gluestack-ui";
|
|
7019
|
+
uniwind: "uniwind";
|
|
7020
7020
|
unistyles: "unistyles";
|
|
7021
7021
|
}>;
|
|
7022
7022
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7170,8 +7170,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7170
7170
|
chi: "chi";
|
|
7171
7171
|
}>;
|
|
7172
7172
|
goOrm: z.ZodEnum<{
|
|
7173
|
-
none: "none";
|
|
7174
7173
|
gorm: "gorm";
|
|
7174
|
+
none: "none";
|
|
7175
7175
|
sqlc: "sqlc";
|
|
7176
7176
|
ent: "ent";
|
|
7177
7177
|
}>;
|
|
@@ -7337,36 +7337,36 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
7337
7337
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
7338
|
id: z.ZodString;
|
|
7339
7339
|
role: z.ZodEnum<{
|
|
7340
|
-
|
|
7340
|
+
runtime: "runtime";
|
|
7341
|
+
backend: "backend";
|
|
7341
7342
|
database: "database";
|
|
7342
7343
|
orm: "orm";
|
|
7343
7344
|
auth: "auth";
|
|
7344
7345
|
payments: "payments";
|
|
7345
|
-
frontend: "frontend";
|
|
7346
|
-
backend: "backend";
|
|
7347
|
-
runtime: "runtime";
|
|
7348
|
-
api: "api";
|
|
7349
|
-
stateManagement: "stateManagement";
|
|
7350
|
-
forms: "forms";
|
|
7351
|
-
testing: "testing";
|
|
7352
7346
|
email: "email";
|
|
7353
|
-
validation: "validation";
|
|
7354
|
-
jobQueue: "jobQueue";
|
|
7355
7347
|
logging: "logging";
|
|
7356
7348
|
observability: "observability";
|
|
7357
7349
|
featureFlags: "featureFlags";
|
|
7358
7350
|
analytics: "analytics";
|
|
7359
|
-
|
|
7351
|
+
stateManagement: "stateManagement";
|
|
7352
|
+
forms: "forms";
|
|
7353
|
+
validation: "validation";
|
|
7354
|
+
testing: "testing";
|
|
7355
|
+
jobQueue: "jobQueue";
|
|
7360
7356
|
caching: "caching";
|
|
7357
|
+
cms: "cms";
|
|
7361
7358
|
i18n: "i18n";
|
|
7362
7359
|
search: "search";
|
|
7363
7360
|
fileStorage: "fileStorage";
|
|
7361
|
+
codeQuality: "codeQuality";
|
|
7362
|
+
documentation: "documentation";
|
|
7363
|
+
api: "api";
|
|
7364
|
+
ai: "ai";
|
|
7365
|
+
css: "css";
|
|
7366
|
+
ui: "ui";
|
|
7367
|
+
frontend: "frontend";
|
|
7364
7368
|
mobile: "mobile";
|
|
7365
7369
|
deploy: "deploy";
|
|
7366
|
-
ui: "ui";
|
|
7367
|
-
css: "css";
|
|
7368
|
-
documentation: "documentation";
|
|
7369
|
-
codeQuality: "codeQuality";
|
|
7370
7370
|
appPlatform: "appPlatform";
|
|
7371
7371
|
}>;
|
|
7372
7372
|
toolId: z.ZodString;
|
|
@@ -7409,7 +7409,7 @@ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia
|
|
|
7409
7409
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
7410
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")[];
|
|
7411
7411
|
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "docker-compose")[];
|
|
7412
|
-
declare const EXAMPLES_VALUES: ("
|
|
7412
|
+
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
7413
7413
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
7414
7414
|
declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
|
|
7415
7415
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
@@ -7418,17 +7418,17 @@ declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk"
|
|
|
7418
7418
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
7419
7419
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
7420
7420
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
7421
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("
|
|
7422
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
7421
|
+
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
7422
|
+
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3")[];
|
|
7423
7423
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
7424
7424
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
7425
|
-
declare const EFFECT_VALUES: ("
|
|
7425
|
+
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
7426
7426
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
7427
7427
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
7428
7428
|
declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
|
|
7429
7429
|
declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
|
|
7430
7430
|
declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
|
|
7431
|
-
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")[];
|
|
7432
7432
|
declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
|
|
7433
7433
|
declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
|
|
7434
7434
|
declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
|
|
@@ -7439,7 +7439,7 @@ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "graf
|
|
|
7439
7439
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
7440
7440
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
7441
7441
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
7442
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
7442
|
+
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
7443
7443
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
7444
7444
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
7445
7445
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -7471,7 +7471,7 @@ declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery" | "rq" | "dramatiq" |
|
|
|
7471
7471
|
declare const PYTHON_GRAPHQL_VALUES: ("none" | "strawberry" | "ariadne")[];
|
|
7472
7472
|
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
|
|
7473
7473
|
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo" | "fiber" | "chi")[];
|
|
7474
|
-
declare const GO_ORM_VALUES: ("
|
|
7474
|
+
declare const GO_ORM_VALUES: ("gorm" | "none" | "sqlc" | "ent")[];
|
|
7475
7475
|
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
7476
7476
|
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea" | "urfave-cli")[];
|
|
7477
7477
|
declare const GO_LOGGING_VALUES: ("none" | "zap" | "zerolog" | "slog" | "logrus")[];
|
|
@@ -7507,4 +7507,4 @@ declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-san
|
|
|
7507
7507
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
7508
7508
|
//#endregion
|
|
7509
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-
|
|
7510
|
+
//# sourceMappingURL=schemas-62dqb8iS.d.mts.map
|