@better-fullstack/types 1.4.11 → 1.4.13
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/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +105 -4
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +68 -0
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-BvKM2MFE.d.mts → schemas-BRuvXx35.d.mts} +59 -4
- package/dist/schemas-BRuvXx35.d.mts.map +1 -0
- package/dist/{schemas-C7jVbcHC.mjs → schemas-CaXcn795.mjs} +9 -2
- package/dist/schemas-CaXcn795.mjs.map +1 -0
- package/dist/schemas.d.mts +1 -1
- package/dist/schemas.mjs +1 -1
- package/package.json +1 -1
- package/dist/schemas-BvKM2MFE.d.mts.map +0 -1
- package/dist/schemas-C7jVbcHC.mjs.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -79,6 +79,11 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
79
79
|
wxt: "wxt";
|
|
80
80
|
msw: "msw";
|
|
81
81
|
storybook: "storybook";
|
|
82
|
+
"tanstack-query": "tanstack-query";
|
|
83
|
+
"tanstack-table": "tanstack-table";
|
|
84
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
85
|
+
"tanstack-db": "tanstack-db";
|
|
86
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
82
87
|
}>>;
|
|
83
88
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
84
89
|
none: "none";
|
|
@@ -89,6 +94,7 @@ declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayl
|
|
|
89
94
|
bun: "bun";
|
|
90
95
|
npm: "npm";
|
|
91
96
|
pnpm: "pnpm";
|
|
97
|
+
yarn: "yarn";
|
|
92
98
|
}>>;
|
|
93
99
|
declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
94
100
|
none: "none";
|
|
@@ -250,6 +256,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
250
256
|
wxt: "wxt";
|
|
251
257
|
msw: "msw";
|
|
252
258
|
storybook: "storybook";
|
|
259
|
+
"tanstack-query": "tanstack-query";
|
|
260
|
+
"tanstack-table": "tanstack-table";
|
|
261
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
262
|
+
"tanstack-db": "tanstack-db";
|
|
263
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
253
264
|
}>>>;
|
|
254
265
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
255
266
|
none: "none";
|
|
@@ -261,6 +272,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
261
272
|
bun: "bun";
|
|
262
273
|
npm: "npm";
|
|
263
274
|
pnpm: "pnpm";
|
|
275
|
+
yarn: "yarn";
|
|
264
276
|
}>>;
|
|
265
277
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
266
278
|
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
@@ -345,6 +357,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
345
357
|
modelfusion: "modelfusion";
|
|
346
358
|
langchain: "langchain";
|
|
347
359
|
llamaindex: "llamaindex";
|
|
360
|
+
"tanstack-ai": "tanstack-ai";
|
|
348
361
|
}>>;
|
|
349
362
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
350
363
|
none: "none";
|
|
@@ -744,6 +757,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
744
757
|
wxt: "wxt";
|
|
745
758
|
msw: "msw";
|
|
746
759
|
storybook: "storybook";
|
|
760
|
+
"tanstack-query": "tanstack-query";
|
|
761
|
+
"tanstack-table": "tanstack-table";
|
|
762
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
763
|
+
"tanstack-db": "tanstack-db";
|
|
764
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
747
765
|
}>>;
|
|
748
766
|
examples: z.ZodArray<z.ZodEnum<{
|
|
749
767
|
none: "none";
|
|
@@ -773,6 +791,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
773
791
|
bun: "bun";
|
|
774
792
|
npm: "npm";
|
|
775
793
|
pnpm: "pnpm";
|
|
794
|
+
yarn: "yarn";
|
|
776
795
|
}>;
|
|
777
796
|
install: z.ZodBoolean;
|
|
778
797
|
dbSetup: z.ZodEnum<{
|
|
@@ -828,6 +847,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
828
847
|
modelfusion: "modelfusion";
|
|
829
848
|
langchain: "langchain";
|
|
830
849
|
llamaindex: "llamaindex";
|
|
850
|
+
"tanstack-ai": "tanstack-ai";
|
|
831
851
|
}>;
|
|
832
852
|
effect: z.ZodEnum<{
|
|
833
853
|
none: "none";
|
|
@@ -1226,6 +1246,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1226
1246
|
wxt: "wxt";
|
|
1227
1247
|
msw: "msw";
|
|
1228
1248
|
storybook: "storybook";
|
|
1249
|
+
"tanstack-query": "tanstack-query";
|
|
1250
|
+
"tanstack-table": "tanstack-table";
|
|
1251
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
1252
|
+
"tanstack-db": "tanstack-db";
|
|
1253
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
1229
1254
|
}>>;
|
|
1230
1255
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1231
1256
|
none: "none";
|
|
@@ -1254,6 +1279,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1254
1279
|
bun: "bun";
|
|
1255
1280
|
npm: "npm";
|
|
1256
1281
|
pnpm: "pnpm";
|
|
1282
|
+
yarn: "yarn";
|
|
1257
1283
|
}>;
|
|
1258
1284
|
dbSetup: z.ZodEnum<{
|
|
1259
1285
|
none: "none";
|
|
@@ -1308,6 +1334,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1308
1334
|
modelfusion: "modelfusion";
|
|
1309
1335
|
langchain: "langchain";
|
|
1310
1336
|
llamaindex: "llamaindex";
|
|
1337
|
+
"tanstack-ai": "tanstack-ai";
|
|
1311
1338
|
}>;
|
|
1312
1339
|
effect: z.ZodEnum<{
|
|
1313
1340
|
none: "none";
|
|
@@ -1709,6 +1736,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1709
1736
|
wxt: "wxt";
|
|
1710
1737
|
msw: "msw";
|
|
1711
1738
|
storybook: "storybook";
|
|
1739
|
+
"tanstack-query": "tanstack-query";
|
|
1740
|
+
"tanstack-table": "tanstack-table";
|
|
1741
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
1742
|
+
"tanstack-db": "tanstack-db";
|
|
1743
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
1712
1744
|
}>>;
|
|
1713
1745
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1714
1746
|
none: "none";
|
|
@@ -1738,6 +1770,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1738
1770
|
bun: "bun";
|
|
1739
1771
|
npm: "npm";
|
|
1740
1772
|
pnpm: "pnpm";
|
|
1773
|
+
yarn: "yarn";
|
|
1741
1774
|
}>;
|
|
1742
1775
|
install: z.ZodBoolean;
|
|
1743
1776
|
dbSetup: z.ZodEnum<{
|
|
@@ -1793,6 +1826,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
1793
1826
|
modelfusion: "modelfusion";
|
|
1794
1827
|
langchain: "langchain";
|
|
1795
1828
|
llamaindex: "llamaindex";
|
|
1829
|
+
"tanstack-ai": "tanstack-ai";
|
|
1796
1830
|
}>;
|
|
1797
1831
|
effect: z.ZodEnum<{
|
|
1798
1832
|
none: "none";
|
|
@@ -2190,6 +2224,11 @@ declare function getAllJsonSchemas(): {
|
|
|
2190
2224
|
wxt: "wxt";
|
|
2191
2225
|
msw: "msw";
|
|
2192
2226
|
storybook: "storybook";
|
|
2227
|
+
"tanstack-query": "tanstack-query";
|
|
2228
|
+
"tanstack-table": "tanstack-table";
|
|
2229
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
2230
|
+
"tanstack-db": "tanstack-db";
|
|
2231
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
2193
2232
|
}>>;
|
|
2194
2233
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2195
2234
|
none: "none";
|
|
@@ -2200,6 +2239,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2200
2239
|
bun: "bun";
|
|
2201
2240
|
npm: "npm";
|
|
2202
2241
|
pnpm: "pnpm";
|
|
2242
|
+
yarn: "yarn";
|
|
2203
2243
|
}>>;
|
|
2204
2244
|
databaseSetup: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2205
2245
|
none: "none";
|
|
@@ -2361,6 +2401,11 @@ declare function getAllJsonSchemas(): {
|
|
|
2361
2401
|
wxt: "wxt";
|
|
2362
2402
|
msw: "msw";
|
|
2363
2403
|
storybook: "storybook";
|
|
2404
|
+
"tanstack-query": "tanstack-query";
|
|
2405
|
+
"tanstack-table": "tanstack-table";
|
|
2406
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
2407
|
+
"tanstack-db": "tanstack-db";
|
|
2408
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
2364
2409
|
}>>>;
|
|
2365
2410
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2366
2411
|
none: "none";
|
|
@@ -2372,6 +2417,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2372
2417
|
bun: "bun";
|
|
2373
2418
|
npm: "npm";
|
|
2374
2419
|
pnpm: "pnpm";
|
|
2420
|
+
yarn: "yarn";
|
|
2375
2421
|
}>>;
|
|
2376
2422
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
2377
2423
|
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2456,6 +2502,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2456
2502
|
modelfusion: "modelfusion";
|
|
2457
2503
|
langchain: "langchain";
|
|
2458
2504
|
llamaindex: "llamaindex";
|
|
2505
|
+
"tanstack-ai": "tanstack-ai";
|
|
2459
2506
|
}>>;
|
|
2460
2507
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
2461
2508
|
none: "none";
|
|
@@ -2855,6 +2902,11 @@ declare function getAllJsonSchemas(): {
|
|
|
2855
2902
|
wxt: "wxt";
|
|
2856
2903
|
msw: "msw";
|
|
2857
2904
|
storybook: "storybook";
|
|
2905
|
+
"tanstack-query": "tanstack-query";
|
|
2906
|
+
"tanstack-table": "tanstack-table";
|
|
2907
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
2908
|
+
"tanstack-db": "tanstack-db";
|
|
2909
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
2858
2910
|
}>>;
|
|
2859
2911
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2860
2912
|
none: "none";
|
|
@@ -2884,6 +2936,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2884
2936
|
bun: "bun";
|
|
2885
2937
|
npm: "npm";
|
|
2886
2938
|
pnpm: "pnpm";
|
|
2939
|
+
yarn: "yarn";
|
|
2887
2940
|
}>;
|
|
2888
2941
|
install: z.ZodBoolean;
|
|
2889
2942
|
dbSetup: z.ZodEnum<{
|
|
@@ -2939,6 +2992,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2939
2992
|
modelfusion: "modelfusion";
|
|
2940
2993
|
langchain: "langchain";
|
|
2941
2994
|
llamaindex: "llamaindex";
|
|
2995
|
+
"tanstack-ai": "tanstack-ai";
|
|
2942
2996
|
}>;
|
|
2943
2997
|
effect: z.ZodEnum<{
|
|
2944
2998
|
none: "none";
|
|
@@ -3337,6 +3391,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3337
3391
|
wxt: "wxt";
|
|
3338
3392
|
msw: "msw";
|
|
3339
3393
|
storybook: "storybook";
|
|
3394
|
+
"tanstack-query": "tanstack-query";
|
|
3395
|
+
"tanstack-table": "tanstack-table";
|
|
3396
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
3397
|
+
"tanstack-db": "tanstack-db";
|
|
3398
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
3340
3399
|
}>>;
|
|
3341
3400
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3342
3401
|
none: "none";
|
|
@@ -3365,6 +3424,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3365
3424
|
bun: "bun";
|
|
3366
3425
|
npm: "npm";
|
|
3367
3426
|
pnpm: "pnpm";
|
|
3427
|
+
yarn: "yarn";
|
|
3368
3428
|
}>;
|
|
3369
3429
|
dbSetup: z.ZodEnum<{
|
|
3370
3430
|
none: "none";
|
|
@@ -3419,6 +3479,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3419
3479
|
modelfusion: "modelfusion";
|
|
3420
3480
|
langchain: "langchain";
|
|
3421
3481
|
llamaindex: "llamaindex";
|
|
3482
|
+
"tanstack-ai": "tanstack-ai";
|
|
3422
3483
|
}>;
|
|
3423
3484
|
effect: z.ZodEnum<{
|
|
3424
3485
|
none: "none";
|
|
@@ -3820,6 +3881,11 @@ declare function getAllJsonSchemas(): {
|
|
|
3820
3881
|
wxt: "wxt";
|
|
3821
3882
|
msw: "msw";
|
|
3822
3883
|
storybook: "storybook";
|
|
3884
|
+
"tanstack-query": "tanstack-query";
|
|
3885
|
+
"tanstack-table": "tanstack-table";
|
|
3886
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
3887
|
+
"tanstack-db": "tanstack-db";
|
|
3888
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
3823
3889
|
}>>;
|
|
3824
3890
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3825
3891
|
none: "none";
|
|
@@ -3849,6 +3915,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3849
3915
|
bun: "bun";
|
|
3850
3916
|
npm: "npm";
|
|
3851
3917
|
pnpm: "pnpm";
|
|
3918
|
+
yarn: "yarn";
|
|
3852
3919
|
}>;
|
|
3853
3920
|
install: z.ZodBoolean;
|
|
3854
3921
|
dbSetup: z.ZodEnum<{
|
|
@@ -3904,6 +3971,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3904
3971
|
modelfusion: "modelfusion";
|
|
3905
3972
|
langchain: "langchain";
|
|
3906
3973
|
llamaindex: "llamaindex";
|
|
3974
|
+
"tanstack-ai": "tanstack-ai";
|
|
3907
3975
|
}>;
|
|
3908
3976
|
effect: z.ZodEnum<{
|
|
3909
3977
|
none: "none";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"sourcesContent":[],"mappings":";;;iBA0BgB,qBAAA,CAAA,GAAqB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;EAArB,MAAA,EAAA,QAAA;EAIA,QAAA,EAAA,UAAgB;EAIhB,KAAA,EAAA,OAAA;EAIA,OAAA,EAAA,SAAA;EAIA,MAAA,EAAA,QAAA;EAIA,KAAA,EAAA,OAAA;AAIhB,CAAA,CAAA,CAAA;AAIgB,iBAxBA,gBAAA,CAAA,CAwB2B,EAxBX,CAAA,CAAA,IAAA,CAAA,4BAwBW,CAxBX,CAAA,CAAA,OAwBW,CAAA;EAI3B,IAAA,EAAA,MAAA;EAIA,OAAA,EAAA,SAAA;EAIA,MAAA,EAAA,QAAA;EAIA,QAAA,EAAA,UAAA;EAIA,OAAA,EAAA,SAAA;EAIA,MAAA,EAAA,QAAA;EAIA,QAAA,EAAA,UAAA;EAIA,SAAA,EAAA,WAAA;AAIhB,CAAA,CAAA,CAAA;iBAxDgB,oBAAA,CAAA,GAAoB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;;;;;;;;;iBAIpB,oBAAA,CAAA,GAAoB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;iBAIpB,qBAAA,CAAA,GAAqB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;iBAIrB,mBAAA,CAAA,GAAmB,CAAA,CAAA,IAAA,CAAA,6BAAA,CAAA,CAAA
|
|
1
|
+
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"sourcesContent":[],"mappings":"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"}
|
package/dist/json-schema.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as FrontendSchema, Dt as PackageManagerSchema, F as DirectoryConflictSchema, Kt as RuntimeSchema, N as DatabaseSchema, On as WebDeploySchema, Ot as PaymentsSchema, P as DatabaseSetupSchema, U as ExamplesSchema, _ as AuthSchema, f as AddonsSchema, gt as ORMSchema, k as CreateInputSchema, kt as ProjectConfigSchema, s as APISchema, un as ServerDeploySchema, ut as InitResultSchema, x as BetterTStackConfigSchema, xn as TemplateSchema, y as BackendSchema } from "./schemas-
|
|
1
|
+
import { $ as FrontendSchema, Dt as PackageManagerSchema, F as DirectoryConflictSchema, Kt as RuntimeSchema, N as DatabaseSchema, On as WebDeploySchema, Ot as PaymentsSchema, P as DatabaseSetupSchema, U as ExamplesSchema, _ as AuthSchema, f as AddonsSchema, gt as ORMSchema, k as CreateInputSchema, kt as ProjectConfigSchema, s as APISchema, un as ServerDeploySchema, ut as InitResultSchema, x as BetterTStackConfigSchema, xn as TemplateSchema, y as BackendSchema } from "./schemas-CaXcn795.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
4
|
//#region src/json-schema.ts
|
|
@@ -92,6 +92,11 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
92
92
|
wxt: "wxt";
|
|
93
93
|
msw: "msw";
|
|
94
94
|
storybook: "storybook";
|
|
95
|
+
"tanstack-query": "tanstack-query";
|
|
96
|
+
"tanstack-table": "tanstack-table";
|
|
97
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
98
|
+
"tanstack-db": "tanstack-db";
|
|
99
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
95
100
|
}>;
|
|
96
101
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
97
102
|
none: "none";
|
|
@@ -102,6 +107,7 @@ declare const PackageManagerSchema: z.ZodEnum<{
|
|
|
102
107
|
bun: "bun";
|
|
103
108
|
npm: "npm";
|
|
104
109
|
pnpm: "pnpm";
|
|
110
|
+
yarn: "yarn";
|
|
105
111
|
}>;
|
|
106
112
|
declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
107
113
|
none: "none";
|
|
@@ -167,6 +173,7 @@ declare const AISchema: z.ZodEnum<{
|
|
|
167
173
|
modelfusion: "modelfusion";
|
|
168
174
|
langchain: "langchain";
|
|
169
175
|
llamaindex: "llamaindex";
|
|
176
|
+
"tanstack-ai": "tanstack-ai";
|
|
170
177
|
}>;
|
|
171
178
|
declare const EffectSchema: z.ZodEnum<{
|
|
172
179
|
none: "none";
|
|
@@ -585,6 +592,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
585
592
|
wxt: "wxt";
|
|
586
593
|
msw: "msw";
|
|
587
594
|
storybook: "storybook";
|
|
595
|
+
"tanstack-query": "tanstack-query";
|
|
596
|
+
"tanstack-table": "tanstack-table";
|
|
597
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
598
|
+
"tanstack-db": "tanstack-db";
|
|
599
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
588
600
|
}>>>;
|
|
589
601
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
590
602
|
none: "none";
|
|
@@ -596,6 +608,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
596
608
|
bun: "bun";
|
|
597
609
|
npm: "npm";
|
|
598
610
|
pnpm: "pnpm";
|
|
611
|
+
yarn: "yarn";
|
|
599
612
|
}>>;
|
|
600
613
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
601
614
|
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
@@ -680,6 +693,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
680
693
|
modelfusion: "modelfusion";
|
|
681
694
|
langchain: "langchain";
|
|
682
695
|
llamaindex: "llamaindex";
|
|
696
|
+
"tanstack-ai": "tanstack-ai";
|
|
683
697
|
}>>;
|
|
684
698
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
685
699
|
none: "none";
|
|
@@ -1011,6 +1025,11 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1011
1025
|
wxt: "wxt";
|
|
1012
1026
|
msw: "msw";
|
|
1013
1027
|
storybook: "storybook";
|
|
1028
|
+
"tanstack-query": "tanstack-query";
|
|
1029
|
+
"tanstack-table": "tanstack-table";
|
|
1030
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
1031
|
+
"tanstack-db": "tanstack-db";
|
|
1032
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
1014
1033
|
}>>>;
|
|
1015
1034
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
1016
1035
|
none: "none";
|
|
@@ -1034,6 +1053,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
1034
1053
|
bun: "bun";
|
|
1035
1054
|
npm: "npm";
|
|
1036
1055
|
pnpm: "pnpm";
|
|
1056
|
+
yarn: "yarn";
|
|
1037
1057
|
}>>;
|
|
1038
1058
|
}, z.core.$strip>;
|
|
1039
1059
|
declare const CLIInputSchema: z.ZodObject<{
|
|
@@ -1130,6 +1150,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1130
1150
|
wxt: "wxt";
|
|
1131
1151
|
msw: "msw";
|
|
1132
1152
|
storybook: "storybook";
|
|
1153
|
+
"tanstack-query": "tanstack-query";
|
|
1154
|
+
"tanstack-table": "tanstack-table";
|
|
1155
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
1156
|
+
"tanstack-db": "tanstack-db";
|
|
1157
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
1133
1158
|
}>>>;
|
|
1134
1159
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1135
1160
|
none: "none";
|
|
@@ -1141,6 +1166,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1141
1166
|
bun: "bun";
|
|
1142
1167
|
npm: "npm";
|
|
1143
1168
|
pnpm: "pnpm";
|
|
1169
|
+
yarn: "yarn";
|
|
1144
1170
|
}>>;
|
|
1145
1171
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
1146
1172
|
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1225,6 +1251,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1225
1251
|
modelfusion: "modelfusion";
|
|
1226
1252
|
langchain: "langchain";
|
|
1227
1253
|
llamaindex: "llamaindex";
|
|
1254
|
+
"tanstack-ai": "tanstack-ai";
|
|
1228
1255
|
}>>;
|
|
1229
1256
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
1230
1257
|
none: "none";
|
|
@@ -1625,6 +1652,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1625
1652
|
wxt: "wxt";
|
|
1626
1653
|
msw: "msw";
|
|
1627
1654
|
storybook: "storybook";
|
|
1655
|
+
"tanstack-query": "tanstack-query";
|
|
1656
|
+
"tanstack-table": "tanstack-table";
|
|
1657
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
1658
|
+
"tanstack-db": "tanstack-db";
|
|
1659
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
1628
1660
|
}>>;
|
|
1629
1661
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1630
1662
|
none: "none";
|
|
@@ -1654,6 +1686,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1654
1686
|
bun: "bun";
|
|
1655
1687
|
npm: "npm";
|
|
1656
1688
|
pnpm: "pnpm";
|
|
1689
|
+
yarn: "yarn";
|
|
1657
1690
|
}>;
|
|
1658
1691
|
install: z.ZodBoolean;
|
|
1659
1692
|
dbSetup: z.ZodEnum<{
|
|
@@ -1709,6 +1742,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1709
1742
|
modelfusion: "modelfusion";
|
|
1710
1743
|
langchain: "langchain";
|
|
1711
1744
|
llamaindex: "llamaindex";
|
|
1745
|
+
"tanstack-ai": "tanstack-ai";
|
|
1712
1746
|
}>;
|
|
1713
1747
|
effect: z.ZodEnum<{
|
|
1714
1748
|
none: "none";
|
|
@@ -2107,6 +2141,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2107
2141
|
wxt: "wxt";
|
|
2108
2142
|
msw: "msw";
|
|
2109
2143
|
storybook: "storybook";
|
|
2144
|
+
"tanstack-query": "tanstack-query";
|
|
2145
|
+
"tanstack-table": "tanstack-table";
|
|
2146
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
2147
|
+
"tanstack-db": "tanstack-db";
|
|
2148
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
2110
2149
|
}>>;
|
|
2111
2150
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2112
2151
|
none: "none";
|
|
@@ -2135,6 +2174,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2135
2174
|
bun: "bun";
|
|
2136
2175
|
npm: "npm";
|
|
2137
2176
|
pnpm: "pnpm";
|
|
2177
|
+
yarn: "yarn";
|
|
2138
2178
|
}>;
|
|
2139
2179
|
dbSetup: z.ZodEnum<{
|
|
2140
2180
|
none: "none";
|
|
@@ -2189,6 +2229,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
2189
2229
|
modelfusion: "modelfusion";
|
|
2190
2230
|
langchain: "langchain";
|
|
2191
2231
|
llamaindex: "llamaindex";
|
|
2232
|
+
"tanstack-ai": "tanstack-ai";
|
|
2192
2233
|
}>;
|
|
2193
2234
|
effect: z.ZodEnum<{
|
|
2194
2235
|
none: "none";
|
|
@@ -2588,6 +2629,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2588
2629
|
wxt: "wxt";
|
|
2589
2630
|
msw: "msw";
|
|
2590
2631
|
storybook: "storybook";
|
|
2632
|
+
"tanstack-query": "tanstack-query";
|
|
2633
|
+
"tanstack-table": "tanstack-table";
|
|
2634
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
2635
|
+
"tanstack-db": "tanstack-db";
|
|
2636
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
2591
2637
|
}>>;
|
|
2592
2638
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2593
2639
|
none: "none";
|
|
@@ -2616,6 +2662,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2616
2662
|
bun: "bun";
|
|
2617
2663
|
npm: "npm";
|
|
2618
2664
|
pnpm: "pnpm";
|
|
2665
|
+
yarn: "yarn";
|
|
2619
2666
|
}>;
|
|
2620
2667
|
dbSetup: z.ZodEnum<{
|
|
2621
2668
|
none: "none";
|
|
@@ -2670,6 +2717,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
2670
2717
|
modelfusion: "modelfusion";
|
|
2671
2718
|
langchain: "langchain";
|
|
2672
2719
|
llamaindex: "llamaindex";
|
|
2720
|
+
"tanstack-ai": "tanstack-ai";
|
|
2673
2721
|
}>;
|
|
2674
2722
|
effect: z.ZodEnum<{
|
|
2675
2723
|
none: "none";
|
|
@@ -3071,6 +3119,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3071
3119
|
wxt: "wxt";
|
|
3072
3120
|
msw: "msw";
|
|
3073
3121
|
storybook: "storybook";
|
|
3122
|
+
"tanstack-query": "tanstack-query";
|
|
3123
|
+
"tanstack-table": "tanstack-table";
|
|
3124
|
+
"tanstack-virtual": "tanstack-virtual";
|
|
3125
|
+
"tanstack-db": "tanstack-db";
|
|
3126
|
+
"tanstack-pacer": "tanstack-pacer";
|
|
3074
3127
|
}>>;
|
|
3075
3128
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3076
3129
|
none: "none";
|
|
@@ -3100,6 +3153,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3100
3153
|
bun: "bun";
|
|
3101
3154
|
npm: "npm";
|
|
3102
3155
|
pnpm: "pnpm";
|
|
3156
|
+
yarn: "yarn";
|
|
3103
3157
|
}>;
|
|
3104
3158
|
install: z.ZodBoolean;
|
|
3105
3159
|
dbSetup: z.ZodEnum<{
|
|
@@ -3155,6 +3209,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
3155
3209
|
modelfusion: "modelfusion";
|
|
3156
3210
|
langchain: "langchain";
|
|
3157
3211
|
llamaindex: "llamaindex";
|
|
3212
|
+
"tanstack-ai": "tanstack-ai";
|
|
3158
3213
|
}>;
|
|
3159
3214
|
effect: z.ZodEnum<{
|
|
3160
3215
|
none: "none";
|
|
@@ -3478,9 +3533,9 @@ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm
|
|
|
3478
3533
|
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
3479
3534
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
3480
3535
|
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
3481
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
3536
|
+
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer")[];
|
|
3482
3537
|
declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk")[];
|
|
3483
|
-
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
|
|
3538
|
+
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
3484
3539
|
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
3485
3540
|
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
|
|
3486
3541
|
declare const AUTH_VALUES: ("none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
|
|
@@ -3490,7 +3545,7 @@ declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" |
|
|
|
3490
3545
|
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
3491
3546
|
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
3492
3547
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
3493
|
-
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex")[];
|
|
3548
|
+
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai")[];
|
|
3494
3549
|
declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
|
|
3495
3550
|
declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
|
|
3496
3551
|
declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
|
|
@@ -3539,4 +3594,4 @@ declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-san
|
|
|
3539
3594
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
3540
3595
|
//#endregion
|
|
3541
3596
|
export { FrontendSchema as $, SEARCH_VALUES as $t, DATABASE_SETUP_VALUES as A, ProjectNameSchema as At, EcosystemSchema as B, RUST_CLI_VALUES as Bt, CLIInputSchema as C, UILibrarySchema as Cn, PYTHON_QUALITY_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, WEB_DEPLOY_VALUES as Dn, PackageManagerSchema as Dt, CSSFrameworkSchema as E, ValidationSchema as En, PYTHON_WEB_FRAMEWORK_VALUES as Et, DirectoryConflictSchema as F, PythonValidationSchema as Ft, FILE_STORAGE_VALUES as G, RealtimeSchema as Gt, EmailSchema as H, RUST_LIBRARIES_VALUES as Ht, ECOSYSTEM_VALUES as I, PythonWebFrameworkSchema as It, FRONTEND_VALUES as J, RustCliSchema as Jt, FILE_UPLOAD_VALUES as K, RuntimeSchema as Kt, EFFECT_VALUES as L, REALTIME_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, PythonOrmSchema as Mt, DatabaseSchema as N, PythonQualitySchema as Nt, CachingSchema as O, WebDeploySchema as On, PaymentsSchema as Ot, DatabaseSetupSchema as P, PythonTaskQueueSchema as Pt, FormsSchema as Q, RustWebFrameworkSchema as Qt, EMAIL_VALUES as R, RUNTIME_VALUES as Rt, CACHING_VALUES as S, TestingSchema as Sn, PYTHON_ORM_VALUES as St, CMS_VALUES as T, VALIDATION_VALUES as Tn, PYTHON_VALIDATION_VALUES as Tt, ExamplesSchema as U, RUST_ORM_VALUES as Ut, EffectSchema as V, RUST_FRONTEND_VALUES as Vt, FEATURE_FLAGS_VALUES as W, RUST_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, RustLibrariesSchema as Xt, FeatureFlagsSchema as Y, RustFrontendSchema as Yt, FileUploadSchema as Z, RustOrmSchema as Zt, AuthSchema as _, ShadcnStyleSchema as _n, ORM_VALUES as _t, ANALYTICS_VALUES as a, SHADCN_ICON_LIBRARY_VALUES as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, TESTING_VALUES as bn, PAYMENTS_VALUES as bt, API_VALUES as c, STATE_MANAGEMENT_VALUES as cn, GoOrmSchema as ct, AddInputSchema as d, ShadcnBaseColorSchema as dn, JOB_QUEUE_VALUES as dt, SERVER_DEPLOY_VALUES as en, GO_API_VALUES as et, AddonsSchema as f, ShadcnBaseSchema as fn, JobQueueSchema as ft, AstroIntegrationSchema as g, ShadcnRadiusSchema as gn, ORMSchema as gt, AnimationSchema as h, ShadcnIconLibrarySchema as hn, OBSERVABILITY_VALUES as ht, AI_VALUES as i, SHADCN_FONT_VALUES as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, PythonAiSchema as jt, CreateInputSchema as k, ProjectConfigSchema as kt, ASTRO_INTEGRATION_VALUES as l, SearchSchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, ShadcnFontSchema as mn, LoggingSchema as mt, AISchema as n, SHADCN_BASE_VALUES as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, SHADCN_RADIUS_VALUES as on, GoCliSchema as ot, AiDocsSchema as p, ShadcnColorThemeSchema as pn, LOGGING_VALUES as pt, FORMS_VALUES as q, RustApiSchema as qt, AI_DOCS_VALUES as r, SHADCN_COLOR_THEME_VALUES as rn, GO_ORM_VALUES as rt, APISchema as s, SHADCN_STYLE_VALUES as sn, GoLoggingSchema as st, ADDONS_VALUES as t, SHADCN_BASE_COLOR_VALUES as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, ServerDeploySchema as un, InitResultSchema as ut, BACKEND_VALUES as v, StateManagementSchema as vn, ObservabilitySchema as vt, CMSSchema as w, UI_LIBRARY_VALUES as wn, PYTHON_TASK_QUEUE_VALUES as wt, BetterTStackConfigSchema as x, TemplateSchema as xn, PYTHON_AI_VALUES as xt, BackendSchema as y, TEMPLATE_VALUES as yn, PACKAGE_MANAGER_VALUES as yt, EXAMPLES_VALUES as z, RUST_API_VALUES as zt };
|
|
3542
|
-
//# sourceMappingURL=schemas-
|
|
3597
|
+
//# sourceMappingURL=schemas-BRuvXx35.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas-BRuvXx35.d.mts","names":[],"sources":["../src/schemas.ts"],"sourcesContent":[],"mappings":"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AmB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0EnB,0BAAwB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuExB,8BAA4B,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAW5B,kBAAgB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAWhB;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA"}
|
|
@@ -91,6 +91,11 @@ const AddonsSchema = z.enum([
|
|
|
91
91
|
"wxt",
|
|
92
92
|
"msw",
|
|
93
93
|
"storybook",
|
|
94
|
+
"tanstack-query",
|
|
95
|
+
"tanstack-table",
|
|
96
|
+
"tanstack-virtual",
|
|
97
|
+
"tanstack-db",
|
|
98
|
+
"tanstack-pacer",
|
|
94
99
|
"none"
|
|
95
100
|
]).describe("Additional addons");
|
|
96
101
|
const ExamplesSchema = z.enum([
|
|
@@ -101,7 +106,8 @@ const ExamplesSchema = z.enum([
|
|
|
101
106
|
const PackageManagerSchema = z.enum([
|
|
102
107
|
"npm",
|
|
103
108
|
"pnpm",
|
|
104
|
-
"bun"
|
|
109
|
+
"bun",
|
|
110
|
+
"yarn"
|
|
105
111
|
]).describe("Package manager");
|
|
106
112
|
const DatabaseSetupSchema = z.enum([
|
|
107
113
|
"turso",
|
|
@@ -166,6 +172,7 @@ const AISchema = z.enum([
|
|
|
166
172
|
"modelfusion",
|
|
167
173
|
"langchain",
|
|
168
174
|
"llamaindex",
|
|
175
|
+
"tanstack-ai",
|
|
169
176
|
"none"
|
|
170
177
|
]).describe("AI SDK");
|
|
171
178
|
const EffectSchema = z.enum([
|
|
@@ -781,4 +788,4 @@ const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
|
|
|
781
788
|
|
|
782
789
|
//#endregion
|
|
783
790
|
export { FrontendSchema as $, SEARCH_VALUES as $t, DATABASE_SETUP_VALUES as A, ProjectNameSchema as At, EcosystemSchema as B, RUST_CLI_VALUES as Bt, CLIInputSchema as C, UILibrarySchema as Cn, PYTHON_QUALITY_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, WEB_DEPLOY_VALUES as Dn, PackageManagerSchema as Dt, CSSFrameworkSchema as E, ValidationSchema as En, PYTHON_WEB_FRAMEWORK_VALUES as Et, DirectoryConflictSchema as F, PythonValidationSchema as Ft, FILE_STORAGE_VALUES as G, RealtimeSchema as Gt, EmailSchema as H, RUST_LIBRARIES_VALUES as Ht, ECOSYSTEM_VALUES as I, PythonWebFrameworkSchema as It, FRONTEND_VALUES as J, RustCliSchema as Jt, FILE_UPLOAD_VALUES as K, RuntimeSchema as Kt, EFFECT_VALUES as L, REALTIME_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, PythonOrmSchema as Mt, DatabaseSchema as N, PythonQualitySchema as Nt, CachingSchema as O, WebDeploySchema as On, PaymentsSchema as Ot, DatabaseSetupSchema as P, PythonTaskQueueSchema as Pt, FormsSchema as Q, RustWebFrameworkSchema as Qt, EMAIL_VALUES as R, RUNTIME_VALUES as Rt, CACHING_VALUES as S, TestingSchema as Sn, PYTHON_ORM_VALUES as St, CMS_VALUES as T, VALIDATION_VALUES as Tn, PYTHON_VALIDATION_VALUES as Tt, ExamplesSchema as U, RUST_ORM_VALUES as Ut, EffectSchema as V, RUST_FRONTEND_VALUES as Vt, FEATURE_FLAGS_VALUES as W, RUST_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, RustLibrariesSchema as Xt, FeatureFlagsSchema as Y, RustFrontendSchema as Yt, FileUploadSchema as Z, RustOrmSchema as Zt, AuthSchema as _, ShadcnStyleSchema as _n, ORM_VALUES as _t, ANALYTICS_VALUES as a, SHADCN_ICON_LIBRARY_VALUES as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, TESTING_VALUES as bn, PAYMENTS_VALUES as bt, API_VALUES as c, STATE_MANAGEMENT_VALUES as cn, GoOrmSchema as ct, AddInputSchema as d, ShadcnBaseColorSchema as dn, JOB_QUEUE_VALUES as dt, SERVER_DEPLOY_VALUES as en, GO_API_VALUES as et, AddonsSchema as f, ShadcnBaseSchema as fn, JobQueueSchema as ft, AstroIntegrationSchema as g, ShadcnRadiusSchema as gn, ORMSchema as gt, AnimationSchema as h, ShadcnIconLibrarySchema as hn, OBSERVABILITY_VALUES as ht, AI_VALUES as i, SHADCN_FONT_VALUES as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, PythonAiSchema as jt, CreateInputSchema as k, ProjectConfigSchema as kt, ASTRO_INTEGRATION_VALUES as l, SearchSchema as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, ShadcnFontSchema as mn, LoggingSchema as mt, AISchema as n, SHADCN_BASE_VALUES as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, SHADCN_RADIUS_VALUES as on, GoCliSchema as ot, AiDocsSchema as p, ShadcnColorThemeSchema as pn, LOGGING_VALUES as pt, FORMS_VALUES as q, RustApiSchema as qt, AI_DOCS_VALUES as r, SHADCN_COLOR_THEME_VALUES as rn, GO_ORM_VALUES as rt, APISchema as s, SHADCN_STYLE_VALUES as sn, GoLoggingSchema as st, ADDONS_VALUES as t, SHADCN_BASE_COLOR_VALUES as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, ServerDeploySchema as un, InitResultSchema as ut, BACKEND_VALUES as v, StateManagementSchema as vn, ObservabilitySchema as vt, CMSSchema as w, UI_LIBRARY_VALUES as wn, PYTHON_TASK_QUEUE_VALUES as wt, BetterTStackConfigSchema as x, TemplateSchema as xn, PYTHON_AI_VALUES as xt, BackendSchema as y, TEMPLATE_VALUES as yn, PACKAGE_MANAGER_VALUES as yt, EXAMPLES_VALUES as z, RUST_API_VALUES as zt };
|
|
784
|
-
//# sourceMappingURL=schemas-
|
|
791
|
+
//# sourceMappingURL=schemas-CaXcn795.mjs.map
|