@better-t-stack/types 3.22.3 → 3.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,875 +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
- astro: "astro";
45
- }>;
46
- declare const AddonsSchema: z.ZodEnum<{
47
- none: "none";
48
- pwa: "pwa";
49
- tauri: "tauri";
50
- starlight: "starlight";
51
- biome: "biome";
52
- lefthook: "lefthook";
53
- husky: "husky";
54
- ruler: "ruler";
55
- mcp: "mcp";
56
- turborepo: "turborepo";
57
- fumadocs: "fumadocs";
58
- ultracite: "ultracite";
59
- oxlint: "oxlint";
60
- opentui: "opentui";
61
- wxt: "wxt";
62
- skills: "skills";
63
- }>;
64
- declare const ExamplesSchema: z.ZodEnum<{
65
- none: "none";
66
- todo: "todo";
67
- ai: "ai";
68
- }>;
69
- declare const PackageManagerSchema: z.ZodEnum<{
70
- bun: "bun";
71
- npm: "npm";
72
- pnpm: "pnpm";
73
- }>;
74
- declare const DatabaseSetupSchema: z.ZodEnum<{
75
- none: "none";
76
- turso: "turso";
77
- neon: "neon";
78
- "prisma-postgres": "prisma-postgres";
79
- planetscale: "planetscale";
80
- "mongodb-atlas": "mongodb-atlas";
81
- supabase: "supabase";
82
- d1: "d1";
83
- docker: "docker";
84
- }>;
85
- declare const APISchema: z.ZodEnum<{
86
- none: "none";
87
- trpc: "trpc";
88
- orpc: "orpc";
89
- }>;
90
- declare const AuthSchema: z.ZodEnum<{
91
- none: "none";
92
- "better-auth": "better-auth";
93
- clerk: "clerk";
94
- }>;
95
- declare const PaymentsSchema: z.ZodEnum<{
96
- none: "none";
97
- polar: "polar";
98
- }>;
99
- declare const WebDeploySchema: z.ZodEnum<{
100
- none: "none";
101
- cloudflare: "cloudflare";
102
- }>;
103
- declare const ServerDeploySchema: z.ZodEnum<{
104
- none: "none";
105
- cloudflare: "cloudflare";
106
- }>;
107
- declare const DirectoryConflictSchema: z.ZodEnum<{
108
- merge: "merge";
109
- overwrite: "overwrite";
110
- increment: "increment";
111
- error: "error";
112
- }>;
113
- declare const TemplateSchema: z.ZodEnum<{
114
- none: "none";
115
- mern: "mern";
116
- pern: "pern";
117
- t3: "t3";
118
- uniwind: "uniwind";
119
- }>;
120
- declare const ProjectNameSchema: z.ZodString;
121
- declare const CreateInputSchema: z.ZodObject<{
122
- projectName: z.ZodOptional<z.ZodString>;
123
- template: z.ZodOptional<z.ZodEnum<{
124
- none: "none";
125
- mern: "mern";
126
- pern: "pern";
127
- t3: "t3";
128
- uniwind: "uniwind";
129
- }>>;
130
- yes: z.ZodOptional<z.ZodBoolean>;
131
- yolo: z.ZodOptional<z.ZodBoolean>;
132
- verbose: z.ZodOptional<z.ZodBoolean>;
133
- database: z.ZodOptional<z.ZodEnum<{
134
- none: "none";
135
- sqlite: "sqlite";
136
- postgres: "postgres";
137
- mysql: "mysql";
138
- mongodb: "mongodb";
139
- }>>;
140
- orm: z.ZodOptional<z.ZodEnum<{
141
- none: "none";
142
- drizzle: "drizzle";
143
- prisma: "prisma";
144
- mongoose: "mongoose";
145
- }>>;
146
- auth: z.ZodOptional<z.ZodEnum<{
147
- none: "none";
148
- "better-auth": "better-auth";
149
- clerk: "clerk";
150
- }>>;
151
- payments: z.ZodOptional<z.ZodEnum<{
152
- none: "none";
153
- polar: "polar";
154
- }>>;
155
- frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
156
- none: "none";
157
- "tanstack-router": "tanstack-router";
158
- "react-router": "react-router";
159
- "tanstack-start": "tanstack-start";
160
- next: "next";
161
- nuxt: "nuxt";
162
- "native-bare": "native-bare";
163
- "native-uniwind": "native-uniwind";
164
- "native-unistyles": "native-unistyles";
165
- svelte: "svelte";
166
- solid: "solid";
167
- astro: "astro";
168
- }>>>;
169
- addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
170
- none: "none";
171
- pwa: "pwa";
172
- tauri: "tauri";
173
- starlight: "starlight";
174
- biome: "biome";
175
- lefthook: "lefthook";
176
- husky: "husky";
177
- ruler: "ruler";
178
- mcp: "mcp";
179
- turborepo: "turborepo";
180
- fumadocs: "fumadocs";
181
- ultracite: "ultracite";
182
- oxlint: "oxlint";
183
- opentui: "opentui";
184
- wxt: "wxt";
185
- skills: "skills";
186
- }>>>;
187
- examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
188
- none: "none";
189
- todo: "todo";
190
- ai: "ai";
191
- }>>>;
192
- git: z.ZodOptional<z.ZodBoolean>;
193
- packageManager: z.ZodOptional<z.ZodEnum<{
194
- bun: "bun";
195
- npm: "npm";
196
- pnpm: "pnpm";
197
- }>>;
198
- install: z.ZodOptional<z.ZodBoolean>;
199
- dbSetup: z.ZodOptional<z.ZodEnum<{
200
- none: "none";
201
- turso: "turso";
202
- neon: "neon";
203
- "prisma-postgres": "prisma-postgres";
204
- planetscale: "planetscale";
205
- "mongodb-atlas": "mongodb-atlas";
206
- supabase: "supabase";
207
- d1: "d1";
208
- docker: "docker";
209
- }>>;
210
- backend: z.ZodOptional<z.ZodEnum<{
211
- none: "none";
212
- hono: "hono";
213
- express: "express";
214
- fastify: "fastify";
215
- elysia: "elysia";
216
- convex: "convex";
217
- self: "self";
218
- }>>;
219
- runtime: z.ZodOptional<z.ZodEnum<{
220
- none: "none";
221
- bun: "bun";
222
- node: "node";
223
- workers: "workers";
224
- }>>;
225
- api: z.ZodOptional<z.ZodEnum<{
226
- none: "none";
227
- trpc: "trpc";
228
- orpc: "orpc";
229
- }>>;
230
- webDeploy: z.ZodOptional<z.ZodEnum<{
231
- none: "none";
232
- cloudflare: "cloudflare";
233
- }>>;
234
- serverDeploy: z.ZodOptional<z.ZodEnum<{
235
- none: "none";
236
- cloudflare: "cloudflare";
237
- }>>;
238
- directoryConflict: z.ZodOptional<z.ZodEnum<{
239
- merge: "merge";
240
- overwrite: "overwrite";
241
- increment: "increment";
242
- error: "error";
243
- }>>;
244
- renderTitle: z.ZodOptional<z.ZodBoolean>;
245
- disableAnalytics: z.ZodOptional<z.ZodBoolean>;
246
- manualDb: z.ZodOptional<z.ZodBoolean>;
247
- }, z.core.$strip>;
248
- declare const AddInputSchema: z.ZodObject<{
249
- addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
250
- none: "none";
251
- pwa: "pwa";
252
- tauri: "tauri";
253
- starlight: "starlight";
254
- biome: "biome";
255
- lefthook: "lefthook";
256
- husky: "husky";
257
- ruler: "ruler";
258
- mcp: "mcp";
259
- turborepo: "turborepo";
260
- fumadocs: "fumadocs";
261
- ultracite: "ultracite";
262
- oxlint: "oxlint";
263
- opentui: "opentui";
264
- wxt: "wxt";
265
- skills: "skills";
266
- }>>>;
267
- webDeploy: z.ZodOptional<z.ZodEnum<{
268
- none: "none";
269
- cloudflare: "cloudflare";
270
- }>>;
271
- serverDeploy: z.ZodOptional<z.ZodEnum<{
272
- none: "none";
273
- cloudflare: "cloudflare";
274
- }>>;
275
- projectDir: z.ZodOptional<z.ZodString>;
276
- install: z.ZodOptional<z.ZodBoolean>;
277
- packageManager: z.ZodOptional<z.ZodEnum<{
278
- bun: "bun";
279
- npm: "npm";
280
- pnpm: "pnpm";
281
- }>>;
282
- }, z.core.$strip>;
283
- declare const CLIInputSchema: z.ZodObject<{
284
- projectName: z.ZodOptional<z.ZodString>;
285
- template: z.ZodOptional<z.ZodEnum<{
286
- none: "none";
287
- mern: "mern";
288
- pern: "pern";
289
- t3: "t3";
290
- uniwind: "uniwind";
291
- }>>;
292
- yes: z.ZodOptional<z.ZodBoolean>;
293
- yolo: z.ZodOptional<z.ZodBoolean>;
294
- verbose: z.ZodOptional<z.ZodBoolean>;
295
- database: z.ZodOptional<z.ZodEnum<{
296
- none: "none";
297
- sqlite: "sqlite";
298
- postgres: "postgres";
299
- mysql: "mysql";
300
- mongodb: "mongodb";
301
- }>>;
302
- orm: z.ZodOptional<z.ZodEnum<{
303
- none: "none";
304
- drizzle: "drizzle";
305
- prisma: "prisma";
306
- mongoose: "mongoose";
307
- }>>;
308
- auth: z.ZodOptional<z.ZodEnum<{
309
- none: "none";
310
- "better-auth": "better-auth";
311
- clerk: "clerk";
312
- }>>;
313
- payments: z.ZodOptional<z.ZodEnum<{
314
- none: "none";
315
- polar: "polar";
316
- }>>;
317
- frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
318
- none: "none";
319
- "tanstack-router": "tanstack-router";
320
- "react-router": "react-router";
321
- "tanstack-start": "tanstack-start";
322
- next: "next";
323
- nuxt: "nuxt";
324
- "native-bare": "native-bare";
325
- "native-uniwind": "native-uniwind";
326
- "native-unistyles": "native-unistyles";
327
- svelte: "svelte";
328
- solid: "solid";
329
- astro: "astro";
330
- }>>>;
331
- addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
332
- none: "none";
333
- pwa: "pwa";
334
- tauri: "tauri";
335
- starlight: "starlight";
336
- biome: "biome";
337
- lefthook: "lefthook";
338
- husky: "husky";
339
- ruler: "ruler";
340
- mcp: "mcp";
341
- turborepo: "turborepo";
342
- fumadocs: "fumadocs";
343
- ultracite: "ultracite";
344
- oxlint: "oxlint";
345
- opentui: "opentui";
346
- wxt: "wxt";
347
- skills: "skills";
348
- }>>>;
349
- examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
350
- none: "none";
351
- todo: "todo";
352
- ai: "ai";
353
- }>>>;
354
- git: z.ZodOptional<z.ZodBoolean>;
355
- packageManager: z.ZodOptional<z.ZodEnum<{
356
- bun: "bun";
357
- npm: "npm";
358
- pnpm: "pnpm";
359
- }>>;
360
- install: z.ZodOptional<z.ZodBoolean>;
361
- dbSetup: z.ZodOptional<z.ZodEnum<{
362
- none: "none";
363
- turso: "turso";
364
- neon: "neon";
365
- "prisma-postgres": "prisma-postgres";
366
- planetscale: "planetscale";
367
- "mongodb-atlas": "mongodb-atlas";
368
- supabase: "supabase";
369
- d1: "d1";
370
- docker: "docker";
371
- }>>;
372
- backend: z.ZodOptional<z.ZodEnum<{
373
- none: "none";
374
- hono: "hono";
375
- express: "express";
376
- fastify: "fastify";
377
- elysia: "elysia";
378
- convex: "convex";
379
- self: "self";
380
- }>>;
381
- runtime: z.ZodOptional<z.ZodEnum<{
382
- none: "none";
383
- bun: "bun";
384
- node: "node";
385
- workers: "workers";
386
- }>>;
387
- api: z.ZodOptional<z.ZodEnum<{
388
- none: "none";
389
- trpc: "trpc";
390
- orpc: "orpc";
391
- }>>;
392
- webDeploy: z.ZodOptional<z.ZodEnum<{
393
- none: "none";
394
- cloudflare: "cloudflare";
395
- }>>;
396
- serverDeploy: z.ZodOptional<z.ZodEnum<{
397
- none: "none";
398
- cloudflare: "cloudflare";
399
- }>>;
400
- directoryConflict: z.ZodOptional<z.ZodEnum<{
401
- merge: "merge";
402
- overwrite: "overwrite";
403
- increment: "increment";
404
- error: "error";
405
- }>>;
406
- renderTitle: z.ZodOptional<z.ZodBoolean>;
407
- disableAnalytics: z.ZodOptional<z.ZodBoolean>;
408
- manualDb: z.ZodOptional<z.ZodBoolean>;
409
- projectDirectory: z.ZodOptional<z.ZodString>;
410
- }, z.core.$strip>;
411
- declare const ProjectConfigSchema: z.ZodObject<{
412
- projectName: z.ZodString;
413
- projectDir: z.ZodString;
414
- relativePath: z.ZodString;
415
- database: z.ZodEnum<{
416
- none: "none";
417
- sqlite: "sqlite";
418
- postgres: "postgres";
419
- mysql: "mysql";
420
- mongodb: "mongodb";
421
- }>;
422
- orm: z.ZodEnum<{
423
- none: "none";
424
- drizzle: "drizzle";
425
- prisma: "prisma";
426
- mongoose: "mongoose";
427
- }>;
428
- backend: z.ZodEnum<{
429
- none: "none";
430
- hono: "hono";
431
- express: "express";
432
- fastify: "fastify";
433
- elysia: "elysia";
434
- convex: "convex";
435
- self: "self";
436
- }>;
437
- runtime: z.ZodEnum<{
438
- none: "none";
439
- bun: "bun";
440
- node: "node";
441
- workers: "workers";
442
- }>;
443
- frontend: z.ZodArray<z.ZodEnum<{
444
- none: "none";
445
- "tanstack-router": "tanstack-router";
446
- "react-router": "react-router";
447
- "tanstack-start": "tanstack-start";
448
- next: "next";
449
- nuxt: "nuxt";
450
- "native-bare": "native-bare";
451
- "native-uniwind": "native-uniwind";
452
- "native-unistyles": "native-unistyles";
453
- svelte: "svelte";
454
- solid: "solid";
455
- astro: "astro";
456
- }>>;
457
- addons: z.ZodArray<z.ZodEnum<{
458
- none: "none";
459
- pwa: "pwa";
460
- tauri: "tauri";
461
- starlight: "starlight";
462
- biome: "biome";
463
- lefthook: "lefthook";
464
- husky: "husky";
465
- ruler: "ruler";
466
- mcp: "mcp";
467
- turborepo: "turborepo";
468
- fumadocs: "fumadocs";
469
- ultracite: "ultracite";
470
- oxlint: "oxlint";
471
- opentui: "opentui";
472
- wxt: "wxt";
473
- skills: "skills";
474
- }>>;
475
- examples: z.ZodArray<z.ZodEnum<{
476
- none: "none";
477
- todo: "todo";
478
- ai: "ai";
479
- }>>;
480
- auth: z.ZodEnum<{
481
- none: "none";
482
- "better-auth": "better-auth";
483
- clerk: "clerk";
484
- }>;
485
- payments: z.ZodEnum<{
486
- none: "none";
487
- polar: "polar";
488
- }>;
489
- git: z.ZodBoolean;
490
- packageManager: z.ZodEnum<{
491
- bun: "bun";
492
- npm: "npm";
493
- pnpm: "pnpm";
494
- }>;
495
- install: z.ZodBoolean;
496
- dbSetup: z.ZodEnum<{
497
- none: "none";
498
- turso: "turso";
499
- neon: "neon";
500
- "prisma-postgres": "prisma-postgres";
501
- planetscale: "planetscale";
502
- "mongodb-atlas": "mongodb-atlas";
503
- supabase: "supabase";
504
- d1: "d1";
505
- docker: "docker";
506
- }>;
507
- api: z.ZodEnum<{
508
- none: "none";
509
- trpc: "trpc";
510
- orpc: "orpc";
511
- }>;
512
- webDeploy: z.ZodEnum<{
513
- none: "none";
514
- cloudflare: "cloudflare";
515
- }>;
516
- serverDeploy: z.ZodEnum<{
517
- none: "none";
518
- cloudflare: "cloudflare";
519
- }>;
520
- }, z.core.$strip>;
521
- declare const BetterTStackConfigSchema: z.ZodObject<{
522
- version: z.ZodString;
523
- createdAt: z.ZodString;
524
- reproducibleCommand: z.ZodOptional<z.ZodString>;
525
- database: z.ZodEnum<{
526
- none: "none";
527
- sqlite: "sqlite";
528
- postgres: "postgres";
529
- mysql: "mysql";
530
- mongodb: "mongodb";
531
- }>;
532
- orm: z.ZodEnum<{
533
- none: "none";
534
- drizzle: "drizzle";
535
- prisma: "prisma";
536
- mongoose: "mongoose";
537
- }>;
538
- backend: z.ZodEnum<{
539
- none: "none";
540
- hono: "hono";
541
- express: "express";
542
- fastify: "fastify";
543
- elysia: "elysia";
544
- convex: "convex";
545
- self: "self";
546
- }>;
547
- runtime: z.ZodEnum<{
548
- none: "none";
549
- bun: "bun";
550
- node: "node";
551
- workers: "workers";
552
- }>;
553
- frontend: z.ZodArray<z.ZodEnum<{
554
- none: "none";
555
- "tanstack-router": "tanstack-router";
556
- "react-router": "react-router";
557
- "tanstack-start": "tanstack-start";
558
- next: "next";
559
- nuxt: "nuxt";
560
- "native-bare": "native-bare";
561
- "native-uniwind": "native-uniwind";
562
- "native-unistyles": "native-unistyles";
563
- svelte: "svelte";
564
- solid: "solid";
565
- astro: "astro";
566
- }>>;
567
- addons: z.ZodArray<z.ZodEnum<{
568
- none: "none";
569
- pwa: "pwa";
570
- tauri: "tauri";
571
- starlight: "starlight";
572
- biome: "biome";
573
- lefthook: "lefthook";
574
- husky: "husky";
575
- ruler: "ruler";
576
- mcp: "mcp";
577
- turborepo: "turborepo";
578
- fumadocs: "fumadocs";
579
- ultracite: "ultracite";
580
- oxlint: "oxlint";
581
- opentui: "opentui";
582
- wxt: "wxt";
583
- skills: "skills";
584
- }>>;
585
- examples: z.ZodArray<z.ZodEnum<{
586
- none: "none";
587
- todo: "todo";
588
- ai: "ai";
589
- }>>;
590
- auth: z.ZodEnum<{
591
- none: "none";
592
- "better-auth": "better-auth";
593
- clerk: "clerk";
594
- }>;
595
- payments: z.ZodEnum<{
596
- none: "none";
597
- polar: "polar";
598
- }>;
599
- packageManager: z.ZodEnum<{
600
- bun: "bun";
601
- npm: "npm";
602
- pnpm: "pnpm";
603
- }>;
604
- dbSetup: z.ZodEnum<{
605
- none: "none";
606
- turso: "turso";
607
- neon: "neon";
608
- "prisma-postgres": "prisma-postgres";
609
- planetscale: "planetscale";
610
- "mongodb-atlas": "mongodb-atlas";
611
- supabase: "supabase";
612
- d1: "d1";
613
- docker: "docker";
614
- }>;
615
- api: z.ZodEnum<{
616
- none: "none";
617
- trpc: "trpc";
618
- orpc: "orpc";
619
- }>;
620
- webDeploy: z.ZodEnum<{
621
- none: "none";
622
- cloudflare: "cloudflare";
623
- }>;
624
- serverDeploy: z.ZodEnum<{
625
- none: "none";
626
- cloudflare: "cloudflare";
627
- }>;
628
- }, z.core.$strip>;
629
- declare const BetterTStackConfigFileSchema: z.ZodObject<{
630
- $schema: z.ZodOptional<z.ZodString>;
631
- version: z.ZodString;
632
- createdAt: z.ZodString;
633
- reproducibleCommand: z.ZodOptional<z.ZodString>;
634
- database: z.ZodEnum<{
635
- none: "none";
636
- sqlite: "sqlite";
637
- postgres: "postgres";
638
- mysql: "mysql";
639
- mongodb: "mongodb";
640
- }>;
641
- orm: z.ZodEnum<{
642
- none: "none";
643
- drizzle: "drizzle";
644
- prisma: "prisma";
645
- mongoose: "mongoose";
646
- }>;
647
- backend: z.ZodEnum<{
648
- none: "none";
649
- hono: "hono";
650
- express: "express";
651
- fastify: "fastify";
652
- elysia: "elysia";
653
- convex: "convex";
654
- self: "self";
655
- }>;
656
- runtime: z.ZodEnum<{
657
- none: "none";
658
- bun: "bun";
659
- node: "node";
660
- workers: "workers";
661
- }>;
662
- frontend: z.ZodArray<z.ZodEnum<{
663
- none: "none";
664
- "tanstack-router": "tanstack-router";
665
- "react-router": "react-router";
666
- "tanstack-start": "tanstack-start";
667
- next: "next";
668
- nuxt: "nuxt";
669
- "native-bare": "native-bare";
670
- "native-uniwind": "native-uniwind";
671
- "native-unistyles": "native-unistyles";
672
- svelte: "svelte";
673
- solid: "solid";
674
- astro: "astro";
675
- }>>;
676
- addons: z.ZodArray<z.ZodEnum<{
677
- none: "none";
678
- pwa: "pwa";
679
- tauri: "tauri";
680
- starlight: "starlight";
681
- biome: "biome";
682
- lefthook: "lefthook";
683
- husky: "husky";
684
- ruler: "ruler";
685
- mcp: "mcp";
686
- turborepo: "turborepo";
687
- fumadocs: "fumadocs";
688
- ultracite: "ultracite";
689
- oxlint: "oxlint";
690
- opentui: "opentui";
691
- wxt: "wxt";
692
- skills: "skills";
693
- }>>;
694
- examples: z.ZodArray<z.ZodEnum<{
695
- none: "none";
696
- todo: "todo";
697
- ai: "ai";
698
- }>>;
699
- auth: z.ZodEnum<{
700
- none: "none";
701
- "better-auth": "better-auth";
702
- clerk: "clerk";
703
- }>;
704
- payments: z.ZodEnum<{
705
- none: "none";
706
- polar: "polar";
707
- }>;
708
- packageManager: z.ZodEnum<{
709
- bun: "bun";
710
- npm: "npm";
711
- pnpm: "pnpm";
712
- }>;
713
- dbSetup: z.ZodEnum<{
714
- none: "none";
715
- turso: "turso";
716
- neon: "neon";
717
- "prisma-postgres": "prisma-postgres";
718
- planetscale: "planetscale";
719
- "mongodb-atlas": "mongodb-atlas";
720
- supabase: "supabase";
721
- d1: "d1";
722
- docker: "docker";
723
- }>;
724
- api: z.ZodEnum<{
725
- none: "none";
726
- trpc: "trpc";
727
- orpc: "orpc";
728
- }>;
729
- webDeploy: z.ZodEnum<{
730
- none: "none";
731
- cloudflare: "cloudflare";
732
- }>;
733
- serverDeploy: z.ZodEnum<{
734
- none: "none";
735
- cloudflare: "cloudflare";
736
- }>;
737
- }, z.core.$strip>;
738
- declare const InitResultSchema: z.ZodObject<{
739
- success: z.ZodBoolean;
740
- projectConfig: z.ZodObject<{
741
- projectName: z.ZodString;
742
- projectDir: z.ZodString;
743
- relativePath: z.ZodString;
744
- database: z.ZodEnum<{
745
- none: "none";
746
- sqlite: "sqlite";
747
- postgres: "postgres";
748
- mysql: "mysql";
749
- mongodb: "mongodb";
750
- }>;
751
- orm: z.ZodEnum<{
752
- none: "none";
753
- drizzle: "drizzle";
754
- prisma: "prisma";
755
- mongoose: "mongoose";
756
- }>;
757
- backend: z.ZodEnum<{
758
- none: "none";
759
- hono: "hono";
760
- express: "express";
761
- fastify: "fastify";
762
- elysia: "elysia";
763
- convex: "convex";
764
- self: "self";
765
- }>;
766
- runtime: z.ZodEnum<{
767
- none: "none";
768
- bun: "bun";
769
- node: "node";
770
- workers: "workers";
771
- }>;
772
- frontend: z.ZodArray<z.ZodEnum<{
773
- none: "none";
774
- "tanstack-router": "tanstack-router";
775
- "react-router": "react-router";
776
- "tanstack-start": "tanstack-start";
777
- next: "next";
778
- nuxt: "nuxt";
779
- "native-bare": "native-bare";
780
- "native-uniwind": "native-uniwind";
781
- "native-unistyles": "native-unistyles";
782
- svelte: "svelte";
783
- solid: "solid";
784
- astro: "astro";
785
- }>>;
786
- addons: z.ZodArray<z.ZodEnum<{
787
- none: "none";
788
- pwa: "pwa";
789
- tauri: "tauri";
790
- starlight: "starlight";
791
- biome: "biome";
792
- lefthook: "lefthook";
793
- husky: "husky";
794
- ruler: "ruler";
795
- mcp: "mcp";
796
- turborepo: "turborepo";
797
- fumadocs: "fumadocs";
798
- ultracite: "ultracite";
799
- oxlint: "oxlint";
800
- opentui: "opentui";
801
- wxt: "wxt";
802
- skills: "skills";
803
- }>>;
804
- examples: z.ZodArray<z.ZodEnum<{
805
- none: "none";
806
- todo: "todo";
807
- ai: "ai";
808
- }>>;
809
- auth: z.ZodEnum<{
810
- none: "none";
811
- "better-auth": "better-auth";
812
- clerk: "clerk";
813
- }>;
814
- payments: z.ZodEnum<{
815
- none: "none";
816
- polar: "polar";
817
- }>;
818
- git: z.ZodBoolean;
819
- packageManager: z.ZodEnum<{
820
- bun: "bun";
821
- npm: "npm";
822
- pnpm: "pnpm";
823
- }>;
824
- install: z.ZodBoolean;
825
- dbSetup: z.ZodEnum<{
826
- none: "none";
827
- turso: "turso";
828
- neon: "neon";
829
- "prisma-postgres": "prisma-postgres";
830
- planetscale: "planetscale";
831
- "mongodb-atlas": "mongodb-atlas";
832
- supabase: "supabase";
833
- d1: "d1";
834
- docker: "docker";
835
- }>;
836
- api: z.ZodEnum<{
837
- none: "none";
838
- trpc: "trpc";
839
- orpc: "orpc";
840
- }>;
841
- webDeploy: z.ZodEnum<{
842
- none: "none";
843
- cloudflare: "cloudflare";
844
- }>;
845
- serverDeploy: z.ZodEnum<{
846
- none: "none";
847
- cloudflare: "cloudflare";
848
- }>;
849
- }, z.core.$strip>;
850
- reproducibleCommand: z.ZodString;
851
- timeScaffolded: z.ZodString;
852
- elapsedTimeMs: z.ZodNumber;
853
- projectDirectory: z.ZodString;
854
- relativePath: z.ZodString;
855
- error: z.ZodOptional<z.ZodString>;
856
- }, z.core.$strip>;
857
- declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb")[];
858
- declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose")[];
859
- declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "convex" | "self")[];
860
- declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
861
- declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro")[];
862
- declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "skills")[];
863
- declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
864
- declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
865
- declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "d1" | "docker")[];
866
- declare const API_VALUES: ("none" | "trpc" | "orpc")[];
867
- declare const AUTH_VALUES: ("none" | "better-auth" | "clerk")[];
868
- declare const PAYMENTS_VALUES: ("none" | "polar")[];
869
- declare const WEB_DEPLOY_VALUES: ("none" | "cloudflare")[];
870
- declare const SERVER_DEPLOY_VALUES: ("none" | "cloudflare")[];
871
- declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
872
- declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
873
- //#endregion
874
- export { PaymentsSchema as A, WebDeploySchema as B, FrontendSchema as C, PACKAGE_MANAGER_VALUES as D, ORM_VALUES as E, SERVER_DEPLOY_VALUES as F, ServerDeploySchema as I, TEMPLATE_VALUES as L, ProjectNameSchema as M, RUNTIME_VALUES as N, PAYMENTS_VALUES as O, RuntimeSchema as P, TemplateSchema as R, FRONTEND_VALUES as S, ORMSchema as T, DatabaseSchema as _, AddInputSchema as a, EXAMPLES_VALUES as b, BACKEND_VALUES as c, BetterTStackConfigSchema as d, CLIInputSchema as f, DIRECTORY_CONFLICT_VALUES as g, DATABASE_VALUES as h, AUTH_VALUES as i, ProjectConfigSchema as j, PackageManagerSchema as k, BackendSchema as l, DATABASE_SETUP_VALUES as m, APISchema as n, AddonsSchema as o, CreateInputSchema as p, API_VALUES as r, AuthSchema as s, ADDONS_VALUES as t, BetterTStackConfigFileSchema as u, DatabaseSetupSchema as v, InitResultSchema as w, ExamplesSchema as x, DirectoryConflictSchema as y, WEB_DEPLOY_VALUES as z };
875
- //# sourceMappingURL=schemas-eP9p-fGC.d.mts.map