@better-fullstack/types 1.0.0-canary.c9b74dcc

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.
@@ -0,0 +1,2312 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/schemas.d.ts
4
+ declare const EcosystemSchema: z.ZodEnum<{
5
+ typescript: "typescript";
6
+ rust: "rust";
7
+ }>;
8
+ declare const DatabaseSchema: z.ZodEnum<{
9
+ none: "none";
10
+ sqlite: "sqlite";
11
+ postgres: "postgres";
12
+ mysql: "mysql";
13
+ mongodb: "mongodb";
14
+ }>;
15
+ declare const ORMSchema: z.ZodEnum<{
16
+ none: "none";
17
+ drizzle: "drizzle";
18
+ prisma: "prisma";
19
+ mongoose: "mongoose";
20
+ typeorm: "typeorm";
21
+ kysely: "kysely";
22
+ mikroorm: "mikroorm";
23
+ sequelize: "sequelize";
24
+ }>;
25
+ declare const BackendSchema: z.ZodEnum<{
26
+ none: "none";
27
+ hono: "hono";
28
+ express: "express";
29
+ fastify: "fastify";
30
+ elysia: "elysia";
31
+ fets: "fets";
32
+ nestjs: "nestjs";
33
+ adonisjs: "adonisjs";
34
+ nitro: "nitro";
35
+ encore: "encore";
36
+ convex: "convex";
37
+ self: "self";
38
+ }>;
39
+ declare const RuntimeSchema: z.ZodEnum<{
40
+ none: "none";
41
+ bun: "bun";
42
+ node: "node";
43
+ workers: "workers";
44
+ }>;
45
+ declare const FrontendSchema: z.ZodEnum<{
46
+ none: "none";
47
+ "tanstack-router": "tanstack-router";
48
+ "react-router": "react-router";
49
+ "tanstack-start": "tanstack-start";
50
+ next: "next";
51
+ nuxt: "nuxt";
52
+ "native-bare": "native-bare";
53
+ "native-uniwind": "native-uniwind";
54
+ "native-unistyles": "native-unistyles";
55
+ svelte: "svelte";
56
+ solid: "solid";
57
+ astro: "astro";
58
+ qwik: "qwik";
59
+ angular: "angular";
60
+ redwood: "redwood";
61
+ fresh: "fresh";
62
+ }>;
63
+ declare const AstroIntegrationSchema: z.ZodEnum<{
64
+ none: "none";
65
+ svelte: "svelte";
66
+ solid: "solid";
67
+ react: "react";
68
+ vue: "vue";
69
+ }>;
70
+ declare const AddonsSchema: z.ZodEnum<{
71
+ none: "none";
72
+ pwa: "pwa";
73
+ tauri: "tauri";
74
+ starlight: "starlight";
75
+ biome: "biome";
76
+ lefthook: "lefthook";
77
+ husky: "husky";
78
+ ruler: "ruler";
79
+ turborepo: "turborepo";
80
+ fumadocs: "fumadocs";
81
+ ultracite: "ultracite";
82
+ oxlint: "oxlint";
83
+ opentui: "opentui";
84
+ wxt: "wxt";
85
+ msw: "msw";
86
+ storybook: "storybook";
87
+ }>;
88
+ declare const ExamplesSchema: z.ZodEnum<{
89
+ none: "none";
90
+ todo: "todo";
91
+ ai: "ai";
92
+ }>;
93
+ declare const PackageManagerSchema: z.ZodEnum<{
94
+ bun: "bun";
95
+ npm: "npm";
96
+ pnpm: "pnpm";
97
+ }>;
98
+ declare const DatabaseSetupSchema: z.ZodEnum<{
99
+ none: "none";
100
+ turso: "turso";
101
+ neon: "neon";
102
+ "prisma-postgres": "prisma-postgres";
103
+ planetscale: "planetscale";
104
+ "mongodb-atlas": "mongodb-atlas";
105
+ supabase: "supabase";
106
+ d1: "d1";
107
+ docker: "docker";
108
+ }>;
109
+ declare const APISchema: z.ZodEnum<{
110
+ none: "none";
111
+ trpc: "trpc";
112
+ orpc: "orpc";
113
+ "ts-rest": "ts-rest";
114
+ garph: "garph";
115
+ }>;
116
+ declare const AuthSchema: z.ZodEnum<{
117
+ none: "none";
118
+ "better-auth": "better-auth";
119
+ clerk: "clerk";
120
+ nextauth: "nextauth";
121
+ }>;
122
+ declare const PaymentsSchema: z.ZodEnum<{
123
+ none: "none";
124
+ polar: "polar";
125
+ stripe: "stripe";
126
+ "lemon-squeezy": "lemon-squeezy";
127
+ paddle: "paddle";
128
+ dodo: "dodo";
129
+ }>;
130
+ declare const WebDeploySchema: z.ZodEnum<{
131
+ none: "none";
132
+ cloudflare: "cloudflare";
133
+ }>;
134
+ declare const ServerDeploySchema: z.ZodEnum<{
135
+ none: "none";
136
+ cloudflare: "cloudflare";
137
+ }>;
138
+ declare const AISchema: z.ZodEnum<{
139
+ none: "none";
140
+ "vercel-ai": "vercel-ai";
141
+ mastra: "mastra";
142
+ voltagent: "voltagent";
143
+ langgraph: "langgraph";
144
+ "openai-agents": "openai-agents";
145
+ "google-adk": "google-adk";
146
+ modelfusion: "modelfusion";
147
+ langchain: "langchain";
148
+ llamaindex: "llamaindex";
149
+ }>;
150
+ declare const EffectSchema: z.ZodEnum<{
151
+ none: "none";
152
+ effect: "effect";
153
+ "effect-full": "effect-full";
154
+ }>;
155
+ declare const StateManagementSchema: z.ZodEnum<{
156
+ none: "none";
157
+ zustand: "zustand";
158
+ jotai: "jotai";
159
+ nanostores: "nanostores";
160
+ "redux-toolkit": "redux-toolkit";
161
+ mobx: "mobx";
162
+ xstate: "xstate";
163
+ valtio: "valtio";
164
+ "tanstack-store": "tanstack-store";
165
+ "legend-state": "legend-state";
166
+ }>;
167
+ declare const FormsSchema: z.ZodEnum<{
168
+ none: "none";
169
+ "tanstack-form": "tanstack-form";
170
+ "react-hook-form": "react-hook-form";
171
+ formik: "formik";
172
+ "final-form": "final-form";
173
+ conform: "conform";
174
+ "modular-forms": "modular-forms";
175
+ }>;
176
+ declare const ValidationSchema: z.ZodEnum<{
177
+ none: "none";
178
+ zod: "zod";
179
+ valibot: "valibot";
180
+ arktype: "arktype";
181
+ typebox: "typebox";
182
+ typia: "typia";
183
+ runtypes: "runtypes";
184
+ "effect-schema": "effect-schema";
185
+ }>;
186
+ declare const TestingSchema: z.ZodEnum<{
187
+ none: "none";
188
+ vitest: "vitest";
189
+ playwright: "playwright";
190
+ "vitest-playwright": "vitest-playwright";
191
+ jest: "jest";
192
+ cypress: "cypress";
193
+ }>;
194
+ declare const EmailSchema: z.ZodEnum<{
195
+ none: "none";
196
+ "react-email": "react-email";
197
+ resend: "resend";
198
+ nodemailer: "nodemailer";
199
+ postmark: "postmark";
200
+ sendgrid: "sendgrid";
201
+ "aws-ses": "aws-ses";
202
+ mailgun: "mailgun";
203
+ plunk: "plunk";
204
+ }>;
205
+ declare const RealtimeSchema: z.ZodEnum<{
206
+ none: "none";
207
+ "socket-io": "socket-io";
208
+ partykit: "partykit";
209
+ ably: "ably";
210
+ pusher: "pusher";
211
+ liveblocks: "liveblocks";
212
+ yjs: "yjs";
213
+ }>;
214
+ declare const JobQueueSchema: z.ZodEnum<{
215
+ none: "none";
216
+ bullmq: "bullmq";
217
+ "trigger-dev": "trigger-dev";
218
+ inngest: "inngest";
219
+ temporal: "temporal";
220
+ }>;
221
+ declare const CMSSchema: z.ZodEnum<{
222
+ none: "none";
223
+ payload: "payload";
224
+ sanity: "sanity";
225
+ strapi: "strapi";
226
+ }>;
227
+ declare const CachingSchema: z.ZodEnum<{
228
+ none: "none";
229
+ "upstash-redis": "upstash-redis";
230
+ }>;
231
+ declare const AnimationSchema: z.ZodEnum<{
232
+ none: "none";
233
+ "framer-motion": "framer-motion";
234
+ gsap: "gsap";
235
+ "react-spring": "react-spring";
236
+ "auto-animate": "auto-animate";
237
+ lottie: "lottie";
238
+ }>;
239
+ declare const FileUploadSchema: z.ZodEnum<{
240
+ none: "none";
241
+ uploadthing: "uploadthing";
242
+ filepond: "filepond";
243
+ uppy: "uppy";
244
+ }>;
245
+ declare const LoggingSchema: z.ZodEnum<{
246
+ none: "none";
247
+ pino: "pino";
248
+ winston: "winston";
249
+ }>;
250
+ declare const ObservabilitySchema: z.ZodEnum<{
251
+ none: "none";
252
+ opentelemetry: "opentelemetry";
253
+ }>;
254
+ declare const RustWebFrameworkSchema: z.ZodEnum<{
255
+ none: "none";
256
+ axum: "axum";
257
+ "actix-web": "actix-web";
258
+ }>;
259
+ declare const RustFrontendSchema: z.ZodEnum<{
260
+ none: "none";
261
+ leptos: "leptos";
262
+ dioxus: "dioxus";
263
+ }>;
264
+ declare const RustOrmSchema: z.ZodEnum<{
265
+ none: "none";
266
+ "sea-orm": "sea-orm";
267
+ sqlx: "sqlx";
268
+ }>;
269
+ declare const RustApiSchema: z.ZodEnum<{
270
+ none: "none";
271
+ tonic: "tonic";
272
+ "async-graphql": "async-graphql";
273
+ }>;
274
+ declare const RustCliSchema: z.ZodEnum<{
275
+ none: "none";
276
+ clap: "clap";
277
+ ratatui: "ratatui";
278
+ }>;
279
+ declare const RustLibrariesSchema: z.ZodEnum<{
280
+ none: "none";
281
+ serde: "serde";
282
+ validator: "validator";
283
+ jsonwebtoken: "jsonwebtoken";
284
+ argon2: "argon2";
285
+ "tokio-test": "tokio-test";
286
+ mockall: "mockall";
287
+ }>;
288
+ declare const CSSFrameworkSchema: z.ZodEnum<{
289
+ none: "none";
290
+ tailwind: "tailwind";
291
+ scss: "scss";
292
+ less: "less";
293
+ "postcss-only": "postcss-only";
294
+ }>;
295
+ declare const UILibrarySchema: z.ZodEnum<{
296
+ none: "none";
297
+ "shadcn-ui": "shadcn-ui";
298
+ daisyui: "daisyui";
299
+ "radix-ui": "radix-ui";
300
+ "headless-ui": "headless-ui";
301
+ "park-ui": "park-ui";
302
+ "chakra-ui": "chakra-ui";
303
+ nextui: "nextui";
304
+ mantine: "mantine";
305
+ "base-ui": "base-ui";
306
+ "ark-ui": "ark-ui";
307
+ "react-aria": "react-aria";
308
+ }>;
309
+ declare const DirectoryConflictSchema: z.ZodEnum<{
310
+ merge: "merge";
311
+ overwrite: "overwrite";
312
+ increment: "increment";
313
+ error: "error";
314
+ }>;
315
+ declare const TemplateSchema: z.ZodEnum<{
316
+ none: "none";
317
+ mern: "mern";
318
+ pern: "pern";
319
+ t3: "t3";
320
+ uniwind: "uniwind";
321
+ }>;
322
+ declare const ProjectNameSchema: z.ZodString;
323
+ declare const CreateInputSchema: z.ZodObject<{
324
+ projectName: z.ZodOptional<z.ZodString>;
325
+ template: z.ZodOptional<z.ZodEnum<{
326
+ none: "none";
327
+ mern: "mern";
328
+ pern: "pern";
329
+ t3: "t3";
330
+ uniwind: "uniwind";
331
+ }>>;
332
+ yes: z.ZodOptional<z.ZodBoolean>;
333
+ yolo: z.ZodOptional<z.ZodBoolean>;
334
+ verbose: z.ZodOptional<z.ZodBoolean>;
335
+ ecosystem: z.ZodOptional<z.ZodEnum<{
336
+ typescript: "typescript";
337
+ rust: "rust";
338
+ }>>;
339
+ database: z.ZodOptional<z.ZodEnum<{
340
+ none: "none";
341
+ sqlite: "sqlite";
342
+ postgres: "postgres";
343
+ mysql: "mysql";
344
+ mongodb: "mongodb";
345
+ }>>;
346
+ orm: z.ZodOptional<z.ZodEnum<{
347
+ none: "none";
348
+ drizzle: "drizzle";
349
+ prisma: "prisma";
350
+ mongoose: "mongoose";
351
+ typeorm: "typeorm";
352
+ kysely: "kysely";
353
+ mikroorm: "mikroorm";
354
+ sequelize: "sequelize";
355
+ }>>;
356
+ auth: z.ZodOptional<z.ZodEnum<{
357
+ none: "none";
358
+ "better-auth": "better-auth";
359
+ clerk: "clerk";
360
+ nextauth: "nextauth";
361
+ }>>;
362
+ payments: z.ZodOptional<z.ZodEnum<{
363
+ none: "none";
364
+ polar: "polar";
365
+ stripe: "stripe";
366
+ "lemon-squeezy": "lemon-squeezy";
367
+ paddle: "paddle";
368
+ dodo: "dodo";
369
+ }>>;
370
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
371
+ none: "none";
372
+ "tanstack-router": "tanstack-router";
373
+ "react-router": "react-router";
374
+ "tanstack-start": "tanstack-start";
375
+ next: "next";
376
+ nuxt: "nuxt";
377
+ "native-bare": "native-bare";
378
+ "native-uniwind": "native-uniwind";
379
+ "native-unistyles": "native-unistyles";
380
+ svelte: "svelte";
381
+ solid: "solid";
382
+ astro: "astro";
383
+ qwik: "qwik";
384
+ angular: "angular";
385
+ redwood: "redwood";
386
+ fresh: "fresh";
387
+ }>>>;
388
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
389
+ none: "none";
390
+ pwa: "pwa";
391
+ tauri: "tauri";
392
+ starlight: "starlight";
393
+ biome: "biome";
394
+ lefthook: "lefthook";
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
+ msw: "msw";
404
+ storybook: "storybook";
405
+ }>>>;
406
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
407
+ none: "none";
408
+ todo: "todo";
409
+ ai: "ai";
410
+ }>>>;
411
+ git: z.ZodOptional<z.ZodBoolean>;
412
+ packageManager: z.ZodOptional<z.ZodEnum<{
413
+ bun: "bun";
414
+ npm: "npm";
415
+ pnpm: "pnpm";
416
+ }>>;
417
+ install: z.ZodOptional<z.ZodBoolean>;
418
+ dbSetup: z.ZodOptional<z.ZodEnum<{
419
+ none: "none";
420
+ turso: "turso";
421
+ neon: "neon";
422
+ "prisma-postgres": "prisma-postgres";
423
+ planetscale: "planetscale";
424
+ "mongodb-atlas": "mongodb-atlas";
425
+ supabase: "supabase";
426
+ d1: "d1";
427
+ docker: "docker";
428
+ }>>;
429
+ backend: z.ZodOptional<z.ZodEnum<{
430
+ none: "none";
431
+ hono: "hono";
432
+ express: "express";
433
+ fastify: "fastify";
434
+ elysia: "elysia";
435
+ fets: "fets";
436
+ nestjs: "nestjs";
437
+ adonisjs: "adonisjs";
438
+ nitro: "nitro";
439
+ encore: "encore";
440
+ convex: "convex";
441
+ self: "self";
442
+ }>>;
443
+ runtime: z.ZodOptional<z.ZodEnum<{
444
+ none: "none";
445
+ bun: "bun";
446
+ node: "node";
447
+ workers: "workers";
448
+ }>>;
449
+ api: z.ZodOptional<z.ZodEnum<{
450
+ none: "none";
451
+ trpc: "trpc";
452
+ orpc: "orpc";
453
+ "ts-rest": "ts-rest";
454
+ garph: "garph";
455
+ }>>;
456
+ webDeploy: z.ZodOptional<z.ZodEnum<{
457
+ none: "none";
458
+ cloudflare: "cloudflare";
459
+ }>>;
460
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
461
+ none: "none";
462
+ cloudflare: "cloudflare";
463
+ }>>;
464
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
465
+ merge: "merge";
466
+ overwrite: "overwrite";
467
+ increment: "increment";
468
+ error: "error";
469
+ }>>;
470
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
471
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
472
+ manualDb: z.ZodOptional<z.ZodBoolean>;
473
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
474
+ none: "none";
475
+ svelte: "svelte";
476
+ solid: "solid";
477
+ react: "react";
478
+ vue: "vue";
479
+ }>>;
480
+ ai: z.ZodOptional<z.ZodEnum<{
481
+ none: "none";
482
+ "vercel-ai": "vercel-ai";
483
+ mastra: "mastra";
484
+ voltagent: "voltagent";
485
+ langgraph: "langgraph";
486
+ "openai-agents": "openai-agents";
487
+ "google-adk": "google-adk";
488
+ modelfusion: "modelfusion";
489
+ langchain: "langchain";
490
+ llamaindex: "llamaindex";
491
+ }>>;
492
+ effect: z.ZodOptional<z.ZodEnum<{
493
+ none: "none";
494
+ effect: "effect";
495
+ "effect-full": "effect-full";
496
+ }>>;
497
+ stateManagement: z.ZodOptional<z.ZodEnum<{
498
+ none: "none";
499
+ zustand: "zustand";
500
+ jotai: "jotai";
501
+ nanostores: "nanostores";
502
+ "redux-toolkit": "redux-toolkit";
503
+ mobx: "mobx";
504
+ xstate: "xstate";
505
+ valtio: "valtio";
506
+ "tanstack-store": "tanstack-store";
507
+ "legend-state": "legend-state";
508
+ }>>;
509
+ forms: z.ZodOptional<z.ZodEnum<{
510
+ none: "none";
511
+ "tanstack-form": "tanstack-form";
512
+ "react-hook-form": "react-hook-form";
513
+ formik: "formik";
514
+ "final-form": "final-form";
515
+ conform: "conform";
516
+ "modular-forms": "modular-forms";
517
+ }>>;
518
+ testing: z.ZodOptional<z.ZodEnum<{
519
+ none: "none";
520
+ vitest: "vitest";
521
+ playwright: "playwright";
522
+ "vitest-playwright": "vitest-playwright";
523
+ jest: "jest";
524
+ cypress: "cypress";
525
+ }>>;
526
+ email: z.ZodOptional<z.ZodEnum<{
527
+ none: "none";
528
+ "react-email": "react-email";
529
+ resend: "resend";
530
+ nodemailer: "nodemailer";
531
+ postmark: "postmark";
532
+ sendgrid: "sendgrid";
533
+ "aws-ses": "aws-ses";
534
+ mailgun: "mailgun";
535
+ plunk: "plunk";
536
+ }>>;
537
+ cssFramework: z.ZodOptional<z.ZodEnum<{
538
+ none: "none";
539
+ tailwind: "tailwind";
540
+ scss: "scss";
541
+ less: "less";
542
+ "postcss-only": "postcss-only";
543
+ }>>;
544
+ uiLibrary: z.ZodOptional<z.ZodEnum<{
545
+ none: "none";
546
+ "shadcn-ui": "shadcn-ui";
547
+ daisyui: "daisyui";
548
+ "radix-ui": "radix-ui";
549
+ "headless-ui": "headless-ui";
550
+ "park-ui": "park-ui";
551
+ "chakra-ui": "chakra-ui";
552
+ nextui: "nextui";
553
+ mantine: "mantine";
554
+ "base-ui": "base-ui";
555
+ "ark-ui": "ark-ui";
556
+ "react-aria": "react-aria";
557
+ }>>;
558
+ validation: z.ZodOptional<z.ZodEnum<{
559
+ none: "none";
560
+ zod: "zod";
561
+ valibot: "valibot";
562
+ arktype: "arktype";
563
+ typebox: "typebox";
564
+ typia: "typia";
565
+ runtypes: "runtypes";
566
+ "effect-schema": "effect-schema";
567
+ }>>;
568
+ realtime: z.ZodOptional<z.ZodEnum<{
569
+ none: "none";
570
+ "socket-io": "socket-io";
571
+ partykit: "partykit";
572
+ ably: "ably";
573
+ pusher: "pusher";
574
+ liveblocks: "liveblocks";
575
+ yjs: "yjs";
576
+ }>>;
577
+ jobQueue: z.ZodOptional<z.ZodEnum<{
578
+ none: "none";
579
+ bullmq: "bullmq";
580
+ "trigger-dev": "trigger-dev";
581
+ inngest: "inngest";
582
+ temporal: "temporal";
583
+ }>>;
584
+ animation: z.ZodOptional<z.ZodEnum<{
585
+ none: "none";
586
+ "framer-motion": "framer-motion";
587
+ gsap: "gsap";
588
+ "react-spring": "react-spring";
589
+ "auto-animate": "auto-animate";
590
+ lottie: "lottie";
591
+ }>>;
592
+ fileUpload: z.ZodOptional<z.ZodEnum<{
593
+ none: "none";
594
+ uploadthing: "uploadthing";
595
+ filepond: "filepond";
596
+ uppy: "uppy";
597
+ }>>;
598
+ logging: z.ZodOptional<z.ZodEnum<{
599
+ none: "none";
600
+ pino: "pino";
601
+ winston: "winston";
602
+ }>>;
603
+ observability: z.ZodOptional<z.ZodEnum<{
604
+ none: "none";
605
+ opentelemetry: "opentelemetry";
606
+ }>>;
607
+ cms: z.ZodOptional<z.ZodEnum<{
608
+ none: "none";
609
+ payload: "payload";
610
+ sanity: "sanity";
611
+ strapi: "strapi";
612
+ }>>;
613
+ caching: z.ZodOptional<z.ZodEnum<{
614
+ none: "none";
615
+ "upstash-redis": "upstash-redis";
616
+ }>>;
617
+ rustWebFramework: z.ZodOptional<z.ZodEnum<{
618
+ none: "none";
619
+ axum: "axum";
620
+ "actix-web": "actix-web";
621
+ }>>;
622
+ rustFrontend: z.ZodOptional<z.ZodEnum<{
623
+ none: "none";
624
+ leptos: "leptos";
625
+ dioxus: "dioxus";
626
+ }>>;
627
+ rustOrm: z.ZodOptional<z.ZodEnum<{
628
+ none: "none";
629
+ "sea-orm": "sea-orm";
630
+ sqlx: "sqlx";
631
+ }>>;
632
+ rustApi: z.ZodOptional<z.ZodEnum<{
633
+ none: "none";
634
+ tonic: "tonic";
635
+ "async-graphql": "async-graphql";
636
+ }>>;
637
+ rustCli: z.ZodOptional<z.ZodEnum<{
638
+ none: "none";
639
+ clap: "clap";
640
+ ratatui: "ratatui";
641
+ }>>;
642
+ rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
643
+ none: "none";
644
+ serde: "serde";
645
+ validator: "validator";
646
+ jsonwebtoken: "jsonwebtoken";
647
+ argon2: "argon2";
648
+ "tokio-test": "tokio-test";
649
+ mockall: "mockall";
650
+ }>>>;
651
+ }, z.core.$strip>;
652
+ declare const AddInputSchema: z.ZodObject<{
653
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
654
+ none: "none";
655
+ pwa: "pwa";
656
+ tauri: "tauri";
657
+ starlight: "starlight";
658
+ biome: "biome";
659
+ lefthook: "lefthook";
660
+ husky: "husky";
661
+ ruler: "ruler";
662
+ turborepo: "turborepo";
663
+ fumadocs: "fumadocs";
664
+ ultracite: "ultracite";
665
+ oxlint: "oxlint";
666
+ opentui: "opentui";
667
+ wxt: "wxt";
668
+ msw: "msw";
669
+ storybook: "storybook";
670
+ }>>>;
671
+ webDeploy: z.ZodOptional<z.ZodEnum<{
672
+ none: "none";
673
+ cloudflare: "cloudflare";
674
+ }>>;
675
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
676
+ none: "none";
677
+ cloudflare: "cloudflare";
678
+ }>>;
679
+ projectDir: z.ZodOptional<z.ZodString>;
680
+ install: z.ZodOptional<z.ZodBoolean>;
681
+ packageManager: z.ZodOptional<z.ZodEnum<{
682
+ bun: "bun";
683
+ npm: "npm";
684
+ pnpm: "pnpm";
685
+ }>>;
686
+ }, z.core.$strip>;
687
+ declare const CLIInputSchema: z.ZodObject<{
688
+ projectName: z.ZodOptional<z.ZodString>;
689
+ template: z.ZodOptional<z.ZodEnum<{
690
+ none: "none";
691
+ mern: "mern";
692
+ pern: "pern";
693
+ t3: "t3";
694
+ uniwind: "uniwind";
695
+ }>>;
696
+ yes: z.ZodOptional<z.ZodBoolean>;
697
+ yolo: z.ZodOptional<z.ZodBoolean>;
698
+ verbose: z.ZodOptional<z.ZodBoolean>;
699
+ ecosystem: z.ZodOptional<z.ZodEnum<{
700
+ typescript: "typescript";
701
+ rust: "rust";
702
+ }>>;
703
+ database: z.ZodOptional<z.ZodEnum<{
704
+ none: "none";
705
+ sqlite: "sqlite";
706
+ postgres: "postgres";
707
+ mysql: "mysql";
708
+ mongodb: "mongodb";
709
+ }>>;
710
+ orm: z.ZodOptional<z.ZodEnum<{
711
+ none: "none";
712
+ drizzle: "drizzle";
713
+ prisma: "prisma";
714
+ mongoose: "mongoose";
715
+ typeorm: "typeorm";
716
+ kysely: "kysely";
717
+ mikroorm: "mikroorm";
718
+ sequelize: "sequelize";
719
+ }>>;
720
+ auth: z.ZodOptional<z.ZodEnum<{
721
+ none: "none";
722
+ "better-auth": "better-auth";
723
+ clerk: "clerk";
724
+ nextauth: "nextauth";
725
+ }>>;
726
+ payments: z.ZodOptional<z.ZodEnum<{
727
+ none: "none";
728
+ polar: "polar";
729
+ stripe: "stripe";
730
+ "lemon-squeezy": "lemon-squeezy";
731
+ paddle: "paddle";
732
+ dodo: "dodo";
733
+ }>>;
734
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
735
+ none: "none";
736
+ "tanstack-router": "tanstack-router";
737
+ "react-router": "react-router";
738
+ "tanstack-start": "tanstack-start";
739
+ next: "next";
740
+ nuxt: "nuxt";
741
+ "native-bare": "native-bare";
742
+ "native-uniwind": "native-uniwind";
743
+ "native-unistyles": "native-unistyles";
744
+ svelte: "svelte";
745
+ solid: "solid";
746
+ astro: "astro";
747
+ qwik: "qwik";
748
+ angular: "angular";
749
+ redwood: "redwood";
750
+ fresh: "fresh";
751
+ }>>>;
752
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
753
+ none: "none";
754
+ pwa: "pwa";
755
+ tauri: "tauri";
756
+ starlight: "starlight";
757
+ biome: "biome";
758
+ lefthook: "lefthook";
759
+ husky: "husky";
760
+ ruler: "ruler";
761
+ turborepo: "turborepo";
762
+ fumadocs: "fumadocs";
763
+ ultracite: "ultracite";
764
+ oxlint: "oxlint";
765
+ opentui: "opentui";
766
+ wxt: "wxt";
767
+ msw: "msw";
768
+ storybook: "storybook";
769
+ }>>>;
770
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
771
+ none: "none";
772
+ todo: "todo";
773
+ ai: "ai";
774
+ }>>>;
775
+ git: z.ZodOptional<z.ZodBoolean>;
776
+ packageManager: z.ZodOptional<z.ZodEnum<{
777
+ bun: "bun";
778
+ npm: "npm";
779
+ pnpm: "pnpm";
780
+ }>>;
781
+ install: z.ZodOptional<z.ZodBoolean>;
782
+ dbSetup: z.ZodOptional<z.ZodEnum<{
783
+ none: "none";
784
+ turso: "turso";
785
+ neon: "neon";
786
+ "prisma-postgres": "prisma-postgres";
787
+ planetscale: "planetscale";
788
+ "mongodb-atlas": "mongodb-atlas";
789
+ supabase: "supabase";
790
+ d1: "d1";
791
+ docker: "docker";
792
+ }>>;
793
+ backend: z.ZodOptional<z.ZodEnum<{
794
+ none: "none";
795
+ hono: "hono";
796
+ express: "express";
797
+ fastify: "fastify";
798
+ elysia: "elysia";
799
+ fets: "fets";
800
+ nestjs: "nestjs";
801
+ adonisjs: "adonisjs";
802
+ nitro: "nitro";
803
+ encore: "encore";
804
+ convex: "convex";
805
+ self: "self";
806
+ }>>;
807
+ runtime: z.ZodOptional<z.ZodEnum<{
808
+ none: "none";
809
+ bun: "bun";
810
+ node: "node";
811
+ workers: "workers";
812
+ }>>;
813
+ api: z.ZodOptional<z.ZodEnum<{
814
+ none: "none";
815
+ trpc: "trpc";
816
+ orpc: "orpc";
817
+ "ts-rest": "ts-rest";
818
+ garph: "garph";
819
+ }>>;
820
+ webDeploy: z.ZodOptional<z.ZodEnum<{
821
+ none: "none";
822
+ cloudflare: "cloudflare";
823
+ }>>;
824
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
825
+ none: "none";
826
+ cloudflare: "cloudflare";
827
+ }>>;
828
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
829
+ merge: "merge";
830
+ overwrite: "overwrite";
831
+ increment: "increment";
832
+ error: "error";
833
+ }>>;
834
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
835
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
836
+ manualDb: z.ZodOptional<z.ZodBoolean>;
837
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
838
+ none: "none";
839
+ svelte: "svelte";
840
+ solid: "solid";
841
+ react: "react";
842
+ vue: "vue";
843
+ }>>;
844
+ ai: z.ZodOptional<z.ZodEnum<{
845
+ none: "none";
846
+ "vercel-ai": "vercel-ai";
847
+ mastra: "mastra";
848
+ voltagent: "voltagent";
849
+ langgraph: "langgraph";
850
+ "openai-agents": "openai-agents";
851
+ "google-adk": "google-adk";
852
+ modelfusion: "modelfusion";
853
+ langchain: "langchain";
854
+ llamaindex: "llamaindex";
855
+ }>>;
856
+ effect: z.ZodOptional<z.ZodEnum<{
857
+ none: "none";
858
+ effect: "effect";
859
+ "effect-full": "effect-full";
860
+ }>>;
861
+ stateManagement: z.ZodOptional<z.ZodEnum<{
862
+ none: "none";
863
+ zustand: "zustand";
864
+ jotai: "jotai";
865
+ nanostores: "nanostores";
866
+ "redux-toolkit": "redux-toolkit";
867
+ mobx: "mobx";
868
+ xstate: "xstate";
869
+ valtio: "valtio";
870
+ "tanstack-store": "tanstack-store";
871
+ "legend-state": "legend-state";
872
+ }>>;
873
+ forms: z.ZodOptional<z.ZodEnum<{
874
+ none: "none";
875
+ "tanstack-form": "tanstack-form";
876
+ "react-hook-form": "react-hook-form";
877
+ formik: "formik";
878
+ "final-form": "final-form";
879
+ conform: "conform";
880
+ "modular-forms": "modular-forms";
881
+ }>>;
882
+ testing: z.ZodOptional<z.ZodEnum<{
883
+ none: "none";
884
+ vitest: "vitest";
885
+ playwright: "playwright";
886
+ "vitest-playwright": "vitest-playwright";
887
+ jest: "jest";
888
+ cypress: "cypress";
889
+ }>>;
890
+ email: z.ZodOptional<z.ZodEnum<{
891
+ none: "none";
892
+ "react-email": "react-email";
893
+ resend: "resend";
894
+ nodemailer: "nodemailer";
895
+ postmark: "postmark";
896
+ sendgrid: "sendgrid";
897
+ "aws-ses": "aws-ses";
898
+ mailgun: "mailgun";
899
+ plunk: "plunk";
900
+ }>>;
901
+ cssFramework: z.ZodOptional<z.ZodEnum<{
902
+ none: "none";
903
+ tailwind: "tailwind";
904
+ scss: "scss";
905
+ less: "less";
906
+ "postcss-only": "postcss-only";
907
+ }>>;
908
+ uiLibrary: z.ZodOptional<z.ZodEnum<{
909
+ none: "none";
910
+ "shadcn-ui": "shadcn-ui";
911
+ daisyui: "daisyui";
912
+ "radix-ui": "radix-ui";
913
+ "headless-ui": "headless-ui";
914
+ "park-ui": "park-ui";
915
+ "chakra-ui": "chakra-ui";
916
+ nextui: "nextui";
917
+ mantine: "mantine";
918
+ "base-ui": "base-ui";
919
+ "ark-ui": "ark-ui";
920
+ "react-aria": "react-aria";
921
+ }>>;
922
+ validation: z.ZodOptional<z.ZodEnum<{
923
+ none: "none";
924
+ zod: "zod";
925
+ valibot: "valibot";
926
+ arktype: "arktype";
927
+ typebox: "typebox";
928
+ typia: "typia";
929
+ runtypes: "runtypes";
930
+ "effect-schema": "effect-schema";
931
+ }>>;
932
+ realtime: z.ZodOptional<z.ZodEnum<{
933
+ none: "none";
934
+ "socket-io": "socket-io";
935
+ partykit: "partykit";
936
+ ably: "ably";
937
+ pusher: "pusher";
938
+ liveblocks: "liveblocks";
939
+ yjs: "yjs";
940
+ }>>;
941
+ jobQueue: z.ZodOptional<z.ZodEnum<{
942
+ none: "none";
943
+ bullmq: "bullmq";
944
+ "trigger-dev": "trigger-dev";
945
+ inngest: "inngest";
946
+ temporal: "temporal";
947
+ }>>;
948
+ animation: z.ZodOptional<z.ZodEnum<{
949
+ none: "none";
950
+ "framer-motion": "framer-motion";
951
+ gsap: "gsap";
952
+ "react-spring": "react-spring";
953
+ "auto-animate": "auto-animate";
954
+ lottie: "lottie";
955
+ }>>;
956
+ fileUpload: z.ZodOptional<z.ZodEnum<{
957
+ none: "none";
958
+ uploadthing: "uploadthing";
959
+ filepond: "filepond";
960
+ uppy: "uppy";
961
+ }>>;
962
+ logging: z.ZodOptional<z.ZodEnum<{
963
+ none: "none";
964
+ pino: "pino";
965
+ winston: "winston";
966
+ }>>;
967
+ observability: z.ZodOptional<z.ZodEnum<{
968
+ none: "none";
969
+ opentelemetry: "opentelemetry";
970
+ }>>;
971
+ cms: z.ZodOptional<z.ZodEnum<{
972
+ none: "none";
973
+ payload: "payload";
974
+ sanity: "sanity";
975
+ strapi: "strapi";
976
+ }>>;
977
+ caching: z.ZodOptional<z.ZodEnum<{
978
+ none: "none";
979
+ "upstash-redis": "upstash-redis";
980
+ }>>;
981
+ rustWebFramework: z.ZodOptional<z.ZodEnum<{
982
+ none: "none";
983
+ axum: "axum";
984
+ "actix-web": "actix-web";
985
+ }>>;
986
+ rustFrontend: z.ZodOptional<z.ZodEnum<{
987
+ none: "none";
988
+ leptos: "leptos";
989
+ dioxus: "dioxus";
990
+ }>>;
991
+ rustOrm: z.ZodOptional<z.ZodEnum<{
992
+ none: "none";
993
+ "sea-orm": "sea-orm";
994
+ sqlx: "sqlx";
995
+ }>>;
996
+ rustApi: z.ZodOptional<z.ZodEnum<{
997
+ none: "none";
998
+ tonic: "tonic";
999
+ "async-graphql": "async-graphql";
1000
+ }>>;
1001
+ rustCli: z.ZodOptional<z.ZodEnum<{
1002
+ none: "none";
1003
+ clap: "clap";
1004
+ ratatui: "ratatui";
1005
+ }>>;
1006
+ rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1007
+ none: "none";
1008
+ serde: "serde";
1009
+ validator: "validator";
1010
+ jsonwebtoken: "jsonwebtoken";
1011
+ argon2: "argon2";
1012
+ "tokio-test": "tokio-test";
1013
+ mockall: "mockall";
1014
+ }>>>;
1015
+ projectDirectory: z.ZodOptional<z.ZodString>;
1016
+ }, z.core.$strip>;
1017
+ declare const ProjectConfigSchema: z.ZodObject<{
1018
+ projectName: z.ZodString;
1019
+ projectDir: z.ZodString;
1020
+ relativePath: z.ZodString;
1021
+ ecosystem: z.ZodEnum<{
1022
+ typescript: "typescript";
1023
+ rust: "rust";
1024
+ }>;
1025
+ database: z.ZodEnum<{
1026
+ none: "none";
1027
+ sqlite: "sqlite";
1028
+ postgres: "postgres";
1029
+ mysql: "mysql";
1030
+ mongodb: "mongodb";
1031
+ }>;
1032
+ orm: z.ZodEnum<{
1033
+ none: "none";
1034
+ drizzle: "drizzle";
1035
+ prisma: "prisma";
1036
+ mongoose: "mongoose";
1037
+ typeorm: "typeorm";
1038
+ kysely: "kysely";
1039
+ mikroorm: "mikroorm";
1040
+ sequelize: "sequelize";
1041
+ }>;
1042
+ backend: z.ZodEnum<{
1043
+ none: "none";
1044
+ hono: "hono";
1045
+ express: "express";
1046
+ fastify: "fastify";
1047
+ elysia: "elysia";
1048
+ fets: "fets";
1049
+ nestjs: "nestjs";
1050
+ adonisjs: "adonisjs";
1051
+ nitro: "nitro";
1052
+ encore: "encore";
1053
+ convex: "convex";
1054
+ self: "self";
1055
+ }>;
1056
+ runtime: z.ZodEnum<{
1057
+ none: "none";
1058
+ bun: "bun";
1059
+ node: "node";
1060
+ workers: "workers";
1061
+ }>;
1062
+ frontend: z.ZodArray<z.ZodEnum<{
1063
+ none: "none";
1064
+ "tanstack-router": "tanstack-router";
1065
+ "react-router": "react-router";
1066
+ "tanstack-start": "tanstack-start";
1067
+ next: "next";
1068
+ nuxt: "nuxt";
1069
+ "native-bare": "native-bare";
1070
+ "native-uniwind": "native-uniwind";
1071
+ "native-unistyles": "native-unistyles";
1072
+ svelte: "svelte";
1073
+ solid: "solid";
1074
+ astro: "astro";
1075
+ qwik: "qwik";
1076
+ angular: "angular";
1077
+ redwood: "redwood";
1078
+ fresh: "fresh";
1079
+ }>>;
1080
+ addons: z.ZodArray<z.ZodEnum<{
1081
+ none: "none";
1082
+ pwa: "pwa";
1083
+ tauri: "tauri";
1084
+ starlight: "starlight";
1085
+ biome: "biome";
1086
+ lefthook: "lefthook";
1087
+ husky: "husky";
1088
+ ruler: "ruler";
1089
+ turborepo: "turborepo";
1090
+ fumadocs: "fumadocs";
1091
+ ultracite: "ultracite";
1092
+ oxlint: "oxlint";
1093
+ opentui: "opentui";
1094
+ wxt: "wxt";
1095
+ msw: "msw";
1096
+ storybook: "storybook";
1097
+ }>>;
1098
+ examples: z.ZodArray<z.ZodEnum<{
1099
+ none: "none";
1100
+ todo: "todo";
1101
+ ai: "ai";
1102
+ }>>;
1103
+ auth: z.ZodEnum<{
1104
+ none: "none";
1105
+ "better-auth": "better-auth";
1106
+ clerk: "clerk";
1107
+ nextauth: "nextauth";
1108
+ }>;
1109
+ payments: z.ZodEnum<{
1110
+ none: "none";
1111
+ polar: "polar";
1112
+ stripe: "stripe";
1113
+ "lemon-squeezy": "lemon-squeezy";
1114
+ paddle: "paddle";
1115
+ dodo: "dodo";
1116
+ }>;
1117
+ git: z.ZodBoolean;
1118
+ packageManager: z.ZodEnum<{
1119
+ bun: "bun";
1120
+ npm: "npm";
1121
+ pnpm: "pnpm";
1122
+ }>;
1123
+ install: z.ZodBoolean;
1124
+ dbSetup: z.ZodEnum<{
1125
+ none: "none";
1126
+ turso: "turso";
1127
+ neon: "neon";
1128
+ "prisma-postgres": "prisma-postgres";
1129
+ planetscale: "planetscale";
1130
+ "mongodb-atlas": "mongodb-atlas";
1131
+ supabase: "supabase";
1132
+ d1: "d1";
1133
+ docker: "docker";
1134
+ }>;
1135
+ api: z.ZodEnum<{
1136
+ none: "none";
1137
+ trpc: "trpc";
1138
+ orpc: "orpc";
1139
+ "ts-rest": "ts-rest";
1140
+ garph: "garph";
1141
+ }>;
1142
+ webDeploy: z.ZodEnum<{
1143
+ none: "none";
1144
+ cloudflare: "cloudflare";
1145
+ }>;
1146
+ serverDeploy: z.ZodEnum<{
1147
+ none: "none";
1148
+ cloudflare: "cloudflare";
1149
+ }>;
1150
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1151
+ none: "none";
1152
+ svelte: "svelte";
1153
+ solid: "solid";
1154
+ react: "react";
1155
+ vue: "vue";
1156
+ }>>;
1157
+ ai: z.ZodEnum<{
1158
+ none: "none";
1159
+ "vercel-ai": "vercel-ai";
1160
+ mastra: "mastra";
1161
+ voltagent: "voltagent";
1162
+ langgraph: "langgraph";
1163
+ "openai-agents": "openai-agents";
1164
+ "google-adk": "google-adk";
1165
+ modelfusion: "modelfusion";
1166
+ langchain: "langchain";
1167
+ llamaindex: "llamaindex";
1168
+ }>;
1169
+ effect: z.ZodEnum<{
1170
+ none: "none";
1171
+ effect: "effect";
1172
+ "effect-full": "effect-full";
1173
+ }>;
1174
+ stateManagement: z.ZodEnum<{
1175
+ none: "none";
1176
+ zustand: "zustand";
1177
+ jotai: "jotai";
1178
+ nanostores: "nanostores";
1179
+ "redux-toolkit": "redux-toolkit";
1180
+ mobx: "mobx";
1181
+ xstate: "xstate";
1182
+ valtio: "valtio";
1183
+ "tanstack-store": "tanstack-store";
1184
+ "legend-state": "legend-state";
1185
+ }>;
1186
+ forms: z.ZodEnum<{
1187
+ none: "none";
1188
+ "tanstack-form": "tanstack-form";
1189
+ "react-hook-form": "react-hook-form";
1190
+ formik: "formik";
1191
+ "final-form": "final-form";
1192
+ conform: "conform";
1193
+ "modular-forms": "modular-forms";
1194
+ }>;
1195
+ testing: z.ZodEnum<{
1196
+ none: "none";
1197
+ vitest: "vitest";
1198
+ playwright: "playwright";
1199
+ "vitest-playwright": "vitest-playwright";
1200
+ jest: "jest";
1201
+ cypress: "cypress";
1202
+ }>;
1203
+ email: z.ZodEnum<{
1204
+ none: "none";
1205
+ "react-email": "react-email";
1206
+ resend: "resend";
1207
+ nodemailer: "nodemailer";
1208
+ postmark: "postmark";
1209
+ sendgrid: "sendgrid";
1210
+ "aws-ses": "aws-ses";
1211
+ mailgun: "mailgun";
1212
+ plunk: "plunk";
1213
+ }>;
1214
+ cssFramework: z.ZodEnum<{
1215
+ none: "none";
1216
+ tailwind: "tailwind";
1217
+ scss: "scss";
1218
+ less: "less";
1219
+ "postcss-only": "postcss-only";
1220
+ }>;
1221
+ uiLibrary: z.ZodEnum<{
1222
+ none: "none";
1223
+ "shadcn-ui": "shadcn-ui";
1224
+ daisyui: "daisyui";
1225
+ "radix-ui": "radix-ui";
1226
+ "headless-ui": "headless-ui";
1227
+ "park-ui": "park-ui";
1228
+ "chakra-ui": "chakra-ui";
1229
+ nextui: "nextui";
1230
+ mantine: "mantine";
1231
+ "base-ui": "base-ui";
1232
+ "ark-ui": "ark-ui";
1233
+ "react-aria": "react-aria";
1234
+ }>;
1235
+ validation: z.ZodEnum<{
1236
+ none: "none";
1237
+ zod: "zod";
1238
+ valibot: "valibot";
1239
+ arktype: "arktype";
1240
+ typebox: "typebox";
1241
+ typia: "typia";
1242
+ runtypes: "runtypes";
1243
+ "effect-schema": "effect-schema";
1244
+ }>;
1245
+ realtime: z.ZodEnum<{
1246
+ none: "none";
1247
+ "socket-io": "socket-io";
1248
+ partykit: "partykit";
1249
+ ably: "ably";
1250
+ pusher: "pusher";
1251
+ liveblocks: "liveblocks";
1252
+ yjs: "yjs";
1253
+ }>;
1254
+ jobQueue: z.ZodEnum<{
1255
+ none: "none";
1256
+ bullmq: "bullmq";
1257
+ "trigger-dev": "trigger-dev";
1258
+ inngest: "inngest";
1259
+ temporal: "temporal";
1260
+ }>;
1261
+ animation: z.ZodEnum<{
1262
+ none: "none";
1263
+ "framer-motion": "framer-motion";
1264
+ gsap: "gsap";
1265
+ "react-spring": "react-spring";
1266
+ "auto-animate": "auto-animate";
1267
+ lottie: "lottie";
1268
+ }>;
1269
+ fileUpload: z.ZodEnum<{
1270
+ none: "none";
1271
+ uploadthing: "uploadthing";
1272
+ filepond: "filepond";
1273
+ uppy: "uppy";
1274
+ }>;
1275
+ logging: z.ZodEnum<{
1276
+ none: "none";
1277
+ pino: "pino";
1278
+ winston: "winston";
1279
+ }>;
1280
+ observability: z.ZodEnum<{
1281
+ none: "none";
1282
+ opentelemetry: "opentelemetry";
1283
+ }>;
1284
+ cms: z.ZodEnum<{
1285
+ none: "none";
1286
+ payload: "payload";
1287
+ sanity: "sanity";
1288
+ strapi: "strapi";
1289
+ }>;
1290
+ caching: z.ZodEnum<{
1291
+ none: "none";
1292
+ "upstash-redis": "upstash-redis";
1293
+ }>;
1294
+ rustWebFramework: z.ZodEnum<{
1295
+ none: "none";
1296
+ axum: "axum";
1297
+ "actix-web": "actix-web";
1298
+ }>;
1299
+ rustFrontend: z.ZodEnum<{
1300
+ none: "none";
1301
+ leptos: "leptos";
1302
+ dioxus: "dioxus";
1303
+ }>;
1304
+ rustOrm: z.ZodEnum<{
1305
+ none: "none";
1306
+ "sea-orm": "sea-orm";
1307
+ sqlx: "sqlx";
1308
+ }>;
1309
+ rustApi: z.ZodEnum<{
1310
+ none: "none";
1311
+ tonic: "tonic";
1312
+ "async-graphql": "async-graphql";
1313
+ }>;
1314
+ rustCli: z.ZodEnum<{
1315
+ none: "none";
1316
+ clap: "clap";
1317
+ ratatui: "ratatui";
1318
+ }>;
1319
+ rustLibraries: z.ZodArray<z.ZodEnum<{
1320
+ none: "none";
1321
+ serde: "serde";
1322
+ validator: "validator";
1323
+ jsonwebtoken: "jsonwebtoken";
1324
+ argon2: "argon2";
1325
+ "tokio-test": "tokio-test";
1326
+ mockall: "mockall";
1327
+ }>>;
1328
+ }, z.core.$strip>;
1329
+ declare const BetterTStackConfigSchema: z.ZodObject<{
1330
+ version: z.ZodString;
1331
+ createdAt: z.ZodString;
1332
+ ecosystem: z.ZodEnum<{
1333
+ typescript: "typescript";
1334
+ rust: "rust";
1335
+ }>;
1336
+ database: z.ZodEnum<{
1337
+ none: "none";
1338
+ sqlite: "sqlite";
1339
+ postgres: "postgres";
1340
+ mysql: "mysql";
1341
+ mongodb: "mongodb";
1342
+ }>;
1343
+ orm: z.ZodEnum<{
1344
+ none: "none";
1345
+ drizzle: "drizzle";
1346
+ prisma: "prisma";
1347
+ mongoose: "mongoose";
1348
+ typeorm: "typeorm";
1349
+ kysely: "kysely";
1350
+ mikroorm: "mikroorm";
1351
+ sequelize: "sequelize";
1352
+ }>;
1353
+ backend: z.ZodEnum<{
1354
+ none: "none";
1355
+ hono: "hono";
1356
+ express: "express";
1357
+ fastify: "fastify";
1358
+ elysia: "elysia";
1359
+ fets: "fets";
1360
+ nestjs: "nestjs";
1361
+ adonisjs: "adonisjs";
1362
+ nitro: "nitro";
1363
+ encore: "encore";
1364
+ convex: "convex";
1365
+ self: "self";
1366
+ }>;
1367
+ runtime: z.ZodEnum<{
1368
+ none: "none";
1369
+ bun: "bun";
1370
+ node: "node";
1371
+ workers: "workers";
1372
+ }>;
1373
+ frontend: z.ZodArray<z.ZodEnum<{
1374
+ none: "none";
1375
+ "tanstack-router": "tanstack-router";
1376
+ "react-router": "react-router";
1377
+ "tanstack-start": "tanstack-start";
1378
+ next: "next";
1379
+ nuxt: "nuxt";
1380
+ "native-bare": "native-bare";
1381
+ "native-uniwind": "native-uniwind";
1382
+ "native-unistyles": "native-unistyles";
1383
+ svelte: "svelte";
1384
+ solid: "solid";
1385
+ astro: "astro";
1386
+ qwik: "qwik";
1387
+ angular: "angular";
1388
+ redwood: "redwood";
1389
+ fresh: "fresh";
1390
+ }>>;
1391
+ addons: z.ZodArray<z.ZodEnum<{
1392
+ none: "none";
1393
+ pwa: "pwa";
1394
+ tauri: "tauri";
1395
+ starlight: "starlight";
1396
+ biome: "biome";
1397
+ lefthook: "lefthook";
1398
+ husky: "husky";
1399
+ ruler: "ruler";
1400
+ turborepo: "turborepo";
1401
+ fumadocs: "fumadocs";
1402
+ ultracite: "ultracite";
1403
+ oxlint: "oxlint";
1404
+ opentui: "opentui";
1405
+ wxt: "wxt";
1406
+ msw: "msw";
1407
+ storybook: "storybook";
1408
+ }>>;
1409
+ examples: z.ZodArray<z.ZodEnum<{
1410
+ none: "none";
1411
+ todo: "todo";
1412
+ ai: "ai";
1413
+ }>>;
1414
+ auth: z.ZodEnum<{
1415
+ none: "none";
1416
+ "better-auth": "better-auth";
1417
+ clerk: "clerk";
1418
+ nextauth: "nextauth";
1419
+ }>;
1420
+ payments: z.ZodEnum<{
1421
+ none: "none";
1422
+ polar: "polar";
1423
+ stripe: "stripe";
1424
+ "lemon-squeezy": "lemon-squeezy";
1425
+ paddle: "paddle";
1426
+ dodo: "dodo";
1427
+ }>;
1428
+ packageManager: z.ZodEnum<{
1429
+ bun: "bun";
1430
+ npm: "npm";
1431
+ pnpm: "pnpm";
1432
+ }>;
1433
+ dbSetup: z.ZodEnum<{
1434
+ none: "none";
1435
+ turso: "turso";
1436
+ neon: "neon";
1437
+ "prisma-postgres": "prisma-postgres";
1438
+ planetscale: "planetscale";
1439
+ "mongodb-atlas": "mongodb-atlas";
1440
+ supabase: "supabase";
1441
+ d1: "d1";
1442
+ docker: "docker";
1443
+ }>;
1444
+ api: z.ZodEnum<{
1445
+ none: "none";
1446
+ trpc: "trpc";
1447
+ orpc: "orpc";
1448
+ "ts-rest": "ts-rest";
1449
+ garph: "garph";
1450
+ }>;
1451
+ webDeploy: z.ZodEnum<{
1452
+ none: "none";
1453
+ cloudflare: "cloudflare";
1454
+ }>;
1455
+ serverDeploy: z.ZodEnum<{
1456
+ none: "none";
1457
+ cloudflare: "cloudflare";
1458
+ }>;
1459
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1460
+ none: "none";
1461
+ svelte: "svelte";
1462
+ solid: "solid";
1463
+ react: "react";
1464
+ vue: "vue";
1465
+ }>>;
1466
+ ai: z.ZodEnum<{
1467
+ none: "none";
1468
+ "vercel-ai": "vercel-ai";
1469
+ mastra: "mastra";
1470
+ voltagent: "voltagent";
1471
+ langgraph: "langgraph";
1472
+ "openai-agents": "openai-agents";
1473
+ "google-adk": "google-adk";
1474
+ modelfusion: "modelfusion";
1475
+ langchain: "langchain";
1476
+ llamaindex: "llamaindex";
1477
+ }>;
1478
+ effect: z.ZodEnum<{
1479
+ none: "none";
1480
+ effect: "effect";
1481
+ "effect-full": "effect-full";
1482
+ }>;
1483
+ stateManagement: z.ZodEnum<{
1484
+ none: "none";
1485
+ zustand: "zustand";
1486
+ jotai: "jotai";
1487
+ nanostores: "nanostores";
1488
+ "redux-toolkit": "redux-toolkit";
1489
+ mobx: "mobx";
1490
+ xstate: "xstate";
1491
+ valtio: "valtio";
1492
+ "tanstack-store": "tanstack-store";
1493
+ "legend-state": "legend-state";
1494
+ }>;
1495
+ forms: z.ZodEnum<{
1496
+ none: "none";
1497
+ "tanstack-form": "tanstack-form";
1498
+ "react-hook-form": "react-hook-form";
1499
+ formik: "formik";
1500
+ "final-form": "final-form";
1501
+ conform: "conform";
1502
+ "modular-forms": "modular-forms";
1503
+ }>;
1504
+ testing: z.ZodEnum<{
1505
+ none: "none";
1506
+ vitest: "vitest";
1507
+ playwright: "playwright";
1508
+ "vitest-playwright": "vitest-playwright";
1509
+ jest: "jest";
1510
+ cypress: "cypress";
1511
+ }>;
1512
+ email: z.ZodEnum<{
1513
+ none: "none";
1514
+ "react-email": "react-email";
1515
+ resend: "resend";
1516
+ nodemailer: "nodemailer";
1517
+ postmark: "postmark";
1518
+ sendgrid: "sendgrid";
1519
+ "aws-ses": "aws-ses";
1520
+ mailgun: "mailgun";
1521
+ plunk: "plunk";
1522
+ }>;
1523
+ cssFramework: z.ZodEnum<{
1524
+ none: "none";
1525
+ tailwind: "tailwind";
1526
+ scss: "scss";
1527
+ less: "less";
1528
+ "postcss-only": "postcss-only";
1529
+ }>;
1530
+ uiLibrary: z.ZodEnum<{
1531
+ none: "none";
1532
+ "shadcn-ui": "shadcn-ui";
1533
+ daisyui: "daisyui";
1534
+ "radix-ui": "radix-ui";
1535
+ "headless-ui": "headless-ui";
1536
+ "park-ui": "park-ui";
1537
+ "chakra-ui": "chakra-ui";
1538
+ nextui: "nextui";
1539
+ mantine: "mantine";
1540
+ "base-ui": "base-ui";
1541
+ "ark-ui": "ark-ui";
1542
+ "react-aria": "react-aria";
1543
+ }>;
1544
+ validation: z.ZodEnum<{
1545
+ none: "none";
1546
+ zod: "zod";
1547
+ valibot: "valibot";
1548
+ arktype: "arktype";
1549
+ typebox: "typebox";
1550
+ typia: "typia";
1551
+ runtypes: "runtypes";
1552
+ "effect-schema": "effect-schema";
1553
+ }>;
1554
+ realtime: z.ZodEnum<{
1555
+ none: "none";
1556
+ "socket-io": "socket-io";
1557
+ partykit: "partykit";
1558
+ ably: "ably";
1559
+ pusher: "pusher";
1560
+ liveblocks: "liveblocks";
1561
+ yjs: "yjs";
1562
+ }>;
1563
+ jobQueue: z.ZodEnum<{
1564
+ none: "none";
1565
+ bullmq: "bullmq";
1566
+ "trigger-dev": "trigger-dev";
1567
+ inngest: "inngest";
1568
+ temporal: "temporal";
1569
+ }>;
1570
+ animation: z.ZodEnum<{
1571
+ none: "none";
1572
+ "framer-motion": "framer-motion";
1573
+ gsap: "gsap";
1574
+ "react-spring": "react-spring";
1575
+ "auto-animate": "auto-animate";
1576
+ lottie: "lottie";
1577
+ }>;
1578
+ fileUpload: z.ZodEnum<{
1579
+ none: "none";
1580
+ uploadthing: "uploadthing";
1581
+ filepond: "filepond";
1582
+ uppy: "uppy";
1583
+ }>;
1584
+ logging: z.ZodEnum<{
1585
+ none: "none";
1586
+ pino: "pino";
1587
+ winston: "winston";
1588
+ }>;
1589
+ observability: z.ZodEnum<{
1590
+ none: "none";
1591
+ opentelemetry: "opentelemetry";
1592
+ }>;
1593
+ cms: z.ZodEnum<{
1594
+ none: "none";
1595
+ payload: "payload";
1596
+ sanity: "sanity";
1597
+ strapi: "strapi";
1598
+ }>;
1599
+ caching: z.ZodEnum<{
1600
+ none: "none";
1601
+ "upstash-redis": "upstash-redis";
1602
+ }>;
1603
+ rustWebFramework: z.ZodEnum<{
1604
+ none: "none";
1605
+ axum: "axum";
1606
+ "actix-web": "actix-web";
1607
+ }>;
1608
+ rustFrontend: z.ZodEnum<{
1609
+ none: "none";
1610
+ leptos: "leptos";
1611
+ dioxus: "dioxus";
1612
+ }>;
1613
+ rustOrm: z.ZodEnum<{
1614
+ none: "none";
1615
+ "sea-orm": "sea-orm";
1616
+ sqlx: "sqlx";
1617
+ }>;
1618
+ rustApi: z.ZodEnum<{
1619
+ none: "none";
1620
+ tonic: "tonic";
1621
+ "async-graphql": "async-graphql";
1622
+ }>;
1623
+ rustCli: z.ZodEnum<{
1624
+ none: "none";
1625
+ clap: "clap";
1626
+ ratatui: "ratatui";
1627
+ }>;
1628
+ rustLibraries: z.ZodArray<z.ZodEnum<{
1629
+ none: "none";
1630
+ serde: "serde";
1631
+ validator: "validator";
1632
+ jsonwebtoken: "jsonwebtoken";
1633
+ argon2: "argon2";
1634
+ "tokio-test": "tokio-test";
1635
+ mockall: "mockall";
1636
+ }>>;
1637
+ }, z.core.$strip>;
1638
+ declare const BetterTStackConfigFileSchema: z.ZodObject<{
1639
+ $schema: z.ZodOptional<z.ZodString>;
1640
+ version: z.ZodString;
1641
+ createdAt: z.ZodString;
1642
+ ecosystem: z.ZodEnum<{
1643
+ typescript: "typescript";
1644
+ rust: "rust";
1645
+ }>;
1646
+ database: z.ZodEnum<{
1647
+ none: "none";
1648
+ sqlite: "sqlite";
1649
+ postgres: "postgres";
1650
+ mysql: "mysql";
1651
+ mongodb: "mongodb";
1652
+ }>;
1653
+ orm: z.ZodEnum<{
1654
+ none: "none";
1655
+ drizzle: "drizzle";
1656
+ prisma: "prisma";
1657
+ mongoose: "mongoose";
1658
+ typeorm: "typeorm";
1659
+ kysely: "kysely";
1660
+ mikroorm: "mikroorm";
1661
+ sequelize: "sequelize";
1662
+ }>;
1663
+ backend: z.ZodEnum<{
1664
+ none: "none";
1665
+ hono: "hono";
1666
+ express: "express";
1667
+ fastify: "fastify";
1668
+ elysia: "elysia";
1669
+ fets: "fets";
1670
+ nestjs: "nestjs";
1671
+ adonisjs: "adonisjs";
1672
+ nitro: "nitro";
1673
+ encore: "encore";
1674
+ convex: "convex";
1675
+ self: "self";
1676
+ }>;
1677
+ runtime: z.ZodEnum<{
1678
+ none: "none";
1679
+ bun: "bun";
1680
+ node: "node";
1681
+ workers: "workers";
1682
+ }>;
1683
+ frontend: z.ZodArray<z.ZodEnum<{
1684
+ none: "none";
1685
+ "tanstack-router": "tanstack-router";
1686
+ "react-router": "react-router";
1687
+ "tanstack-start": "tanstack-start";
1688
+ next: "next";
1689
+ nuxt: "nuxt";
1690
+ "native-bare": "native-bare";
1691
+ "native-uniwind": "native-uniwind";
1692
+ "native-unistyles": "native-unistyles";
1693
+ svelte: "svelte";
1694
+ solid: "solid";
1695
+ astro: "astro";
1696
+ qwik: "qwik";
1697
+ angular: "angular";
1698
+ redwood: "redwood";
1699
+ fresh: "fresh";
1700
+ }>>;
1701
+ addons: z.ZodArray<z.ZodEnum<{
1702
+ none: "none";
1703
+ pwa: "pwa";
1704
+ tauri: "tauri";
1705
+ starlight: "starlight";
1706
+ biome: "biome";
1707
+ lefthook: "lefthook";
1708
+ husky: "husky";
1709
+ ruler: "ruler";
1710
+ turborepo: "turborepo";
1711
+ fumadocs: "fumadocs";
1712
+ ultracite: "ultracite";
1713
+ oxlint: "oxlint";
1714
+ opentui: "opentui";
1715
+ wxt: "wxt";
1716
+ msw: "msw";
1717
+ storybook: "storybook";
1718
+ }>>;
1719
+ examples: z.ZodArray<z.ZodEnum<{
1720
+ none: "none";
1721
+ todo: "todo";
1722
+ ai: "ai";
1723
+ }>>;
1724
+ auth: z.ZodEnum<{
1725
+ none: "none";
1726
+ "better-auth": "better-auth";
1727
+ clerk: "clerk";
1728
+ nextauth: "nextauth";
1729
+ }>;
1730
+ payments: z.ZodEnum<{
1731
+ none: "none";
1732
+ polar: "polar";
1733
+ stripe: "stripe";
1734
+ "lemon-squeezy": "lemon-squeezy";
1735
+ paddle: "paddle";
1736
+ dodo: "dodo";
1737
+ }>;
1738
+ packageManager: z.ZodEnum<{
1739
+ bun: "bun";
1740
+ npm: "npm";
1741
+ pnpm: "pnpm";
1742
+ }>;
1743
+ dbSetup: z.ZodEnum<{
1744
+ none: "none";
1745
+ turso: "turso";
1746
+ neon: "neon";
1747
+ "prisma-postgres": "prisma-postgres";
1748
+ planetscale: "planetscale";
1749
+ "mongodb-atlas": "mongodb-atlas";
1750
+ supabase: "supabase";
1751
+ d1: "d1";
1752
+ docker: "docker";
1753
+ }>;
1754
+ api: z.ZodEnum<{
1755
+ none: "none";
1756
+ trpc: "trpc";
1757
+ orpc: "orpc";
1758
+ "ts-rest": "ts-rest";
1759
+ garph: "garph";
1760
+ }>;
1761
+ webDeploy: z.ZodEnum<{
1762
+ none: "none";
1763
+ cloudflare: "cloudflare";
1764
+ }>;
1765
+ serverDeploy: z.ZodEnum<{
1766
+ none: "none";
1767
+ cloudflare: "cloudflare";
1768
+ }>;
1769
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1770
+ none: "none";
1771
+ svelte: "svelte";
1772
+ solid: "solid";
1773
+ react: "react";
1774
+ vue: "vue";
1775
+ }>>;
1776
+ ai: z.ZodEnum<{
1777
+ none: "none";
1778
+ "vercel-ai": "vercel-ai";
1779
+ mastra: "mastra";
1780
+ voltagent: "voltagent";
1781
+ langgraph: "langgraph";
1782
+ "openai-agents": "openai-agents";
1783
+ "google-adk": "google-adk";
1784
+ modelfusion: "modelfusion";
1785
+ langchain: "langchain";
1786
+ llamaindex: "llamaindex";
1787
+ }>;
1788
+ effect: z.ZodEnum<{
1789
+ none: "none";
1790
+ effect: "effect";
1791
+ "effect-full": "effect-full";
1792
+ }>;
1793
+ stateManagement: z.ZodEnum<{
1794
+ none: "none";
1795
+ zustand: "zustand";
1796
+ jotai: "jotai";
1797
+ nanostores: "nanostores";
1798
+ "redux-toolkit": "redux-toolkit";
1799
+ mobx: "mobx";
1800
+ xstate: "xstate";
1801
+ valtio: "valtio";
1802
+ "tanstack-store": "tanstack-store";
1803
+ "legend-state": "legend-state";
1804
+ }>;
1805
+ forms: z.ZodEnum<{
1806
+ none: "none";
1807
+ "tanstack-form": "tanstack-form";
1808
+ "react-hook-form": "react-hook-form";
1809
+ formik: "formik";
1810
+ "final-form": "final-form";
1811
+ conform: "conform";
1812
+ "modular-forms": "modular-forms";
1813
+ }>;
1814
+ testing: z.ZodEnum<{
1815
+ none: "none";
1816
+ vitest: "vitest";
1817
+ playwright: "playwright";
1818
+ "vitest-playwright": "vitest-playwright";
1819
+ jest: "jest";
1820
+ cypress: "cypress";
1821
+ }>;
1822
+ email: z.ZodEnum<{
1823
+ none: "none";
1824
+ "react-email": "react-email";
1825
+ resend: "resend";
1826
+ nodemailer: "nodemailer";
1827
+ postmark: "postmark";
1828
+ sendgrid: "sendgrid";
1829
+ "aws-ses": "aws-ses";
1830
+ mailgun: "mailgun";
1831
+ plunk: "plunk";
1832
+ }>;
1833
+ cssFramework: z.ZodEnum<{
1834
+ none: "none";
1835
+ tailwind: "tailwind";
1836
+ scss: "scss";
1837
+ less: "less";
1838
+ "postcss-only": "postcss-only";
1839
+ }>;
1840
+ uiLibrary: z.ZodEnum<{
1841
+ none: "none";
1842
+ "shadcn-ui": "shadcn-ui";
1843
+ daisyui: "daisyui";
1844
+ "radix-ui": "radix-ui";
1845
+ "headless-ui": "headless-ui";
1846
+ "park-ui": "park-ui";
1847
+ "chakra-ui": "chakra-ui";
1848
+ nextui: "nextui";
1849
+ mantine: "mantine";
1850
+ "base-ui": "base-ui";
1851
+ "ark-ui": "ark-ui";
1852
+ "react-aria": "react-aria";
1853
+ }>;
1854
+ validation: z.ZodEnum<{
1855
+ none: "none";
1856
+ zod: "zod";
1857
+ valibot: "valibot";
1858
+ arktype: "arktype";
1859
+ typebox: "typebox";
1860
+ typia: "typia";
1861
+ runtypes: "runtypes";
1862
+ "effect-schema": "effect-schema";
1863
+ }>;
1864
+ realtime: z.ZodEnum<{
1865
+ none: "none";
1866
+ "socket-io": "socket-io";
1867
+ partykit: "partykit";
1868
+ ably: "ably";
1869
+ pusher: "pusher";
1870
+ liveblocks: "liveblocks";
1871
+ yjs: "yjs";
1872
+ }>;
1873
+ jobQueue: z.ZodEnum<{
1874
+ none: "none";
1875
+ bullmq: "bullmq";
1876
+ "trigger-dev": "trigger-dev";
1877
+ inngest: "inngest";
1878
+ temporal: "temporal";
1879
+ }>;
1880
+ animation: z.ZodEnum<{
1881
+ none: "none";
1882
+ "framer-motion": "framer-motion";
1883
+ gsap: "gsap";
1884
+ "react-spring": "react-spring";
1885
+ "auto-animate": "auto-animate";
1886
+ lottie: "lottie";
1887
+ }>;
1888
+ fileUpload: z.ZodEnum<{
1889
+ none: "none";
1890
+ uploadthing: "uploadthing";
1891
+ filepond: "filepond";
1892
+ uppy: "uppy";
1893
+ }>;
1894
+ logging: z.ZodEnum<{
1895
+ none: "none";
1896
+ pino: "pino";
1897
+ winston: "winston";
1898
+ }>;
1899
+ observability: z.ZodEnum<{
1900
+ none: "none";
1901
+ opentelemetry: "opentelemetry";
1902
+ }>;
1903
+ cms: z.ZodEnum<{
1904
+ none: "none";
1905
+ payload: "payload";
1906
+ sanity: "sanity";
1907
+ strapi: "strapi";
1908
+ }>;
1909
+ caching: z.ZodEnum<{
1910
+ none: "none";
1911
+ "upstash-redis": "upstash-redis";
1912
+ }>;
1913
+ rustWebFramework: z.ZodEnum<{
1914
+ none: "none";
1915
+ axum: "axum";
1916
+ "actix-web": "actix-web";
1917
+ }>;
1918
+ rustFrontend: z.ZodEnum<{
1919
+ none: "none";
1920
+ leptos: "leptos";
1921
+ dioxus: "dioxus";
1922
+ }>;
1923
+ rustOrm: z.ZodEnum<{
1924
+ none: "none";
1925
+ "sea-orm": "sea-orm";
1926
+ sqlx: "sqlx";
1927
+ }>;
1928
+ rustApi: z.ZodEnum<{
1929
+ none: "none";
1930
+ tonic: "tonic";
1931
+ "async-graphql": "async-graphql";
1932
+ }>;
1933
+ rustCli: z.ZodEnum<{
1934
+ none: "none";
1935
+ clap: "clap";
1936
+ ratatui: "ratatui";
1937
+ }>;
1938
+ rustLibraries: z.ZodArray<z.ZodEnum<{
1939
+ none: "none";
1940
+ serde: "serde";
1941
+ validator: "validator";
1942
+ jsonwebtoken: "jsonwebtoken";
1943
+ argon2: "argon2";
1944
+ "tokio-test": "tokio-test";
1945
+ mockall: "mockall";
1946
+ }>>;
1947
+ }, z.core.$strip>;
1948
+ declare const InitResultSchema: z.ZodObject<{
1949
+ success: z.ZodBoolean;
1950
+ projectConfig: z.ZodObject<{
1951
+ projectName: z.ZodString;
1952
+ projectDir: z.ZodString;
1953
+ relativePath: z.ZodString;
1954
+ ecosystem: z.ZodEnum<{
1955
+ typescript: "typescript";
1956
+ rust: "rust";
1957
+ }>;
1958
+ database: z.ZodEnum<{
1959
+ none: "none";
1960
+ sqlite: "sqlite";
1961
+ postgres: "postgres";
1962
+ mysql: "mysql";
1963
+ mongodb: "mongodb";
1964
+ }>;
1965
+ orm: z.ZodEnum<{
1966
+ none: "none";
1967
+ drizzle: "drizzle";
1968
+ prisma: "prisma";
1969
+ mongoose: "mongoose";
1970
+ typeorm: "typeorm";
1971
+ kysely: "kysely";
1972
+ mikroorm: "mikroorm";
1973
+ sequelize: "sequelize";
1974
+ }>;
1975
+ backend: z.ZodEnum<{
1976
+ none: "none";
1977
+ hono: "hono";
1978
+ express: "express";
1979
+ fastify: "fastify";
1980
+ elysia: "elysia";
1981
+ fets: "fets";
1982
+ nestjs: "nestjs";
1983
+ adonisjs: "adonisjs";
1984
+ nitro: "nitro";
1985
+ encore: "encore";
1986
+ convex: "convex";
1987
+ self: "self";
1988
+ }>;
1989
+ runtime: z.ZodEnum<{
1990
+ none: "none";
1991
+ bun: "bun";
1992
+ node: "node";
1993
+ workers: "workers";
1994
+ }>;
1995
+ frontend: z.ZodArray<z.ZodEnum<{
1996
+ none: "none";
1997
+ "tanstack-router": "tanstack-router";
1998
+ "react-router": "react-router";
1999
+ "tanstack-start": "tanstack-start";
2000
+ next: "next";
2001
+ nuxt: "nuxt";
2002
+ "native-bare": "native-bare";
2003
+ "native-uniwind": "native-uniwind";
2004
+ "native-unistyles": "native-unistyles";
2005
+ svelte: "svelte";
2006
+ solid: "solid";
2007
+ astro: "astro";
2008
+ qwik: "qwik";
2009
+ angular: "angular";
2010
+ redwood: "redwood";
2011
+ fresh: "fresh";
2012
+ }>>;
2013
+ addons: z.ZodArray<z.ZodEnum<{
2014
+ none: "none";
2015
+ pwa: "pwa";
2016
+ tauri: "tauri";
2017
+ starlight: "starlight";
2018
+ biome: "biome";
2019
+ lefthook: "lefthook";
2020
+ husky: "husky";
2021
+ ruler: "ruler";
2022
+ turborepo: "turborepo";
2023
+ fumadocs: "fumadocs";
2024
+ ultracite: "ultracite";
2025
+ oxlint: "oxlint";
2026
+ opentui: "opentui";
2027
+ wxt: "wxt";
2028
+ msw: "msw";
2029
+ storybook: "storybook";
2030
+ }>>;
2031
+ examples: z.ZodArray<z.ZodEnum<{
2032
+ none: "none";
2033
+ todo: "todo";
2034
+ ai: "ai";
2035
+ }>>;
2036
+ auth: z.ZodEnum<{
2037
+ none: "none";
2038
+ "better-auth": "better-auth";
2039
+ clerk: "clerk";
2040
+ nextauth: "nextauth";
2041
+ }>;
2042
+ payments: z.ZodEnum<{
2043
+ none: "none";
2044
+ polar: "polar";
2045
+ stripe: "stripe";
2046
+ "lemon-squeezy": "lemon-squeezy";
2047
+ paddle: "paddle";
2048
+ dodo: "dodo";
2049
+ }>;
2050
+ git: z.ZodBoolean;
2051
+ packageManager: z.ZodEnum<{
2052
+ bun: "bun";
2053
+ npm: "npm";
2054
+ pnpm: "pnpm";
2055
+ }>;
2056
+ install: z.ZodBoolean;
2057
+ dbSetup: z.ZodEnum<{
2058
+ none: "none";
2059
+ turso: "turso";
2060
+ neon: "neon";
2061
+ "prisma-postgres": "prisma-postgres";
2062
+ planetscale: "planetscale";
2063
+ "mongodb-atlas": "mongodb-atlas";
2064
+ supabase: "supabase";
2065
+ d1: "d1";
2066
+ docker: "docker";
2067
+ }>;
2068
+ api: z.ZodEnum<{
2069
+ none: "none";
2070
+ trpc: "trpc";
2071
+ orpc: "orpc";
2072
+ "ts-rest": "ts-rest";
2073
+ garph: "garph";
2074
+ }>;
2075
+ webDeploy: z.ZodEnum<{
2076
+ none: "none";
2077
+ cloudflare: "cloudflare";
2078
+ }>;
2079
+ serverDeploy: z.ZodEnum<{
2080
+ none: "none";
2081
+ cloudflare: "cloudflare";
2082
+ }>;
2083
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
2084
+ none: "none";
2085
+ svelte: "svelte";
2086
+ solid: "solid";
2087
+ react: "react";
2088
+ vue: "vue";
2089
+ }>>;
2090
+ ai: z.ZodEnum<{
2091
+ none: "none";
2092
+ "vercel-ai": "vercel-ai";
2093
+ mastra: "mastra";
2094
+ voltagent: "voltagent";
2095
+ langgraph: "langgraph";
2096
+ "openai-agents": "openai-agents";
2097
+ "google-adk": "google-adk";
2098
+ modelfusion: "modelfusion";
2099
+ langchain: "langchain";
2100
+ llamaindex: "llamaindex";
2101
+ }>;
2102
+ effect: z.ZodEnum<{
2103
+ none: "none";
2104
+ effect: "effect";
2105
+ "effect-full": "effect-full";
2106
+ }>;
2107
+ stateManagement: z.ZodEnum<{
2108
+ none: "none";
2109
+ zustand: "zustand";
2110
+ jotai: "jotai";
2111
+ nanostores: "nanostores";
2112
+ "redux-toolkit": "redux-toolkit";
2113
+ mobx: "mobx";
2114
+ xstate: "xstate";
2115
+ valtio: "valtio";
2116
+ "tanstack-store": "tanstack-store";
2117
+ "legend-state": "legend-state";
2118
+ }>;
2119
+ forms: z.ZodEnum<{
2120
+ none: "none";
2121
+ "tanstack-form": "tanstack-form";
2122
+ "react-hook-form": "react-hook-form";
2123
+ formik: "formik";
2124
+ "final-form": "final-form";
2125
+ conform: "conform";
2126
+ "modular-forms": "modular-forms";
2127
+ }>;
2128
+ testing: z.ZodEnum<{
2129
+ none: "none";
2130
+ vitest: "vitest";
2131
+ playwright: "playwright";
2132
+ "vitest-playwright": "vitest-playwright";
2133
+ jest: "jest";
2134
+ cypress: "cypress";
2135
+ }>;
2136
+ email: z.ZodEnum<{
2137
+ none: "none";
2138
+ "react-email": "react-email";
2139
+ resend: "resend";
2140
+ nodemailer: "nodemailer";
2141
+ postmark: "postmark";
2142
+ sendgrid: "sendgrid";
2143
+ "aws-ses": "aws-ses";
2144
+ mailgun: "mailgun";
2145
+ plunk: "plunk";
2146
+ }>;
2147
+ cssFramework: z.ZodEnum<{
2148
+ none: "none";
2149
+ tailwind: "tailwind";
2150
+ scss: "scss";
2151
+ less: "less";
2152
+ "postcss-only": "postcss-only";
2153
+ }>;
2154
+ uiLibrary: z.ZodEnum<{
2155
+ none: "none";
2156
+ "shadcn-ui": "shadcn-ui";
2157
+ daisyui: "daisyui";
2158
+ "radix-ui": "radix-ui";
2159
+ "headless-ui": "headless-ui";
2160
+ "park-ui": "park-ui";
2161
+ "chakra-ui": "chakra-ui";
2162
+ nextui: "nextui";
2163
+ mantine: "mantine";
2164
+ "base-ui": "base-ui";
2165
+ "ark-ui": "ark-ui";
2166
+ "react-aria": "react-aria";
2167
+ }>;
2168
+ validation: z.ZodEnum<{
2169
+ none: "none";
2170
+ zod: "zod";
2171
+ valibot: "valibot";
2172
+ arktype: "arktype";
2173
+ typebox: "typebox";
2174
+ typia: "typia";
2175
+ runtypes: "runtypes";
2176
+ "effect-schema": "effect-schema";
2177
+ }>;
2178
+ realtime: z.ZodEnum<{
2179
+ none: "none";
2180
+ "socket-io": "socket-io";
2181
+ partykit: "partykit";
2182
+ ably: "ably";
2183
+ pusher: "pusher";
2184
+ liveblocks: "liveblocks";
2185
+ yjs: "yjs";
2186
+ }>;
2187
+ jobQueue: z.ZodEnum<{
2188
+ none: "none";
2189
+ bullmq: "bullmq";
2190
+ "trigger-dev": "trigger-dev";
2191
+ inngest: "inngest";
2192
+ temporal: "temporal";
2193
+ }>;
2194
+ animation: z.ZodEnum<{
2195
+ none: "none";
2196
+ "framer-motion": "framer-motion";
2197
+ gsap: "gsap";
2198
+ "react-spring": "react-spring";
2199
+ "auto-animate": "auto-animate";
2200
+ lottie: "lottie";
2201
+ }>;
2202
+ fileUpload: z.ZodEnum<{
2203
+ none: "none";
2204
+ uploadthing: "uploadthing";
2205
+ filepond: "filepond";
2206
+ uppy: "uppy";
2207
+ }>;
2208
+ logging: z.ZodEnum<{
2209
+ none: "none";
2210
+ pino: "pino";
2211
+ winston: "winston";
2212
+ }>;
2213
+ observability: z.ZodEnum<{
2214
+ none: "none";
2215
+ opentelemetry: "opentelemetry";
2216
+ }>;
2217
+ cms: z.ZodEnum<{
2218
+ none: "none";
2219
+ payload: "payload";
2220
+ sanity: "sanity";
2221
+ strapi: "strapi";
2222
+ }>;
2223
+ caching: z.ZodEnum<{
2224
+ none: "none";
2225
+ "upstash-redis": "upstash-redis";
2226
+ }>;
2227
+ rustWebFramework: z.ZodEnum<{
2228
+ none: "none";
2229
+ axum: "axum";
2230
+ "actix-web": "actix-web";
2231
+ }>;
2232
+ rustFrontend: z.ZodEnum<{
2233
+ none: "none";
2234
+ leptos: "leptos";
2235
+ dioxus: "dioxus";
2236
+ }>;
2237
+ rustOrm: z.ZodEnum<{
2238
+ none: "none";
2239
+ "sea-orm": "sea-orm";
2240
+ sqlx: "sqlx";
2241
+ }>;
2242
+ rustApi: z.ZodEnum<{
2243
+ none: "none";
2244
+ tonic: "tonic";
2245
+ "async-graphql": "async-graphql";
2246
+ }>;
2247
+ rustCli: z.ZodEnum<{
2248
+ none: "none";
2249
+ clap: "clap";
2250
+ ratatui: "ratatui";
2251
+ }>;
2252
+ rustLibraries: z.ZodArray<z.ZodEnum<{
2253
+ none: "none";
2254
+ serde: "serde";
2255
+ validator: "validator";
2256
+ jsonwebtoken: "jsonwebtoken";
2257
+ argon2: "argon2";
2258
+ "tokio-test": "tokio-test";
2259
+ mockall: "mockall";
2260
+ }>>;
2261
+ }, z.core.$strip>;
2262
+ reproducibleCommand: z.ZodString;
2263
+ timeScaffolded: z.ZodString;
2264
+ elapsedTimeMs: z.ZodNumber;
2265
+ projectDirectory: z.ZodString;
2266
+ relativePath: z.ZodString;
2267
+ error: z.ZodOptional<z.ZodString>;
2268
+ }, z.core.$strip>;
2269
+ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb")[];
2270
+ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
2271
+ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
2272
+ declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
2273
+ declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
2274
+ declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
2275
+ declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
2276
+ declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
2277
+ declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "d1" | "docker")[];
2278
+ declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
2279
+ declare const AUTH_VALUES: ("none" | "better-auth" | "clerk" | "nextauth")[];
2280
+ declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
2281
+ declare const WEB_DEPLOY_VALUES: ("none" | "cloudflare")[];
2282
+ declare const SERVER_DEPLOY_VALUES: ("none" | "cloudflare")[];
2283
+ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
2284
+ declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
2285
+ declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
2286
+ declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex")[];
2287
+ declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
2288
+ declare const STATE_MANAGEMENT_VALUES: ("none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state")[];
2289
+ declare const FORMS_VALUES: ("none" | "tanstack-form" | "react-hook-form" | "formik" | "final-form" | "conform" | "modular-forms")[];
2290
+ declare const TESTING_VALUES: ("none" | "vitest" | "playwright" | "vitest-playwright" | "jest" | "cypress")[];
2291
+ declare const EMAIL_VALUES: ("none" | "react-email" | "resend" | "nodemailer" | "postmark" | "sendgrid" | "aws-ses" | "mailgun" | "plunk")[];
2292
+ declare const CSS_FRAMEWORK_VALUES: ("none" | "tailwind" | "scss" | "less" | "postcss-only")[];
2293
+ declare const UI_LIBRARY_VALUES: ("none" | "shadcn-ui" | "daisyui" | "radix-ui" | "headless-ui" | "park-ui" | "chakra-ui" | "nextui" | "mantine" | "base-ui" | "ark-ui" | "react-aria")[];
2294
+ declare const VALIDATION_VALUES: ("none" | "zod" | "valibot" | "arktype" | "typebox" | "typia" | "runtypes" | "effect-schema")[];
2295
+ declare const REALTIME_VALUES: ("none" | "socket-io" | "partykit" | "ably" | "pusher" | "liveblocks" | "yjs")[];
2296
+ declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" | "temporal")[];
2297
+ declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
2298
+ declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
2299
+ declare const LOGGING_VALUES: ("none" | "pino" | "winston")[];
2300
+ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
2301
+ declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi")[];
2302
+ declare const CACHING_VALUES: ("none" | "upstash-redis")[];
2303
+ declare const ECOSYSTEM_VALUES: ("typescript" | "rust")[];
2304
+ declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web")[];
2305
+ declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
2306
+ declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx")[];
2307
+ declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
2308
+ declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
2309
+ declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
2310
+ //#endregion
2311
+ export { ORM_VALUES as $, DatabaseSetupSchema as A, TestingSchema as At, FILE_UPLOAD_VALUES as B, CSS_FRAMEWORK_VALUES as C, SERVER_DEPLOY_VALUES as Ct, DATABASE_VALUES as D, TEMPLATE_VALUES as Dt, DATABASE_SETUP_VALUES as E, StateManagementSchema as Et, EXAMPLES_VALUES as F, WEB_DEPLOY_VALUES as Ft, FrontendSchema as G, FRONTEND_VALUES as H, EcosystemSchema as I, WebDeploySchema as It, JobQueueSchema as J, InitResultSchema as K, EffectSchema as L, ECOSYSTEM_VALUES as M, UI_LIBRARY_VALUES as Mt, EFFECT_VALUES as N, VALIDATION_VALUES as Nt, DIRECTORY_CONFLICT_VALUES as O, TESTING_VALUES as Ot, EMAIL_VALUES as P, ValidationSchema as Pt, ORMSchema as Q, EmailSchema as R, CSSFrameworkSchema as S, RustWebFrameworkSchema as St, CreateInputSchema as T, ServerDeploySchema as Tt, FileUploadSchema as U, FORMS_VALUES as V, FormsSchema as W, LoggingSchema as X, LOGGING_VALUES as Y, OBSERVABILITY_VALUES as Z, BetterTStackConfigSchema as _, RustApiSchema as _t, APISchema as a, ProjectConfigSchema as at, CMSSchema as b, RustLibrariesSchema as bt, AUTH_VALUES as c, RUNTIME_VALUES as ct, AnimationSchema as d, RUST_FRONTEND_VALUES as dt, ObservabilitySchema as et, AstroIntegrationSchema as f, RUST_LIBRARIES_VALUES as ft, BetterTStackConfigFileSchema as g, RuntimeSchema as gt, BackendSchema as h, RealtimeSchema as ht, ANIMATION_VALUES as i, PaymentsSchema as it, DirectoryConflictSchema as j, UILibrarySchema as jt, DatabaseSchema as k, TemplateSchema as kt, AddInputSchema as l, RUST_API_VALUES as lt, BACKEND_VALUES as m, RUST_WEB_FRAMEWORK_VALUES as mt, AISchema as n, PAYMENTS_VALUES as nt, API_VALUES as o, ProjectNameSchema as ot, AuthSchema as p, RUST_ORM_VALUES as pt, JOB_QUEUE_VALUES as q, AI_VALUES as r, PackageManagerSchema as rt, ASTRO_INTEGRATION_VALUES as s, REALTIME_VALUES as st, ADDONS_VALUES as t, PACKAGE_MANAGER_VALUES as tt, AddonsSchema as u, RUST_CLI_VALUES as ut, CACHING_VALUES as v, RustCliSchema as vt, CachingSchema as w, STATE_MANAGEMENT_VALUES as wt, CMS_VALUES as x, RustOrmSchema as xt, CLIInputSchema as y, RustFrontendSchema as yt, ExamplesSchema as z };
2312
+ //# sourceMappingURL=schemas-CPHhbryb.d.mts.map