@better-t-stack/types 3.7.3-canary.8e47571f → 3.7.3-canary.98ba1e7a
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/package.json +9 -14
- package/src/index.ts +73 -0
- package/src/json-schema.ts +130 -0
- package/src/schemas.ts +216 -0
- package/src/types.ts +90 -0
- package/dist/index.d.mts +0 -33
- package/dist/index.d.mts.map +0 -1
- package/dist/index.mjs +0 -3
- package/dist/json-schema.d.mts +0 -48
- package/dist/json-schema.d.mts.map +0 -1
- package/dist/json-schema.mjs +0 -92
- package/dist/json-schema.mjs.map +0 -1
- package/dist/schemas-CH5VdN4I.mjs +0 -220
- package/dist/schemas-CH5VdN4I.mjs.map +0 -1
- package/dist/schemas-D8-YlD7-.d.mts +0 -724
- package/dist/schemas-D8-YlD7-.d.mts.map +0 -1
- package/dist/schemas.d.mts +0 -2
- package/dist/schemas.mjs +0 -3
|
@@ -1,724 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
|
|
3
|
-
//#region src/schemas.d.ts
|
|
4
|
-
declare const DatabaseSchema: z.ZodEnum<{
|
|
5
|
-
none: "none";
|
|
6
|
-
sqlite: "sqlite";
|
|
7
|
-
postgres: "postgres";
|
|
8
|
-
mysql: "mysql";
|
|
9
|
-
mongodb: "mongodb";
|
|
10
|
-
}>;
|
|
11
|
-
declare const ORMSchema: z.ZodEnum<{
|
|
12
|
-
none: "none";
|
|
13
|
-
drizzle: "drizzle";
|
|
14
|
-
prisma: "prisma";
|
|
15
|
-
mongoose: "mongoose";
|
|
16
|
-
}>;
|
|
17
|
-
declare const BackendSchema: z.ZodEnum<{
|
|
18
|
-
none: "none";
|
|
19
|
-
hono: "hono";
|
|
20
|
-
express: "express";
|
|
21
|
-
fastify: "fastify";
|
|
22
|
-
elysia: "elysia";
|
|
23
|
-
convex: "convex";
|
|
24
|
-
self: "self";
|
|
25
|
-
}>;
|
|
26
|
-
declare const RuntimeSchema: z.ZodEnum<{
|
|
27
|
-
none: "none";
|
|
28
|
-
bun: "bun";
|
|
29
|
-
node: "node";
|
|
30
|
-
workers: "workers";
|
|
31
|
-
}>;
|
|
32
|
-
declare const FrontendSchema: z.ZodEnum<{
|
|
33
|
-
none: "none";
|
|
34
|
-
"tanstack-router": "tanstack-router";
|
|
35
|
-
"react-router": "react-router";
|
|
36
|
-
"tanstack-start": "tanstack-start";
|
|
37
|
-
next: "next";
|
|
38
|
-
nuxt: "nuxt";
|
|
39
|
-
"native-bare": "native-bare";
|
|
40
|
-
"native-uniwind": "native-uniwind";
|
|
41
|
-
"native-unistyles": "native-unistyles";
|
|
42
|
-
svelte: "svelte";
|
|
43
|
-
solid: "solid";
|
|
44
|
-
}>;
|
|
45
|
-
declare const AddonsSchema: z.ZodEnum<{
|
|
46
|
-
none: "none";
|
|
47
|
-
pwa: "pwa";
|
|
48
|
-
tauri: "tauri";
|
|
49
|
-
starlight: "starlight";
|
|
50
|
-
biome: "biome";
|
|
51
|
-
husky: "husky";
|
|
52
|
-
ruler: "ruler";
|
|
53
|
-
turborepo: "turborepo";
|
|
54
|
-
fumadocs: "fumadocs";
|
|
55
|
-
ultracite: "ultracite";
|
|
56
|
-
oxlint: "oxlint";
|
|
57
|
-
}>;
|
|
58
|
-
declare const ExamplesSchema: z.ZodEnum<{
|
|
59
|
-
none: "none";
|
|
60
|
-
todo: "todo";
|
|
61
|
-
ai: "ai";
|
|
62
|
-
}>;
|
|
63
|
-
declare const PackageManagerSchema: z.ZodEnum<{
|
|
64
|
-
bun: "bun";
|
|
65
|
-
npm: "npm";
|
|
66
|
-
pnpm: "pnpm";
|
|
67
|
-
}>;
|
|
68
|
-
declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
69
|
-
none: "none";
|
|
70
|
-
turso: "turso";
|
|
71
|
-
neon: "neon";
|
|
72
|
-
"prisma-postgres": "prisma-postgres";
|
|
73
|
-
planetscale: "planetscale";
|
|
74
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
75
|
-
supabase: "supabase";
|
|
76
|
-
d1: "d1";
|
|
77
|
-
docker: "docker";
|
|
78
|
-
}>;
|
|
79
|
-
declare const APISchema: z.ZodEnum<{
|
|
80
|
-
none: "none";
|
|
81
|
-
trpc: "trpc";
|
|
82
|
-
orpc: "orpc";
|
|
83
|
-
}>;
|
|
84
|
-
declare const AuthSchema: z.ZodEnum<{
|
|
85
|
-
none: "none";
|
|
86
|
-
"better-auth": "better-auth";
|
|
87
|
-
clerk: "clerk";
|
|
88
|
-
}>;
|
|
89
|
-
declare const PaymentsSchema: z.ZodEnum<{
|
|
90
|
-
none: "none";
|
|
91
|
-
polar: "polar";
|
|
92
|
-
}>;
|
|
93
|
-
declare const WebDeploySchema: z.ZodEnum<{
|
|
94
|
-
none: "none";
|
|
95
|
-
alchemy: "alchemy";
|
|
96
|
-
}>;
|
|
97
|
-
declare const ServerDeploySchema: z.ZodEnum<{
|
|
98
|
-
none: "none";
|
|
99
|
-
alchemy: "alchemy";
|
|
100
|
-
}>;
|
|
101
|
-
declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
102
|
-
merge: "merge";
|
|
103
|
-
overwrite: "overwrite";
|
|
104
|
-
increment: "increment";
|
|
105
|
-
error: "error";
|
|
106
|
-
}>;
|
|
107
|
-
declare const TemplateSchema: z.ZodEnum<{
|
|
108
|
-
none: "none";
|
|
109
|
-
mern: "mern";
|
|
110
|
-
pern: "pern";
|
|
111
|
-
t3: "t3";
|
|
112
|
-
uniwind: "uniwind";
|
|
113
|
-
}>;
|
|
114
|
-
declare const ProjectNameSchema: z.ZodString;
|
|
115
|
-
declare const CreateInputSchema: z.ZodObject<{
|
|
116
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
117
|
-
template: z.ZodOptional<z.ZodEnum<{
|
|
118
|
-
none: "none";
|
|
119
|
-
mern: "mern";
|
|
120
|
-
pern: "pern";
|
|
121
|
-
t3: "t3";
|
|
122
|
-
uniwind: "uniwind";
|
|
123
|
-
}>>;
|
|
124
|
-
yes: z.ZodOptional<z.ZodBoolean>;
|
|
125
|
-
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
126
|
-
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
127
|
-
database: z.ZodOptional<z.ZodEnum<{
|
|
128
|
-
none: "none";
|
|
129
|
-
sqlite: "sqlite";
|
|
130
|
-
postgres: "postgres";
|
|
131
|
-
mysql: "mysql";
|
|
132
|
-
mongodb: "mongodb";
|
|
133
|
-
}>>;
|
|
134
|
-
orm: z.ZodOptional<z.ZodEnum<{
|
|
135
|
-
none: "none";
|
|
136
|
-
drizzle: "drizzle";
|
|
137
|
-
prisma: "prisma";
|
|
138
|
-
mongoose: "mongoose";
|
|
139
|
-
}>>;
|
|
140
|
-
auth: z.ZodOptional<z.ZodEnum<{
|
|
141
|
-
none: "none";
|
|
142
|
-
"better-auth": "better-auth";
|
|
143
|
-
clerk: "clerk";
|
|
144
|
-
}>>;
|
|
145
|
-
payments: z.ZodOptional<z.ZodEnum<{
|
|
146
|
-
none: "none";
|
|
147
|
-
polar: "polar";
|
|
148
|
-
}>>;
|
|
149
|
-
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
150
|
-
none: "none";
|
|
151
|
-
"tanstack-router": "tanstack-router";
|
|
152
|
-
"react-router": "react-router";
|
|
153
|
-
"tanstack-start": "tanstack-start";
|
|
154
|
-
next: "next";
|
|
155
|
-
nuxt: "nuxt";
|
|
156
|
-
"native-bare": "native-bare";
|
|
157
|
-
"native-uniwind": "native-uniwind";
|
|
158
|
-
"native-unistyles": "native-unistyles";
|
|
159
|
-
svelte: "svelte";
|
|
160
|
-
solid: "solid";
|
|
161
|
-
}>>>;
|
|
162
|
-
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
163
|
-
none: "none";
|
|
164
|
-
pwa: "pwa";
|
|
165
|
-
tauri: "tauri";
|
|
166
|
-
starlight: "starlight";
|
|
167
|
-
biome: "biome";
|
|
168
|
-
husky: "husky";
|
|
169
|
-
ruler: "ruler";
|
|
170
|
-
turborepo: "turborepo";
|
|
171
|
-
fumadocs: "fumadocs";
|
|
172
|
-
ultracite: "ultracite";
|
|
173
|
-
oxlint: "oxlint";
|
|
174
|
-
}>>>;
|
|
175
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
176
|
-
none: "none";
|
|
177
|
-
todo: "todo";
|
|
178
|
-
ai: "ai";
|
|
179
|
-
}>>>;
|
|
180
|
-
git: z.ZodOptional<z.ZodBoolean>;
|
|
181
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
182
|
-
bun: "bun";
|
|
183
|
-
npm: "npm";
|
|
184
|
-
pnpm: "pnpm";
|
|
185
|
-
}>>;
|
|
186
|
-
install: z.ZodOptional<z.ZodBoolean>;
|
|
187
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
188
|
-
none: "none";
|
|
189
|
-
turso: "turso";
|
|
190
|
-
neon: "neon";
|
|
191
|
-
"prisma-postgres": "prisma-postgres";
|
|
192
|
-
planetscale: "planetscale";
|
|
193
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
194
|
-
supabase: "supabase";
|
|
195
|
-
d1: "d1";
|
|
196
|
-
docker: "docker";
|
|
197
|
-
}>>;
|
|
198
|
-
backend: z.ZodOptional<z.ZodEnum<{
|
|
199
|
-
none: "none";
|
|
200
|
-
hono: "hono";
|
|
201
|
-
express: "express";
|
|
202
|
-
fastify: "fastify";
|
|
203
|
-
elysia: "elysia";
|
|
204
|
-
convex: "convex";
|
|
205
|
-
self: "self";
|
|
206
|
-
}>>;
|
|
207
|
-
runtime: z.ZodOptional<z.ZodEnum<{
|
|
208
|
-
none: "none";
|
|
209
|
-
bun: "bun";
|
|
210
|
-
node: "node";
|
|
211
|
-
workers: "workers";
|
|
212
|
-
}>>;
|
|
213
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
214
|
-
none: "none";
|
|
215
|
-
trpc: "trpc";
|
|
216
|
-
orpc: "orpc";
|
|
217
|
-
}>>;
|
|
218
|
-
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
219
|
-
none: "none";
|
|
220
|
-
alchemy: "alchemy";
|
|
221
|
-
}>>;
|
|
222
|
-
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
223
|
-
none: "none";
|
|
224
|
-
alchemy: "alchemy";
|
|
225
|
-
}>>;
|
|
226
|
-
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
227
|
-
merge: "merge";
|
|
228
|
-
overwrite: "overwrite";
|
|
229
|
-
increment: "increment";
|
|
230
|
-
error: "error";
|
|
231
|
-
}>>;
|
|
232
|
-
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
233
|
-
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
234
|
-
manualDb: z.ZodOptional<z.ZodBoolean>;
|
|
235
|
-
}, z.core.$strip>;
|
|
236
|
-
declare const AddInputSchema: z.ZodObject<{
|
|
237
|
-
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
238
|
-
none: "none";
|
|
239
|
-
pwa: "pwa";
|
|
240
|
-
tauri: "tauri";
|
|
241
|
-
starlight: "starlight";
|
|
242
|
-
biome: "biome";
|
|
243
|
-
husky: "husky";
|
|
244
|
-
ruler: "ruler";
|
|
245
|
-
turborepo: "turborepo";
|
|
246
|
-
fumadocs: "fumadocs";
|
|
247
|
-
ultracite: "ultracite";
|
|
248
|
-
oxlint: "oxlint";
|
|
249
|
-
}>>>;
|
|
250
|
-
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
251
|
-
none: "none";
|
|
252
|
-
alchemy: "alchemy";
|
|
253
|
-
}>>;
|
|
254
|
-
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
255
|
-
none: "none";
|
|
256
|
-
alchemy: "alchemy";
|
|
257
|
-
}>>;
|
|
258
|
-
projectDir: z.ZodOptional<z.ZodString>;
|
|
259
|
-
install: z.ZodOptional<z.ZodBoolean>;
|
|
260
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
261
|
-
bun: "bun";
|
|
262
|
-
npm: "npm";
|
|
263
|
-
pnpm: "pnpm";
|
|
264
|
-
}>>;
|
|
265
|
-
}, z.core.$strip>;
|
|
266
|
-
declare const CLIInputSchema: z.ZodObject<{
|
|
267
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
268
|
-
template: z.ZodOptional<z.ZodEnum<{
|
|
269
|
-
none: "none";
|
|
270
|
-
mern: "mern";
|
|
271
|
-
pern: "pern";
|
|
272
|
-
t3: "t3";
|
|
273
|
-
uniwind: "uniwind";
|
|
274
|
-
}>>;
|
|
275
|
-
yes: z.ZodOptional<z.ZodBoolean>;
|
|
276
|
-
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
277
|
-
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
278
|
-
database: z.ZodOptional<z.ZodEnum<{
|
|
279
|
-
none: "none";
|
|
280
|
-
sqlite: "sqlite";
|
|
281
|
-
postgres: "postgres";
|
|
282
|
-
mysql: "mysql";
|
|
283
|
-
mongodb: "mongodb";
|
|
284
|
-
}>>;
|
|
285
|
-
orm: z.ZodOptional<z.ZodEnum<{
|
|
286
|
-
none: "none";
|
|
287
|
-
drizzle: "drizzle";
|
|
288
|
-
prisma: "prisma";
|
|
289
|
-
mongoose: "mongoose";
|
|
290
|
-
}>>;
|
|
291
|
-
auth: z.ZodOptional<z.ZodEnum<{
|
|
292
|
-
none: "none";
|
|
293
|
-
"better-auth": "better-auth";
|
|
294
|
-
clerk: "clerk";
|
|
295
|
-
}>>;
|
|
296
|
-
payments: z.ZodOptional<z.ZodEnum<{
|
|
297
|
-
none: "none";
|
|
298
|
-
polar: "polar";
|
|
299
|
-
}>>;
|
|
300
|
-
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
301
|
-
none: "none";
|
|
302
|
-
"tanstack-router": "tanstack-router";
|
|
303
|
-
"react-router": "react-router";
|
|
304
|
-
"tanstack-start": "tanstack-start";
|
|
305
|
-
next: "next";
|
|
306
|
-
nuxt: "nuxt";
|
|
307
|
-
"native-bare": "native-bare";
|
|
308
|
-
"native-uniwind": "native-uniwind";
|
|
309
|
-
"native-unistyles": "native-unistyles";
|
|
310
|
-
svelte: "svelte";
|
|
311
|
-
solid: "solid";
|
|
312
|
-
}>>>;
|
|
313
|
-
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
314
|
-
none: "none";
|
|
315
|
-
pwa: "pwa";
|
|
316
|
-
tauri: "tauri";
|
|
317
|
-
starlight: "starlight";
|
|
318
|
-
biome: "biome";
|
|
319
|
-
husky: "husky";
|
|
320
|
-
ruler: "ruler";
|
|
321
|
-
turborepo: "turborepo";
|
|
322
|
-
fumadocs: "fumadocs";
|
|
323
|
-
ultracite: "ultracite";
|
|
324
|
-
oxlint: "oxlint";
|
|
325
|
-
}>>>;
|
|
326
|
-
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
327
|
-
none: "none";
|
|
328
|
-
todo: "todo";
|
|
329
|
-
ai: "ai";
|
|
330
|
-
}>>>;
|
|
331
|
-
git: z.ZodOptional<z.ZodBoolean>;
|
|
332
|
-
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
333
|
-
bun: "bun";
|
|
334
|
-
npm: "npm";
|
|
335
|
-
pnpm: "pnpm";
|
|
336
|
-
}>>;
|
|
337
|
-
install: z.ZodOptional<z.ZodBoolean>;
|
|
338
|
-
dbSetup: z.ZodOptional<z.ZodEnum<{
|
|
339
|
-
none: "none";
|
|
340
|
-
turso: "turso";
|
|
341
|
-
neon: "neon";
|
|
342
|
-
"prisma-postgres": "prisma-postgres";
|
|
343
|
-
planetscale: "planetscale";
|
|
344
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
345
|
-
supabase: "supabase";
|
|
346
|
-
d1: "d1";
|
|
347
|
-
docker: "docker";
|
|
348
|
-
}>>;
|
|
349
|
-
backend: z.ZodOptional<z.ZodEnum<{
|
|
350
|
-
none: "none";
|
|
351
|
-
hono: "hono";
|
|
352
|
-
express: "express";
|
|
353
|
-
fastify: "fastify";
|
|
354
|
-
elysia: "elysia";
|
|
355
|
-
convex: "convex";
|
|
356
|
-
self: "self";
|
|
357
|
-
}>>;
|
|
358
|
-
runtime: z.ZodOptional<z.ZodEnum<{
|
|
359
|
-
none: "none";
|
|
360
|
-
bun: "bun";
|
|
361
|
-
node: "node";
|
|
362
|
-
workers: "workers";
|
|
363
|
-
}>>;
|
|
364
|
-
api: z.ZodOptional<z.ZodEnum<{
|
|
365
|
-
none: "none";
|
|
366
|
-
trpc: "trpc";
|
|
367
|
-
orpc: "orpc";
|
|
368
|
-
}>>;
|
|
369
|
-
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
370
|
-
none: "none";
|
|
371
|
-
alchemy: "alchemy";
|
|
372
|
-
}>>;
|
|
373
|
-
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
374
|
-
none: "none";
|
|
375
|
-
alchemy: "alchemy";
|
|
376
|
-
}>>;
|
|
377
|
-
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
378
|
-
merge: "merge";
|
|
379
|
-
overwrite: "overwrite";
|
|
380
|
-
increment: "increment";
|
|
381
|
-
error: "error";
|
|
382
|
-
}>>;
|
|
383
|
-
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
384
|
-
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
385
|
-
manualDb: z.ZodOptional<z.ZodBoolean>;
|
|
386
|
-
projectDirectory: z.ZodOptional<z.ZodString>;
|
|
387
|
-
}, z.core.$strip>;
|
|
388
|
-
declare const ProjectConfigSchema: z.ZodObject<{
|
|
389
|
-
projectName: z.ZodString;
|
|
390
|
-
projectDir: z.ZodString;
|
|
391
|
-
relativePath: z.ZodString;
|
|
392
|
-
database: z.ZodEnum<{
|
|
393
|
-
none: "none";
|
|
394
|
-
sqlite: "sqlite";
|
|
395
|
-
postgres: "postgres";
|
|
396
|
-
mysql: "mysql";
|
|
397
|
-
mongodb: "mongodb";
|
|
398
|
-
}>;
|
|
399
|
-
orm: z.ZodEnum<{
|
|
400
|
-
none: "none";
|
|
401
|
-
drizzle: "drizzle";
|
|
402
|
-
prisma: "prisma";
|
|
403
|
-
mongoose: "mongoose";
|
|
404
|
-
}>;
|
|
405
|
-
backend: z.ZodEnum<{
|
|
406
|
-
none: "none";
|
|
407
|
-
hono: "hono";
|
|
408
|
-
express: "express";
|
|
409
|
-
fastify: "fastify";
|
|
410
|
-
elysia: "elysia";
|
|
411
|
-
convex: "convex";
|
|
412
|
-
self: "self";
|
|
413
|
-
}>;
|
|
414
|
-
runtime: z.ZodEnum<{
|
|
415
|
-
none: "none";
|
|
416
|
-
bun: "bun";
|
|
417
|
-
node: "node";
|
|
418
|
-
workers: "workers";
|
|
419
|
-
}>;
|
|
420
|
-
frontend: z.ZodArray<z.ZodEnum<{
|
|
421
|
-
none: "none";
|
|
422
|
-
"tanstack-router": "tanstack-router";
|
|
423
|
-
"react-router": "react-router";
|
|
424
|
-
"tanstack-start": "tanstack-start";
|
|
425
|
-
next: "next";
|
|
426
|
-
nuxt: "nuxt";
|
|
427
|
-
"native-bare": "native-bare";
|
|
428
|
-
"native-uniwind": "native-uniwind";
|
|
429
|
-
"native-unistyles": "native-unistyles";
|
|
430
|
-
svelte: "svelte";
|
|
431
|
-
solid: "solid";
|
|
432
|
-
}>>;
|
|
433
|
-
addons: z.ZodArray<z.ZodEnum<{
|
|
434
|
-
none: "none";
|
|
435
|
-
pwa: "pwa";
|
|
436
|
-
tauri: "tauri";
|
|
437
|
-
starlight: "starlight";
|
|
438
|
-
biome: "biome";
|
|
439
|
-
husky: "husky";
|
|
440
|
-
ruler: "ruler";
|
|
441
|
-
turborepo: "turborepo";
|
|
442
|
-
fumadocs: "fumadocs";
|
|
443
|
-
ultracite: "ultracite";
|
|
444
|
-
oxlint: "oxlint";
|
|
445
|
-
}>>;
|
|
446
|
-
examples: z.ZodArray<z.ZodEnum<{
|
|
447
|
-
none: "none";
|
|
448
|
-
todo: "todo";
|
|
449
|
-
ai: "ai";
|
|
450
|
-
}>>;
|
|
451
|
-
auth: z.ZodEnum<{
|
|
452
|
-
none: "none";
|
|
453
|
-
"better-auth": "better-auth";
|
|
454
|
-
clerk: "clerk";
|
|
455
|
-
}>;
|
|
456
|
-
payments: z.ZodEnum<{
|
|
457
|
-
none: "none";
|
|
458
|
-
polar: "polar";
|
|
459
|
-
}>;
|
|
460
|
-
git: z.ZodBoolean;
|
|
461
|
-
packageManager: z.ZodEnum<{
|
|
462
|
-
bun: "bun";
|
|
463
|
-
npm: "npm";
|
|
464
|
-
pnpm: "pnpm";
|
|
465
|
-
}>;
|
|
466
|
-
install: z.ZodBoolean;
|
|
467
|
-
dbSetup: z.ZodEnum<{
|
|
468
|
-
none: "none";
|
|
469
|
-
turso: "turso";
|
|
470
|
-
neon: "neon";
|
|
471
|
-
"prisma-postgres": "prisma-postgres";
|
|
472
|
-
planetscale: "planetscale";
|
|
473
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
474
|
-
supabase: "supabase";
|
|
475
|
-
d1: "d1";
|
|
476
|
-
docker: "docker";
|
|
477
|
-
}>;
|
|
478
|
-
api: z.ZodEnum<{
|
|
479
|
-
none: "none";
|
|
480
|
-
trpc: "trpc";
|
|
481
|
-
orpc: "orpc";
|
|
482
|
-
}>;
|
|
483
|
-
webDeploy: z.ZodEnum<{
|
|
484
|
-
none: "none";
|
|
485
|
-
alchemy: "alchemy";
|
|
486
|
-
}>;
|
|
487
|
-
serverDeploy: z.ZodEnum<{
|
|
488
|
-
none: "none";
|
|
489
|
-
alchemy: "alchemy";
|
|
490
|
-
}>;
|
|
491
|
-
}, z.core.$strip>;
|
|
492
|
-
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
493
|
-
version: z.ZodString;
|
|
494
|
-
createdAt: z.ZodString;
|
|
495
|
-
database: z.ZodEnum<{
|
|
496
|
-
none: "none";
|
|
497
|
-
sqlite: "sqlite";
|
|
498
|
-
postgres: "postgres";
|
|
499
|
-
mysql: "mysql";
|
|
500
|
-
mongodb: "mongodb";
|
|
501
|
-
}>;
|
|
502
|
-
orm: z.ZodEnum<{
|
|
503
|
-
none: "none";
|
|
504
|
-
drizzle: "drizzle";
|
|
505
|
-
prisma: "prisma";
|
|
506
|
-
mongoose: "mongoose";
|
|
507
|
-
}>;
|
|
508
|
-
backend: z.ZodEnum<{
|
|
509
|
-
none: "none";
|
|
510
|
-
hono: "hono";
|
|
511
|
-
express: "express";
|
|
512
|
-
fastify: "fastify";
|
|
513
|
-
elysia: "elysia";
|
|
514
|
-
convex: "convex";
|
|
515
|
-
self: "self";
|
|
516
|
-
}>;
|
|
517
|
-
runtime: z.ZodEnum<{
|
|
518
|
-
none: "none";
|
|
519
|
-
bun: "bun";
|
|
520
|
-
node: "node";
|
|
521
|
-
workers: "workers";
|
|
522
|
-
}>;
|
|
523
|
-
frontend: z.ZodArray<z.ZodEnum<{
|
|
524
|
-
none: "none";
|
|
525
|
-
"tanstack-router": "tanstack-router";
|
|
526
|
-
"react-router": "react-router";
|
|
527
|
-
"tanstack-start": "tanstack-start";
|
|
528
|
-
next: "next";
|
|
529
|
-
nuxt: "nuxt";
|
|
530
|
-
"native-bare": "native-bare";
|
|
531
|
-
"native-uniwind": "native-uniwind";
|
|
532
|
-
"native-unistyles": "native-unistyles";
|
|
533
|
-
svelte: "svelte";
|
|
534
|
-
solid: "solid";
|
|
535
|
-
}>>;
|
|
536
|
-
addons: z.ZodArray<z.ZodEnum<{
|
|
537
|
-
none: "none";
|
|
538
|
-
pwa: "pwa";
|
|
539
|
-
tauri: "tauri";
|
|
540
|
-
starlight: "starlight";
|
|
541
|
-
biome: "biome";
|
|
542
|
-
husky: "husky";
|
|
543
|
-
ruler: "ruler";
|
|
544
|
-
turborepo: "turborepo";
|
|
545
|
-
fumadocs: "fumadocs";
|
|
546
|
-
ultracite: "ultracite";
|
|
547
|
-
oxlint: "oxlint";
|
|
548
|
-
}>>;
|
|
549
|
-
examples: z.ZodArray<z.ZodEnum<{
|
|
550
|
-
none: "none";
|
|
551
|
-
todo: "todo";
|
|
552
|
-
ai: "ai";
|
|
553
|
-
}>>;
|
|
554
|
-
auth: z.ZodEnum<{
|
|
555
|
-
none: "none";
|
|
556
|
-
"better-auth": "better-auth";
|
|
557
|
-
clerk: "clerk";
|
|
558
|
-
}>;
|
|
559
|
-
payments: z.ZodEnum<{
|
|
560
|
-
none: "none";
|
|
561
|
-
polar: "polar";
|
|
562
|
-
}>;
|
|
563
|
-
packageManager: z.ZodEnum<{
|
|
564
|
-
bun: "bun";
|
|
565
|
-
npm: "npm";
|
|
566
|
-
pnpm: "pnpm";
|
|
567
|
-
}>;
|
|
568
|
-
dbSetup: z.ZodEnum<{
|
|
569
|
-
none: "none";
|
|
570
|
-
turso: "turso";
|
|
571
|
-
neon: "neon";
|
|
572
|
-
"prisma-postgres": "prisma-postgres";
|
|
573
|
-
planetscale: "planetscale";
|
|
574
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
575
|
-
supabase: "supabase";
|
|
576
|
-
d1: "d1";
|
|
577
|
-
docker: "docker";
|
|
578
|
-
}>;
|
|
579
|
-
api: z.ZodEnum<{
|
|
580
|
-
none: "none";
|
|
581
|
-
trpc: "trpc";
|
|
582
|
-
orpc: "orpc";
|
|
583
|
-
}>;
|
|
584
|
-
webDeploy: z.ZodEnum<{
|
|
585
|
-
none: "none";
|
|
586
|
-
alchemy: "alchemy";
|
|
587
|
-
}>;
|
|
588
|
-
serverDeploy: z.ZodEnum<{
|
|
589
|
-
none: "none";
|
|
590
|
-
alchemy: "alchemy";
|
|
591
|
-
}>;
|
|
592
|
-
}, z.core.$strip>;
|
|
593
|
-
declare const InitResultSchema: z.ZodObject<{
|
|
594
|
-
success: z.ZodBoolean;
|
|
595
|
-
projectConfig: z.ZodObject<{
|
|
596
|
-
projectName: z.ZodString;
|
|
597
|
-
projectDir: z.ZodString;
|
|
598
|
-
relativePath: z.ZodString;
|
|
599
|
-
database: z.ZodEnum<{
|
|
600
|
-
none: "none";
|
|
601
|
-
sqlite: "sqlite";
|
|
602
|
-
postgres: "postgres";
|
|
603
|
-
mysql: "mysql";
|
|
604
|
-
mongodb: "mongodb";
|
|
605
|
-
}>;
|
|
606
|
-
orm: z.ZodEnum<{
|
|
607
|
-
none: "none";
|
|
608
|
-
drizzle: "drizzle";
|
|
609
|
-
prisma: "prisma";
|
|
610
|
-
mongoose: "mongoose";
|
|
611
|
-
}>;
|
|
612
|
-
backend: z.ZodEnum<{
|
|
613
|
-
none: "none";
|
|
614
|
-
hono: "hono";
|
|
615
|
-
express: "express";
|
|
616
|
-
fastify: "fastify";
|
|
617
|
-
elysia: "elysia";
|
|
618
|
-
convex: "convex";
|
|
619
|
-
self: "self";
|
|
620
|
-
}>;
|
|
621
|
-
runtime: z.ZodEnum<{
|
|
622
|
-
none: "none";
|
|
623
|
-
bun: "bun";
|
|
624
|
-
node: "node";
|
|
625
|
-
workers: "workers";
|
|
626
|
-
}>;
|
|
627
|
-
frontend: z.ZodArray<z.ZodEnum<{
|
|
628
|
-
none: "none";
|
|
629
|
-
"tanstack-router": "tanstack-router";
|
|
630
|
-
"react-router": "react-router";
|
|
631
|
-
"tanstack-start": "tanstack-start";
|
|
632
|
-
next: "next";
|
|
633
|
-
nuxt: "nuxt";
|
|
634
|
-
"native-bare": "native-bare";
|
|
635
|
-
"native-uniwind": "native-uniwind";
|
|
636
|
-
"native-unistyles": "native-unistyles";
|
|
637
|
-
svelte: "svelte";
|
|
638
|
-
solid: "solid";
|
|
639
|
-
}>>;
|
|
640
|
-
addons: z.ZodArray<z.ZodEnum<{
|
|
641
|
-
none: "none";
|
|
642
|
-
pwa: "pwa";
|
|
643
|
-
tauri: "tauri";
|
|
644
|
-
starlight: "starlight";
|
|
645
|
-
biome: "biome";
|
|
646
|
-
husky: "husky";
|
|
647
|
-
ruler: "ruler";
|
|
648
|
-
turborepo: "turborepo";
|
|
649
|
-
fumadocs: "fumadocs";
|
|
650
|
-
ultracite: "ultracite";
|
|
651
|
-
oxlint: "oxlint";
|
|
652
|
-
}>>;
|
|
653
|
-
examples: z.ZodArray<z.ZodEnum<{
|
|
654
|
-
none: "none";
|
|
655
|
-
todo: "todo";
|
|
656
|
-
ai: "ai";
|
|
657
|
-
}>>;
|
|
658
|
-
auth: z.ZodEnum<{
|
|
659
|
-
none: "none";
|
|
660
|
-
"better-auth": "better-auth";
|
|
661
|
-
clerk: "clerk";
|
|
662
|
-
}>;
|
|
663
|
-
payments: z.ZodEnum<{
|
|
664
|
-
none: "none";
|
|
665
|
-
polar: "polar";
|
|
666
|
-
}>;
|
|
667
|
-
git: z.ZodBoolean;
|
|
668
|
-
packageManager: z.ZodEnum<{
|
|
669
|
-
bun: "bun";
|
|
670
|
-
npm: "npm";
|
|
671
|
-
pnpm: "pnpm";
|
|
672
|
-
}>;
|
|
673
|
-
install: z.ZodBoolean;
|
|
674
|
-
dbSetup: z.ZodEnum<{
|
|
675
|
-
none: "none";
|
|
676
|
-
turso: "turso";
|
|
677
|
-
neon: "neon";
|
|
678
|
-
"prisma-postgres": "prisma-postgres";
|
|
679
|
-
planetscale: "planetscale";
|
|
680
|
-
"mongodb-atlas": "mongodb-atlas";
|
|
681
|
-
supabase: "supabase";
|
|
682
|
-
d1: "d1";
|
|
683
|
-
docker: "docker";
|
|
684
|
-
}>;
|
|
685
|
-
api: z.ZodEnum<{
|
|
686
|
-
none: "none";
|
|
687
|
-
trpc: "trpc";
|
|
688
|
-
orpc: "orpc";
|
|
689
|
-
}>;
|
|
690
|
-
webDeploy: z.ZodEnum<{
|
|
691
|
-
none: "none";
|
|
692
|
-
alchemy: "alchemy";
|
|
693
|
-
}>;
|
|
694
|
-
serverDeploy: z.ZodEnum<{
|
|
695
|
-
none: "none";
|
|
696
|
-
alchemy: "alchemy";
|
|
697
|
-
}>;
|
|
698
|
-
}, z.core.$strip>;
|
|
699
|
-
reproducibleCommand: z.ZodString;
|
|
700
|
-
timeScaffolded: z.ZodString;
|
|
701
|
-
elapsedTimeMs: z.ZodNumber;
|
|
702
|
-
projectDirectory: z.ZodString;
|
|
703
|
-
relativePath: z.ZodString;
|
|
704
|
-
error: z.ZodOptional<z.ZodString>;
|
|
705
|
-
}, z.core.$strip>;
|
|
706
|
-
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb")[];
|
|
707
|
-
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose")[];
|
|
708
|
-
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "convex" | "self")[];
|
|
709
|
-
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
710
|
-
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid")[];
|
|
711
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "husky" | "ruler" | "turborepo" | "fumadocs" | "ultracite" | "oxlint")[];
|
|
712
|
-
declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
|
|
713
|
-
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
|
|
714
|
-
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "d1" | "docker")[];
|
|
715
|
-
declare const API_VALUES: ("none" | "trpc" | "orpc")[];
|
|
716
|
-
declare const AUTH_VALUES: ("none" | "better-auth" | "clerk")[];
|
|
717
|
-
declare const PAYMENTS_VALUES: ("none" | "polar")[];
|
|
718
|
-
declare const WEB_DEPLOY_VALUES: ("none" | "alchemy")[];
|
|
719
|
-
declare const SERVER_DEPLOY_VALUES: ("none" | "alchemy")[];
|
|
720
|
-
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
721
|
-
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
722
|
-
//#endregion
|
|
723
|
-
export { ProjectConfigSchema as A, InitResultSchema as C, PAYMENTS_VALUES as D, PACKAGE_MANAGER_VALUES as E, ServerDeploySchema as F, TEMPLATE_VALUES as I, TemplateSchema as L, RUNTIME_VALUES as M, RuntimeSchema as N, PackageManagerSchema as O, SERVER_DEPLOY_VALUES as P, WEB_DEPLOY_VALUES as R, FrontendSchema as S, ORM_VALUES as T, DatabaseSetupSchema as _, AddInputSchema as a, ExamplesSchema as b, BACKEND_VALUES as c, CLIInputSchema as d, CreateInputSchema as f, DatabaseSchema as g, DIRECTORY_CONFLICT_VALUES as h, AUTH_VALUES as i, ProjectNameSchema as j, PaymentsSchema as k, BackendSchema as l, DATABASE_VALUES as m, APISchema as n, AddonsSchema as o, DATABASE_SETUP_VALUES as p, API_VALUES as r, AuthSchema as s, ADDONS_VALUES as t, BetterTStackConfigSchema as u, DirectoryConflictSchema as v, ORMSchema as w, FRONTEND_VALUES as x, EXAMPLES_VALUES as y, WebDeploySchema as z };
|
|
724
|
-
//# sourceMappingURL=schemas-D8-YlD7-.d.mts.map
|