@better-fullstack/types 1.8.0 → 1.8.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-CFAJhN--.d.mts → defaults-05kDqAVs.d.mts} +2 -2
- package/dist/defaults-05kDqAVs.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +2 -2
- package/dist/json-schema.d.mts +108 -56
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-Bs_n2xLj.d.mts → schemas-CUFM_Cdl.d.mts} +105 -59
- package/dist/schemas-CUFM_Cdl.d.mts.map +1 -0
- package/dist/{schemas-BHCZL3uR.mjs → schemas-Hj_Gbdf0.mjs} +7 -2
- package/dist/schemas-Hj_Gbdf0.mjs.map +1 -0
- package/dist/schemas.d.mts +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/{stack-translation-_uOX-Io0.mjs → stack-translation-BpsvxDrw.mjs} +55 -8
- package/dist/stack-translation-BpsvxDrw.mjs.map +1 -0
- package/dist/{stack-translation-xj8JvbAI.d.mts → stack-translation-D7H3h8Vs.d.mts} +4 -4
- package/dist/{stack-translation-xj8JvbAI.d.mts.map → stack-translation-D7H3h8Vs.d.mts.map} +1 -1
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +2 -2
- package/dist/{types-DwFVhx5c.d.mts → types-C0KHWyJI.d.mts} +2 -2
- package/dist/types-C0KHWyJI.d.mts.map +1 -0
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
- package/dist/defaults-CFAJhN--.d.mts.map +0 -1
- package/dist/schemas-BHCZL3uR.mjs.map +0 -1
- package/dist/schemas-Bs_n2xLj.d.mts.map +0 -1
- package/dist/stack-translation-_uOX-Io0.mjs.map +0 -1
- package/dist/types-DwFVhx5c.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -80,6 +80,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
80
80
|
wxt: "wxt";
|
|
81
81
|
msw: "msw";
|
|
82
82
|
storybook: "storybook";
|
|
83
|
+
swr: "swr";
|
|
83
84
|
"tanstack-query": "tanstack-query";
|
|
84
85
|
"tanstack-table": "tanstack-table";
|
|
85
86
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -88,8 +89,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
88
89
|
"docker-compose": "docker-compose";
|
|
89
90
|
}>>;
|
|
90
91
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
91
|
-
ai: "ai";
|
|
92
92
|
none: "none";
|
|
93
|
+
ai: "ai";
|
|
93
94
|
"chat-sdk": "chat-sdk";
|
|
94
95
|
"tanstack-showcase": "tanstack-showcase";
|
|
95
96
|
}>>;
|
|
@@ -163,19 +164,19 @@ declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaP
|
|
|
163
164
|
}>>;
|
|
164
165
|
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
165
166
|
none: "none";
|
|
167
|
+
uniwind: "uniwind";
|
|
166
168
|
mern: "mern";
|
|
167
169
|
pern: "pern";
|
|
168
170
|
t3: "t3";
|
|
169
|
-
uniwind: "uniwind";
|
|
170
171
|
}>>;
|
|
171
172
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
172
173
|
projectName: z.ZodOptional<z.ZodString>;
|
|
173
174
|
template: z.ZodOptional<z.ZodEnum<{
|
|
174
175
|
none: "none";
|
|
176
|
+
uniwind: "uniwind";
|
|
175
177
|
mern: "mern";
|
|
176
178
|
pern: "pern";
|
|
177
179
|
t3: "t3";
|
|
178
|
-
uniwind: "uniwind";
|
|
179
180
|
}>>;
|
|
180
181
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
181
182
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -267,6 +268,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
267
268
|
wxt: "wxt";
|
|
268
269
|
msw: "msw";
|
|
269
270
|
storybook: "storybook";
|
|
271
|
+
swr: "swr";
|
|
270
272
|
"tanstack-query": "tanstack-query";
|
|
271
273
|
"tanstack-table": "tanstack-table";
|
|
272
274
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -275,8 +277,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
275
277
|
"docker-compose": "docker-compose";
|
|
276
278
|
}>>>;
|
|
277
279
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
278
|
-
ai: "ai";
|
|
279
280
|
none: "none";
|
|
281
|
+
ai: "ai";
|
|
280
282
|
"chat-sdk": "chat-sdk";
|
|
281
283
|
"tanstack-showcase": "tanstack-showcase";
|
|
282
284
|
}>>>;
|
|
@@ -382,8 +384,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
382
384
|
"ai-cli": "ai-cli";
|
|
383
385
|
}>>;
|
|
384
386
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
385
|
-
effect: "effect";
|
|
386
387
|
none: "none";
|
|
388
|
+
effect: "effect";
|
|
387
389
|
"effect-full": "effect-full";
|
|
388
390
|
}>>;
|
|
389
391
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -434,9 +436,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
434
436
|
"postcss-only": "postcss-only";
|
|
435
437
|
}>>;
|
|
436
438
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
437
|
-
mui: "mui";
|
|
438
439
|
none: "none";
|
|
439
440
|
"shadcn-ui": "shadcn-ui";
|
|
441
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
440
442
|
daisyui: "daisyui";
|
|
441
443
|
"radix-ui": "radix-ui";
|
|
442
444
|
"headless-ui": "headless-ui";
|
|
@@ -444,6 +446,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
444
446
|
"chakra-ui": "chakra-ui";
|
|
445
447
|
nextui: "nextui";
|
|
446
448
|
mantine: "mantine";
|
|
449
|
+
mui: "mui";
|
|
447
450
|
antd: "antd";
|
|
448
451
|
"base-ui": "base-ui";
|
|
449
452
|
"ark-ui": "ark-ui";
|
|
@@ -565,6 +568,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
565
568
|
none: "none";
|
|
566
569
|
pino: "pino";
|
|
567
570
|
winston: "winston";
|
|
571
|
+
evlog: "evlog";
|
|
568
572
|
}>>;
|
|
569
573
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
570
574
|
none: "none";
|
|
@@ -591,6 +595,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
591
595
|
sanity: "sanity";
|
|
592
596
|
strapi: "strapi";
|
|
593
597
|
tinacms: "tinacms";
|
|
598
|
+
directus: "directus";
|
|
594
599
|
}>>;
|
|
595
600
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
596
601
|
none: "none";
|
|
@@ -612,6 +617,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
612
617
|
none: "none";
|
|
613
618
|
s3: "s3";
|
|
614
619
|
r2: "r2";
|
|
620
|
+
cloudinary: "cloudinary";
|
|
615
621
|
}>>;
|
|
616
622
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
617
623
|
none: "none";
|
|
@@ -620,9 +626,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
620
626
|
}>>;
|
|
621
627
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
622
628
|
none: "none";
|
|
623
|
-
uniwind: "uniwind";
|
|
624
629
|
tamagui: "tamagui";
|
|
625
630
|
"gluestack-ui": "gluestack-ui";
|
|
631
|
+
uniwind: "uniwind";
|
|
626
632
|
unistyles: "unistyles";
|
|
627
633
|
}>>;
|
|
628
634
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -776,8 +782,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
776
782
|
chi: "chi";
|
|
777
783
|
}>>;
|
|
778
784
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
779
|
-
gorm: "gorm";
|
|
780
785
|
none: "none";
|
|
786
|
+
gorm: "gorm";
|
|
781
787
|
sqlc: "sqlc";
|
|
782
788
|
ent: "ent";
|
|
783
789
|
}>>;
|
|
@@ -1033,6 +1039,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1033
1039
|
wxt: "wxt";
|
|
1034
1040
|
msw: "msw";
|
|
1035
1041
|
storybook: "storybook";
|
|
1042
|
+
swr: "swr";
|
|
1036
1043
|
"tanstack-query": "tanstack-query";
|
|
1037
1044
|
"tanstack-table": "tanstack-table";
|
|
1038
1045
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1041,8 +1048,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1041
1048
|
"docker-compose": "docker-compose";
|
|
1042
1049
|
}>>;
|
|
1043
1050
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1044
|
-
ai: "ai";
|
|
1045
1051
|
none: "none";
|
|
1052
|
+
ai: "ai";
|
|
1046
1053
|
"chat-sdk": "chat-sdk";
|
|
1047
1054
|
"tanstack-showcase": "tanstack-showcase";
|
|
1048
1055
|
}>>;
|
|
@@ -1137,8 +1144,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1137
1144
|
"ai-cli": "ai-cli";
|
|
1138
1145
|
}>;
|
|
1139
1146
|
effect: z.ZodEnum<{
|
|
1140
|
-
effect: "effect";
|
|
1141
1147
|
none: "none";
|
|
1148
|
+
effect: "effect";
|
|
1142
1149
|
"effect-full": "effect-full";
|
|
1143
1150
|
}>;
|
|
1144
1151
|
stateManagement: z.ZodEnum<{
|
|
@@ -1189,9 +1196,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1189
1196
|
"postcss-only": "postcss-only";
|
|
1190
1197
|
}>;
|
|
1191
1198
|
uiLibrary: z.ZodEnum<{
|
|
1192
|
-
mui: "mui";
|
|
1193
1199
|
none: "none";
|
|
1194
1200
|
"shadcn-ui": "shadcn-ui";
|
|
1201
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1195
1202
|
daisyui: "daisyui";
|
|
1196
1203
|
"radix-ui": "radix-ui";
|
|
1197
1204
|
"headless-ui": "headless-ui";
|
|
@@ -1199,6 +1206,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1199
1206
|
"chakra-ui": "chakra-ui";
|
|
1200
1207
|
nextui: "nextui";
|
|
1201
1208
|
mantine: "mantine";
|
|
1209
|
+
mui: "mui";
|
|
1202
1210
|
antd: "antd";
|
|
1203
1211
|
"base-ui": "base-ui";
|
|
1204
1212
|
"ark-ui": "ark-ui";
|
|
@@ -1320,6 +1328,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1320
1328
|
none: "none";
|
|
1321
1329
|
pino: "pino";
|
|
1322
1330
|
winston: "winston";
|
|
1331
|
+
evlog: "evlog";
|
|
1323
1332
|
}>;
|
|
1324
1333
|
observability: z.ZodEnum<{
|
|
1325
1334
|
none: "none";
|
|
@@ -1346,6 +1355,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1346
1355
|
sanity: "sanity";
|
|
1347
1356
|
strapi: "strapi";
|
|
1348
1357
|
tinacms: "tinacms";
|
|
1358
|
+
directus: "directus";
|
|
1349
1359
|
}>;
|
|
1350
1360
|
caching: z.ZodEnum<{
|
|
1351
1361
|
none: "none";
|
|
@@ -1367,6 +1377,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1367
1377
|
none: "none";
|
|
1368
1378
|
s3: "s3";
|
|
1369
1379
|
r2: "r2";
|
|
1380
|
+
cloudinary: "cloudinary";
|
|
1370
1381
|
}>;
|
|
1371
1382
|
mobileNavigation: z.ZodEnum<{
|
|
1372
1383
|
none: "none";
|
|
@@ -1375,9 +1386,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1375
1386
|
}>;
|
|
1376
1387
|
mobileUI: z.ZodEnum<{
|
|
1377
1388
|
none: "none";
|
|
1378
|
-
uniwind: "uniwind";
|
|
1379
1389
|
tamagui: "tamagui";
|
|
1380
1390
|
"gluestack-ui": "gluestack-ui";
|
|
1391
|
+
uniwind: "uniwind";
|
|
1381
1392
|
unistyles: "unistyles";
|
|
1382
1393
|
}>;
|
|
1383
1394
|
mobileStorage: z.ZodEnum<{
|
|
@@ -1531,8 +1542,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1531
1542
|
chi: "chi";
|
|
1532
1543
|
}>;
|
|
1533
1544
|
goOrm: z.ZodEnum<{
|
|
1534
|
-
gorm: "gorm";
|
|
1535
1545
|
none: "none";
|
|
1546
|
+
gorm: "gorm";
|
|
1536
1547
|
sqlc: "sqlc";
|
|
1537
1548
|
ent: "ent";
|
|
1538
1549
|
}>;
|
|
@@ -1787,6 +1798,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1787
1798
|
wxt: "wxt";
|
|
1788
1799
|
msw: "msw";
|
|
1789
1800
|
storybook: "storybook";
|
|
1801
|
+
swr: "swr";
|
|
1790
1802
|
"tanstack-query": "tanstack-query";
|
|
1791
1803
|
"tanstack-table": "tanstack-table";
|
|
1792
1804
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -1795,8 +1807,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1795
1807
|
"docker-compose": "docker-compose";
|
|
1796
1808
|
}>>;
|
|
1797
1809
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1798
|
-
ai: "ai";
|
|
1799
1810
|
none: "none";
|
|
1811
|
+
ai: "ai";
|
|
1800
1812
|
"chat-sdk": "chat-sdk";
|
|
1801
1813
|
"tanstack-showcase": "tanstack-showcase";
|
|
1802
1814
|
}>>;
|
|
@@ -1889,8 +1901,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1889
1901
|
"ai-cli": "ai-cli";
|
|
1890
1902
|
}>;
|
|
1891
1903
|
effect: z.ZodEnum<{
|
|
1892
|
-
effect: "effect";
|
|
1893
1904
|
none: "none";
|
|
1905
|
+
effect: "effect";
|
|
1894
1906
|
"effect-full": "effect-full";
|
|
1895
1907
|
}>;
|
|
1896
1908
|
stateManagement: z.ZodEnum<{
|
|
@@ -1941,9 +1953,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1941
1953
|
"postcss-only": "postcss-only";
|
|
1942
1954
|
}>;
|
|
1943
1955
|
uiLibrary: z.ZodEnum<{
|
|
1944
|
-
mui: "mui";
|
|
1945
1956
|
none: "none";
|
|
1946
1957
|
"shadcn-ui": "shadcn-ui";
|
|
1958
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
1947
1959
|
daisyui: "daisyui";
|
|
1948
1960
|
"radix-ui": "radix-ui";
|
|
1949
1961
|
"headless-ui": "headless-ui";
|
|
@@ -1951,6 +1963,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1951
1963
|
"chakra-ui": "chakra-ui";
|
|
1952
1964
|
nextui: "nextui";
|
|
1953
1965
|
mantine: "mantine";
|
|
1966
|
+
mui: "mui";
|
|
1954
1967
|
antd: "antd";
|
|
1955
1968
|
"base-ui": "base-ui";
|
|
1956
1969
|
"ark-ui": "ark-ui";
|
|
@@ -2072,6 +2085,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2072
2085
|
none: "none";
|
|
2073
2086
|
pino: "pino";
|
|
2074
2087
|
winston: "winston";
|
|
2088
|
+
evlog: "evlog";
|
|
2075
2089
|
}>;
|
|
2076
2090
|
observability: z.ZodEnum<{
|
|
2077
2091
|
none: "none";
|
|
@@ -2098,6 +2112,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2098
2112
|
sanity: "sanity";
|
|
2099
2113
|
strapi: "strapi";
|
|
2100
2114
|
tinacms: "tinacms";
|
|
2115
|
+
directus: "directus";
|
|
2101
2116
|
}>;
|
|
2102
2117
|
caching: z.ZodEnum<{
|
|
2103
2118
|
none: "none";
|
|
@@ -2119,6 +2134,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2119
2134
|
none: "none";
|
|
2120
2135
|
s3: "s3";
|
|
2121
2136
|
r2: "r2";
|
|
2137
|
+
cloudinary: "cloudinary";
|
|
2122
2138
|
}>;
|
|
2123
2139
|
mobileNavigation: z.ZodEnum<{
|
|
2124
2140
|
none: "none";
|
|
@@ -2127,9 +2143,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2127
2143
|
}>;
|
|
2128
2144
|
mobileUI: z.ZodEnum<{
|
|
2129
2145
|
none: "none";
|
|
2130
|
-
uniwind: "uniwind";
|
|
2131
2146
|
tamagui: "tamagui";
|
|
2132
2147
|
"gluestack-ui": "gluestack-ui";
|
|
2148
|
+
uniwind: "uniwind";
|
|
2133
2149
|
unistyles: "unistyles";
|
|
2134
2150
|
}>;
|
|
2135
2151
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2283,8 +2299,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2283
2299
|
chi: "chi";
|
|
2284
2300
|
}>;
|
|
2285
2301
|
goOrm: z.ZodEnum<{
|
|
2286
|
-
gorm: "gorm";
|
|
2287
2302
|
none: "none";
|
|
2303
|
+
gorm: "gorm";
|
|
2288
2304
|
sqlc: "sqlc";
|
|
2289
2305
|
ent: "ent";
|
|
2290
2306
|
}>;
|
|
@@ -2539,6 +2555,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2539
2555
|
wxt: "wxt";
|
|
2540
2556
|
msw: "msw";
|
|
2541
2557
|
storybook: "storybook";
|
|
2558
|
+
swr: "swr";
|
|
2542
2559
|
"tanstack-query": "tanstack-query";
|
|
2543
2560
|
"tanstack-table": "tanstack-table";
|
|
2544
2561
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -2547,8 +2564,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2547
2564
|
"docker-compose": "docker-compose";
|
|
2548
2565
|
}>>;
|
|
2549
2566
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2550
|
-
ai: "ai";
|
|
2551
2567
|
none: "none";
|
|
2568
|
+
ai: "ai";
|
|
2552
2569
|
"chat-sdk": "chat-sdk";
|
|
2553
2570
|
"tanstack-showcase": "tanstack-showcase";
|
|
2554
2571
|
}>>;
|
|
@@ -2641,8 +2658,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2641
2658
|
"ai-cli": "ai-cli";
|
|
2642
2659
|
}>;
|
|
2643
2660
|
effect: z.ZodEnum<{
|
|
2644
|
-
effect: "effect";
|
|
2645
2661
|
none: "none";
|
|
2662
|
+
effect: "effect";
|
|
2646
2663
|
"effect-full": "effect-full";
|
|
2647
2664
|
}>;
|
|
2648
2665
|
stateManagement: z.ZodEnum<{
|
|
@@ -2693,9 +2710,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2693
2710
|
"postcss-only": "postcss-only";
|
|
2694
2711
|
}>;
|
|
2695
2712
|
uiLibrary: z.ZodEnum<{
|
|
2696
|
-
mui: "mui";
|
|
2697
2713
|
none: "none";
|
|
2698
2714
|
"shadcn-ui": "shadcn-ui";
|
|
2715
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
2699
2716
|
daisyui: "daisyui";
|
|
2700
2717
|
"radix-ui": "radix-ui";
|
|
2701
2718
|
"headless-ui": "headless-ui";
|
|
@@ -2703,6 +2720,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2703
2720
|
"chakra-ui": "chakra-ui";
|
|
2704
2721
|
nextui: "nextui";
|
|
2705
2722
|
mantine: "mantine";
|
|
2723
|
+
mui: "mui";
|
|
2706
2724
|
antd: "antd";
|
|
2707
2725
|
"base-ui": "base-ui";
|
|
2708
2726
|
"ark-ui": "ark-ui";
|
|
@@ -2824,6 +2842,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2824
2842
|
none: "none";
|
|
2825
2843
|
pino: "pino";
|
|
2826
2844
|
winston: "winston";
|
|
2845
|
+
evlog: "evlog";
|
|
2827
2846
|
}>;
|
|
2828
2847
|
observability: z.ZodEnum<{
|
|
2829
2848
|
none: "none";
|
|
@@ -2850,6 +2869,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2850
2869
|
sanity: "sanity";
|
|
2851
2870
|
strapi: "strapi";
|
|
2852
2871
|
tinacms: "tinacms";
|
|
2872
|
+
directus: "directus";
|
|
2853
2873
|
}>;
|
|
2854
2874
|
caching: z.ZodEnum<{
|
|
2855
2875
|
none: "none";
|
|
@@ -2871,6 +2891,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2871
2891
|
none: "none";
|
|
2872
2892
|
s3: "s3";
|
|
2873
2893
|
r2: "r2";
|
|
2894
|
+
cloudinary: "cloudinary";
|
|
2874
2895
|
}>;
|
|
2875
2896
|
mobileNavigation: z.ZodEnum<{
|
|
2876
2897
|
none: "none";
|
|
@@ -2879,9 +2900,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
2879
2900
|
}>;
|
|
2880
2901
|
mobileUI: z.ZodEnum<{
|
|
2881
2902
|
none: "none";
|
|
2882
|
-
uniwind: "uniwind";
|
|
2883
2903
|
tamagui: "tamagui";
|
|
2884
2904
|
"gluestack-ui": "gluestack-ui";
|
|
2905
|
+
uniwind: "uniwind";
|
|
2885
2906
|
unistyles: "unistyles";
|
|
2886
2907
|
}>;
|
|
2887
2908
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3035,8 +3056,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3035
3056
|
chi: "chi";
|
|
3036
3057
|
}>;
|
|
3037
3058
|
goOrm: z.ZodEnum<{
|
|
3038
|
-
gorm: "gorm";
|
|
3039
3059
|
none: "none";
|
|
3060
|
+
gorm: "gorm";
|
|
3040
3061
|
sqlc: "sqlc";
|
|
3041
3062
|
ent: "ent";
|
|
3042
3063
|
}>;
|
|
@@ -3294,6 +3315,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3294
3315
|
wxt: "wxt";
|
|
3295
3316
|
msw: "msw";
|
|
3296
3317
|
storybook: "storybook";
|
|
3318
|
+
swr: "swr";
|
|
3297
3319
|
"tanstack-query": "tanstack-query";
|
|
3298
3320
|
"tanstack-table": "tanstack-table";
|
|
3299
3321
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -3302,8 +3324,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3302
3324
|
"docker-compose": "docker-compose";
|
|
3303
3325
|
}>>;
|
|
3304
3326
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3305
|
-
ai: "ai";
|
|
3306
3327
|
none: "none";
|
|
3328
|
+
ai: "ai";
|
|
3307
3329
|
"chat-sdk": "chat-sdk";
|
|
3308
3330
|
"tanstack-showcase": "tanstack-showcase";
|
|
3309
3331
|
}>>;
|
|
@@ -3398,8 +3420,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3398
3420
|
"ai-cli": "ai-cli";
|
|
3399
3421
|
}>;
|
|
3400
3422
|
effect: z.ZodEnum<{
|
|
3401
|
-
effect: "effect";
|
|
3402
3423
|
none: "none";
|
|
3424
|
+
effect: "effect";
|
|
3403
3425
|
"effect-full": "effect-full";
|
|
3404
3426
|
}>;
|
|
3405
3427
|
stateManagement: z.ZodEnum<{
|
|
@@ -3450,9 +3472,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3450
3472
|
"postcss-only": "postcss-only";
|
|
3451
3473
|
}>;
|
|
3452
3474
|
uiLibrary: z.ZodEnum<{
|
|
3453
|
-
mui: "mui";
|
|
3454
3475
|
none: "none";
|
|
3455
3476
|
"shadcn-ui": "shadcn-ui";
|
|
3477
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
3456
3478
|
daisyui: "daisyui";
|
|
3457
3479
|
"radix-ui": "radix-ui";
|
|
3458
3480
|
"headless-ui": "headless-ui";
|
|
@@ -3460,6 +3482,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3460
3482
|
"chakra-ui": "chakra-ui";
|
|
3461
3483
|
nextui: "nextui";
|
|
3462
3484
|
mantine: "mantine";
|
|
3485
|
+
mui: "mui";
|
|
3463
3486
|
antd: "antd";
|
|
3464
3487
|
"base-ui": "base-ui";
|
|
3465
3488
|
"ark-ui": "ark-ui";
|
|
@@ -3581,6 +3604,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3581
3604
|
none: "none";
|
|
3582
3605
|
pino: "pino";
|
|
3583
3606
|
winston: "winston";
|
|
3607
|
+
evlog: "evlog";
|
|
3584
3608
|
}>;
|
|
3585
3609
|
observability: z.ZodEnum<{
|
|
3586
3610
|
none: "none";
|
|
@@ -3607,6 +3631,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3607
3631
|
sanity: "sanity";
|
|
3608
3632
|
strapi: "strapi";
|
|
3609
3633
|
tinacms: "tinacms";
|
|
3634
|
+
directus: "directus";
|
|
3610
3635
|
}>;
|
|
3611
3636
|
caching: z.ZodEnum<{
|
|
3612
3637
|
none: "none";
|
|
@@ -3628,6 +3653,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3628
3653
|
none: "none";
|
|
3629
3654
|
s3: "s3";
|
|
3630
3655
|
r2: "r2";
|
|
3656
|
+
cloudinary: "cloudinary";
|
|
3631
3657
|
}>;
|
|
3632
3658
|
mobileNavigation: z.ZodEnum<{
|
|
3633
3659
|
none: "none";
|
|
@@ -3636,9 +3662,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3636
3662
|
}>;
|
|
3637
3663
|
mobileUI: z.ZodEnum<{
|
|
3638
3664
|
none: "none";
|
|
3639
|
-
uniwind: "uniwind";
|
|
3640
3665
|
tamagui: "tamagui";
|
|
3641
3666
|
"gluestack-ui": "gluestack-ui";
|
|
3667
|
+
uniwind: "uniwind";
|
|
3642
3668
|
unistyles: "unistyles";
|
|
3643
3669
|
}>;
|
|
3644
3670
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3792,8 +3818,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
3792
3818
|
chi: "chi";
|
|
3793
3819
|
}>;
|
|
3794
3820
|
goOrm: z.ZodEnum<{
|
|
3795
|
-
gorm: "gorm";
|
|
3796
3821
|
none: "none";
|
|
3822
|
+
gorm: "gorm";
|
|
3797
3823
|
sqlc: "sqlc";
|
|
3798
3824
|
ent: "ent";
|
|
3799
3825
|
}>;
|
|
@@ -4175,6 +4201,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4175
4201
|
wxt: "wxt";
|
|
4176
4202
|
msw: "msw";
|
|
4177
4203
|
storybook: "storybook";
|
|
4204
|
+
swr: "swr";
|
|
4178
4205
|
"tanstack-query": "tanstack-query";
|
|
4179
4206
|
"tanstack-table": "tanstack-table";
|
|
4180
4207
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -4183,8 +4210,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4183
4210
|
"docker-compose": "docker-compose";
|
|
4184
4211
|
}>>;
|
|
4185
4212
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4186
|
-
ai: "ai";
|
|
4187
4213
|
none: "none";
|
|
4214
|
+
ai: "ai";
|
|
4188
4215
|
"chat-sdk": "chat-sdk";
|
|
4189
4216
|
"tanstack-showcase": "tanstack-showcase";
|
|
4190
4217
|
}>>;
|
|
@@ -4258,10 +4285,10 @@ declare function getAllJsonSchemas(): {
|
|
|
4258
4285
|
}>>;
|
|
4259
4286
|
template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4260
4287
|
none: "none";
|
|
4288
|
+
uniwind: "uniwind";
|
|
4261
4289
|
mern: "mern";
|
|
4262
4290
|
pern: "pern";
|
|
4263
4291
|
t3: "t3";
|
|
4264
|
-
uniwind: "uniwind";
|
|
4265
4292
|
}>>;
|
|
4266
4293
|
javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4267
4294
|
none: "none";
|
|
@@ -4398,10 +4425,10 @@ declare function getAllJsonSchemas(): {
|
|
|
4398
4425
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4399
4426
|
template: z.ZodOptional<z.ZodEnum<{
|
|
4400
4427
|
none: "none";
|
|
4428
|
+
uniwind: "uniwind";
|
|
4401
4429
|
mern: "mern";
|
|
4402
4430
|
pern: "pern";
|
|
4403
4431
|
t3: "t3";
|
|
4404
|
-
uniwind: "uniwind";
|
|
4405
4432
|
}>>;
|
|
4406
4433
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
4407
4434
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4493,6 +4520,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4493
4520
|
wxt: "wxt";
|
|
4494
4521
|
msw: "msw";
|
|
4495
4522
|
storybook: "storybook";
|
|
4523
|
+
swr: "swr";
|
|
4496
4524
|
"tanstack-query": "tanstack-query";
|
|
4497
4525
|
"tanstack-table": "tanstack-table";
|
|
4498
4526
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -4501,8 +4529,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4501
4529
|
"docker-compose": "docker-compose";
|
|
4502
4530
|
}>>>;
|
|
4503
4531
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4504
|
-
ai: "ai";
|
|
4505
4532
|
none: "none";
|
|
4533
|
+
ai: "ai";
|
|
4506
4534
|
"chat-sdk": "chat-sdk";
|
|
4507
4535
|
"tanstack-showcase": "tanstack-showcase";
|
|
4508
4536
|
}>>>;
|
|
@@ -4608,8 +4636,8 @@ declare function getAllJsonSchemas(): {
|
|
|
4608
4636
|
"ai-cli": "ai-cli";
|
|
4609
4637
|
}>>;
|
|
4610
4638
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
4611
|
-
effect: "effect";
|
|
4612
4639
|
none: "none";
|
|
4640
|
+
effect: "effect";
|
|
4613
4641
|
"effect-full": "effect-full";
|
|
4614
4642
|
}>>;
|
|
4615
4643
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4660,9 +4688,9 @@ declare function getAllJsonSchemas(): {
|
|
|
4660
4688
|
"postcss-only": "postcss-only";
|
|
4661
4689
|
}>>;
|
|
4662
4690
|
uiLibrary: z.ZodOptional<z.ZodEnum<{
|
|
4663
|
-
mui: "mui";
|
|
4664
4691
|
none: "none";
|
|
4665
4692
|
"shadcn-ui": "shadcn-ui";
|
|
4693
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
4666
4694
|
daisyui: "daisyui";
|
|
4667
4695
|
"radix-ui": "radix-ui";
|
|
4668
4696
|
"headless-ui": "headless-ui";
|
|
@@ -4670,6 +4698,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4670
4698
|
"chakra-ui": "chakra-ui";
|
|
4671
4699
|
nextui: "nextui";
|
|
4672
4700
|
mantine: "mantine";
|
|
4701
|
+
mui: "mui";
|
|
4673
4702
|
antd: "antd";
|
|
4674
4703
|
"base-ui": "base-ui";
|
|
4675
4704
|
"ark-ui": "ark-ui";
|
|
@@ -4791,6 +4820,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4791
4820
|
none: "none";
|
|
4792
4821
|
pino: "pino";
|
|
4793
4822
|
winston: "winston";
|
|
4823
|
+
evlog: "evlog";
|
|
4794
4824
|
}>>;
|
|
4795
4825
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
4796
4826
|
none: "none";
|
|
@@ -4817,6 +4847,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4817
4847
|
sanity: "sanity";
|
|
4818
4848
|
strapi: "strapi";
|
|
4819
4849
|
tinacms: "tinacms";
|
|
4850
|
+
directus: "directus";
|
|
4820
4851
|
}>>;
|
|
4821
4852
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
4822
4853
|
none: "none";
|
|
@@ -4838,6 +4869,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4838
4869
|
none: "none";
|
|
4839
4870
|
s3: "s3";
|
|
4840
4871
|
r2: "r2";
|
|
4872
|
+
cloudinary: "cloudinary";
|
|
4841
4873
|
}>>;
|
|
4842
4874
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
4843
4875
|
none: "none";
|
|
@@ -4846,9 +4878,9 @@ declare function getAllJsonSchemas(): {
|
|
|
4846
4878
|
}>>;
|
|
4847
4879
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
4848
4880
|
none: "none";
|
|
4849
|
-
uniwind: "uniwind";
|
|
4850
4881
|
tamagui: "tamagui";
|
|
4851
4882
|
"gluestack-ui": "gluestack-ui";
|
|
4883
|
+
uniwind: "uniwind";
|
|
4852
4884
|
unistyles: "unistyles";
|
|
4853
4885
|
}>>;
|
|
4854
4886
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5002,8 +5034,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5002
5034
|
chi: "chi";
|
|
5003
5035
|
}>>;
|
|
5004
5036
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
5005
|
-
gorm: "gorm";
|
|
5006
5037
|
none: "none";
|
|
5038
|
+
gorm: "gorm";
|
|
5007
5039
|
sqlc: "sqlc";
|
|
5008
5040
|
ent: "ent";
|
|
5009
5041
|
}>>;
|
|
@@ -5259,6 +5291,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5259
5291
|
wxt: "wxt";
|
|
5260
5292
|
msw: "msw";
|
|
5261
5293
|
storybook: "storybook";
|
|
5294
|
+
swr: "swr";
|
|
5262
5295
|
"tanstack-query": "tanstack-query";
|
|
5263
5296
|
"tanstack-table": "tanstack-table";
|
|
5264
5297
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -5267,8 +5300,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5267
5300
|
"docker-compose": "docker-compose";
|
|
5268
5301
|
}>>;
|
|
5269
5302
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5270
|
-
ai: "ai";
|
|
5271
5303
|
none: "none";
|
|
5304
|
+
ai: "ai";
|
|
5272
5305
|
"chat-sdk": "chat-sdk";
|
|
5273
5306
|
"tanstack-showcase": "tanstack-showcase";
|
|
5274
5307
|
}>>;
|
|
@@ -5363,8 +5396,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5363
5396
|
"ai-cli": "ai-cli";
|
|
5364
5397
|
}>;
|
|
5365
5398
|
effect: z.ZodEnum<{
|
|
5366
|
-
effect: "effect";
|
|
5367
5399
|
none: "none";
|
|
5400
|
+
effect: "effect";
|
|
5368
5401
|
"effect-full": "effect-full";
|
|
5369
5402
|
}>;
|
|
5370
5403
|
stateManagement: z.ZodEnum<{
|
|
@@ -5415,9 +5448,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5415
5448
|
"postcss-only": "postcss-only";
|
|
5416
5449
|
}>;
|
|
5417
5450
|
uiLibrary: z.ZodEnum<{
|
|
5418
|
-
mui: "mui";
|
|
5419
5451
|
none: "none";
|
|
5420
5452
|
"shadcn-ui": "shadcn-ui";
|
|
5453
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
5421
5454
|
daisyui: "daisyui";
|
|
5422
5455
|
"radix-ui": "radix-ui";
|
|
5423
5456
|
"headless-ui": "headless-ui";
|
|
@@ -5425,6 +5458,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5425
5458
|
"chakra-ui": "chakra-ui";
|
|
5426
5459
|
nextui: "nextui";
|
|
5427
5460
|
mantine: "mantine";
|
|
5461
|
+
mui: "mui";
|
|
5428
5462
|
antd: "antd";
|
|
5429
5463
|
"base-ui": "base-ui";
|
|
5430
5464
|
"ark-ui": "ark-ui";
|
|
@@ -5546,6 +5580,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5546
5580
|
none: "none";
|
|
5547
5581
|
pino: "pino";
|
|
5548
5582
|
winston: "winston";
|
|
5583
|
+
evlog: "evlog";
|
|
5549
5584
|
}>;
|
|
5550
5585
|
observability: z.ZodEnum<{
|
|
5551
5586
|
none: "none";
|
|
@@ -5572,6 +5607,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5572
5607
|
sanity: "sanity";
|
|
5573
5608
|
strapi: "strapi";
|
|
5574
5609
|
tinacms: "tinacms";
|
|
5610
|
+
directus: "directus";
|
|
5575
5611
|
}>;
|
|
5576
5612
|
caching: z.ZodEnum<{
|
|
5577
5613
|
none: "none";
|
|
@@ -5593,6 +5629,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5593
5629
|
none: "none";
|
|
5594
5630
|
s3: "s3";
|
|
5595
5631
|
r2: "r2";
|
|
5632
|
+
cloudinary: "cloudinary";
|
|
5596
5633
|
}>;
|
|
5597
5634
|
mobileNavigation: z.ZodEnum<{
|
|
5598
5635
|
none: "none";
|
|
@@ -5601,9 +5638,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5601
5638
|
}>;
|
|
5602
5639
|
mobileUI: z.ZodEnum<{
|
|
5603
5640
|
none: "none";
|
|
5604
|
-
uniwind: "uniwind";
|
|
5605
5641
|
tamagui: "tamagui";
|
|
5606
5642
|
"gluestack-ui": "gluestack-ui";
|
|
5643
|
+
uniwind: "uniwind";
|
|
5607
5644
|
unistyles: "unistyles";
|
|
5608
5645
|
}>;
|
|
5609
5646
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5757,8 +5794,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5757
5794
|
chi: "chi";
|
|
5758
5795
|
}>;
|
|
5759
5796
|
goOrm: z.ZodEnum<{
|
|
5760
|
-
gorm: "gorm";
|
|
5761
5797
|
none: "none";
|
|
5798
|
+
gorm: "gorm";
|
|
5762
5799
|
sqlc: "sqlc";
|
|
5763
5800
|
ent: "ent";
|
|
5764
5801
|
}>;
|
|
@@ -6013,6 +6050,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6013
6050
|
wxt: "wxt";
|
|
6014
6051
|
msw: "msw";
|
|
6015
6052
|
storybook: "storybook";
|
|
6053
|
+
swr: "swr";
|
|
6016
6054
|
"tanstack-query": "tanstack-query";
|
|
6017
6055
|
"tanstack-table": "tanstack-table";
|
|
6018
6056
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -6021,8 +6059,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6021
6059
|
"docker-compose": "docker-compose";
|
|
6022
6060
|
}>>;
|
|
6023
6061
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6024
|
-
ai: "ai";
|
|
6025
6062
|
none: "none";
|
|
6063
|
+
ai: "ai";
|
|
6026
6064
|
"chat-sdk": "chat-sdk";
|
|
6027
6065
|
"tanstack-showcase": "tanstack-showcase";
|
|
6028
6066
|
}>>;
|
|
@@ -6115,8 +6153,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6115
6153
|
"ai-cli": "ai-cli";
|
|
6116
6154
|
}>;
|
|
6117
6155
|
effect: z.ZodEnum<{
|
|
6118
|
-
effect: "effect";
|
|
6119
6156
|
none: "none";
|
|
6157
|
+
effect: "effect";
|
|
6120
6158
|
"effect-full": "effect-full";
|
|
6121
6159
|
}>;
|
|
6122
6160
|
stateManagement: z.ZodEnum<{
|
|
@@ -6167,9 +6205,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6167
6205
|
"postcss-only": "postcss-only";
|
|
6168
6206
|
}>;
|
|
6169
6207
|
uiLibrary: z.ZodEnum<{
|
|
6170
|
-
mui: "mui";
|
|
6171
6208
|
none: "none";
|
|
6172
6209
|
"shadcn-ui": "shadcn-ui";
|
|
6210
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
6173
6211
|
daisyui: "daisyui";
|
|
6174
6212
|
"radix-ui": "radix-ui";
|
|
6175
6213
|
"headless-ui": "headless-ui";
|
|
@@ -6177,6 +6215,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6177
6215
|
"chakra-ui": "chakra-ui";
|
|
6178
6216
|
nextui: "nextui";
|
|
6179
6217
|
mantine: "mantine";
|
|
6218
|
+
mui: "mui";
|
|
6180
6219
|
antd: "antd";
|
|
6181
6220
|
"base-ui": "base-ui";
|
|
6182
6221
|
"ark-ui": "ark-ui";
|
|
@@ -6298,6 +6337,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6298
6337
|
none: "none";
|
|
6299
6338
|
pino: "pino";
|
|
6300
6339
|
winston: "winston";
|
|
6340
|
+
evlog: "evlog";
|
|
6301
6341
|
}>;
|
|
6302
6342
|
observability: z.ZodEnum<{
|
|
6303
6343
|
none: "none";
|
|
@@ -6324,6 +6364,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6324
6364
|
sanity: "sanity";
|
|
6325
6365
|
strapi: "strapi";
|
|
6326
6366
|
tinacms: "tinacms";
|
|
6367
|
+
directus: "directus";
|
|
6327
6368
|
}>;
|
|
6328
6369
|
caching: z.ZodEnum<{
|
|
6329
6370
|
none: "none";
|
|
@@ -6345,6 +6386,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6345
6386
|
none: "none";
|
|
6346
6387
|
s3: "s3";
|
|
6347
6388
|
r2: "r2";
|
|
6389
|
+
cloudinary: "cloudinary";
|
|
6348
6390
|
}>;
|
|
6349
6391
|
mobileNavigation: z.ZodEnum<{
|
|
6350
6392
|
none: "none";
|
|
@@ -6353,9 +6395,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6353
6395
|
}>;
|
|
6354
6396
|
mobileUI: z.ZodEnum<{
|
|
6355
6397
|
none: "none";
|
|
6356
|
-
uniwind: "uniwind";
|
|
6357
6398
|
tamagui: "tamagui";
|
|
6358
6399
|
"gluestack-ui": "gluestack-ui";
|
|
6400
|
+
uniwind: "uniwind";
|
|
6359
6401
|
unistyles: "unistyles";
|
|
6360
6402
|
}>;
|
|
6361
6403
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6509,8 +6551,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6509
6551
|
chi: "chi";
|
|
6510
6552
|
}>;
|
|
6511
6553
|
goOrm: z.ZodEnum<{
|
|
6512
|
-
gorm: "gorm";
|
|
6513
6554
|
none: "none";
|
|
6555
|
+
gorm: "gorm";
|
|
6514
6556
|
sqlc: "sqlc";
|
|
6515
6557
|
ent: "ent";
|
|
6516
6558
|
}>;
|
|
@@ -6765,6 +6807,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6765
6807
|
wxt: "wxt";
|
|
6766
6808
|
msw: "msw";
|
|
6767
6809
|
storybook: "storybook";
|
|
6810
|
+
swr: "swr";
|
|
6768
6811
|
"tanstack-query": "tanstack-query";
|
|
6769
6812
|
"tanstack-table": "tanstack-table";
|
|
6770
6813
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -6773,8 +6816,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6773
6816
|
"docker-compose": "docker-compose";
|
|
6774
6817
|
}>>;
|
|
6775
6818
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6776
|
-
ai: "ai";
|
|
6777
6819
|
none: "none";
|
|
6820
|
+
ai: "ai";
|
|
6778
6821
|
"chat-sdk": "chat-sdk";
|
|
6779
6822
|
"tanstack-showcase": "tanstack-showcase";
|
|
6780
6823
|
}>>;
|
|
@@ -6867,8 +6910,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6867
6910
|
"ai-cli": "ai-cli";
|
|
6868
6911
|
}>;
|
|
6869
6912
|
effect: z.ZodEnum<{
|
|
6870
|
-
effect: "effect";
|
|
6871
6913
|
none: "none";
|
|
6914
|
+
effect: "effect";
|
|
6872
6915
|
"effect-full": "effect-full";
|
|
6873
6916
|
}>;
|
|
6874
6917
|
stateManagement: z.ZodEnum<{
|
|
@@ -6919,9 +6962,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6919
6962
|
"postcss-only": "postcss-only";
|
|
6920
6963
|
}>;
|
|
6921
6964
|
uiLibrary: z.ZodEnum<{
|
|
6922
|
-
mui: "mui";
|
|
6923
6965
|
none: "none";
|
|
6924
6966
|
"shadcn-ui": "shadcn-ui";
|
|
6967
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
6925
6968
|
daisyui: "daisyui";
|
|
6926
6969
|
"radix-ui": "radix-ui";
|
|
6927
6970
|
"headless-ui": "headless-ui";
|
|
@@ -6929,6 +6972,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6929
6972
|
"chakra-ui": "chakra-ui";
|
|
6930
6973
|
nextui: "nextui";
|
|
6931
6974
|
mantine: "mantine";
|
|
6975
|
+
mui: "mui";
|
|
6932
6976
|
antd: "antd";
|
|
6933
6977
|
"base-ui": "base-ui";
|
|
6934
6978
|
"ark-ui": "ark-ui";
|
|
@@ -7050,6 +7094,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7050
7094
|
none: "none";
|
|
7051
7095
|
pino: "pino";
|
|
7052
7096
|
winston: "winston";
|
|
7097
|
+
evlog: "evlog";
|
|
7053
7098
|
}>;
|
|
7054
7099
|
observability: z.ZodEnum<{
|
|
7055
7100
|
none: "none";
|
|
@@ -7076,6 +7121,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7076
7121
|
sanity: "sanity";
|
|
7077
7122
|
strapi: "strapi";
|
|
7078
7123
|
tinacms: "tinacms";
|
|
7124
|
+
directus: "directus";
|
|
7079
7125
|
}>;
|
|
7080
7126
|
caching: z.ZodEnum<{
|
|
7081
7127
|
none: "none";
|
|
@@ -7097,6 +7143,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7097
7143
|
none: "none";
|
|
7098
7144
|
s3: "s3";
|
|
7099
7145
|
r2: "r2";
|
|
7146
|
+
cloudinary: "cloudinary";
|
|
7100
7147
|
}>;
|
|
7101
7148
|
mobileNavigation: z.ZodEnum<{
|
|
7102
7149
|
none: "none";
|
|
@@ -7105,9 +7152,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7105
7152
|
}>;
|
|
7106
7153
|
mobileUI: z.ZodEnum<{
|
|
7107
7154
|
none: "none";
|
|
7108
|
-
uniwind: "uniwind";
|
|
7109
7155
|
tamagui: "tamagui";
|
|
7110
7156
|
"gluestack-ui": "gluestack-ui";
|
|
7157
|
+
uniwind: "uniwind";
|
|
7111
7158
|
unistyles: "unistyles";
|
|
7112
7159
|
}>;
|
|
7113
7160
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7261,8 +7308,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7261
7308
|
chi: "chi";
|
|
7262
7309
|
}>;
|
|
7263
7310
|
goOrm: z.ZodEnum<{
|
|
7264
|
-
gorm: "gorm";
|
|
7265
7311
|
none: "none";
|
|
7312
|
+
gorm: "gorm";
|
|
7266
7313
|
sqlc: "sqlc";
|
|
7267
7314
|
ent: "ent";
|
|
7268
7315
|
}>;
|
|
@@ -7520,6 +7567,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7520
7567
|
wxt: "wxt";
|
|
7521
7568
|
msw: "msw";
|
|
7522
7569
|
storybook: "storybook";
|
|
7570
|
+
swr: "swr";
|
|
7523
7571
|
"tanstack-query": "tanstack-query";
|
|
7524
7572
|
"tanstack-table": "tanstack-table";
|
|
7525
7573
|
"tanstack-virtual": "tanstack-virtual";
|
|
@@ -7528,8 +7576,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7528
7576
|
"docker-compose": "docker-compose";
|
|
7529
7577
|
}>>;
|
|
7530
7578
|
examples: z.ZodArray<z.ZodEnum<{
|
|
7531
|
-
ai: "ai";
|
|
7532
7579
|
none: "none";
|
|
7580
|
+
ai: "ai";
|
|
7533
7581
|
"chat-sdk": "chat-sdk";
|
|
7534
7582
|
"tanstack-showcase": "tanstack-showcase";
|
|
7535
7583
|
}>>;
|
|
@@ -7624,8 +7672,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7624
7672
|
"ai-cli": "ai-cli";
|
|
7625
7673
|
}>;
|
|
7626
7674
|
effect: z.ZodEnum<{
|
|
7627
|
-
effect: "effect";
|
|
7628
7675
|
none: "none";
|
|
7676
|
+
effect: "effect";
|
|
7629
7677
|
"effect-full": "effect-full";
|
|
7630
7678
|
}>;
|
|
7631
7679
|
stateManagement: z.ZodEnum<{
|
|
@@ -7676,9 +7724,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7676
7724
|
"postcss-only": "postcss-only";
|
|
7677
7725
|
}>;
|
|
7678
7726
|
uiLibrary: z.ZodEnum<{
|
|
7679
|
-
mui: "mui";
|
|
7680
7727
|
none: "none";
|
|
7681
7728
|
"shadcn-ui": "shadcn-ui";
|
|
7729
|
+
"shadcn-svelte": "shadcn-svelte";
|
|
7682
7730
|
daisyui: "daisyui";
|
|
7683
7731
|
"radix-ui": "radix-ui";
|
|
7684
7732
|
"headless-ui": "headless-ui";
|
|
@@ -7686,6 +7734,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7686
7734
|
"chakra-ui": "chakra-ui";
|
|
7687
7735
|
nextui: "nextui";
|
|
7688
7736
|
mantine: "mantine";
|
|
7737
|
+
mui: "mui";
|
|
7689
7738
|
antd: "antd";
|
|
7690
7739
|
"base-ui": "base-ui";
|
|
7691
7740
|
"ark-ui": "ark-ui";
|
|
@@ -7807,6 +7856,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7807
7856
|
none: "none";
|
|
7808
7857
|
pino: "pino";
|
|
7809
7858
|
winston: "winston";
|
|
7859
|
+
evlog: "evlog";
|
|
7810
7860
|
}>;
|
|
7811
7861
|
observability: z.ZodEnum<{
|
|
7812
7862
|
none: "none";
|
|
@@ -7833,6 +7883,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7833
7883
|
sanity: "sanity";
|
|
7834
7884
|
strapi: "strapi";
|
|
7835
7885
|
tinacms: "tinacms";
|
|
7886
|
+
directus: "directus";
|
|
7836
7887
|
}>;
|
|
7837
7888
|
caching: z.ZodEnum<{
|
|
7838
7889
|
none: "none";
|
|
@@ -7854,6 +7905,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7854
7905
|
none: "none";
|
|
7855
7906
|
s3: "s3";
|
|
7856
7907
|
r2: "r2";
|
|
7908
|
+
cloudinary: "cloudinary";
|
|
7857
7909
|
}>;
|
|
7858
7910
|
mobileNavigation: z.ZodEnum<{
|
|
7859
7911
|
none: "none";
|
|
@@ -7862,9 +7914,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7862
7914
|
}>;
|
|
7863
7915
|
mobileUI: z.ZodEnum<{
|
|
7864
7916
|
none: "none";
|
|
7865
|
-
uniwind: "uniwind";
|
|
7866
7917
|
tamagui: "tamagui";
|
|
7867
7918
|
"gluestack-ui": "gluestack-ui";
|
|
7919
|
+
uniwind: "uniwind";
|
|
7868
7920
|
unistyles: "unistyles";
|
|
7869
7921
|
}>;
|
|
7870
7922
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8018,8 +8070,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8018
8070
|
chi: "chi";
|
|
8019
8071
|
}>;
|
|
8020
8072
|
goOrm: z.ZodEnum<{
|
|
8021
|
-
gorm: "gorm";
|
|
8022
8073
|
none: "none";
|
|
8074
|
+
gorm: "gorm";
|
|
8023
8075
|
sqlc: "sqlc";
|
|
8024
8076
|
ent: "ent";
|
|
8025
8077
|
}>;
|