@better-t-stack/types 3.10.0 → 3.11.0-pr749.5d055e3

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.
@@ -1,47 +1,1125 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/json-schema.d.ts
4
- declare function getDatabaseJsonSchema(): z.core.JSONSchema.JSONSchema;
5
- declare function getORMJsonSchema(): z.core.JSONSchema.JSONSchema;
6
- declare function getBackendJsonSchema(): z.core.JSONSchema.JSONSchema;
7
- declare function getRuntimeJsonSchema(): z.core.JSONSchema.JSONSchema;
8
- declare function getFrontendJsonSchema(): z.core.JSONSchema.JSONSchema;
9
- declare function getAddonsJsonSchema(): z.core.JSONSchema.JSONSchema;
10
- declare function getExamplesJsonSchema(): z.core.JSONSchema.JSONSchema;
11
- declare function getPackageManagerJsonSchema(): z.core.JSONSchema.JSONSchema;
12
- declare function getDatabaseSetupJsonSchema(): z.core.JSONSchema.JSONSchema;
13
- declare function getAPIJsonSchema(): z.core.JSONSchema.JSONSchema;
14
- declare function getAuthJsonSchema(): z.core.JSONSchema.JSONSchema;
15
- declare function getPaymentsJsonSchema(): z.core.JSONSchema.JSONSchema;
16
- declare function getWebDeployJsonSchema(): z.core.JSONSchema.JSONSchema;
17
- declare function getServerDeployJsonSchema(): z.core.JSONSchema.JSONSchema;
18
- declare function getDirectoryConflictJsonSchema(): z.core.JSONSchema.JSONSchema;
19
- declare function getTemplateJsonSchema(): z.core.JSONSchema.JSONSchema;
20
- declare function getCreateInputJsonSchema(): z.core.JSONSchema.JSONSchema;
21
- declare function getProjectConfigJsonSchema(): z.core.JSONSchema.JSONSchema;
22
- declare function getBetterTStackConfigJsonSchema(): z.core.JSONSchema.JSONSchema;
23
- declare function getInitResultJsonSchema(): z.core.JSONSchema.JSONSchema;
4
+ declare function getDatabaseJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
5
+ none: "none";
6
+ sqlite: "sqlite";
7
+ postgres: "postgres";
8
+ mysql: "mysql";
9
+ mongodb: "mongodb";
10
+ }>>;
11
+ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
12
+ none: "none";
13
+ drizzle: "drizzle";
14
+ prisma: "prisma";
15
+ mongoose: "mongoose";
16
+ }>>;
17
+ declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<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 function getRuntimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
27
+ none: "none";
28
+ bun: "bun";
29
+ node: "node";
30
+ workers: "workers";
31
+ }>>;
32
+ declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<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 function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<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
+ opentui: "opentui";
58
+ wxt: "wxt";
59
+ }>>;
60
+ declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
61
+ none: "none";
62
+ todo: "todo";
63
+ ai: "ai";
64
+ }>>;
65
+ declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
66
+ bun: "bun";
67
+ npm: "npm";
68
+ pnpm: "pnpm";
69
+ }>>;
70
+ declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
71
+ none: "none";
72
+ turso: "turso";
73
+ neon: "neon";
74
+ "prisma-postgres": "prisma-postgres";
75
+ planetscale: "planetscale";
76
+ "mongodb-atlas": "mongodb-atlas";
77
+ supabase: "supabase";
78
+ d1: "d1";
79
+ docker: "docker";
80
+ }>>;
81
+ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
82
+ none: "none";
83
+ trpc: "trpc";
84
+ orpc: "orpc";
85
+ }>>;
86
+ declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
87
+ none: "none";
88
+ "better-auth": "better-auth";
89
+ clerk: "clerk";
90
+ }>>;
91
+ declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
92
+ none: "none";
93
+ polar: "polar";
94
+ }>>;
95
+ declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
96
+ none: "none";
97
+ alchemy: "alchemy";
98
+ }>>;
99
+ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
100
+ none: "none";
101
+ alchemy: "alchemy";
102
+ }>>;
103
+ declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
104
+ merge: "merge";
105
+ overwrite: "overwrite";
106
+ increment: "increment";
107
+ error: "error";
108
+ }>>;
109
+ declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
110
+ none: "none";
111
+ mern: "mern";
112
+ pern: "pern";
113
+ t3: "t3";
114
+ uniwind: "uniwind";
115
+ }>>;
116
+ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
117
+ projectName: z.ZodOptional<z.ZodString>;
118
+ template: z.ZodOptional<z.ZodEnum<{
119
+ none: "none";
120
+ mern: "mern";
121
+ pern: "pern";
122
+ t3: "t3";
123
+ uniwind: "uniwind";
124
+ }>>;
125
+ yes: z.ZodOptional<z.ZodBoolean>;
126
+ yolo: z.ZodOptional<z.ZodBoolean>;
127
+ verbose: z.ZodOptional<z.ZodBoolean>;
128
+ database: z.ZodOptional<z.ZodEnum<{
129
+ none: "none";
130
+ sqlite: "sqlite";
131
+ postgres: "postgres";
132
+ mysql: "mysql";
133
+ mongodb: "mongodb";
134
+ }>>;
135
+ orm: z.ZodOptional<z.ZodEnum<{
136
+ none: "none";
137
+ drizzle: "drizzle";
138
+ prisma: "prisma";
139
+ mongoose: "mongoose";
140
+ }>>;
141
+ auth: z.ZodOptional<z.ZodEnum<{
142
+ none: "none";
143
+ "better-auth": "better-auth";
144
+ clerk: "clerk";
145
+ }>>;
146
+ payments: z.ZodOptional<z.ZodEnum<{
147
+ none: "none";
148
+ polar: "polar";
149
+ }>>;
150
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
151
+ none: "none";
152
+ "tanstack-router": "tanstack-router";
153
+ "react-router": "react-router";
154
+ "tanstack-start": "tanstack-start";
155
+ next: "next";
156
+ nuxt: "nuxt";
157
+ "native-bare": "native-bare";
158
+ "native-uniwind": "native-uniwind";
159
+ "native-unistyles": "native-unistyles";
160
+ svelte: "svelte";
161
+ solid: "solid";
162
+ }>>>;
163
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
164
+ none: "none";
165
+ pwa: "pwa";
166
+ tauri: "tauri";
167
+ starlight: "starlight";
168
+ biome: "biome";
169
+ husky: "husky";
170
+ ruler: "ruler";
171
+ turborepo: "turborepo";
172
+ fumadocs: "fumadocs";
173
+ ultracite: "ultracite";
174
+ oxlint: "oxlint";
175
+ opentui: "opentui";
176
+ wxt: "wxt";
177
+ }>>>;
178
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
179
+ none: "none";
180
+ todo: "todo";
181
+ ai: "ai";
182
+ }>>>;
183
+ git: z.ZodOptional<z.ZodBoolean>;
184
+ packageManager: z.ZodOptional<z.ZodEnum<{
185
+ bun: "bun";
186
+ npm: "npm";
187
+ pnpm: "pnpm";
188
+ }>>;
189
+ install: z.ZodOptional<z.ZodBoolean>;
190
+ dbSetup: z.ZodOptional<z.ZodEnum<{
191
+ none: "none";
192
+ turso: "turso";
193
+ neon: "neon";
194
+ "prisma-postgres": "prisma-postgres";
195
+ planetscale: "planetscale";
196
+ "mongodb-atlas": "mongodb-atlas";
197
+ supabase: "supabase";
198
+ d1: "d1";
199
+ docker: "docker";
200
+ }>>;
201
+ backend: z.ZodOptional<z.ZodEnum<{
202
+ none: "none";
203
+ hono: "hono";
204
+ express: "express";
205
+ fastify: "fastify";
206
+ elysia: "elysia";
207
+ convex: "convex";
208
+ self: "self";
209
+ }>>;
210
+ runtime: z.ZodOptional<z.ZodEnum<{
211
+ none: "none";
212
+ bun: "bun";
213
+ node: "node";
214
+ workers: "workers";
215
+ }>>;
216
+ api: z.ZodOptional<z.ZodEnum<{
217
+ none: "none";
218
+ trpc: "trpc";
219
+ orpc: "orpc";
220
+ }>>;
221
+ webDeploy: z.ZodOptional<z.ZodEnum<{
222
+ none: "none";
223
+ alchemy: "alchemy";
224
+ }>>;
225
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
226
+ none: "none";
227
+ alchemy: "alchemy";
228
+ }>>;
229
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
230
+ merge: "merge";
231
+ overwrite: "overwrite";
232
+ increment: "increment";
233
+ error: "error";
234
+ }>>;
235
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
236
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
237
+ manualDb: z.ZodOptional<z.ZodBoolean>;
238
+ }, z.core.$strip>>;
239
+ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
240
+ projectName: z.ZodString;
241
+ projectDir: z.ZodString;
242
+ relativePath: z.ZodString;
243
+ database: z.ZodEnum<{
244
+ none: "none";
245
+ sqlite: "sqlite";
246
+ postgres: "postgres";
247
+ mysql: "mysql";
248
+ mongodb: "mongodb";
249
+ }>;
250
+ orm: z.ZodEnum<{
251
+ none: "none";
252
+ drizzle: "drizzle";
253
+ prisma: "prisma";
254
+ mongoose: "mongoose";
255
+ }>;
256
+ backend: z.ZodEnum<{
257
+ none: "none";
258
+ hono: "hono";
259
+ express: "express";
260
+ fastify: "fastify";
261
+ elysia: "elysia";
262
+ convex: "convex";
263
+ self: "self";
264
+ }>;
265
+ runtime: z.ZodEnum<{
266
+ none: "none";
267
+ bun: "bun";
268
+ node: "node";
269
+ workers: "workers";
270
+ }>;
271
+ frontend: z.ZodArray<z.ZodEnum<{
272
+ none: "none";
273
+ "tanstack-router": "tanstack-router";
274
+ "react-router": "react-router";
275
+ "tanstack-start": "tanstack-start";
276
+ next: "next";
277
+ nuxt: "nuxt";
278
+ "native-bare": "native-bare";
279
+ "native-uniwind": "native-uniwind";
280
+ "native-unistyles": "native-unistyles";
281
+ svelte: "svelte";
282
+ solid: "solid";
283
+ }>>;
284
+ addons: z.ZodArray<z.ZodEnum<{
285
+ none: "none";
286
+ pwa: "pwa";
287
+ tauri: "tauri";
288
+ starlight: "starlight";
289
+ biome: "biome";
290
+ husky: "husky";
291
+ ruler: "ruler";
292
+ turborepo: "turborepo";
293
+ fumadocs: "fumadocs";
294
+ ultracite: "ultracite";
295
+ oxlint: "oxlint";
296
+ opentui: "opentui";
297
+ wxt: "wxt";
298
+ }>>;
299
+ examples: z.ZodArray<z.ZodEnum<{
300
+ none: "none";
301
+ todo: "todo";
302
+ ai: "ai";
303
+ }>>;
304
+ auth: z.ZodEnum<{
305
+ none: "none";
306
+ "better-auth": "better-auth";
307
+ clerk: "clerk";
308
+ }>;
309
+ payments: z.ZodEnum<{
310
+ none: "none";
311
+ polar: "polar";
312
+ }>;
313
+ git: z.ZodBoolean;
314
+ packageManager: z.ZodEnum<{
315
+ bun: "bun";
316
+ npm: "npm";
317
+ pnpm: "pnpm";
318
+ }>;
319
+ install: z.ZodBoolean;
320
+ dbSetup: z.ZodEnum<{
321
+ none: "none";
322
+ turso: "turso";
323
+ neon: "neon";
324
+ "prisma-postgres": "prisma-postgres";
325
+ planetscale: "planetscale";
326
+ "mongodb-atlas": "mongodb-atlas";
327
+ supabase: "supabase";
328
+ d1: "d1";
329
+ docker: "docker";
330
+ }>;
331
+ api: z.ZodEnum<{
332
+ none: "none";
333
+ trpc: "trpc";
334
+ orpc: "orpc";
335
+ }>;
336
+ webDeploy: z.ZodEnum<{
337
+ none: "none";
338
+ alchemy: "alchemy";
339
+ }>;
340
+ serverDeploy: z.ZodEnum<{
341
+ none: "none";
342
+ alchemy: "alchemy";
343
+ }>;
344
+ }, z.core.$strip>>;
345
+ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
346
+ version: z.ZodString;
347
+ createdAt: z.ZodString;
348
+ database: z.ZodEnum<{
349
+ none: "none";
350
+ sqlite: "sqlite";
351
+ postgres: "postgres";
352
+ mysql: "mysql";
353
+ mongodb: "mongodb";
354
+ }>;
355
+ orm: z.ZodEnum<{
356
+ none: "none";
357
+ drizzle: "drizzle";
358
+ prisma: "prisma";
359
+ mongoose: "mongoose";
360
+ }>;
361
+ backend: z.ZodEnum<{
362
+ none: "none";
363
+ hono: "hono";
364
+ express: "express";
365
+ fastify: "fastify";
366
+ elysia: "elysia";
367
+ convex: "convex";
368
+ self: "self";
369
+ }>;
370
+ runtime: z.ZodEnum<{
371
+ none: "none";
372
+ bun: "bun";
373
+ node: "node";
374
+ workers: "workers";
375
+ }>;
376
+ frontend: z.ZodArray<z.ZodEnum<{
377
+ none: "none";
378
+ "tanstack-router": "tanstack-router";
379
+ "react-router": "react-router";
380
+ "tanstack-start": "tanstack-start";
381
+ next: "next";
382
+ nuxt: "nuxt";
383
+ "native-bare": "native-bare";
384
+ "native-uniwind": "native-uniwind";
385
+ "native-unistyles": "native-unistyles";
386
+ svelte: "svelte";
387
+ solid: "solid";
388
+ }>>;
389
+ addons: z.ZodArray<z.ZodEnum<{
390
+ none: "none";
391
+ pwa: "pwa";
392
+ tauri: "tauri";
393
+ starlight: "starlight";
394
+ biome: "biome";
395
+ husky: "husky";
396
+ ruler: "ruler";
397
+ turborepo: "turborepo";
398
+ fumadocs: "fumadocs";
399
+ ultracite: "ultracite";
400
+ oxlint: "oxlint";
401
+ opentui: "opentui";
402
+ wxt: "wxt";
403
+ }>>;
404
+ examples: z.ZodArray<z.ZodEnum<{
405
+ none: "none";
406
+ todo: "todo";
407
+ ai: "ai";
408
+ }>>;
409
+ auth: z.ZodEnum<{
410
+ none: "none";
411
+ "better-auth": "better-auth";
412
+ clerk: "clerk";
413
+ }>;
414
+ payments: z.ZodEnum<{
415
+ none: "none";
416
+ polar: "polar";
417
+ }>;
418
+ packageManager: z.ZodEnum<{
419
+ bun: "bun";
420
+ npm: "npm";
421
+ pnpm: "pnpm";
422
+ }>;
423
+ dbSetup: z.ZodEnum<{
424
+ none: "none";
425
+ turso: "turso";
426
+ neon: "neon";
427
+ "prisma-postgres": "prisma-postgres";
428
+ planetscale: "planetscale";
429
+ "mongodb-atlas": "mongodb-atlas";
430
+ supabase: "supabase";
431
+ d1: "d1";
432
+ docker: "docker";
433
+ }>;
434
+ api: z.ZodEnum<{
435
+ none: "none";
436
+ trpc: "trpc";
437
+ orpc: "orpc";
438
+ }>;
439
+ webDeploy: z.ZodEnum<{
440
+ none: "none";
441
+ alchemy: "alchemy";
442
+ }>;
443
+ serverDeploy: z.ZodEnum<{
444
+ none: "none";
445
+ alchemy: "alchemy";
446
+ }>;
447
+ }, z.core.$strip>>;
448
+ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
449
+ success: z.ZodBoolean;
450
+ projectConfig: z.ZodObject<{
451
+ projectName: z.ZodString;
452
+ projectDir: z.ZodString;
453
+ relativePath: z.ZodString;
454
+ database: z.ZodEnum<{
455
+ none: "none";
456
+ sqlite: "sqlite";
457
+ postgres: "postgres";
458
+ mysql: "mysql";
459
+ mongodb: "mongodb";
460
+ }>;
461
+ orm: z.ZodEnum<{
462
+ none: "none";
463
+ drizzle: "drizzle";
464
+ prisma: "prisma";
465
+ mongoose: "mongoose";
466
+ }>;
467
+ backend: z.ZodEnum<{
468
+ none: "none";
469
+ hono: "hono";
470
+ express: "express";
471
+ fastify: "fastify";
472
+ elysia: "elysia";
473
+ convex: "convex";
474
+ self: "self";
475
+ }>;
476
+ runtime: z.ZodEnum<{
477
+ none: "none";
478
+ bun: "bun";
479
+ node: "node";
480
+ workers: "workers";
481
+ }>;
482
+ frontend: z.ZodArray<z.ZodEnum<{
483
+ none: "none";
484
+ "tanstack-router": "tanstack-router";
485
+ "react-router": "react-router";
486
+ "tanstack-start": "tanstack-start";
487
+ next: "next";
488
+ nuxt: "nuxt";
489
+ "native-bare": "native-bare";
490
+ "native-uniwind": "native-uniwind";
491
+ "native-unistyles": "native-unistyles";
492
+ svelte: "svelte";
493
+ solid: "solid";
494
+ }>>;
495
+ addons: z.ZodArray<z.ZodEnum<{
496
+ none: "none";
497
+ pwa: "pwa";
498
+ tauri: "tauri";
499
+ starlight: "starlight";
500
+ biome: "biome";
501
+ husky: "husky";
502
+ ruler: "ruler";
503
+ turborepo: "turborepo";
504
+ fumadocs: "fumadocs";
505
+ ultracite: "ultracite";
506
+ oxlint: "oxlint";
507
+ opentui: "opentui";
508
+ wxt: "wxt";
509
+ }>>;
510
+ examples: z.ZodArray<z.ZodEnum<{
511
+ none: "none";
512
+ todo: "todo";
513
+ ai: "ai";
514
+ }>>;
515
+ auth: z.ZodEnum<{
516
+ none: "none";
517
+ "better-auth": "better-auth";
518
+ clerk: "clerk";
519
+ }>;
520
+ payments: z.ZodEnum<{
521
+ none: "none";
522
+ polar: "polar";
523
+ }>;
524
+ git: z.ZodBoolean;
525
+ packageManager: z.ZodEnum<{
526
+ bun: "bun";
527
+ npm: "npm";
528
+ pnpm: "pnpm";
529
+ }>;
530
+ install: z.ZodBoolean;
531
+ dbSetup: z.ZodEnum<{
532
+ none: "none";
533
+ turso: "turso";
534
+ neon: "neon";
535
+ "prisma-postgres": "prisma-postgres";
536
+ planetscale: "planetscale";
537
+ "mongodb-atlas": "mongodb-atlas";
538
+ supabase: "supabase";
539
+ d1: "d1";
540
+ docker: "docker";
541
+ }>;
542
+ api: z.ZodEnum<{
543
+ none: "none";
544
+ trpc: "trpc";
545
+ orpc: "orpc";
546
+ }>;
547
+ webDeploy: z.ZodEnum<{
548
+ none: "none";
549
+ alchemy: "alchemy";
550
+ }>;
551
+ serverDeploy: z.ZodEnum<{
552
+ none: "none";
553
+ alchemy: "alchemy";
554
+ }>;
555
+ }, z.core.$strip>;
556
+ reproducibleCommand: z.ZodString;
557
+ timeScaffolded: z.ZodString;
558
+ elapsedTimeMs: z.ZodNumber;
559
+ projectDirectory: z.ZodString;
560
+ relativePath: z.ZodString;
561
+ error: z.ZodOptional<z.ZodString>;
562
+ }, z.core.$strip>>;
24
563
  declare function getAllJsonSchemas(): {
25
- database: z.core.JSONSchema.JSONSchema;
26
- orm: z.core.JSONSchema.JSONSchema;
27
- backend: z.core.JSONSchema.JSONSchema;
28
- runtime: z.core.JSONSchema.JSONSchema;
29
- frontend: z.core.JSONSchema.JSONSchema;
30
- addons: z.core.JSONSchema.JSONSchema;
31
- examples: z.core.JSONSchema.JSONSchema;
32
- packageManager: z.core.JSONSchema.JSONSchema;
33
- databaseSetup: z.core.JSONSchema.JSONSchema;
34
- api: z.core.JSONSchema.JSONSchema;
35
- auth: z.core.JSONSchema.JSONSchema;
36
- payments: z.core.JSONSchema.JSONSchema;
37
- webDeploy: z.core.JSONSchema.JSONSchema;
38
- serverDeploy: z.core.JSONSchema.JSONSchema;
39
- directoryConflict: z.core.JSONSchema.JSONSchema;
40
- template: z.core.JSONSchema.JSONSchema;
41
- createInput: z.core.JSONSchema.JSONSchema;
42
- projectConfig: z.core.JSONSchema.JSONSchema;
43
- betterTStackConfig: z.core.JSONSchema.JSONSchema;
44
- initResult: z.core.JSONSchema.JSONSchema;
564
+ database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
565
+ none: "none";
566
+ sqlite: "sqlite";
567
+ postgres: "postgres";
568
+ mysql: "mysql";
569
+ mongodb: "mongodb";
570
+ }>>;
571
+ orm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
572
+ none: "none";
573
+ drizzle: "drizzle";
574
+ prisma: "prisma";
575
+ mongoose: "mongoose";
576
+ }>>;
577
+ backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
578
+ none: "none";
579
+ hono: "hono";
580
+ express: "express";
581
+ fastify: "fastify";
582
+ elysia: "elysia";
583
+ convex: "convex";
584
+ self: "self";
585
+ }>>;
586
+ runtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
587
+ none: "none";
588
+ bun: "bun";
589
+ node: "node";
590
+ workers: "workers";
591
+ }>>;
592
+ frontend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
593
+ none: "none";
594
+ "tanstack-router": "tanstack-router";
595
+ "react-router": "react-router";
596
+ "tanstack-start": "tanstack-start";
597
+ next: "next";
598
+ nuxt: "nuxt";
599
+ "native-bare": "native-bare";
600
+ "native-uniwind": "native-uniwind";
601
+ "native-unistyles": "native-unistyles";
602
+ svelte: "svelte";
603
+ solid: "solid";
604
+ }>>;
605
+ addons: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
606
+ none: "none";
607
+ pwa: "pwa";
608
+ tauri: "tauri";
609
+ starlight: "starlight";
610
+ biome: "biome";
611
+ husky: "husky";
612
+ ruler: "ruler";
613
+ turborepo: "turborepo";
614
+ fumadocs: "fumadocs";
615
+ ultracite: "ultracite";
616
+ oxlint: "oxlint";
617
+ opentui: "opentui";
618
+ wxt: "wxt";
619
+ }>>;
620
+ examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
621
+ none: "none";
622
+ todo: "todo";
623
+ ai: "ai";
624
+ }>>;
625
+ packageManager: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
626
+ bun: "bun";
627
+ npm: "npm";
628
+ pnpm: "pnpm";
629
+ }>>;
630
+ databaseSetup: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
631
+ none: "none";
632
+ turso: "turso";
633
+ neon: "neon";
634
+ "prisma-postgres": "prisma-postgres";
635
+ planetscale: "planetscale";
636
+ "mongodb-atlas": "mongodb-atlas";
637
+ supabase: "supabase";
638
+ d1: "d1";
639
+ docker: "docker";
640
+ }>>;
641
+ api: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
642
+ none: "none";
643
+ trpc: "trpc";
644
+ orpc: "orpc";
645
+ }>>;
646
+ auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
647
+ none: "none";
648
+ "better-auth": "better-auth";
649
+ clerk: "clerk";
650
+ }>>;
651
+ payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
652
+ none: "none";
653
+ polar: "polar";
654
+ }>>;
655
+ webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
656
+ none: "none";
657
+ alchemy: "alchemy";
658
+ }>>;
659
+ serverDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
660
+ none: "none";
661
+ alchemy: "alchemy";
662
+ }>>;
663
+ directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
664
+ merge: "merge";
665
+ overwrite: "overwrite";
666
+ increment: "increment";
667
+ error: "error";
668
+ }>>;
669
+ template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
670
+ none: "none";
671
+ mern: "mern";
672
+ pern: "pern";
673
+ t3: "t3";
674
+ uniwind: "uniwind";
675
+ }>>;
676
+ createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
677
+ projectName: z.ZodOptional<z.ZodString>;
678
+ template: z.ZodOptional<z.ZodEnum<{
679
+ none: "none";
680
+ mern: "mern";
681
+ pern: "pern";
682
+ t3: "t3";
683
+ uniwind: "uniwind";
684
+ }>>;
685
+ yes: z.ZodOptional<z.ZodBoolean>;
686
+ yolo: z.ZodOptional<z.ZodBoolean>;
687
+ verbose: z.ZodOptional<z.ZodBoolean>;
688
+ database: z.ZodOptional<z.ZodEnum<{
689
+ none: "none";
690
+ sqlite: "sqlite";
691
+ postgres: "postgres";
692
+ mysql: "mysql";
693
+ mongodb: "mongodb";
694
+ }>>;
695
+ orm: z.ZodOptional<z.ZodEnum<{
696
+ none: "none";
697
+ drizzle: "drizzle";
698
+ prisma: "prisma";
699
+ mongoose: "mongoose";
700
+ }>>;
701
+ auth: z.ZodOptional<z.ZodEnum<{
702
+ none: "none";
703
+ "better-auth": "better-auth";
704
+ clerk: "clerk";
705
+ }>>;
706
+ payments: z.ZodOptional<z.ZodEnum<{
707
+ none: "none";
708
+ polar: "polar";
709
+ }>>;
710
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
711
+ none: "none";
712
+ "tanstack-router": "tanstack-router";
713
+ "react-router": "react-router";
714
+ "tanstack-start": "tanstack-start";
715
+ next: "next";
716
+ nuxt: "nuxt";
717
+ "native-bare": "native-bare";
718
+ "native-uniwind": "native-uniwind";
719
+ "native-unistyles": "native-unistyles";
720
+ svelte: "svelte";
721
+ solid: "solid";
722
+ }>>>;
723
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
724
+ none: "none";
725
+ pwa: "pwa";
726
+ tauri: "tauri";
727
+ starlight: "starlight";
728
+ biome: "biome";
729
+ husky: "husky";
730
+ ruler: "ruler";
731
+ turborepo: "turborepo";
732
+ fumadocs: "fumadocs";
733
+ ultracite: "ultracite";
734
+ oxlint: "oxlint";
735
+ opentui: "opentui";
736
+ wxt: "wxt";
737
+ }>>>;
738
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
739
+ none: "none";
740
+ todo: "todo";
741
+ ai: "ai";
742
+ }>>>;
743
+ git: z.ZodOptional<z.ZodBoolean>;
744
+ packageManager: z.ZodOptional<z.ZodEnum<{
745
+ bun: "bun";
746
+ npm: "npm";
747
+ pnpm: "pnpm";
748
+ }>>;
749
+ install: z.ZodOptional<z.ZodBoolean>;
750
+ dbSetup: z.ZodOptional<z.ZodEnum<{
751
+ none: "none";
752
+ turso: "turso";
753
+ neon: "neon";
754
+ "prisma-postgres": "prisma-postgres";
755
+ planetscale: "planetscale";
756
+ "mongodb-atlas": "mongodb-atlas";
757
+ supabase: "supabase";
758
+ d1: "d1";
759
+ docker: "docker";
760
+ }>>;
761
+ backend: z.ZodOptional<z.ZodEnum<{
762
+ none: "none";
763
+ hono: "hono";
764
+ express: "express";
765
+ fastify: "fastify";
766
+ elysia: "elysia";
767
+ convex: "convex";
768
+ self: "self";
769
+ }>>;
770
+ runtime: z.ZodOptional<z.ZodEnum<{
771
+ none: "none";
772
+ bun: "bun";
773
+ node: "node";
774
+ workers: "workers";
775
+ }>>;
776
+ api: z.ZodOptional<z.ZodEnum<{
777
+ none: "none";
778
+ trpc: "trpc";
779
+ orpc: "orpc";
780
+ }>>;
781
+ webDeploy: z.ZodOptional<z.ZodEnum<{
782
+ none: "none";
783
+ alchemy: "alchemy";
784
+ }>>;
785
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
786
+ none: "none";
787
+ alchemy: "alchemy";
788
+ }>>;
789
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
790
+ merge: "merge";
791
+ overwrite: "overwrite";
792
+ increment: "increment";
793
+ error: "error";
794
+ }>>;
795
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
796
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
797
+ manualDb: z.ZodOptional<z.ZodBoolean>;
798
+ }, z.core.$strip>>;
799
+ projectConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
800
+ projectName: z.ZodString;
801
+ projectDir: z.ZodString;
802
+ relativePath: z.ZodString;
803
+ database: z.ZodEnum<{
804
+ none: "none";
805
+ sqlite: "sqlite";
806
+ postgres: "postgres";
807
+ mysql: "mysql";
808
+ mongodb: "mongodb";
809
+ }>;
810
+ orm: z.ZodEnum<{
811
+ none: "none";
812
+ drizzle: "drizzle";
813
+ prisma: "prisma";
814
+ mongoose: "mongoose";
815
+ }>;
816
+ backend: z.ZodEnum<{
817
+ none: "none";
818
+ hono: "hono";
819
+ express: "express";
820
+ fastify: "fastify";
821
+ elysia: "elysia";
822
+ convex: "convex";
823
+ self: "self";
824
+ }>;
825
+ runtime: z.ZodEnum<{
826
+ none: "none";
827
+ bun: "bun";
828
+ node: "node";
829
+ workers: "workers";
830
+ }>;
831
+ frontend: z.ZodArray<z.ZodEnum<{
832
+ none: "none";
833
+ "tanstack-router": "tanstack-router";
834
+ "react-router": "react-router";
835
+ "tanstack-start": "tanstack-start";
836
+ next: "next";
837
+ nuxt: "nuxt";
838
+ "native-bare": "native-bare";
839
+ "native-uniwind": "native-uniwind";
840
+ "native-unistyles": "native-unistyles";
841
+ svelte: "svelte";
842
+ solid: "solid";
843
+ }>>;
844
+ addons: z.ZodArray<z.ZodEnum<{
845
+ none: "none";
846
+ pwa: "pwa";
847
+ tauri: "tauri";
848
+ starlight: "starlight";
849
+ biome: "biome";
850
+ husky: "husky";
851
+ ruler: "ruler";
852
+ turborepo: "turborepo";
853
+ fumadocs: "fumadocs";
854
+ ultracite: "ultracite";
855
+ oxlint: "oxlint";
856
+ opentui: "opentui";
857
+ wxt: "wxt";
858
+ }>>;
859
+ examples: z.ZodArray<z.ZodEnum<{
860
+ none: "none";
861
+ todo: "todo";
862
+ ai: "ai";
863
+ }>>;
864
+ auth: z.ZodEnum<{
865
+ none: "none";
866
+ "better-auth": "better-auth";
867
+ clerk: "clerk";
868
+ }>;
869
+ payments: z.ZodEnum<{
870
+ none: "none";
871
+ polar: "polar";
872
+ }>;
873
+ git: z.ZodBoolean;
874
+ packageManager: z.ZodEnum<{
875
+ bun: "bun";
876
+ npm: "npm";
877
+ pnpm: "pnpm";
878
+ }>;
879
+ install: z.ZodBoolean;
880
+ dbSetup: z.ZodEnum<{
881
+ none: "none";
882
+ turso: "turso";
883
+ neon: "neon";
884
+ "prisma-postgres": "prisma-postgres";
885
+ planetscale: "planetscale";
886
+ "mongodb-atlas": "mongodb-atlas";
887
+ supabase: "supabase";
888
+ d1: "d1";
889
+ docker: "docker";
890
+ }>;
891
+ api: z.ZodEnum<{
892
+ none: "none";
893
+ trpc: "trpc";
894
+ orpc: "orpc";
895
+ }>;
896
+ webDeploy: z.ZodEnum<{
897
+ none: "none";
898
+ alchemy: "alchemy";
899
+ }>;
900
+ serverDeploy: z.ZodEnum<{
901
+ none: "none";
902
+ alchemy: "alchemy";
903
+ }>;
904
+ }, z.core.$strip>>;
905
+ betterTStackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
906
+ version: z.ZodString;
907
+ createdAt: z.ZodString;
908
+ database: z.ZodEnum<{
909
+ none: "none";
910
+ sqlite: "sqlite";
911
+ postgres: "postgres";
912
+ mysql: "mysql";
913
+ mongodb: "mongodb";
914
+ }>;
915
+ orm: z.ZodEnum<{
916
+ none: "none";
917
+ drizzle: "drizzle";
918
+ prisma: "prisma";
919
+ mongoose: "mongoose";
920
+ }>;
921
+ backend: z.ZodEnum<{
922
+ none: "none";
923
+ hono: "hono";
924
+ express: "express";
925
+ fastify: "fastify";
926
+ elysia: "elysia";
927
+ convex: "convex";
928
+ self: "self";
929
+ }>;
930
+ runtime: z.ZodEnum<{
931
+ none: "none";
932
+ bun: "bun";
933
+ node: "node";
934
+ workers: "workers";
935
+ }>;
936
+ frontend: z.ZodArray<z.ZodEnum<{
937
+ none: "none";
938
+ "tanstack-router": "tanstack-router";
939
+ "react-router": "react-router";
940
+ "tanstack-start": "tanstack-start";
941
+ next: "next";
942
+ nuxt: "nuxt";
943
+ "native-bare": "native-bare";
944
+ "native-uniwind": "native-uniwind";
945
+ "native-unistyles": "native-unistyles";
946
+ svelte: "svelte";
947
+ solid: "solid";
948
+ }>>;
949
+ addons: z.ZodArray<z.ZodEnum<{
950
+ none: "none";
951
+ pwa: "pwa";
952
+ tauri: "tauri";
953
+ starlight: "starlight";
954
+ biome: "biome";
955
+ husky: "husky";
956
+ ruler: "ruler";
957
+ turborepo: "turborepo";
958
+ fumadocs: "fumadocs";
959
+ ultracite: "ultracite";
960
+ oxlint: "oxlint";
961
+ opentui: "opentui";
962
+ wxt: "wxt";
963
+ }>>;
964
+ examples: z.ZodArray<z.ZodEnum<{
965
+ none: "none";
966
+ todo: "todo";
967
+ ai: "ai";
968
+ }>>;
969
+ auth: z.ZodEnum<{
970
+ none: "none";
971
+ "better-auth": "better-auth";
972
+ clerk: "clerk";
973
+ }>;
974
+ payments: z.ZodEnum<{
975
+ none: "none";
976
+ polar: "polar";
977
+ }>;
978
+ packageManager: z.ZodEnum<{
979
+ bun: "bun";
980
+ npm: "npm";
981
+ pnpm: "pnpm";
982
+ }>;
983
+ dbSetup: z.ZodEnum<{
984
+ none: "none";
985
+ turso: "turso";
986
+ neon: "neon";
987
+ "prisma-postgres": "prisma-postgres";
988
+ planetscale: "planetscale";
989
+ "mongodb-atlas": "mongodb-atlas";
990
+ supabase: "supabase";
991
+ d1: "d1";
992
+ docker: "docker";
993
+ }>;
994
+ api: z.ZodEnum<{
995
+ none: "none";
996
+ trpc: "trpc";
997
+ orpc: "orpc";
998
+ }>;
999
+ webDeploy: z.ZodEnum<{
1000
+ none: "none";
1001
+ alchemy: "alchemy";
1002
+ }>;
1003
+ serverDeploy: z.ZodEnum<{
1004
+ none: "none";
1005
+ alchemy: "alchemy";
1006
+ }>;
1007
+ }, z.core.$strip>>;
1008
+ initResult: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1009
+ success: z.ZodBoolean;
1010
+ projectConfig: z.ZodObject<{
1011
+ projectName: z.ZodString;
1012
+ projectDir: z.ZodString;
1013
+ relativePath: z.ZodString;
1014
+ database: z.ZodEnum<{
1015
+ none: "none";
1016
+ sqlite: "sqlite";
1017
+ postgres: "postgres";
1018
+ mysql: "mysql";
1019
+ mongodb: "mongodb";
1020
+ }>;
1021
+ orm: z.ZodEnum<{
1022
+ none: "none";
1023
+ drizzle: "drizzle";
1024
+ prisma: "prisma";
1025
+ mongoose: "mongoose";
1026
+ }>;
1027
+ backend: z.ZodEnum<{
1028
+ none: "none";
1029
+ hono: "hono";
1030
+ express: "express";
1031
+ fastify: "fastify";
1032
+ elysia: "elysia";
1033
+ convex: "convex";
1034
+ self: "self";
1035
+ }>;
1036
+ runtime: z.ZodEnum<{
1037
+ none: "none";
1038
+ bun: "bun";
1039
+ node: "node";
1040
+ workers: "workers";
1041
+ }>;
1042
+ frontend: z.ZodArray<z.ZodEnum<{
1043
+ none: "none";
1044
+ "tanstack-router": "tanstack-router";
1045
+ "react-router": "react-router";
1046
+ "tanstack-start": "tanstack-start";
1047
+ next: "next";
1048
+ nuxt: "nuxt";
1049
+ "native-bare": "native-bare";
1050
+ "native-uniwind": "native-uniwind";
1051
+ "native-unistyles": "native-unistyles";
1052
+ svelte: "svelte";
1053
+ solid: "solid";
1054
+ }>>;
1055
+ addons: z.ZodArray<z.ZodEnum<{
1056
+ none: "none";
1057
+ pwa: "pwa";
1058
+ tauri: "tauri";
1059
+ starlight: "starlight";
1060
+ biome: "biome";
1061
+ husky: "husky";
1062
+ ruler: "ruler";
1063
+ turborepo: "turborepo";
1064
+ fumadocs: "fumadocs";
1065
+ ultracite: "ultracite";
1066
+ oxlint: "oxlint";
1067
+ opentui: "opentui";
1068
+ wxt: "wxt";
1069
+ }>>;
1070
+ examples: z.ZodArray<z.ZodEnum<{
1071
+ none: "none";
1072
+ todo: "todo";
1073
+ ai: "ai";
1074
+ }>>;
1075
+ auth: z.ZodEnum<{
1076
+ none: "none";
1077
+ "better-auth": "better-auth";
1078
+ clerk: "clerk";
1079
+ }>;
1080
+ payments: z.ZodEnum<{
1081
+ none: "none";
1082
+ polar: "polar";
1083
+ }>;
1084
+ git: z.ZodBoolean;
1085
+ packageManager: z.ZodEnum<{
1086
+ bun: "bun";
1087
+ npm: "npm";
1088
+ pnpm: "pnpm";
1089
+ }>;
1090
+ install: z.ZodBoolean;
1091
+ dbSetup: z.ZodEnum<{
1092
+ none: "none";
1093
+ turso: "turso";
1094
+ neon: "neon";
1095
+ "prisma-postgres": "prisma-postgres";
1096
+ planetscale: "planetscale";
1097
+ "mongodb-atlas": "mongodb-atlas";
1098
+ supabase: "supabase";
1099
+ d1: "d1";
1100
+ docker: "docker";
1101
+ }>;
1102
+ api: z.ZodEnum<{
1103
+ none: "none";
1104
+ trpc: "trpc";
1105
+ orpc: "orpc";
1106
+ }>;
1107
+ webDeploy: z.ZodEnum<{
1108
+ none: "none";
1109
+ alchemy: "alchemy";
1110
+ }>;
1111
+ serverDeploy: z.ZodEnum<{
1112
+ none: "none";
1113
+ alchemy: "alchemy";
1114
+ }>;
1115
+ }, z.core.$strip>;
1116
+ reproducibleCommand: z.ZodString;
1117
+ timeScaffolded: z.ZodString;
1118
+ elapsedTimeMs: z.ZodNumber;
1119
+ projectDirectory: z.ZodString;
1120
+ relativePath: z.ZodString;
1121
+ error: z.ZodOptional<z.ZodString>;
1122
+ }, z.core.$strip>>;
45
1123
  };
46
1124
  //#endregion
47
1125
  export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };