@better-fullstack/types 1.0.0-canary.1d67537e

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,2822 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/json-schema.d.ts
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
+ typeorm: "typeorm";
17
+ kysely: "kysely";
18
+ mikroorm: "mikroorm";
19
+ sequelize: "sequelize";
20
+ }>>;
21
+ declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
22
+ none: "none";
23
+ hono: "hono";
24
+ express: "express";
25
+ fastify: "fastify";
26
+ elysia: "elysia";
27
+ fets: "fets";
28
+ nestjs: "nestjs";
29
+ adonisjs: "adonisjs";
30
+ nitro: "nitro";
31
+ encore: "encore";
32
+ convex: "convex";
33
+ self: "self";
34
+ }>>;
35
+ declare function getRuntimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
36
+ none: "none";
37
+ bun: "bun";
38
+ node: "node";
39
+ workers: "workers";
40
+ }>>;
41
+ declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
42
+ none: "none";
43
+ "tanstack-router": "tanstack-router";
44
+ "react-router": "react-router";
45
+ "tanstack-start": "tanstack-start";
46
+ next: "next";
47
+ nuxt: "nuxt";
48
+ "native-bare": "native-bare";
49
+ "native-uniwind": "native-uniwind";
50
+ "native-unistyles": "native-unistyles";
51
+ svelte: "svelte";
52
+ solid: "solid";
53
+ astro: "astro";
54
+ qwik: "qwik";
55
+ angular: "angular";
56
+ redwood: "redwood";
57
+ fresh: "fresh";
58
+ }>>;
59
+ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
60
+ none: "none";
61
+ pwa: "pwa";
62
+ tauri: "tauri";
63
+ starlight: "starlight";
64
+ biome: "biome";
65
+ lefthook: "lefthook";
66
+ husky: "husky";
67
+ ruler: "ruler";
68
+ turborepo: "turborepo";
69
+ fumadocs: "fumadocs";
70
+ ultracite: "ultracite";
71
+ oxlint: "oxlint";
72
+ opentui: "opentui";
73
+ wxt: "wxt";
74
+ msw: "msw";
75
+ storybook: "storybook";
76
+ }>>;
77
+ declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
78
+ none: "none";
79
+ todo: "todo";
80
+ ai: "ai";
81
+ }>>;
82
+ declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
83
+ bun: "bun";
84
+ npm: "npm";
85
+ pnpm: "pnpm";
86
+ }>>;
87
+ declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
88
+ none: "none";
89
+ turso: "turso";
90
+ neon: "neon";
91
+ "prisma-postgres": "prisma-postgres";
92
+ planetscale: "planetscale";
93
+ "mongodb-atlas": "mongodb-atlas";
94
+ supabase: "supabase";
95
+ d1: "d1";
96
+ docker: "docker";
97
+ }>>;
98
+ declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
99
+ none: "none";
100
+ trpc: "trpc";
101
+ orpc: "orpc";
102
+ "ts-rest": "ts-rest";
103
+ garph: "garph";
104
+ }>>;
105
+ declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
106
+ none: "none";
107
+ "better-auth": "better-auth";
108
+ clerk: "clerk";
109
+ nextauth: "nextauth";
110
+ }>>;
111
+ declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
112
+ none: "none";
113
+ polar: "polar";
114
+ stripe: "stripe";
115
+ "lemon-squeezy": "lemon-squeezy";
116
+ paddle: "paddle";
117
+ dodo: "dodo";
118
+ }>>;
119
+ declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
120
+ none: "none";
121
+ cloudflare: "cloudflare";
122
+ }>>;
123
+ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
124
+ none: "none";
125
+ cloudflare: "cloudflare";
126
+ }>>;
127
+ declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
128
+ merge: "merge";
129
+ overwrite: "overwrite";
130
+ increment: "increment";
131
+ error: "error";
132
+ }>>;
133
+ declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
134
+ none: "none";
135
+ mern: "mern";
136
+ pern: "pern";
137
+ t3: "t3";
138
+ uniwind: "uniwind";
139
+ }>>;
140
+ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
141
+ projectName: z.ZodOptional<z.ZodString>;
142
+ template: z.ZodOptional<z.ZodEnum<{
143
+ none: "none";
144
+ mern: "mern";
145
+ pern: "pern";
146
+ t3: "t3";
147
+ uniwind: "uniwind";
148
+ }>>;
149
+ yes: z.ZodOptional<z.ZodBoolean>;
150
+ yolo: z.ZodOptional<z.ZodBoolean>;
151
+ verbose: z.ZodOptional<z.ZodBoolean>;
152
+ ecosystem: z.ZodOptional<z.ZodEnum<{
153
+ typescript: "typescript";
154
+ rust: "rust";
155
+ }>>;
156
+ database: z.ZodOptional<z.ZodEnum<{
157
+ none: "none";
158
+ sqlite: "sqlite";
159
+ postgres: "postgres";
160
+ mysql: "mysql";
161
+ mongodb: "mongodb";
162
+ }>>;
163
+ orm: z.ZodOptional<z.ZodEnum<{
164
+ none: "none";
165
+ drizzle: "drizzle";
166
+ prisma: "prisma";
167
+ mongoose: "mongoose";
168
+ typeorm: "typeorm";
169
+ kysely: "kysely";
170
+ mikroorm: "mikroorm";
171
+ sequelize: "sequelize";
172
+ }>>;
173
+ auth: z.ZodOptional<z.ZodEnum<{
174
+ none: "none";
175
+ "better-auth": "better-auth";
176
+ clerk: "clerk";
177
+ nextauth: "nextauth";
178
+ }>>;
179
+ payments: z.ZodOptional<z.ZodEnum<{
180
+ none: "none";
181
+ polar: "polar";
182
+ stripe: "stripe";
183
+ "lemon-squeezy": "lemon-squeezy";
184
+ paddle: "paddle";
185
+ dodo: "dodo";
186
+ }>>;
187
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
188
+ none: "none";
189
+ "tanstack-router": "tanstack-router";
190
+ "react-router": "react-router";
191
+ "tanstack-start": "tanstack-start";
192
+ next: "next";
193
+ nuxt: "nuxt";
194
+ "native-bare": "native-bare";
195
+ "native-uniwind": "native-uniwind";
196
+ "native-unistyles": "native-unistyles";
197
+ svelte: "svelte";
198
+ solid: "solid";
199
+ astro: "astro";
200
+ qwik: "qwik";
201
+ angular: "angular";
202
+ redwood: "redwood";
203
+ fresh: "fresh";
204
+ }>>>;
205
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
206
+ none: "none";
207
+ pwa: "pwa";
208
+ tauri: "tauri";
209
+ starlight: "starlight";
210
+ biome: "biome";
211
+ lefthook: "lefthook";
212
+ husky: "husky";
213
+ ruler: "ruler";
214
+ turborepo: "turborepo";
215
+ fumadocs: "fumadocs";
216
+ ultracite: "ultracite";
217
+ oxlint: "oxlint";
218
+ opentui: "opentui";
219
+ wxt: "wxt";
220
+ msw: "msw";
221
+ storybook: "storybook";
222
+ }>>>;
223
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
224
+ none: "none";
225
+ todo: "todo";
226
+ ai: "ai";
227
+ }>>>;
228
+ git: z.ZodOptional<z.ZodBoolean>;
229
+ packageManager: z.ZodOptional<z.ZodEnum<{
230
+ bun: "bun";
231
+ npm: "npm";
232
+ pnpm: "pnpm";
233
+ }>>;
234
+ install: z.ZodOptional<z.ZodBoolean>;
235
+ dbSetup: z.ZodOptional<z.ZodEnum<{
236
+ none: "none";
237
+ turso: "turso";
238
+ neon: "neon";
239
+ "prisma-postgres": "prisma-postgres";
240
+ planetscale: "planetscale";
241
+ "mongodb-atlas": "mongodb-atlas";
242
+ supabase: "supabase";
243
+ d1: "d1";
244
+ docker: "docker";
245
+ }>>;
246
+ backend: z.ZodOptional<z.ZodEnum<{
247
+ none: "none";
248
+ hono: "hono";
249
+ express: "express";
250
+ fastify: "fastify";
251
+ elysia: "elysia";
252
+ fets: "fets";
253
+ nestjs: "nestjs";
254
+ adonisjs: "adonisjs";
255
+ nitro: "nitro";
256
+ encore: "encore";
257
+ convex: "convex";
258
+ self: "self";
259
+ }>>;
260
+ runtime: z.ZodOptional<z.ZodEnum<{
261
+ none: "none";
262
+ bun: "bun";
263
+ node: "node";
264
+ workers: "workers";
265
+ }>>;
266
+ api: z.ZodOptional<z.ZodEnum<{
267
+ none: "none";
268
+ trpc: "trpc";
269
+ orpc: "orpc";
270
+ "ts-rest": "ts-rest";
271
+ garph: "garph";
272
+ }>>;
273
+ webDeploy: z.ZodOptional<z.ZodEnum<{
274
+ none: "none";
275
+ cloudflare: "cloudflare";
276
+ }>>;
277
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
278
+ none: "none";
279
+ cloudflare: "cloudflare";
280
+ }>>;
281
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
282
+ merge: "merge";
283
+ overwrite: "overwrite";
284
+ increment: "increment";
285
+ error: "error";
286
+ }>>;
287
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
288
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
289
+ manualDb: z.ZodOptional<z.ZodBoolean>;
290
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
291
+ none: "none";
292
+ svelte: "svelte";
293
+ solid: "solid";
294
+ react: "react";
295
+ vue: "vue";
296
+ }>>;
297
+ ai: z.ZodOptional<z.ZodEnum<{
298
+ none: "none";
299
+ "vercel-ai": "vercel-ai";
300
+ mastra: "mastra";
301
+ voltagent: "voltagent";
302
+ langgraph: "langgraph";
303
+ "openai-agents": "openai-agents";
304
+ "google-adk": "google-adk";
305
+ modelfusion: "modelfusion";
306
+ langchain: "langchain";
307
+ llamaindex: "llamaindex";
308
+ }>>;
309
+ effect: z.ZodOptional<z.ZodEnum<{
310
+ none: "none";
311
+ effect: "effect";
312
+ "effect-full": "effect-full";
313
+ }>>;
314
+ stateManagement: z.ZodOptional<z.ZodEnum<{
315
+ none: "none";
316
+ zustand: "zustand";
317
+ jotai: "jotai";
318
+ nanostores: "nanostores";
319
+ "redux-toolkit": "redux-toolkit";
320
+ mobx: "mobx";
321
+ xstate: "xstate";
322
+ valtio: "valtio";
323
+ "tanstack-store": "tanstack-store";
324
+ "legend-state": "legend-state";
325
+ }>>;
326
+ forms: z.ZodOptional<z.ZodEnum<{
327
+ none: "none";
328
+ "tanstack-form": "tanstack-form";
329
+ "react-hook-form": "react-hook-form";
330
+ formik: "formik";
331
+ "final-form": "final-form";
332
+ conform: "conform";
333
+ "modular-forms": "modular-forms";
334
+ }>>;
335
+ testing: z.ZodOptional<z.ZodEnum<{
336
+ none: "none";
337
+ vitest: "vitest";
338
+ playwright: "playwright";
339
+ "vitest-playwright": "vitest-playwright";
340
+ jest: "jest";
341
+ cypress: "cypress";
342
+ }>>;
343
+ email: z.ZodOptional<z.ZodEnum<{
344
+ none: "none";
345
+ "react-email": "react-email";
346
+ resend: "resend";
347
+ nodemailer: "nodemailer";
348
+ postmark: "postmark";
349
+ sendgrid: "sendgrid";
350
+ "aws-ses": "aws-ses";
351
+ mailgun: "mailgun";
352
+ plunk: "plunk";
353
+ }>>;
354
+ cssFramework: z.ZodOptional<z.ZodEnum<{
355
+ none: "none";
356
+ tailwind: "tailwind";
357
+ scss: "scss";
358
+ less: "less";
359
+ "postcss-only": "postcss-only";
360
+ }>>;
361
+ uiLibrary: z.ZodOptional<z.ZodEnum<{
362
+ none: "none";
363
+ "shadcn-ui": "shadcn-ui";
364
+ daisyui: "daisyui";
365
+ "radix-ui": "radix-ui";
366
+ "headless-ui": "headless-ui";
367
+ "park-ui": "park-ui";
368
+ "chakra-ui": "chakra-ui";
369
+ nextui: "nextui";
370
+ mantine: "mantine";
371
+ "base-ui": "base-ui";
372
+ "ark-ui": "ark-ui";
373
+ "react-aria": "react-aria";
374
+ }>>;
375
+ validation: z.ZodOptional<z.ZodEnum<{
376
+ none: "none";
377
+ zod: "zod";
378
+ valibot: "valibot";
379
+ arktype: "arktype";
380
+ typebox: "typebox";
381
+ typia: "typia";
382
+ runtypes: "runtypes";
383
+ "effect-schema": "effect-schema";
384
+ }>>;
385
+ realtime: z.ZodOptional<z.ZodEnum<{
386
+ none: "none";
387
+ "socket-io": "socket-io";
388
+ partykit: "partykit";
389
+ ably: "ably";
390
+ pusher: "pusher";
391
+ liveblocks: "liveblocks";
392
+ yjs: "yjs";
393
+ }>>;
394
+ jobQueue: z.ZodOptional<z.ZodEnum<{
395
+ none: "none";
396
+ bullmq: "bullmq";
397
+ "trigger-dev": "trigger-dev";
398
+ inngest: "inngest";
399
+ temporal: "temporal";
400
+ }>>;
401
+ animation: z.ZodOptional<z.ZodEnum<{
402
+ none: "none";
403
+ "framer-motion": "framer-motion";
404
+ gsap: "gsap";
405
+ "react-spring": "react-spring";
406
+ "auto-animate": "auto-animate";
407
+ lottie: "lottie";
408
+ }>>;
409
+ fileUpload: z.ZodOptional<z.ZodEnum<{
410
+ none: "none";
411
+ uploadthing: "uploadthing";
412
+ filepond: "filepond";
413
+ uppy: "uppy";
414
+ }>>;
415
+ logging: z.ZodOptional<z.ZodEnum<{
416
+ none: "none";
417
+ pino: "pino";
418
+ winston: "winston";
419
+ }>>;
420
+ observability: z.ZodOptional<z.ZodEnum<{
421
+ none: "none";
422
+ opentelemetry: "opentelemetry";
423
+ }>>;
424
+ cms: z.ZodOptional<z.ZodEnum<{
425
+ none: "none";
426
+ payload: "payload";
427
+ sanity: "sanity";
428
+ strapi: "strapi";
429
+ }>>;
430
+ caching: z.ZodOptional<z.ZodEnum<{
431
+ none: "none";
432
+ "upstash-redis": "upstash-redis";
433
+ }>>;
434
+ rustWebFramework: z.ZodOptional<z.ZodEnum<{
435
+ none: "none";
436
+ axum: "axum";
437
+ "actix-web": "actix-web";
438
+ }>>;
439
+ rustFrontend: z.ZodOptional<z.ZodEnum<{
440
+ none: "none";
441
+ leptos: "leptos";
442
+ dioxus: "dioxus";
443
+ }>>;
444
+ rustOrm: z.ZodOptional<z.ZodEnum<{
445
+ none: "none";
446
+ "sea-orm": "sea-orm";
447
+ sqlx: "sqlx";
448
+ }>>;
449
+ rustApi: z.ZodOptional<z.ZodEnum<{
450
+ none: "none";
451
+ tonic: "tonic";
452
+ "async-graphql": "async-graphql";
453
+ }>>;
454
+ rustCli: z.ZodOptional<z.ZodEnum<{
455
+ none: "none";
456
+ clap: "clap";
457
+ ratatui: "ratatui";
458
+ }>>;
459
+ rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
460
+ none: "none";
461
+ serde: "serde";
462
+ validator: "validator";
463
+ jsonwebtoken: "jsonwebtoken";
464
+ argon2: "argon2";
465
+ "tokio-test": "tokio-test";
466
+ mockall: "mockall";
467
+ }>>>;
468
+ }, z.core.$strip>>;
469
+ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
470
+ projectName: z.ZodString;
471
+ projectDir: z.ZodString;
472
+ relativePath: z.ZodString;
473
+ ecosystem: z.ZodEnum<{
474
+ typescript: "typescript";
475
+ rust: "rust";
476
+ }>;
477
+ database: z.ZodEnum<{
478
+ none: "none";
479
+ sqlite: "sqlite";
480
+ postgres: "postgres";
481
+ mysql: "mysql";
482
+ mongodb: "mongodb";
483
+ }>;
484
+ orm: z.ZodEnum<{
485
+ none: "none";
486
+ drizzle: "drizzle";
487
+ prisma: "prisma";
488
+ mongoose: "mongoose";
489
+ typeorm: "typeorm";
490
+ kysely: "kysely";
491
+ mikroorm: "mikroorm";
492
+ sequelize: "sequelize";
493
+ }>;
494
+ backend: z.ZodEnum<{
495
+ none: "none";
496
+ hono: "hono";
497
+ express: "express";
498
+ fastify: "fastify";
499
+ elysia: "elysia";
500
+ fets: "fets";
501
+ nestjs: "nestjs";
502
+ adonisjs: "adonisjs";
503
+ nitro: "nitro";
504
+ encore: "encore";
505
+ convex: "convex";
506
+ self: "self";
507
+ }>;
508
+ runtime: z.ZodEnum<{
509
+ none: "none";
510
+ bun: "bun";
511
+ node: "node";
512
+ workers: "workers";
513
+ }>;
514
+ frontend: z.ZodArray<z.ZodEnum<{
515
+ none: "none";
516
+ "tanstack-router": "tanstack-router";
517
+ "react-router": "react-router";
518
+ "tanstack-start": "tanstack-start";
519
+ next: "next";
520
+ nuxt: "nuxt";
521
+ "native-bare": "native-bare";
522
+ "native-uniwind": "native-uniwind";
523
+ "native-unistyles": "native-unistyles";
524
+ svelte: "svelte";
525
+ solid: "solid";
526
+ astro: "astro";
527
+ qwik: "qwik";
528
+ angular: "angular";
529
+ redwood: "redwood";
530
+ fresh: "fresh";
531
+ }>>;
532
+ addons: z.ZodArray<z.ZodEnum<{
533
+ none: "none";
534
+ pwa: "pwa";
535
+ tauri: "tauri";
536
+ starlight: "starlight";
537
+ biome: "biome";
538
+ lefthook: "lefthook";
539
+ husky: "husky";
540
+ ruler: "ruler";
541
+ turborepo: "turborepo";
542
+ fumadocs: "fumadocs";
543
+ ultracite: "ultracite";
544
+ oxlint: "oxlint";
545
+ opentui: "opentui";
546
+ wxt: "wxt";
547
+ msw: "msw";
548
+ storybook: "storybook";
549
+ }>>;
550
+ examples: z.ZodArray<z.ZodEnum<{
551
+ none: "none";
552
+ todo: "todo";
553
+ ai: "ai";
554
+ }>>;
555
+ auth: z.ZodEnum<{
556
+ none: "none";
557
+ "better-auth": "better-auth";
558
+ clerk: "clerk";
559
+ nextauth: "nextauth";
560
+ }>;
561
+ payments: z.ZodEnum<{
562
+ none: "none";
563
+ polar: "polar";
564
+ stripe: "stripe";
565
+ "lemon-squeezy": "lemon-squeezy";
566
+ paddle: "paddle";
567
+ dodo: "dodo";
568
+ }>;
569
+ git: z.ZodBoolean;
570
+ packageManager: z.ZodEnum<{
571
+ bun: "bun";
572
+ npm: "npm";
573
+ pnpm: "pnpm";
574
+ }>;
575
+ install: z.ZodBoolean;
576
+ dbSetup: z.ZodEnum<{
577
+ none: "none";
578
+ turso: "turso";
579
+ neon: "neon";
580
+ "prisma-postgres": "prisma-postgres";
581
+ planetscale: "planetscale";
582
+ "mongodb-atlas": "mongodb-atlas";
583
+ supabase: "supabase";
584
+ d1: "d1";
585
+ docker: "docker";
586
+ }>;
587
+ api: z.ZodEnum<{
588
+ none: "none";
589
+ trpc: "trpc";
590
+ orpc: "orpc";
591
+ "ts-rest": "ts-rest";
592
+ garph: "garph";
593
+ }>;
594
+ webDeploy: z.ZodEnum<{
595
+ none: "none";
596
+ cloudflare: "cloudflare";
597
+ }>;
598
+ serverDeploy: z.ZodEnum<{
599
+ none: "none";
600
+ cloudflare: "cloudflare";
601
+ }>;
602
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
603
+ none: "none";
604
+ svelte: "svelte";
605
+ solid: "solid";
606
+ react: "react";
607
+ vue: "vue";
608
+ }>>;
609
+ ai: z.ZodEnum<{
610
+ none: "none";
611
+ "vercel-ai": "vercel-ai";
612
+ mastra: "mastra";
613
+ voltagent: "voltagent";
614
+ langgraph: "langgraph";
615
+ "openai-agents": "openai-agents";
616
+ "google-adk": "google-adk";
617
+ modelfusion: "modelfusion";
618
+ langchain: "langchain";
619
+ llamaindex: "llamaindex";
620
+ }>;
621
+ effect: z.ZodEnum<{
622
+ none: "none";
623
+ effect: "effect";
624
+ "effect-full": "effect-full";
625
+ }>;
626
+ stateManagement: z.ZodEnum<{
627
+ none: "none";
628
+ zustand: "zustand";
629
+ jotai: "jotai";
630
+ nanostores: "nanostores";
631
+ "redux-toolkit": "redux-toolkit";
632
+ mobx: "mobx";
633
+ xstate: "xstate";
634
+ valtio: "valtio";
635
+ "tanstack-store": "tanstack-store";
636
+ "legend-state": "legend-state";
637
+ }>;
638
+ forms: z.ZodEnum<{
639
+ none: "none";
640
+ "tanstack-form": "tanstack-form";
641
+ "react-hook-form": "react-hook-form";
642
+ formik: "formik";
643
+ "final-form": "final-form";
644
+ conform: "conform";
645
+ "modular-forms": "modular-forms";
646
+ }>;
647
+ testing: z.ZodEnum<{
648
+ none: "none";
649
+ vitest: "vitest";
650
+ playwright: "playwright";
651
+ "vitest-playwright": "vitest-playwright";
652
+ jest: "jest";
653
+ cypress: "cypress";
654
+ }>;
655
+ email: z.ZodEnum<{
656
+ none: "none";
657
+ "react-email": "react-email";
658
+ resend: "resend";
659
+ nodemailer: "nodemailer";
660
+ postmark: "postmark";
661
+ sendgrid: "sendgrid";
662
+ "aws-ses": "aws-ses";
663
+ mailgun: "mailgun";
664
+ plunk: "plunk";
665
+ }>;
666
+ cssFramework: z.ZodEnum<{
667
+ none: "none";
668
+ tailwind: "tailwind";
669
+ scss: "scss";
670
+ less: "less";
671
+ "postcss-only": "postcss-only";
672
+ }>;
673
+ uiLibrary: z.ZodEnum<{
674
+ none: "none";
675
+ "shadcn-ui": "shadcn-ui";
676
+ daisyui: "daisyui";
677
+ "radix-ui": "radix-ui";
678
+ "headless-ui": "headless-ui";
679
+ "park-ui": "park-ui";
680
+ "chakra-ui": "chakra-ui";
681
+ nextui: "nextui";
682
+ mantine: "mantine";
683
+ "base-ui": "base-ui";
684
+ "ark-ui": "ark-ui";
685
+ "react-aria": "react-aria";
686
+ }>;
687
+ validation: z.ZodEnum<{
688
+ none: "none";
689
+ zod: "zod";
690
+ valibot: "valibot";
691
+ arktype: "arktype";
692
+ typebox: "typebox";
693
+ typia: "typia";
694
+ runtypes: "runtypes";
695
+ "effect-schema": "effect-schema";
696
+ }>;
697
+ realtime: z.ZodEnum<{
698
+ none: "none";
699
+ "socket-io": "socket-io";
700
+ partykit: "partykit";
701
+ ably: "ably";
702
+ pusher: "pusher";
703
+ liveblocks: "liveblocks";
704
+ yjs: "yjs";
705
+ }>;
706
+ jobQueue: z.ZodEnum<{
707
+ none: "none";
708
+ bullmq: "bullmq";
709
+ "trigger-dev": "trigger-dev";
710
+ inngest: "inngest";
711
+ temporal: "temporal";
712
+ }>;
713
+ animation: z.ZodEnum<{
714
+ none: "none";
715
+ "framer-motion": "framer-motion";
716
+ gsap: "gsap";
717
+ "react-spring": "react-spring";
718
+ "auto-animate": "auto-animate";
719
+ lottie: "lottie";
720
+ }>;
721
+ fileUpload: z.ZodEnum<{
722
+ none: "none";
723
+ uploadthing: "uploadthing";
724
+ filepond: "filepond";
725
+ uppy: "uppy";
726
+ }>;
727
+ logging: z.ZodEnum<{
728
+ none: "none";
729
+ pino: "pino";
730
+ winston: "winston";
731
+ }>;
732
+ observability: z.ZodEnum<{
733
+ none: "none";
734
+ opentelemetry: "opentelemetry";
735
+ }>;
736
+ cms: z.ZodEnum<{
737
+ none: "none";
738
+ payload: "payload";
739
+ sanity: "sanity";
740
+ strapi: "strapi";
741
+ }>;
742
+ caching: z.ZodEnum<{
743
+ none: "none";
744
+ "upstash-redis": "upstash-redis";
745
+ }>;
746
+ rustWebFramework: z.ZodEnum<{
747
+ none: "none";
748
+ axum: "axum";
749
+ "actix-web": "actix-web";
750
+ }>;
751
+ rustFrontend: z.ZodEnum<{
752
+ none: "none";
753
+ leptos: "leptos";
754
+ dioxus: "dioxus";
755
+ }>;
756
+ rustOrm: z.ZodEnum<{
757
+ none: "none";
758
+ "sea-orm": "sea-orm";
759
+ sqlx: "sqlx";
760
+ }>;
761
+ rustApi: z.ZodEnum<{
762
+ none: "none";
763
+ tonic: "tonic";
764
+ "async-graphql": "async-graphql";
765
+ }>;
766
+ rustCli: z.ZodEnum<{
767
+ none: "none";
768
+ clap: "clap";
769
+ ratatui: "ratatui";
770
+ }>;
771
+ rustLibraries: z.ZodArray<z.ZodEnum<{
772
+ none: "none";
773
+ serde: "serde";
774
+ validator: "validator";
775
+ jsonwebtoken: "jsonwebtoken";
776
+ argon2: "argon2";
777
+ "tokio-test": "tokio-test";
778
+ mockall: "mockall";
779
+ }>>;
780
+ }, z.core.$strip>>;
781
+ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
782
+ version: z.ZodString;
783
+ createdAt: z.ZodString;
784
+ ecosystem: z.ZodEnum<{
785
+ typescript: "typescript";
786
+ rust: "rust";
787
+ }>;
788
+ database: z.ZodEnum<{
789
+ none: "none";
790
+ sqlite: "sqlite";
791
+ postgres: "postgres";
792
+ mysql: "mysql";
793
+ mongodb: "mongodb";
794
+ }>;
795
+ orm: z.ZodEnum<{
796
+ none: "none";
797
+ drizzle: "drizzle";
798
+ prisma: "prisma";
799
+ mongoose: "mongoose";
800
+ typeorm: "typeorm";
801
+ kysely: "kysely";
802
+ mikroorm: "mikroorm";
803
+ sequelize: "sequelize";
804
+ }>;
805
+ backend: z.ZodEnum<{
806
+ none: "none";
807
+ hono: "hono";
808
+ express: "express";
809
+ fastify: "fastify";
810
+ elysia: "elysia";
811
+ fets: "fets";
812
+ nestjs: "nestjs";
813
+ adonisjs: "adonisjs";
814
+ nitro: "nitro";
815
+ encore: "encore";
816
+ convex: "convex";
817
+ self: "self";
818
+ }>;
819
+ runtime: z.ZodEnum<{
820
+ none: "none";
821
+ bun: "bun";
822
+ node: "node";
823
+ workers: "workers";
824
+ }>;
825
+ frontend: z.ZodArray<z.ZodEnum<{
826
+ none: "none";
827
+ "tanstack-router": "tanstack-router";
828
+ "react-router": "react-router";
829
+ "tanstack-start": "tanstack-start";
830
+ next: "next";
831
+ nuxt: "nuxt";
832
+ "native-bare": "native-bare";
833
+ "native-uniwind": "native-uniwind";
834
+ "native-unistyles": "native-unistyles";
835
+ svelte: "svelte";
836
+ solid: "solid";
837
+ astro: "astro";
838
+ qwik: "qwik";
839
+ angular: "angular";
840
+ redwood: "redwood";
841
+ fresh: "fresh";
842
+ }>>;
843
+ addons: z.ZodArray<z.ZodEnum<{
844
+ none: "none";
845
+ pwa: "pwa";
846
+ tauri: "tauri";
847
+ starlight: "starlight";
848
+ biome: "biome";
849
+ lefthook: "lefthook";
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
+ msw: "msw";
859
+ storybook: "storybook";
860
+ }>>;
861
+ examples: z.ZodArray<z.ZodEnum<{
862
+ none: "none";
863
+ todo: "todo";
864
+ ai: "ai";
865
+ }>>;
866
+ auth: z.ZodEnum<{
867
+ none: "none";
868
+ "better-auth": "better-auth";
869
+ clerk: "clerk";
870
+ nextauth: "nextauth";
871
+ }>;
872
+ payments: z.ZodEnum<{
873
+ none: "none";
874
+ polar: "polar";
875
+ stripe: "stripe";
876
+ "lemon-squeezy": "lemon-squeezy";
877
+ paddle: "paddle";
878
+ dodo: "dodo";
879
+ }>;
880
+ packageManager: z.ZodEnum<{
881
+ bun: "bun";
882
+ npm: "npm";
883
+ pnpm: "pnpm";
884
+ }>;
885
+ dbSetup: z.ZodEnum<{
886
+ none: "none";
887
+ turso: "turso";
888
+ neon: "neon";
889
+ "prisma-postgres": "prisma-postgres";
890
+ planetscale: "planetscale";
891
+ "mongodb-atlas": "mongodb-atlas";
892
+ supabase: "supabase";
893
+ d1: "d1";
894
+ docker: "docker";
895
+ }>;
896
+ api: z.ZodEnum<{
897
+ none: "none";
898
+ trpc: "trpc";
899
+ orpc: "orpc";
900
+ "ts-rest": "ts-rest";
901
+ garph: "garph";
902
+ }>;
903
+ webDeploy: z.ZodEnum<{
904
+ none: "none";
905
+ cloudflare: "cloudflare";
906
+ }>;
907
+ serverDeploy: z.ZodEnum<{
908
+ none: "none";
909
+ cloudflare: "cloudflare";
910
+ }>;
911
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
912
+ none: "none";
913
+ svelte: "svelte";
914
+ solid: "solid";
915
+ react: "react";
916
+ vue: "vue";
917
+ }>>;
918
+ ai: z.ZodEnum<{
919
+ none: "none";
920
+ "vercel-ai": "vercel-ai";
921
+ mastra: "mastra";
922
+ voltagent: "voltagent";
923
+ langgraph: "langgraph";
924
+ "openai-agents": "openai-agents";
925
+ "google-adk": "google-adk";
926
+ modelfusion: "modelfusion";
927
+ langchain: "langchain";
928
+ llamaindex: "llamaindex";
929
+ }>;
930
+ effect: z.ZodEnum<{
931
+ none: "none";
932
+ effect: "effect";
933
+ "effect-full": "effect-full";
934
+ }>;
935
+ stateManagement: z.ZodEnum<{
936
+ none: "none";
937
+ zustand: "zustand";
938
+ jotai: "jotai";
939
+ nanostores: "nanostores";
940
+ "redux-toolkit": "redux-toolkit";
941
+ mobx: "mobx";
942
+ xstate: "xstate";
943
+ valtio: "valtio";
944
+ "tanstack-store": "tanstack-store";
945
+ "legend-state": "legend-state";
946
+ }>;
947
+ forms: z.ZodEnum<{
948
+ none: "none";
949
+ "tanstack-form": "tanstack-form";
950
+ "react-hook-form": "react-hook-form";
951
+ formik: "formik";
952
+ "final-form": "final-form";
953
+ conform: "conform";
954
+ "modular-forms": "modular-forms";
955
+ }>;
956
+ testing: z.ZodEnum<{
957
+ none: "none";
958
+ vitest: "vitest";
959
+ playwright: "playwright";
960
+ "vitest-playwright": "vitest-playwright";
961
+ jest: "jest";
962
+ cypress: "cypress";
963
+ }>;
964
+ email: z.ZodEnum<{
965
+ none: "none";
966
+ "react-email": "react-email";
967
+ resend: "resend";
968
+ nodemailer: "nodemailer";
969
+ postmark: "postmark";
970
+ sendgrid: "sendgrid";
971
+ "aws-ses": "aws-ses";
972
+ mailgun: "mailgun";
973
+ plunk: "plunk";
974
+ }>;
975
+ cssFramework: z.ZodEnum<{
976
+ none: "none";
977
+ tailwind: "tailwind";
978
+ scss: "scss";
979
+ less: "less";
980
+ "postcss-only": "postcss-only";
981
+ }>;
982
+ uiLibrary: z.ZodEnum<{
983
+ none: "none";
984
+ "shadcn-ui": "shadcn-ui";
985
+ daisyui: "daisyui";
986
+ "radix-ui": "radix-ui";
987
+ "headless-ui": "headless-ui";
988
+ "park-ui": "park-ui";
989
+ "chakra-ui": "chakra-ui";
990
+ nextui: "nextui";
991
+ mantine: "mantine";
992
+ "base-ui": "base-ui";
993
+ "ark-ui": "ark-ui";
994
+ "react-aria": "react-aria";
995
+ }>;
996
+ validation: z.ZodEnum<{
997
+ none: "none";
998
+ zod: "zod";
999
+ valibot: "valibot";
1000
+ arktype: "arktype";
1001
+ typebox: "typebox";
1002
+ typia: "typia";
1003
+ runtypes: "runtypes";
1004
+ "effect-schema": "effect-schema";
1005
+ }>;
1006
+ realtime: z.ZodEnum<{
1007
+ none: "none";
1008
+ "socket-io": "socket-io";
1009
+ partykit: "partykit";
1010
+ ably: "ably";
1011
+ pusher: "pusher";
1012
+ liveblocks: "liveblocks";
1013
+ yjs: "yjs";
1014
+ }>;
1015
+ jobQueue: z.ZodEnum<{
1016
+ none: "none";
1017
+ bullmq: "bullmq";
1018
+ "trigger-dev": "trigger-dev";
1019
+ inngest: "inngest";
1020
+ temporal: "temporal";
1021
+ }>;
1022
+ animation: z.ZodEnum<{
1023
+ none: "none";
1024
+ "framer-motion": "framer-motion";
1025
+ gsap: "gsap";
1026
+ "react-spring": "react-spring";
1027
+ "auto-animate": "auto-animate";
1028
+ lottie: "lottie";
1029
+ }>;
1030
+ fileUpload: z.ZodEnum<{
1031
+ none: "none";
1032
+ uploadthing: "uploadthing";
1033
+ filepond: "filepond";
1034
+ uppy: "uppy";
1035
+ }>;
1036
+ logging: z.ZodEnum<{
1037
+ none: "none";
1038
+ pino: "pino";
1039
+ winston: "winston";
1040
+ }>;
1041
+ observability: z.ZodEnum<{
1042
+ none: "none";
1043
+ opentelemetry: "opentelemetry";
1044
+ }>;
1045
+ cms: z.ZodEnum<{
1046
+ none: "none";
1047
+ payload: "payload";
1048
+ sanity: "sanity";
1049
+ strapi: "strapi";
1050
+ }>;
1051
+ caching: z.ZodEnum<{
1052
+ none: "none";
1053
+ "upstash-redis": "upstash-redis";
1054
+ }>;
1055
+ rustWebFramework: z.ZodEnum<{
1056
+ none: "none";
1057
+ axum: "axum";
1058
+ "actix-web": "actix-web";
1059
+ }>;
1060
+ rustFrontend: z.ZodEnum<{
1061
+ none: "none";
1062
+ leptos: "leptos";
1063
+ dioxus: "dioxus";
1064
+ }>;
1065
+ rustOrm: z.ZodEnum<{
1066
+ none: "none";
1067
+ "sea-orm": "sea-orm";
1068
+ sqlx: "sqlx";
1069
+ }>;
1070
+ rustApi: z.ZodEnum<{
1071
+ none: "none";
1072
+ tonic: "tonic";
1073
+ "async-graphql": "async-graphql";
1074
+ }>;
1075
+ rustCli: z.ZodEnum<{
1076
+ none: "none";
1077
+ clap: "clap";
1078
+ ratatui: "ratatui";
1079
+ }>;
1080
+ rustLibraries: z.ZodArray<z.ZodEnum<{
1081
+ none: "none";
1082
+ serde: "serde";
1083
+ validator: "validator";
1084
+ jsonwebtoken: "jsonwebtoken";
1085
+ argon2: "argon2";
1086
+ "tokio-test": "tokio-test";
1087
+ mockall: "mockall";
1088
+ }>>;
1089
+ }, z.core.$strip>>;
1090
+ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1091
+ success: z.ZodBoolean;
1092
+ projectConfig: z.ZodObject<{
1093
+ projectName: z.ZodString;
1094
+ projectDir: z.ZodString;
1095
+ relativePath: z.ZodString;
1096
+ ecosystem: z.ZodEnum<{
1097
+ typescript: "typescript";
1098
+ rust: "rust";
1099
+ }>;
1100
+ database: z.ZodEnum<{
1101
+ none: "none";
1102
+ sqlite: "sqlite";
1103
+ postgres: "postgres";
1104
+ mysql: "mysql";
1105
+ mongodb: "mongodb";
1106
+ }>;
1107
+ orm: z.ZodEnum<{
1108
+ none: "none";
1109
+ drizzle: "drizzle";
1110
+ prisma: "prisma";
1111
+ mongoose: "mongoose";
1112
+ typeorm: "typeorm";
1113
+ kysely: "kysely";
1114
+ mikroorm: "mikroorm";
1115
+ sequelize: "sequelize";
1116
+ }>;
1117
+ backend: z.ZodEnum<{
1118
+ none: "none";
1119
+ hono: "hono";
1120
+ express: "express";
1121
+ fastify: "fastify";
1122
+ elysia: "elysia";
1123
+ fets: "fets";
1124
+ nestjs: "nestjs";
1125
+ adonisjs: "adonisjs";
1126
+ nitro: "nitro";
1127
+ encore: "encore";
1128
+ convex: "convex";
1129
+ self: "self";
1130
+ }>;
1131
+ runtime: z.ZodEnum<{
1132
+ none: "none";
1133
+ bun: "bun";
1134
+ node: "node";
1135
+ workers: "workers";
1136
+ }>;
1137
+ frontend: z.ZodArray<z.ZodEnum<{
1138
+ none: "none";
1139
+ "tanstack-router": "tanstack-router";
1140
+ "react-router": "react-router";
1141
+ "tanstack-start": "tanstack-start";
1142
+ next: "next";
1143
+ nuxt: "nuxt";
1144
+ "native-bare": "native-bare";
1145
+ "native-uniwind": "native-uniwind";
1146
+ "native-unistyles": "native-unistyles";
1147
+ svelte: "svelte";
1148
+ solid: "solid";
1149
+ astro: "astro";
1150
+ qwik: "qwik";
1151
+ angular: "angular";
1152
+ redwood: "redwood";
1153
+ fresh: "fresh";
1154
+ }>>;
1155
+ addons: z.ZodArray<z.ZodEnum<{
1156
+ none: "none";
1157
+ pwa: "pwa";
1158
+ tauri: "tauri";
1159
+ starlight: "starlight";
1160
+ biome: "biome";
1161
+ lefthook: "lefthook";
1162
+ husky: "husky";
1163
+ ruler: "ruler";
1164
+ turborepo: "turborepo";
1165
+ fumadocs: "fumadocs";
1166
+ ultracite: "ultracite";
1167
+ oxlint: "oxlint";
1168
+ opentui: "opentui";
1169
+ wxt: "wxt";
1170
+ msw: "msw";
1171
+ storybook: "storybook";
1172
+ }>>;
1173
+ examples: z.ZodArray<z.ZodEnum<{
1174
+ none: "none";
1175
+ todo: "todo";
1176
+ ai: "ai";
1177
+ }>>;
1178
+ auth: z.ZodEnum<{
1179
+ none: "none";
1180
+ "better-auth": "better-auth";
1181
+ clerk: "clerk";
1182
+ nextauth: "nextauth";
1183
+ }>;
1184
+ payments: z.ZodEnum<{
1185
+ none: "none";
1186
+ polar: "polar";
1187
+ stripe: "stripe";
1188
+ "lemon-squeezy": "lemon-squeezy";
1189
+ paddle: "paddle";
1190
+ dodo: "dodo";
1191
+ }>;
1192
+ git: z.ZodBoolean;
1193
+ packageManager: z.ZodEnum<{
1194
+ bun: "bun";
1195
+ npm: "npm";
1196
+ pnpm: "pnpm";
1197
+ }>;
1198
+ install: z.ZodBoolean;
1199
+ dbSetup: z.ZodEnum<{
1200
+ none: "none";
1201
+ turso: "turso";
1202
+ neon: "neon";
1203
+ "prisma-postgres": "prisma-postgres";
1204
+ planetscale: "planetscale";
1205
+ "mongodb-atlas": "mongodb-atlas";
1206
+ supabase: "supabase";
1207
+ d1: "d1";
1208
+ docker: "docker";
1209
+ }>;
1210
+ api: z.ZodEnum<{
1211
+ none: "none";
1212
+ trpc: "trpc";
1213
+ orpc: "orpc";
1214
+ "ts-rest": "ts-rest";
1215
+ garph: "garph";
1216
+ }>;
1217
+ webDeploy: z.ZodEnum<{
1218
+ none: "none";
1219
+ cloudflare: "cloudflare";
1220
+ }>;
1221
+ serverDeploy: z.ZodEnum<{
1222
+ none: "none";
1223
+ cloudflare: "cloudflare";
1224
+ }>;
1225
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1226
+ none: "none";
1227
+ svelte: "svelte";
1228
+ solid: "solid";
1229
+ react: "react";
1230
+ vue: "vue";
1231
+ }>>;
1232
+ ai: z.ZodEnum<{
1233
+ none: "none";
1234
+ "vercel-ai": "vercel-ai";
1235
+ mastra: "mastra";
1236
+ voltagent: "voltagent";
1237
+ langgraph: "langgraph";
1238
+ "openai-agents": "openai-agents";
1239
+ "google-adk": "google-adk";
1240
+ modelfusion: "modelfusion";
1241
+ langchain: "langchain";
1242
+ llamaindex: "llamaindex";
1243
+ }>;
1244
+ effect: z.ZodEnum<{
1245
+ none: "none";
1246
+ effect: "effect";
1247
+ "effect-full": "effect-full";
1248
+ }>;
1249
+ stateManagement: z.ZodEnum<{
1250
+ none: "none";
1251
+ zustand: "zustand";
1252
+ jotai: "jotai";
1253
+ nanostores: "nanostores";
1254
+ "redux-toolkit": "redux-toolkit";
1255
+ mobx: "mobx";
1256
+ xstate: "xstate";
1257
+ valtio: "valtio";
1258
+ "tanstack-store": "tanstack-store";
1259
+ "legend-state": "legend-state";
1260
+ }>;
1261
+ forms: z.ZodEnum<{
1262
+ none: "none";
1263
+ "tanstack-form": "tanstack-form";
1264
+ "react-hook-form": "react-hook-form";
1265
+ formik: "formik";
1266
+ "final-form": "final-form";
1267
+ conform: "conform";
1268
+ "modular-forms": "modular-forms";
1269
+ }>;
1270
+ testing: z.ZodEnum<{
1271
+ none: "none";
1272
+ vitest: "vitest";
1273
+ playwright: "playwright";
1274
+ "vitest-playwright": "vitest-playwright";
1275
+ jest: "jest";
1276
+ cypress: "cypress";
1277
+ }>;
1278
+ email: z.ZodEnum<{
1279
+ none: "none";
1280
+ "react-email": "react-email";
1281
+ resend: "resend";
1282
+ nodemailer: "nodemailer";
1283
+ postmark: "postmark";
1284
+ sendgrid: "sendgrid";
1285
+ "aws-ses": "aws-ses";
1286
+ mailgun: "mailgun";
1287
+ plunk: "plunk";
1288
+ }>;
1289
+ cssFramework: z.ZodEnum<{
1290
+ none: "none";
1291
+ tailwind: "tailwind";
1292
+ scss: "scss";
1293
+ less: "less";
1294
+ "postcss-only": "postcss-only";
1295
+ }>;
1296
+ uiLibrary: z.ZodEnum<{
1297
+ none: "none";
1298
+ "shadcn-ui": "shadcn-ui";
1299
+ daisyui: "daisyui";
1300
+ "radix-ui": "radix-ui";
1301
+ "headless-ui": "headless-ui";
1302
+ "park-ui": "park-ui";
1303
+ "chakra-ui": "chakra-ui";
1304
+ nextui: "nextui";
1305
+ mantine: "mantine";
1306
+ "base-ui": "base-ui";
1307
+ "ark-ui": "ark-ui";
1308
+ "react-aria": "react-aria";
1309
+ }>;
1310
+ validation: z.ZodEnum<{
1311
+ none: "none";
1312
+ zod: "zod";
1313
+ valibot: "valibot";
1314
+ arktype: "arktype";
1315
+ typebox: "typebox";
1316
+ typia: "typia";
1317
+ runtypes: "runtypes";
1318
+ "effect-schema": "effect-schema";
1319
+ }>;
1320
+ realtime: z.ZodEnum<{
1321
+ none: "none";
1322
+ "socket-io": "socket-io";
1323
+ partykit: "partykit";
1324
+ ably: "ably";
1325
+ pusher: "pusher";
1326
+ liveblocks: "liveblocks";
1327
+ yjs: "yjs";
1328
+ }>;
1329
+ jobQueue: z.ZodEnum<{
1330
+ none: "none";
1331
+ bullmq: "bullmq";
1332
+ "trigger-dev": "trigger-dev";
1333
+ inngest: "inngest";
1334
+ temporal: "temporal";
1335
+ }>;
1336
+ animation: z.ZodEnum<{
1337
+ none: "none";
1338
+ "framer-motion": "framer-motion";
1339
+ gsap: "gsap";
1340
+ "react-spring": "react-spring";
1341
+ "auto-animate": "auto-animate";
1342
+ lottie: "lottie";
1343
+ }>;
1344
+ fileUpload: z.ZodEnum<{
1345
+ none: "none";
1346
+ uploadthing: "uploadthing";
1347
+ filepond: "filepond";
1348
+ uppy: "uppy";
1349
+ }>;
1350
+ logging: z.ZodEnum<{
1351
+ none: "none";
1352
+ pino: "pino";
1353
+ winston: "winston";
1354
+ }>;
1355
+ observability: z.ZodEnum<{
1356
+ none: "none";
1357
+ opentelemetry: "opentelemetry";
1358
+ }>;
1359
+ cms: z.ZodEnum<{
1360
+ none: "none";
1361
+ payload: "payload";
1362
+ sanity: "sanity";
1363
+ strapi: "strapi";
1364
+ }>;
1365
+ caching: z.ZodEnum<{
1366
+ none: "none";
1367
+ "upstash-redis": "upstash-redis";
1368
+ }>;
1369
+ rustWebFramework: z.ZodEnum<{
1370
+ none: "none";
1371
+ axum: "axum";
1372
+ "actix-web": "actix-web";
1373
+ }>;
1374
+ rustFrontend: z.ZodEnum<{
1375
+ none: "none";
1376
+ leptos: "leptos";
1377
+ dioxus: "dioxus";
1378
+ }>;
1379
+ rustOrm: z.ZodEnum<{
1380
+ none: "none";
1381
+ "sea-orm": "sea-orm";
1382
+ sqlx: "sqlx";
1383
+ }>;
1384
+ rustApi: z.ZodEnum<{
1385
+ none: "none";
1386
+ tonic: "tonic";
1387
+ "async-graphql": "async-graphql";
1388
+ }>;
1389
+ rustCli: z.ZodEnum<{
1390
+ none: "none";
1391
+ clap: "clap";
1392
+ ratatui: "ratatui";
1393
+ }>;
1394
+ rustLibraries: z.ZodArray<z.ZodEnum<{
1395
+ none: "none";
1396
+ serde: "serde";
1397
+ validator: "validator";
1398
+ jsonwebtoken: "jsonwebtoken";
1399
+ argon2: "argon2";
1400
+ "tokio-test": "tokio-test";
1401
+ mockall: "mockall";
1402
+ }>>;
1403
+ }, z.core.$strip>;
1404
+ reproducibleCommand: z.ZodString;
1405
+ timeScaffolded: z.ZodString;
1406
+ elapsedTimeMs: z.ZodNumber;
1407
+ projectDirectory: z.ZodString;
1408
+ relativePath: z.ZodString;
1409
+ error: z.ZodOptional<z.ZodString>;
1410
+ }, z.core.$strip>>;
1411
+ declare function getAllJsonSchemas(): {
1412
+ database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1413
+ none: "none";
1414
+ sqlite: "sqlite";
1415
+ postgres: "postgres";
1416
+ mysql: "mysql";
1417
+ mongodb: "mongodb";
1418
+ }>>;
1419
+ orm: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1420
+ none: "none";
1421
+ drizzle: "drizzle";
1422
+ prisma: "prisma";
1423
+ mongoose: "mongoose";
1424
+ typeorm: "typeorm";
1425
+ kysely: "kysely";
1426
+ mikroorm: "mikroorm";
1427
+ sequelize: "sequelize";
1428
+ }>>;
1429
+ backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1430
+ none: "none";
1431
+ hono: "hono";
1432
+ express: "express";
1433
+ fastify: "fastify";
1434
+ elysia: "elysia";
1435
+ fets: "fets";
1436
+ nestjs: "nestjs";
1437
+ adonisjs: "adonisjs";
1438
+ nitro: "nitro";
1439
+ encore: "encore";
1440
+ convex: "convex";
1441
+ self: "self";
1442
+ }>>;
1443
+ runtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1444
+ none: "none";
1445
+ bun: "bun";
1446
+ node: "node";
1447
+ workers: "workers";
1448
+ }>>;
1449
+ frontend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1450
+ none: "none";
1451
+ "tanstack-router": "tanstack-router";
1452
+ "react-router": "react-router";
1453
+ "tanstack-start": "tanstack-start";
1454
+ next: "next";
1455
+ nuxt: "nuxt";
1456
+ "native-bare": "native-bare";
1457
+ "native-uniwind": "native-uniwind";
1458
+ "native-unistyles": "native-unistyles";
1459
+ svelte: "svelte";
1460
+ solid: "solid";
1461
+ astro: "astro";
1462
+ qwik: "qwik";
1463
+ angular: "angular";
1464
+ redwood: "redwood";
1465
+ fresh: "fresh";
1466
+ }>>;
1467
+ addons: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1468
+ none: "none";
1469
+ pwa: "pwa";
1470
+ tauri: "tauri";
1471
+ starlight: "starlight";
1472
+ biome: "biome";
1473
+ lefthook: "lefthook";
1474
+ husky: "husky";
1475
+ ruler: "ruler";
1476
+ turborepo: "turborepo";
1477
+ fumadocs: "fumadocs";
1478
+ ultracite: "ultracite";
1479
+ oxlint: "oxlint";
1480
+ opentui: "opentui";
1481
+ wxt: "wxt";
1482
+ msw: "msw";
1483
+ storybook: "storybook";
1484
+ }>>;
1485
+ examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1486
+ none: "none";
1487
+ todo: "todo";
1488
+ ai: "ai";
1489
+ }>>;
1490
+ packageManager: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1491
+ bun: "bun";
1492
+ npm: "npm";
1493
+ pnpm: "pnpm";
1494
+ }>>;
1495
+ databaseSetup: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1496
+ none: "none";
1497
+ turso: "turso";
1498
+ neon: "neon";
1499
+ "prisma-postgres": "prisma-postgres";
1500
+ planetscale: "planetscale";
1501
+ "mongodb-atlas": "mongodb-atlas";
1502
+ supabase: "supabase";
1503
+ d1: "d1";
1504
+ docker: "docker";
1505
+ }>>;
1506
+ api: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1507
+ none: "none";
1508
+ trpc: "trpc";
1509
+ orpc: "orpc";
1510
+ "ts-rest": "ts-rest";
1511
+ garph: "garph";
1512
+ }>>;
1513
+ auth: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1514
+ none: "none";
1515
+ "better-auth": "better-auth";
1516
+ clerk: "clerk";
1517
+ nextauth: "nextauth";
1518
+ }>>;
1519
+ payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1520
+ none: "none";
1521
+ polar: "polar";
1522
+ stripe: "stripe";
1523
+ "lemon-squeezy": "lemon-squeezy";
1524
+ paddle: "paddle";
1525
+ dodo: "dodo";
1526
+ }>>;
1527
+ webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1528
+ none: "none";
1529
+ cloudflare: "cloudflare";
1530
+ }>>;
1531
+ serverDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1532
+ none: "none";
1533
+ cloudflare: "cloudflare";
1534
+ }>>;
1535
+ directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1536
+ merge: "merge";
1537
+ overwrite: "overwrite";
1538
+ increment: "increment";
1539
+ error: "error";
1540
+ }>>;
1541
+ template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
1542
+ none: "none";
1543
+ mern: "mern";
1544
+ pern: "pern";
1545
+ t3: "t3";
1546
+ uniwind: "uniwind";
1547
+ }>>;
1548
+ createInput: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1549
+ projectName: z.ZodOptional<z.ZodString>;
1550
+ template: z.ZodOptional<z.ZodEnum<{
1551
+ none: "none";
1552
+ mern: "mern";
1553
+ pern: "pern";
1554
+ t3: "t3";
1555
+ uniwind: "uniwind";
1556
+ }>>;
1557
+ yes: z.ZodOptional<z.ZodBoolean>;
1558
+ yolo: z.ZodOptional<z.ZodBoolean>;
1559
+ verbose: z.ZodOptional<z.ZodBoolean>;
1560
+ ecosystem: z.ZodOptional<z.ZodEnum<{
1561
+ typescript: "typescript";
1562
+ rust: "rust";
1563
+ }>>;
1564
+ database: z.ZodOptional<z.ZodEnum<{
1565
+ none: "none";
1566
+ sqlite: "sqlite";
1567
+ postgres: "postgres";
1568
+ mysql: "mysql";
1569
+ mongodb: "mongodb";
1570
+ }>>;
1571
+ orm: z.ZodOptional<z.ZodEnum<{
1572
+ none: "none";
1573
+ drizzle: "drizzle";
1574
+ prisma: "prisma";
1575
+ mongoose: "mongoose";
1576
+ typeorm: "typeorm";
1577
+ kysely: "kysely";
1578
+ mikroorm: "mikroorm";
1579
+ sequelize: "sequelize";
1580
+ }>>;
1581
+ auth: z.ZodOptional<z.ZodEnum<{
1582
+ none: "none";
1583
+ "better-auth": "better-auth";
1584
+ clerk: "clerk";
1585
+ nextauth: "nextauth";
1586
+ }>>;
1587
+ payments: z.ZodOptional<z.ZodEnum<{
1588
+ none: "none";
1589
+ polar: "polar";
1590
+ stripe: "stripe";
1591
+ "lemon-squeezy": "lemon-squeezy";
1592
+ paddle: "paddle";
1593
+ dodo: "dodo";
1594
+ }>>;
1595
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1596
+ none: "none";
1597
+ "tanstack-router": "tanstack-router";
1598
+ "react-router": "react-router";
1599
+ "tanstack-start": "tanstack-start";
1600
+ next: "next";
1601
+ nuxt: "nuxt";
1602
+ "native-bare": "native-bare";
1603
+ "native-uniwind": "native-uniwind";
1604
+ "native-unistyles": "native-unistyles";
1605
+ svelte: "svelte";
1606
+ solid: "solid";
1607
+ astro: "astro";
1608
+ qwik: "qwik";
1609
+ angular: "angular";
1610
+ redwood: "redwood";
1611
+ fresh: "fresh";
1612
+ }>>>;
1613
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1614
+ none: "none";
1615
+ pwa: "pwa";
1616
+ tauri: "tauri";
1617
+ starlight: "starlight";
1618
+ biome: "biome";
1619
+ lefthook: "lefthook";
1620
+ husky: "husky";
1621
+ ruler: "ruler";
1622
+ turborepo: "turborepo";
1623
+ fumadocs: "fumadocs";
1624
+ ultracite: "ultracite";
1625
+ oxlint: "oxlint";
1626
+ opentui: "opentui";
1627
+ wxt: "wxt";
1628
+ msw: "msw";
1629
+ storybook: "storybook";
1630
+ }>>>;
1631
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1632
+ none: "none";
1633
+ todo: "todo";
1634
+ ai: "ai";
1635
+ }>>>;
1636
+ git: z.ZodOptional<z.ZodBoolean>;
1637
+ packageManager: z.ZodOptional<z.ZodEnum<{
1638
+ bun: "bun";
1639
+ npm: "npm";
1640
+ pnpm: "pnpm";
1641
+ }>>;
1642
+ install: z.ZodOptional<z.ZodBoolean>;
1643
+ dbSetup: z.ZodOptional<z.ZodEnum<{
1644
+ none: "none";
1645
+ turso: "turso";
1646
+ neon: "neon";
1647
+ "prisma-postgres": "prisma-postgres";
1648
+ planetscale: "planetscale";
1649
+ "mongodb-atlas": "mongodb-atlas";
1650
+ supabase: "supabase";
1651
+ d1: "d1";
1652
+ docker: "docker";
1653
+ }>>;
1654
+ backend: z.ZodOptional<z.ZodEnum<{
1655
+ none: "none";
1656
+ hono: "hono";
1657
+ express: "express";
1658
+ fastify: "fastify";
1659
+ elysia: "elysia";
1660
+ fets: "fets";
1661
+ nestjs: "nestjs";
1662
+ adonisjs: "adonisjs";
1663
+ nitro: "nitro";
1664
+ encore: "encore";
1665
+ convex: "convex";
1666
+ self: "self";
1667
+ }>>;
1668
+ runtime: z.ZodOptional<z.ZodEnum<{
1669
+ none: "none";
1670
+ bun: "bun";
1671
+ node: "node";
1672
+ workers: "workers";
1673
+ }>>;
1674
+ api: z.ZodOptional<z.ZodEnum<{
1675
+ none: "none";
1676
+ trpc: "trpc";
1677
+ orpc: "orpc";
1678
+ "ts-rest": "ts-rest";
1679
+ garph: "garph";
1680
+ }>>;
1681
+ webDeploy: z.ZodOptional<z.ZodEnum<{
1682
+ none: "none";
1683
+ cloudflare: "cloudflare";
1684
+ }>>;
1685
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
1686
+ none: "none";
1687
+ cloudflare: "cloudflare";
1688
+ }>>;
1689
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
1690
+ merge: "merge";
1691
+ overwrite: "overwrite";
1692
+ increment: "increment";
1693
+ error: "error";
1694
+ }>>;
1695
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
1696
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
1697
+ manualDb: z.ZodOptional<z.ZodBoolean>;
1698
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
1699
+ none: "none";
1700
+ svelte: "svelte";
1701
+ solid: "solid";
1702
+ react: "react";
1703
+ vue: "vue";
1704
+ }>>;
1705
+ ai: z.ZodOptional<z.ZodEnum<{
1706
+ none: "none";
1707
+ "vercel-ai": "vercel-ai";
1708
+ mastra: "mastra";
1709
+ voltagent: "voltagent";
1710
+ langgraph: "langgraph";
1711
+ "openai-agents": "openai-agents";
1712
+ "google-adk": "google-adk";
1713
+ modelfusion: "modelfusion";
1714
+ langchain: "langchain";
1715
+ llamaindex: "llamaindex";
1716
+ }>>;
1717
+ effect: z.ZodOptional<z.ZodEnum<{
1718
+ none: "none";
1719
+ effect: "effect";
1720
+ "effect-full": "effect-full";
1721
+ }>>;
1722
+ stateManagement: z.ZodOptional<z.ZodEnum<{
1723
+ none: "none";
1724
+ zustand: "zustand";
1725
+ jotai: "jotai";
1726
+ nanostores: "nanostores";
1727
+ "redux-toolkit": "redux-toolkit";
1728
+ mobx: "mobx";
1729
+ xstate: "xstate";
1730
+ valtio: "valtio";
1731
+ "tanstack-store": "tanstack-store";
1732
+ "legend-state": "legend-state";
1733
+ }>>;
1734
+ forms: z.ZodOptional<z.ZodEnum<{
1735
+ none: "none";
1736
+ "tanstack-form": "tanstack-form";
1737
+ "react-hook-form": "react-hook-form";
1738
+ formik: "formik";
1739
+ "final-form": "final-form";
1740
+ conform: "conform";
1741
+ "modular-forms": "modular-forms";
1742
+ }>>;
1743
+ testing: z.ZodOptional<z.ZodEnum<{
1744
+ none: "none";
1745
+ vitest: "vitest";
1746
+ playwright: "playwright";
1747
+ "vitest-playwright": "vitest-playwright";
1748
+ jest: "jest";
1749
+ cypress: "cypress";
1750
+ }>>;
1751
+ email: z.ZodOptional<z.ZodEnum<{
1752
+ none: "none";
1753
+ "react-email": "react-email";
1754
+ resend: "resend";
1755
+ nodemailer: "nodemailer";
1756
+ postmark: "postmark";
1757
+ sendgrid: "sendgrid";
1758
+ "aws-ses": "aws-ses";
1759
+ mailgun: "mailgun";
1760
+ plunk: "plunk";
1761
+ }>>;
1762
+ cssFramework: z.ZodOptional<z.ZodEnum<{
1763
+ none: "none";
1764
+ tailwind: "tailwind";
1765
+ scss: "scss";
1766
+ less: "less";
1767
+ "postcss-only": "postcss-only";
1768
+ }>>;
1769
+ uiLibrary: z.ZodOptional<z.ZodEnum<{
1770
+ none: "none";
1771
+ "shadcn-ui": "shadcn-ui";
1772
+ daisyui: "daisyui";
1773
+ "radix-ui": "radix-ui";
1774
+ "headless-ui": "headless-ui";
1775
+ "park-ui": "park-ui";
1776
+ "chakra-ui": "chakra-ui";
1777
+ nextui: "nextui";
1778
+ mantine: "mantine";
1779
+ "base-ui": "base-ui";
1780
+ "ark-ui": "ark-ui";
1781
+ "react-aria": "react-aria";
1782
+ }>>;
1783
+ validation: z.ZodOptional<z.ZodEnum<{
1784
+ none: "none";
1785
+ zod: "zod";
1786
+ valibot: "valibot";
1787
+ arktype: "arktype";
1788
+ typebox: "typebox";
1789
+ typia: "typia";
1790
+ runtypes: "runtypes";
1791
+ "effect-schema": "effect-schema";
1792
+ }>>;
1793
+ realtime: z.ZodOptional<z.ZodEnum<{
1794
+ none: "none";
1795
+ "socket-io": "socket-io";
1796
+ partykit: "partykit";
1797
+ ably: "ably";
1798
+ pusher: "pusher";
1799
+ liveblocks: "liveblocks";
1800
+ yjs: "yjs";
1801
+ }>>;
1802
+ jobQueue: z.ZodOptional<z.ZodEnum<{
1803
+ none: "none";
1804
+ bullmq: "bullmq";
1805
+ "trigger-dev": "trigger-dev";
1806
+ inngest: "inngest";
1807
+ temporal: "temporal";
1808
+ }>>;
1809
+ animation: z.ZodOptional<z.ZodEnum<{
1810
+ none: "none";
1811
+ "framer-motion": "framer-motion";
1812
+ gsap: "gsap";
1813
+ "react-spring": "react-spring";
1814
+ "auto-animate": "auto-animate";
1815
+ lottie: "lottie";
1816
+ }>>;
1817
+ fileUpload: z.ZodOptional<z.ZodEnum<{
1818
+ none: "none";
1819
+ uploadthing: "uploadthing";
1820
+ filepond: "filepond";
1821
+ uppy: "uppy";
1822
+ }>>;
1823
+ logging: z.ZodOptional<z.ZodEnum<{
1824
+ none: "none";
1825
+ pino: "pino";
1826
+ winston: "winston";
1827
+ }>>;
1828
+ observability: z.ZodOptional<z.ZodEnum<{
1829
+ none: "none";
1830
+ opentelemetry: "opentelemetry";
1831
+ }>>;
1832
+ cms: z.ZodOptional<z.ZodEnum<{
1833
+ none: "none";
1834
+ payload: "payload";
1835
+ sanity: "sanity";
1836
+ strapi: "strapi";
1837
+ }>>;
1838
+ caching: z.ZodOptional<z.ZodEnum<{
1839
+ none: "none";
1840
+ "upstash-redis": "upstash-redis";
1841
+ }>>;
1842
+ rustWebFramework: z.ZodOptional<z.ZodEnum<{
1843
+ none: "none";
1844
+ axum: "axum";
1845
+ "actix-web": "actix-web";
1846
+ }>>;
1847
+ rustFrontend: z.ZodOptional<z.ZodEnum<{
1848
+ none: "none";
1849
+ leptos: "leptos";
1850
+ dioxus: "dioxus";
1851
+ }>>;
1852
+ rustOrm: z.ZodOptional<z.ZodEnum<{
1853
+ none: "none";
1854
+ "sea-orm": "sea-orm";
1855
+ sqlx: "sqlx";
1856
+ }>>;
1857
+ rustApi: z.ZodOptional<z.ZodEnum<{
1858
+ none: "none";
1859
+ tonic: "tonic";
1860
+ "async-graphql": "async-graphql";
1861
+ }>>;
1862
+ rustCli: z.ZodOptional<z.ZodEnum<{
1863
+ none: "none";
1864
+ clap: "clap";
1865
+ ratatui: "ratatui";
1866
+ }>>;
1867
+ rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1868
+ none: "none";
1869
+ serde: "serde";
1870
+ validator: "validator";
1871
+ jsonwebtoken: "jsonwebtoken";
1872
+ argon2: "argon2";
1873
+ "tokio-test": "tokio-test";
1874
+ mockall: "mockall";
1875
+ }>>>;
1876
+ }, z.core.$strip>>;
1877
+ projectConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1878
+ projectName: z.ZodString;
1879
+ projectDir: z.ZodString;
1880
+ relativePath: z.ZodString;
1881
+ ecosystem: z.ZodEnum<{
1882
+ typescript: "typescript";
1883
+ rust: "rust";
1884
+ }>;
1885
+ database: z.ZodEnum<{
1886
+ none: "none";
1887
+ sqlite: "sqlite";
1888
+ postgres: "postgres";
1889
+ mysql: "mysql";
1890
+ mongodb: "mongodb";
1891
+ }>;
1892
+ orm: z.ZodEnum<{
1893
+ none: "none";
1894
+ drizzle: "drizzle";
1895
+ prisma: "prisma";
1896
+ mongoose: "mongoose";
1897
+ typeorm: "typeorm";
1898
+ kysely: "kysely";
1899
+ mikroorm: "mikroorm";
1900
+ sequelize: "sequelize";
1901
+ }>;
1902
+ backend: z.ZodEnum<{
1903
+ none: "none";
1904
+ hono: "hono";
1905
+ express: "express";
1906
+ fastify: "fastify";
1907
+ elysia: "elysia";
1908
+ fets: "fets";
1909
+ nestjs: "nestjs";
1910
+ adonisjs: "adonisjs";
1911
+ nitro: "nitro";
1912
+ encore: "encore";
1913
+ convex: "convex";
1914
+ self: "self";
1915
+ }>;
1916
+ runtime: z.ZodEnum<{
1917
+ none: "none";
1918
+ bun: "bun";
1919
+ node: "node";
1920
+ workers: "workers";
1921
+ }>;
1922
+ frontend: z.ZodArray<z.ZodEnum<{
1923
+ none: "none";
1924
+ "tanstack-router": "tanstack-router";
1925
+ "react-router": "react-router";
1926
+ "tanstack-start": "tanstack-start";
1927
+ next: "next";
1928
+ nuxt: "nuxt";
1929
+ "native-bare": "native-bare";
1930
+ "native-uniwind": "native-uniwind";
1931
+ "native-unistyles": "native-unistyles";
1932
+ svelte: "svelte";
1933
+ solid: "solid";
1934
+ astro: "astro";
1935
+ qwik: "qwik";
1936
+ angular: "angular";
1937
+ redwood: "redwood";
1938
+ fresh: "fresh";
1939
+ }>>;
1940
+ addons: z.ZodArray<z.ZodEnum<{
1941
+ none: "none";
1942
+ pwa: "pwa";
1943
+ tauri: "tauri";
1944
+ starlight: "starlight";
1945
+ biome: "biome";
1946
+ lefthook: "lefthook";
1947
+ husky: "husky";
1948
+ ruler: "ruler";
1949
+ turborepo: "turborepo";
1950
+ fumadocs: "fumadocs";
1951
+ ultracite: "ultracite";
1952
+ oxlint: "oxlint";
1953
+ opentui: "opentui";
1954
+ wxt: "wxt";
1955
+ msw: "msw";
1956
+ storybook: "storybook";
1957
+ }>>;
1958
+ examples: z.ZodArray<z.ZodEnum<{
1959
+ none: "none";
1960
+ todo: "todo";
1961
+ ai: "ai";
1962
+ }>>;
1963
+ auth: z.ZodEnum<{
1964
+ none: "none";
1965
+ "better-auth": "better-auth";
1966
+ clerk: "clerk";
1967
+ nextauth: "nextauth";
1968
+ }>;
1969
+ payments: z.ZodEnum<{
1970
+ none: "none";
1971
+ polar: "polar";
1972
+ stripe: "stripe";
1973
+ "lemon-squeezy": "lemon-squeezy";
1974
+ paddle: "paddle";
1975
+ dodo: "dodo";
1976
+ }>;
1977
+ git: z.ZodBoolean;
1978
+ packageManager: z.ZodEnum<{
1979
+ bun: "bun";
1980
+ npm: "npm";
1981
+ pnpm: "pnpm";
1982
+ }>;
1983
+ install: z.ZodBoolean;
1984
+ dbSetup: z.ZodEnum<{
1985
+ none: "none";
1986
+ turso: "turso";
1987
+ neon: "neon";
1988
+ "prisma-postgres": "prisma-postgres";
1989
+ planetscale: "planetscale";
1990
+ "mongodb-atlas": "mongodb-atlas";
1991
+ supabase: "supabase";
1992
+ d1: "d1";
1993
+ docker: "docker";
1994
+ }>;
1995
+ api: z.ZodEnum<{
1996
+ none: "none";
1997
+ trpc: "trpc";
1998
+ orpc: "orpc";
1999
+ "ts-rest": "ts-rest";
2000
+ garph: "garph";
2001
+ }>;
2002
+ webDeploy: z.ZodEnum<{
2003
+ none: "none";
2004
+ cloudflare: "cloudflare";
2005
+ }>;
2006
+ serverDeploy: z.ZodEnum<{
2007
+ none: "none";
2008
+ cloudflare: "cloudflare";
2009
+ }>;
2010
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
2011
+ none: "none";
2012
+ svelte: "svelte";
2013
+ solid: "solid";
2014
+ react: "react";
2015
+ vue: "vue";
2016
+ }>>;
2017
+ ai: z.ZodEnum<{
2018
+ none: "none";
2019
+ "vercel-ai": "vercel-ai";
2020
+ mastra: "mastra";
2021
+ voltagent: "voltagent";
2022
+ langgraph: "langgraph";
2023
+ "openai-agents": "openai-agents";
2024
+ "google-adk": "google-adk";
2025
+ modelfusion: "modelfusion";
2026
+ langchain: "langchain";
2027
+ llamaindex: "llamaindex";
2028
+ }>;
2029
+ effect: z.ZodEnum<{
2030
+ none: "none";
2031
+ effect: "effect";
2032
+ "effect-full": "effect-full";
2033
+ }>;
2034
+ stateManagement: z.ZodEnum<{
2035
+ none: "none";
2036
+ zustand: "zustand";
2037
+ jotai: "jotai";
2038
+ nanostores: "nanostores";
2039
+ "redux-toolkit": "redux-toolkit";
2040
+ mobx: "mobx";
2041
+ xstate: "xstate";
2042
+ valtio: "valtio";
2043
+ "tanstack-store": "tanstack-store";
2044
+ "legend-state": "legend-state";
2045
+ }>;
2046
+ forms: z.ZodEnum<{
2047
+ none: "none";
2048
+ "tanstack-form": "tanstack-form";
2049
+ "react-hook-form": "react-hook-form";
2050
+ formik: "formik";
2051
+ "final-form": "final-form";
2052
+ conform: "conform";
2053
+ "modular-forms": "modular-forms";
2054
+ }>;
2055
+ testing: z.ZodEnum<{
2056
+ none: "none";
2057
+ vitest: "vitest";
2058
+ playwright: "playwright";
2059
+ "vitest-playwright": "vitest-playwright";
2060
+ jest: "jest";
2061
+ cypress: "cypress";
2062
+ }>;
2063
+ email: z.ZodEnum<{
2064
+ none: "none";
2065
+ "react-email": "react-email";
2066
+ resend: "resend";
2067
+ nodemailer: "nodemailer";
2068
+ postmark: "postmark";
2069
+ sendgrid: "sendgrid";
2070
+ "aws-ses": "aws-ses";
2071
+ mailgun: "mailgun";
2072
+ plunk: "plunk";
2073
+ }>;
2074
+ cssFramework: z.ZodEnum<{
2075
+ none: "none";
2076
+ tailwind: "tailwind";
2077
+ scss: "scss";
2078
+ less: "less";
2079
+ "postcss-only": "postcss-only";
2080
+ }>;
2081
+ uiLibrary: z.ZodEnum<{
2082
+ none: "none";
2083
+ "shadcn-ui": "shadcn-ui";
2084
+ daisyui: "daisyui";
2085
+ "radix-ui": "radix-ui";
2086
+ "headless-ui": "headless-ui";
2087
+ "park-ui": "park-ui";
2088
+ "chakra-ui": "chakra-ui";
2089
+ nextui: "nextui";
2090
+ mantine: "mantine";
2091
+ "base-ui": "base-ui";
2092
+ "ark-ui": "ark-ui";
2093
+ "react-aria": "react-aria";
2094
+ }>;
2095
+ validation: z.ZodEnum<{
2096
+ none: "none";
2097
+ zod: "zod";
2098
+ valibot: "valibot";
2099
+ arktype: "arktype";
2100
+ typebox: "typebox";
2101
+ typia: "typia";
2102
+ runtypes: "runtypes";
2103
+ "effect-schema": "effect-schema";
2104
+ }>;
2105
+ realtime: z.ZodEnum<{
2106
+ none: "none";
2107
+ "socket-io": "socket-io";
2108
+ partykit: "partykit";
2109
+ ably: "ably";
2110
+ pusher: "pusher";
2111
+ liveblocks: "liveblocks";
2112
+ yjs: "yjs";
2113
+ }>;
2114
+ jobQueue: z.ZodEnum<{
2115
+ none: "none";
2116
+ bullmq: "bullmq";
2117
+ "trigger-dev": "trigger-dev";
2118
+ inngest: "inngest";
2119
+ temporal: "temporal";
2120
+ }>;
2121
+ animation: z.ZodEnum<{
2122
+ none: "none";
2123
+ "framer-motion": "framer-motion";
2124
+ gsap: "gsap";
2125
+ "react-spring": "react-spring";
2126
+ "auto-animate": "auto-animate";
2127
+ lottie: "lottie";
2128
+ }>;
2129
+ fileUpload: z.ZodEnum<{
2130
+ none: "none";
2131
+ uploadthing: "uploadthing";
2132
+ filepond: "filepond";
2133
+ uppy: "uppy";
2134
+ }>;
2135
+ logging: z.ZodEnum<{
2136
+ none: "none";
2137
+ pino: "pino";
2138
+ winston: "winston";
2139
+ }>;
2140
+ observability: z.ZodEnum<{
2141
+ none: "none";
2142
+ opentelemetry: "opentelemetry";
2143
+ }>;
2144
+ cms: z.ZodEnum<{
2145
+ none: "none";
2146
+ payload: "payload";
2147
+ sanity: "sanity";
2148
+ strapi: "strapi";
2149
+ }>;
2150
+ caching: z.ZodEnum<{
2151
+ none: "none";
2152
+ "upstash-redis": "upstash-redis";
2153
+ }>;
2154
+ rustWebFramework: z.ZodEnum<{
2155
+ none: "none";
2156
+ axum: "axum";
2157
+ "actix-web": "actix-web";
2158
+ }>;
2159
+ rustFrontend: z.ZodEnum<{
2160
+ none: "none";
2161
+ leptos: "leptos";
2162
+ dioxus: "dioxus";
2163
+ }>;
2164
+ rustOrm: z.ZodEnum<{
2165
+ none: "none";
2166
+ "sea-orm": "sea-orm";
2167
+ sqlx: "sqlx";
2168
+ }>;
2169
+ rustApi: z.ZodEnum<{
2170
+ none: "none";
2171
+ tonic: "tonic";
2172
+ "async-graphql": "async-graphql";
2173
+ }>;
2174
+ rustCli: z.ZodEnum<{
2175
+ none: "none";
2176
+ clap: "clap";
2177
+ ratatui: "ratatui";
2178
+ }>;
2179
+ rustLibraries: z.ZodArray<z.ZodEnum<{
2180
+ none: "none";
2181
+ serde: "serde";
2182
+ validator: "validator";
2183
+ jsonwebtoken: "jsonwebtoken";
2184
+ argon2: "argon2";
2185
+ "tokio-test": "tokio-test";
2186
+ mockall: "mockall";
2187
+ }>>;
2188
+ }, z.core.$strip>>;
2189
+ betterTStackConfig: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2190
+ version: z.ZodString;
2191
+ createdAt: z.ZodString;
2192
+ ecosystem: z.ZodEnum<{
2193
+ typescript: "typescript";
2194
+ rust: "rust";
2195
+ }>;
2196
+ database: z.ZodEnum<{
2197
+ none: "none";
2198
+ sqlite: "sqlite";
2199
+ postgres: "postgres";
2200
+ mysql: "mysql";
2201
+ mongodb: "mongodb";
2202
+ }>;
2203
+ orm: z.ZodEnum<{
2204
+ none: "none";
2205
+ drizzle: "drizzle";
2206
+ prisma: "prisma";
2207
+ mongoose: "mongoose";
2208
+ typeorm: "typeorm";
2209
+ kysely: "kysely";
2210
+ mikroorm: "mikroorm";
2211
+ sequelize: "sequelize";
2212
+ }>;
2213
+ backend: z.ZodEnum<{
2214
+ none: "none";
2215
+ hono: "hono";
2216
+ express: "express";
2217
+ fastify: "fastify";
2218
+ elysia: "elysia";
2219
+ fets: "fets";
2220
+ nestjs: "nestjs";
2221
+ adonisjs: "adonisjs";
2222
+ nitro: "nitro";
2223
+ encore: "encore";
2224
+ convex: "convex";
2225
+ self: "self";
2226
+ }>;
2227
+ runtime: z.ZodEnum<{
2228
+ none: "none";
2229
+ bun: "bun";
2230
+ node: "node";
2231
+ workers: "workers";
2232
+ }>;
2233
+ frontend: z.ZodArray<z.ZodEnum<{
2234
+ none: "none";
2235
+ "tanstack-router": "tanstack-router";
2236
+ "react-router": "react-router";
2237
+ "tanstack-start": "tanstack-start";
2238
+ next: "next";
2239
+ nuxt: "nuxt";
2240
+ "native-bare": "native-bare";
2241
+ "native-uniwind": "native-uniwind";
2242
+ "native-unistyles": "native-unistyles";
2243
+ svelte: "svelte";
2244
+ solid: "solid";
2245
+ astro: "astro";
2246
+ qwik: "qwik";
2247
+ angular: "angular";
2248
+ redwood: "redwood";
2249
+ fresh: "fresh";
2250
+ }>>;
2251
+ addons: z.ZodArray<z.ZodEnum<{
2252
+ none: "none";
2253
+ pwa: "pwa";
2254
+ tauri: "tauri";
2255
+ starlight: "starlight";
2256
+ biome: "biome";
2257
+ lefthook: "lefthook";
2258
+ husky: "husky";
2259
+ ruler: "ruler";
2260
+ turborepo: "turborepo";
2261
+ fumadocs: "fumadocs";
2262
+ ultracite: "ultracite";
2263
+ oxlint: "oxlint";
2264
+ opentui: "opentui";
2265
+ wxt: "wxt";
2266
+ msw: "msw";
2267
+ storybook: "storybook";
2268
+ }>>;
2269
+ examples: z.ZodArray<z.ZodEnum<{
2270
+ none: "none";
2271
+ todo: "todo";
2272
+ ai: "ai";
2273
+ }>>;
2274
+ auth: z.ZodEnum<{
2275
+ none: "none";
2276
+ "better-auth": "better-auth";
2277
+ clerk: "clerk";
2278
+ nextauth: "nextauth";
2279
+ }>;
2280
+ payments: z.ZodEnum<{
2281
+ none: "none";
2282
+ polar: "polar";
2283
+ stripe: "stripe";
2284
+ "lemon-squeezy": "lemon-squeezy";
2285
+ paddle: "paddle";
2286
+ dodo: "dodo";
2287
+ }>;
2288
+ packageManager: z.ZodEnum<{
2289
+ bun: "bun";
2290
+ npm: "npm";
2291
+ pnpm: "pnpm";
2292
+ }>;
2293
+ dbSetup: z.ZodEnum<{
2294
+ none: "none";
2295
+ turso: "turso";
2296
+ neon: "neon";
2297
+ "prisma-postgres": "prisma-postgres";
2298
+ planetscale: "planetscale";
2299
+ "mongodb-atlas": "mongodb-atlas";
2300
+ supabase: "supabase";
2301
+ d1: "d1";
2302
+ docker: "docker";
2303
+ }>;
2304
+ api: z.ZodEnum<{
2305
+ none: "none";
2306
+ trpc: "trpc";
2307
+ orpc: "orpc";
2308
+ "ts-rest": "ts-rest";
2309
+ garph: "garph";
2310
+ }>;
2311
+ webDeploy: z.ZodEnum<{
2312
+ none: "none";
2313
+ cloudflare: "cloudflare";
2314
+ }>;
2315
+ serverDeploy: z.ZodEnum<{
2316
+ none: "none";
2317
+ cloudflare: "cloudflare";
2318
+ }>;
2319
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
2320
+ none: "none";
2321
+ svelte: "svelte";
2322
+ solid: "solid";
2323
+ react: "react";
2324
+ vue: "vue";
2325
+ }>>;
2326
+ ai: z.ZodEnum<{
2327
+ none: "none";
2328
+ "vercel-ai": "vercel-ai";
2329
+ mastra: "mastra";
2330
+ voltagent: "voltagent";
2331
+ langgraph: "langgraph";
2332
+ "openai-agents": "openai-agents";
2333
+ "google-adk": "google-adk";
2334
+ modelfusion: "modelfusion";
2335
+ langchain: "langchain";
2336
+ llamaindex: "llamaindex";
2337
+ }>;
2338
+ effect: z.ZodEnum<{
2339
+ none: "none";
2340
+ effect: "effect";
2341
+ "effect-full": "effect-full";
2342
+ }>;
2343
+ stateManagement: z.ZodEnum<{
2344
+ none: "none";
2345
+ zustand: "zustand";
2346
+ jotai: "jotai";
2347
+ nanostores: "nanostores";
2348
+ "redux-toolkit": "redux-toolkit";
2349
+ mobx: "mobx";
2350
+ xstate: "xstate";
2351
+ valtio: "valtio";
2352
+ "tanstack-store": "tanstack-store";
2353
+ "legend-state": "legend-state";
2354
+ }>;
2355
+ forms: z.ZodEnum<{
2356
+ none: "none";
2357
+ "tanstack-form": "tanstack-form";
2358
+ "react-hook-form": "react-hook-form";
2359
+ formik: "formik";
2360
+ "final-form": "final-form";
2361
+ conform: "conform";
2362
+ "modular-forms": "modular-forms";
2363
+ }>;
2364
+ testing: z.ZodEnum<{
2365
+ none: "none";
2366
+ vitest: "vitest";
2367
+ playwright: "playwright";
2368
+ "vitest-playwright": "vitest-playwright";
2369
+ jest: "jest";
2370
+ cypress: "cypress";
2371
+ }>;
2372
+ email: z.ZodEnum<{
2373
+ none: "none";
2374
+ "react-email": "react-email";
2375
+ resend: "resend";
2376
+ nodemailer: "nodemailer";
2377
+ postmark: "postmark";
2378
+ sendgrid: "sendgrid";
2379
+ "aws-ses": "aws-ses";
2380
+ mailgun: "mailgun";
2381
+ plunk: "plunk";
2382
+ }>;
2383
+ cssFramework: z.ZodEnum<{
2384
+ none: "none";
2385
+ tailwind: "tailwind";
2386
+ scss: "scss";
2387
+ less: "less";
2388
+ "postcss-only": "postcss-only";
2389
+ }>;
2390
+ uiLibrary: z.ZodEnum<{
2391
+ none: "none";
2392
+ "shadcn-ui": "shadcn-ui";
2393
+ daisyui: "daisyui";
2394
+ "radix-ui": "radix-ui";
2395
+ "headless-ui": "headless-ui";
2396
+ "park-ui": "park-ui";
2397
+ "chakra-ui": "chakra-ui";
2398
+ nextui: "nextui";
2399
+ mantine: "mantine";
2400
+ "base-ui": "base-ui";
2401
+ "ark-ui": "ark-ui";
2402
+ "react-aria": "react-aria";
2403
+ }>;
2404
+ validation: z.ZodEnum<{
2405
+ none: "none";
2406
+ zod: "zod";
2407
+ valibot: "valibot";
2408
+ arktype: "arktype";
2409
+ typebox: "typebox";
2410
+ typia: "typia";
2411
+ runtypes: "runtypes";
2412
+ "effect-schema": "effect-schema";
2413
+ }>;
2414
+ realtime: z.ZodEnum<{
2415
+ none: "none";
2416
+ "socket-io": "socket-io";
2417
+ partykit: "partykit";
2418
+ ably: "ably";
2419
+ pusher: "pusher";
2420
+ liveblocks: "liveblocks";
2421
+ yjs: "yjs";
2422
+ }>;
2423
+ jobQueue: z.ZodEnum<{
2424
+ none: "none";
2425
+ bullmq: "bullmq";
2426
+ "trigger-dev": "trigger-dev";
2427
+ inngest: "inngest";
2428
+ temporal: "temporal";
2429
+ }>;
2430
+ animation: z.ZodEnum<{
2431
+ none: "none";
2432
+ "framer-motion": "framer-motion";
2433
+ gsap: "gsap";
2434
+ "react-spring": "react-spring";
2435
+ "auto-animate": "auto-animate";
2436
+ lottie: "lottie";
2437
+ }>;
2438
+ fileUpload: z.ZodEnum<{
2439
+ none: "none";
2440
+ uploadthing: "uploadthing";
2441
+ filepond: "filepond";
2442
+ uppy: "uppy";
2443
+ }>;
2444
+ logging: z.ZodEnum<{
2445
+ none: "none";
2446
+ pino: "pino";
2447
+ winston: "winston";
2448
+ }>;
2449
+ observability: z.ZodEnum<{
2450
+ none: "none";
2451
+ opentelemetry: "opentelemetry";
2452
+ }>;
2453
+ cms: z.ZodEnum<{
2454
+ none: "none";
2455
+ payload: "payload";
2456
+ sanity: "sanity";
2457
+ strapi: "strapi";
2458
+ }>;
2459
+ caching: z.ZodEnum<{
2460
+ none: "none";
2461
+ "upstash-redis": "upstash-redis";
2462
+ }>;
2463
+ rustWebFramework: z.ZodEnum<{
2464
+ none: "none";
2465
+ axum: "axum";
2466
+ "actix-web": "actix-web";
2467
+ }>;
2468
+ rustFrontend: z.ZodEnum<{
2469
+ none: "none";
2470
+ leptos: "leptos";
2471
+ dioxus: "dioxus";
2472
+ }>;
2473
+ rustOrm: z.ZodEnum<{
2474
+ none: "none";
2475
+ "sea-orm": "sea-orm";
2476
+ sqlx: "sqlx";
2477
+ }>;
2478
+ rustApi: z.ZodEnum<{
2479
+ none: "none";
2480
+ tonic: "tonic";
2481
+ "async-graphql": "async-graphql";
2482
+ }>;
2483
+ rustCli: z.ZodEnum<{
2484
+ none: "none";
2485
+ clap: "clap";
2486
+ ratatui: "ratatui";
2487
+ }>;
2488
+ rustLibraries: z.ZodArray<z.ZodEnum<{
2489
+ none: "none";
2490
+ serde: "serde";
2491
+ validator: "validator";
2492
+ jsonwebtoken: "jsonwebtoken";
2493
+ argon2: "argon2";
2494
+ "tokio-test": "tokio-test";
2495
+ mockall: "mockall";
2496
+ }>>;
2497
+ }, z.core.$strip>>;
2498
+ initResult: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
2499
+ success: z.ZodBoolean;
2500
+ projectConfig: z.ZodObject<{
2501
+ projectName: z.ZodString;
2502
+ projectDir: z.ZodString;
2503
+ relativePath: z.ZodString;
2504
+ ecosystem: z.ZodEnum<{
2505
+ typescript: "typescript";
2506
+ rust: "rust";
2507
+ }>;
2508
+ database: z.ZodEnum<{
2509
+ none: "none";
2510
+ sqlite: "sqlite";
2511
+ postgres: "postgres";
2512
+ mysql: "mysql";
2513
+ mongodb: "mongodb";
2514
+ }>;
2515
+ orm: z.ZodEnum<{
2516
+ none: "none";
2517
+ drizzle: "drizzle";
2518
+ prisma: "prisma";
2519
+ mongoose: "mongoose";
2520
+ typeorm: "typeorm";
2521
+ kysely: "kysely";
2522
+ mikroorm: "mikroorm";
2523
+ sequelize: "sequelize";
2524
+ }>;
2525
+ backend: z.ZodEnum<{
2526
+ none: "none";
2527
+ hono: "hono";
2528
+ express: "express";
2529
+ fastify: "fastify";
2530
+ elysia: "elysia";
2531
+ fets: "fets";
2532
+ nestjs: "nestjs";
2533
+ adonisjs: "adonisjs";
2534
+ nitro: "nitro";
2535
+ encore: "encore";
2536
+ convex: "convex";
2537
+ self: "self";
2538
+ }>;
2539
+ runtime: z.ZodEnum<{
2540
+ none: "none";
2541
+ bun: "bun";
2542
+ node: "node";
2543
+ workers: "workers";
2544
+ }>;
2545
+ frontend: z.ZodArray<z.ZodEnum<{
2546
+ none: "none";
2547
+ "tanstack-router": "tanstack-router";
2548
+ "react-router": "react-router";
2549
+ "tanstack-start": "tanstack-start";
2550
+ next: "next";
2551
+ nuxt: "nuxt";
2552
+ "native-bare": "native-bare";
2553
+ "native-uniwind": "native-uniwind";
2554
+ "native-unistyles": "native-unistyles";
2555
+ svelte: "svelte";
2556
+ solid: "solid";
2557
+ astro: "astro";
2558
+ qwik: "qwik";
2559
+ angular: "angular";
2560
+ redwood: "redwood";
2561
+ fresh: "fresh";
2562
+ }>>;
2563
+ addons: z.ZodArray<z.ZodEnum<{
2564
+ none: "none";
2565
+ pwa: "pwa";
2566
+ tauri: "tauri";
2567
+ starlight: "starlight";
2568
+ biome: "biome";
2569
+ lefthook: "lefthook";
2570
+ husky: "husky";
2571
+ ruler: "ruler";
2572
+ turborepo: "turborepo";
2573
+ fumadocs: "fumadocs";
2574
+ ultracite: "ultracite";
2575
+ oxlint: "oxlint";
2576
+ opentui: "opentui";
2577
+ wxt: "wxt";
2578
+ msw: "msw";
2579
+ storybook: "storybook";
2580
+ }>>;
2581
+ examples: z.ZodArray<z.ZodEnum<{
2582
+ none: "none";
2583
+ todo: "todo";
2584
+ ai: "ai";
2585
+ }>>;
2586
+ auth: z.ZodEnum<{
2587
+ none: "none";
2588
+ "better-auth": "better-auth";
2589
+ clerk: "clerk";
2590
+ nextauth: "nextauth";
2591
+ }>;
2592
+ payments: z.ZodEnum<{
2593
+ none: "none";
2594
+ polar: "polar";
2595
+ stripe: "stripe";
2596
+ "lemon-squeezy": "lemon-squeezy";
2597
+ paddle: "paddle";
2598
+ dodo: "dodo";
2599
+ }>;
2600
+ git: z.ZodBoolean;
2601
+ packageManager: z.ZodEnum<{
2602
+ bun: "bun";
2603
+ npm: "npm";
2604
+ pnpm: "pnpm";
2605
+ }>;
2606
+ install: z.ZodBoolean;
2607
+ dbSetup: z.ZodEnum<{
2608
+ none: "none";
2609
+ turso: "turso";
2610
+ neon: "neon";
2611
+ "prisma-postgres": "prisma-postgres";
2612
+ planetscale: "planetscale";
2613
+ "mongodb-atlas": "mongodb-atlas";
2614
+ supabase: "supabase";
2615
+ d1: "d1";
2616
+ docker: "docker";
2617
+ }>;
2618
+ api: z.ZodEnum<{
2619
+ none: "none";
2620
+ trpc: "trpc";
2621
+ orpc: "orpc";
2622
+ "ts-rest": "ts-rest";
2623
+ garph: "garph";
2624
+ }>;
2625
+ webDeploy: z.ZodEnum<{
2626
+ none: "none";
2627
+ cloudflare: "cloudflare";
2628
+ }>;
2629
+ serverDeploy: z.ZodEnum<{
2630
+ none: "none";
2631
+ cloudflare: "cloudflare";
2632
+ }>;
2633
+ astroIntegration: z.ZodOptional<z.ZodEnum<{
2634
+ none: "none";
2635
+ svelte: "svelte";
2636
+ solid: "solid";
2637
+ react: "react";
2638
+ vue: "vue";
2639
+ }>>;
2640
+ ai: z.ZodEnum<{
2641
+ none: "none";
2642
+ "vercel-ai": "vercel-ai";
2643
+ mastra: "mastra";
2644
+ voltagent: "voltagent";
2645
+ langgraph: "langgraph";
2646
+ "openai-agents": "openai-agents";
2647
+ "google-adk": "google-adk";
2648
+ modelfusion: "modelfusion";
2649
+ langchain: "langchain";
2650
+ llamaindex: "llamaindex";
2651
+ }>;
2652
+ effect: z.ZodEnum<{
2653
+ none: "none";
2654
+ effect: "effect";
2655
+ "effect-full": "effect-full";
2656
+ }>;
2657
+ stateManagement: z.ZodEnum<{
2658
+ none: "none";
2659
+ zustand: "zustand";
2660
+ jotai: "jotai";
2661
+ nanostores: "nanostores";
2662
+ "redux-toolkit": "redux-toolkit";
2663
+ mobx: "mobx";
2664
+ xstate: "xstate";
2665
+ valtio: "valtio";
2666
+ "tanstack-store": "tanstack-store";
2667
+ "legend-state": "legend-state";
2668
+ }>;
2669
+ forms: z.ZodEnum<{
2670
+ none: "none";
2671
+ "tanstack-form": "tanstack-form";
2672
+ "react-hook-form": "react-hook-form";
2673
+ formik: "formik";
2674
+ "final-form": "final-form";
2675
+ conform: "conform";
2676
+ "modular-forms": "modular-forms";
2677
+ }>;
2678
+ testing: z.ZodEnum<{
2679
+ none: "none";
2680
+ vitest: "vitest";
2681
+ playwright: "playwright";
2682
+ "vitest-playwright": "vitest-playwright";
2683
+ jest: "jest";
2684
+ cypress: "cypress";
2685
+ }>;
2686
+ email: z.ZodEnum<{
2687
+ none: "none";
2688
+ "react-email": "react-email";
2689
+ resend: "resend";
2690
+ nodemailer: "nodemailer";
2691
+ postmark: "postmark";
2692
+ sendgrid: "sendgrid";
2693
+ "aws-ses": "aws-ses";
2694
+ mailgun: "mailgun";
2695
+ plunk: "plunk";
2696
+ }>;
2697
+ cssFramework: z.ZodEnum<{
2698
+ none: "none";
2699
+ tailwind: "tailwind";
2700
+ scss: "scss";
2701
+ less: "less";
2702
+ "postcss-only": "postcss-only";
2703
+ }>;
2704
+ uiLibrary: z.ZodEnum<{
2705
+ none: "none";
2706
+ "shadcn-ui": "shadcn-ui";
2707
+ daisyui: "daisyui";
2708
+ "radix-ui": "radix-ui";
2709
+ "headless-ui": "headless-ui";
2710
+ "park-ui": "park-ui";
2711
+ "chakra-ui": "chakra-ui";
2712
+ nextui: "nextui";
2713
+ mantine: "mantine";
2714
+ "base-ui": "base-ui";
2715
+ "ark-ui": "ark-ui";
2716
+ "react-aria": "react-aria";
2717
+ }>;
2718
+ validation: z.ZodEnum<{
2719
+ none: "none";
2720
+ zod: "zod";
2721
+ valibot: "valibot";
2722
+ arktype: "arktype";
2723
+ typebox: "typebox";
2724
+ typia: "typia";
2725
+ runtypes: "runtypes";
2726
+ "effect-schema": "effect-schema";
2727
+ }>;
2728
+ realtime: z.ZodEnum<{
2729
+ none: "none";
2730
+ "socket-io": "socket-io";
2731
+ partykit: "partykit";
2732
+ ably: "ably";
2733
+ pusher: "pusher";
2734
+ liveblocks: "liveblocks";
2735
+ yjs: "yjs";
2736
+ }>;
2737
+ jobQueue: z.ZodEnum<{
2738
+ none: "none";
2739
+ bullmq: "bullmq";
2740
+ "trigger-dev": "trigger-dev";
2741
+ inngest: "inngest";
2742
+ temporal: "temporal";
2743
+ }>;
2744
+ animation: z.ZodEnum<{
2745
+ none: "none";
2746
+ "framer-motion": "framer-motion";
2747
+ gsap: "gsap";
2748
+ "react-spring": "react-spring";
2749
+ "auto-animate": "auto-animate";
2750
+ lottie: "lottie";
2751
+ }>;
2752
+ fileUpload: z.ZodEnum<{
2753
+ none: "none";
2754
+ uploadthing: "uploadthing";
2755
+ filepond: "filepond";
2756
+ uppy: "uppy";
2757
+ }>;
2758
+ logging: z.ZodEnum<{
2759
+ none: "none";
2760
+ pino: "pino";
2761
+ winston: "winston";
2762
+ }>;
2763
+ observability: z.ZodEnum<{
2764
+ none: "none";
2765
+ opentelemetry: "opentelemetry";
2766
+ }>;
2767
+ cms: z.ZodEnum<{
2768
+ none: "none";
2769
+ payload: "payload";
2770
+ sanity: "sanity";
2771
+ strapi: "strapi";
2772
+ }>;
2773
+ caching: z.ZodEnum<{
2774
+ none: "none";
2775
+ "upstash-redis": "upstash-redis";
2776
+ }>;
2777
+ rustWebFramework: z.ZodEnum<{
2778
+ none: "none";
2779
+ axum: "axum";
2780
+ "actix-web": "actix-web";
2781
+ }>;
2782
+ rustFrontend: z.ZodEnum<{
2783
+ none: "none";
2784
+ leptos: "leptos";
2785
+ dioxus: "dioxus";
2786
+ }>;
2787
+ rustOrm: z.ZodEnum<{
2788
+ none: "none";
2789
+ "sea-orm": "sea-orm";
2790
+ sqlx: "sqlx";
2791
+ }>;
2792
+ rustApi: z.ZodEnum<{
2793
+ none: "none";
2794
+ tonic: "tonic";
2795
+ "async-graphql": "async-graphql";
2796
+ }>;
2797
+ rustCli: z.ZodEnum<{
2798
+ none: "none";
2799
+ clap: "clap";
2800
+ ratatui: "ratatui";
2801
+ }>;
2802
+ rustLibraries: z.ZodArray<z.ZodEnum<{
2803
+ none: "none";
2804
+ serde: "serde";
2805
+ validator: "validator";
2806
+ jsonwebtoken: "jsonwebtoken";
2807
+ argon2: "argon2";
2808
+ "tokio-test": "tokio-test";
2809
+ mockall: "mockall";
2810
+ }>>;
2811
+ }, z.core.$strip>;
2812
+ reproducibleCommand: z.ZodString;
2813
+ timeScaffolded: z.ZodString;
2814
+ elapsedTimeMs: z.ZodNumber;
2815
+ projectDirectory: z.ZodString;
2816
+ relativePath: z.ZodString;
2817
+ error: z.ZodOptional<z.ZodString>;
2818
+ }, z.core.$strip>>;
2819
+ };
2820
+ //#endregion
2821
+ export { getAPIJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
2822
+ //# sourceMappingURL=json-schema.d.mts.map