@better-fullstack/types 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +5 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +16 -6
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +66 -0
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-B9qxrPyW.d.mts → schemas-C0f82atI.d.mts} +64 -5
- package/dist/schemas-C0f82atI.d.mts.map +1 -0
- package/dist/{schemas-Di-YtjGh.mjs → schemas-PlcPX3a0.mjs} +16 -3
- package/dist/schemas-PlcPX3a0.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/package.json +1 -1
- package/dist/schemas-B9qxrPyW.d.mts.map +0 -1
- package/dist/schemas-Di-YtjGh.mjs.map +0 -1
|
@@ -264,8 +264,9 @@ const SearchSchema = z.enum([
|
|
|
264
264
|
"meilisearch",
|
|
265
265
|
"typesense",
|
|
266
266
|
"elasticsearch",
|
|
267
|
+
"algolia",
|
|
267
268
|
"none"
|
|
268
|
-
]).describe("Search engine solution (meilisearch, typesense, or
|
|
269
|
+
]).describe("Search engine solution (meilisearch, typesense, elasticsearch, or algolia for fast search experiences)");
|
|
269
270
|
const FileStorageSchema = z.enum([
|
|
270
271
|
"s3",
|
|
271
272
|
"r2",
|
|
@@ -340,9 +341,15 @@ const RustLibrariesSchema = z.enum([
|
|
|
340
341
|
"mockall",
|
|
341
342
|
"none"
|
|
342
343
|
]).describe("Rust core libraries");
|
|
344
|
+
const RustLoggingSchema = z.enum([
|
|
345
|
+
"tracing",
|
|
346
|
+
"env-logger",
|
|
347
|
+
"none"
|
|
348
|
+
]).describe("Rust logging/tracing library");
|
|
343
349
|
const PythonWebFrameworkSchema = z.enum([
|
|
344
350
|
"fastapi",
|
|
345
351
|
"django",
|
|
352
|
+
"flask",
|
|
346
353
|
"none"
|
|
347
354
|
]).describe("Python web framework");
|
|
348
355
|
const PythonOrmSchema = z.enum([
|
|
@@ -365,6 +372,7 @@ const PythonQualitySchema = z.enum(["ruff", "none"]).describe("Python code quali
|
|
|
365
372
|
const GoWebFrameworkSchema = z.enum([
|
|
366
373
|
"gin",
|
|
367
374
|
"echo",
|
|
375
|
+
"fiber",
|
|
368
376
|
"none"
|
|
369
377
|
]).describe("Go web framework");
|
|
370
378
|
const GoOrmSchema = z.enum([
|
|
@@ -501,6 +509,7 @@ const CreateInputSchema = z.object({
|
|
|
501
509
|
yes: z.boolean().optional(),
|
|
502
510
|
yolo: z.boolean().optional(),
|
|
503
511
|
verbose: z.boolean().optional(),
|
|
512
|
+
dryRun: z.boolean().optional(),
|
|
504
513
|
ecosystem: EcosystemSchema.optional(),
|
|
505
514
|
database: DatabaseSchema.optional(),
|
|
506
515
|
orm: ORMSchema.optional(),
|
|
@@ -558,6 +567,7 @@ const CreateInputSchema = z.object({
|
|
|
558
567
|
rustApi: RustApiSchema.optional(),
|
|
559
568
|
rustCli: RustCliSchema.optional(),
|
|
560
569
|
rustLibraries: z.array(RustLibrariesSchema).optional(),
|
|
570
|
+
rustLogging: RustLoggingSchema.optional(),
|
|
561
571
|
pythonWebFramework: PythonWebFrameworkSchema.optional(),
|
|
562
572
|
pythonOrm: PythonOrmSchema.optional(),
|
|
563
573
|
pythonValidation: PythonValidationSchema.optional(),
|
|
@@ -637,6 +647,7 @@ const ProjectConfigSchema = z.object({
|
|
|
637
647
|
rustApi: RustApiSchema,
|
|
638
648
|
rustCli: RustCliSchema,
|
|
639
649
|
rustLibraries: z.array(RustLibrariesSchema),
|
|
650
|
+
rustLogging: RustLoggingSchema,
|
|
640
651
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
641
652
|
pythonOrm: PythonOrmSchema,
|
|
642
653
|
pythonValidation: PythonValidationSchema,
|
|
@@ -704,6 +715,7 @@ const BetterTStackConfigSchema = z.object({
|
|
|
704
715
|
rustApi: RustApiSchema,
|
|
705
716
|
rustCli: RustCliSchema,
|
|
706
717
|
rustLibraries: z.array(RustLibrariesSchema),
|
|
718
|
+
rustLogging: RustLoggingSchema,
|
|
707
719
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
708
720
|
pythonOrm: PythonOrmSchema,
|
|
709
721
|
pythonValidation: PythonValidationSchema,
|
|
@@ -778,6 +790,7 @@ const RUST_ORM_VALUES = RustOrmSchema.options;
|
|
|
778
790
|
const RUST_API_VALUES = RustApiSchema.options;
|
|
779
791
|
const RUST_CLI_VALUES = RustCliSchema.options;
|
|
780
792
|
const RUST_LIBRARIES_VALUES = RustLibrariesSchema.options;
|
|
793
|
+
const RUST_LOGGING_VALUES = RustLoggingSchema.options;
|
|
781
794
|
const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;
|
|
782
795
|
const PYTHON_ORM_VALUES = PythonOrmSchema.options;
|
|
783
796
|
const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;
|
|
@@ -799,5 +812,5 @@ const SHADCN_FONT_VALUES = ShadcnFontSchema.options;
|
|
|
799
812
|
const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
|
|
800
813
|
|
|
801
814
|
//#endregion
|
|
802
|
-
export { FrontendSchema as $,
|
|
803
|
-
//# sourceMappingURL=schemas-
|
|
815
|
+
export { FrontendSchema as $, RustOrmSchema as $t, DATABASE_SETUP_VALUES as A, VersionChannelSchema as An, ProjectNameSchema as At, EcosystemSchema as B, RUST_CLI_VALUES as Bt, CLIInputSchema as C, TemplateSchema as Cn, PYTHON_QUALITY_VALUES as Ct, CSS_FRAMEWORK_VALUES as D, VALIDATION_VALUES as Dn, PackageManagerSchema as Dt, CSSFrameworkSchema as E, UI_LIBRARY_VALUES as En, PYTHON_WEB_FRAMEWORK_VALUES as Et, DirectoryConflictSchema as F, PythonValidationSchema as Ft, FILE_STORAGE_VALUES as G, RUST_WEB_FRAMEWORK_VALUES as Gt, EmailSchema as H, RUST_LIBRARIES_VALUES as Ht, ECOSYSTEM_VALUES as I, PythonWebFrameworkSchema as It, FRONTEND_VALUES as J, RustApiSchema as Jt, FILE_UPLOAD_VALUES as K, RealtimeSchema as Kt, EFFECT_VALUES as L, REALTIME_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, WebDeploySchema as Mn, PythonOrmSchema as Mt, DatabaseSchema as N, PythonQualitySchema as Nt, CachingSchema as O, VERSION_CHANNEL_VALUES as On, PaymentsSchema as Ot, DatabaseSetupSchema as P, PythonTaskQueueSchema as Pt, FormsSchema as Q, RustLoggingSchema as Qt, EMAIL_VALUES as R, RUNTIME_VALUES as Rt, CACHING_VALUES as S, TESTING_VALUES as Sn, PYTHON_ORM_VALUES as St, CMS_VALUES as T, UILibrarySchema as Tn, PYTHON_VALIDATION_VALUES as Tt, ExamplesSchema as U, RUST_LOGGING_VALUES as Ut, EffectSchema as V, RUST_FRONTEND_VALUES as Vt, FEATURE_FLAGS_VALUES as W, RUST_ORM_VALUES as Wt, FileStorageSchema as X, RustFrontendSchema as Xt, FeatureFlagsSchema as Y, RustCliSchema as Yt, FileUploadSchema as Z, RustLibrariesSchema as Zt, AuthSchema as _, ShadcnIconLibrarySchema as _n, ORM_VALUES as _t, ANALYTICS_VALUES as a, SHADCN_COLOR_THEME_VALUES as an, GoApiSchema as at, BetterTStackConfigFileSchema as b, StateManagementSchema as bn, PAYMENTS_VALUES as bt, API_VALUES as c, SHADCN_RADIUS_VALUES as cn, GoOrmSchema as ct, AddInputSchema as d, SearchSchema as dn, JOB_QUEUE_VALUES as dt, RustWebFrameworkSchema as en, GO_API_VALUES as et, AddonsSchema as f, ServerDeploySchema as fn, JobQueueSchema as ft, AstroIntegrationSchema as g, ShadcnFontSchema as gn, ORMSchema as gt, AnimationSchema as h, ShadcnColorThemeSchema as hn, OBSERVABILITY_VALUES as ht, AI_VALUES as i, SHADCN_BASE_VALUES as in, GO_WEB_FRAMEWORK_VALUES as it, DATABASE_VALUES as j, WEB_DEPLOY_VALUES as jn, PythonAiSchema as jt, CreateInputSchema as k, ValidationSchema as kn, ProjectConfigSchema as kt, ASTRO_INTEGRATION_VALUES as l, SHADCN_STYLE_VALUES as ln, GoWebFrameworkSchema as lt, AnalyticsSchema as m, ShadcnBaseSchema as mn, LoggingSchema as mt, AISchema as n, SERVER_DEPLOY_VALUES as nn, GO_LOGGING_VALUES as nt, ANIMATION_VALUES as o, SHADCN_FONT_VALUES as on, GoCliSchema as ot, AiDocsSchema as p, ShadcnBaseColorSchema as pn, LOGGING_VALUES as pt, FORMS_VALUES as q, RuntimeSchema as qt, AI_DOCS_VALUES as r, SHADCN_BASE_COLOR_VALUES as rn, GO_ORM_VALUES as rt, APISchema as s, SHADCN_ICON_LIBRARY_VALUES as sn, GoLoggingSchema as st, ADDONS_VALUES as t, SEARCH_VALUES as tn, GO_CLI_VALUES as tt, AUTH_VALUES as u, STATE_MANAGEMENT_VALUES as un, InitResultSchema as ut, BACKEND_VALUES as v, ShadcnRadiusSchema as vn, ObservabilitySchema as vt, CMSSchema as w, TestingSchema as wn, PYTHON_TASK_QUEUE_VALUES as wt, BetterTStackConfigSchema as x, TEMPLATE_VALUES as xn, PYTHON_AI_VALUES as xt, BackendSchema as y, ShadcnStyleSchema as yn, PACKAGE_MANAGER_VALUES as yt, EXAMPLES_VALUES as z, RUST_API_VALUES as zt };
|
|
816
|
+
//# sourceMappingURL=schemas-PlcPX3a0.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas-PlcPX3a0.mjs","names":[],"sources":["../src/schemas.ts"],"sourcesContent":["import { z } from \"zod\";\n\nexport const EcosystemSchema = z\n .enum([\"typescript\", \"rust\", \"python\", \"go\"])\n .describe(\"Language ecosystem (typescript, rust, python, or go)\");\n\nexport const DatabaseSchema = z\n .enum([\"none\", \"sqlite\", \"postgres\", \"mysql\", \"mongodb\", \"edgedb\", \"redis\"])\n .describe(\"Database type\");\n\nexport const ORMSchema = z\n .enum([\"drizzle\", \"prisma\", \"mongoose\", \"typeorm\", \"kysely\", \"mikroorm\", \"sequelize\", \"none\"])\n .describe(\"ORM type\");\n\nexport const BackendSchema = z\n .enum([\n \"hono\",\n \"express\",\n \"fastify\",\n \"elysia\",\n \"fets\",\n \"nestjs\",\n \"adonisjs\",\n \"nitro\",\n \"encore\",\n \"convex\",\n \"self\",\n \"none\",\n ])\n .describe(\"Backend framework\");\n\nexport const RuntimeSchema = z\n .enum([\"bun\", \"node\", \"workers\", \"none\"])\n .describe(\"Runtime environment\");\n\nexport const FrontendSchema = z\n .enum([\n \"tanstack-router\",\n \"react-router\",\n \"react-vite\",\n \"tanstack-start\",\n \"next\",\n \"nuxt\",\n \"native-bare\",\n \"native-uniwind\",\n \"native-unistyles\",\n \"svelte\",\n \"solid\",\n \"solid-start\",\n \"astro\",\n \"qwik\",\n \"angular\",\n \"redwood\",\n \"fresh\",\n \"none\",\n ])\n .describe(\"Frontend framework\");\n\nexport const AstroIntegrationSchema = z\n .enum([\"react\", \"vue\", \"svelte\", \"solid\", \"none\"])\n .describe(\"Astro UI framework integration\");\n\nexport const AddonsSchema = z\n .enum([\n \"pwa\",\n \"tauri\",\n \"starlight\",\n \"biome\",\n \"lefthook\",\n \"husky\",\n \"ruler\",\n \"mcp\",\n \"skills\",\n \"turborepo\",\n \"fumadocs\",\n \"ultracite\",\n \"oxlint\",\n \"opentui\",\n \"wxt\",\n \"msw\",\n \"storybook\",\n \"tanstack-query\",\n \"tanstack-table\",\n \"tanstack-virtual\",\n \"tanstack-db\",\n \"tanstack-pacer\",\n \"none\",\n ])\n .describe(\"Additional addons\");\n\nexport const ExamplesSchema = z\n .enum([\"ai\", \"chat-sdk\", \"tanstack-showcase\", \"none\"])\n .describe(\"Example templates to include\");\n\nexport const PackageManagerSchema = z\n .enum([\"npm\", \"pnpm\", \"bun\", \"yarn\"])\n .describe(\"Package manager\");\n\nexport const VersionChannelSchema = z\n .enum([\"stable\", \"latest\", \"beta\"])\n .describe(\"Dependency version channel\");\n\nexport const DatabaseSetupSchema = z\n .enum([\n \"turso\",\n \"neon\",\n \"prisma-postgres\",\n \"planetscale\",\n \"mongodb-atlas\",\n \"supabase\",\n \"upstash\",\n \"d1\",\n \"docker\",\n \"none\",\n ])\n .describe(\"Database hosting setup\");\n\nexport const APISchema = z.enum([\"trpc\", \"orpc\", \"ts-rest\", \"garph\", \"none\"]).describe(\"API type\");\n\nexport const AuthSchema = z\n .enum([\n \"better-auth\",\n \"go-better-auth\",\n \"clerk\",\n \"nextauth\",\n \"stack-auth\",\n \"supabase-auth\",\n \"auth0\",\n \"none\",\n ])\n .describe(\"Authentication provider\");\n\nexport const PaymentsSchema = z\n .enum([\"polar\", \"stripe\", \"lemon-squeezy\", \"paddle\", \"dodo\", \"none\"])\n .describe(\"Payments provider\");\n\nexport const WebDeploySchema = z\n .enum([\"cloudflare\", \"fly\", \"railway\", \"docker\", \"sst\", \"none\"])\n .describe(\"Web deployment\");\n\nexport const ServerDeploySchema = z\n .enum([\"cloudflare\", \"fly\", \"railway\", \"docker\", \"sst\", \"none\"])\n .describe(\"Server deployment\");\n\nexport const AISchema = z\n .enum([\n \"vercel-ai\",\n \"mastra\",\n \"voltagent\",\n \"langgraph\",\n \"openai-agents\",\n \"google-adk\",\n \"modelfusion\",\n \"langchain\",\n \"llamaindex\",\n \"tanstack-ai\",\n \"none\",\n ])\n .describe(\"AI SDK\");\n\nexport const EffectSchema = z\n .enum([\"effect\", \"effect-full\", \"none\"])\n .describe(\n \"Effect ecosystem (effect-full includes @effect/schema, @effect/platform, @effect/sql)\",\n );\n\nexport const StateManagementSchema = z\n .enum([\n \"zustand\",\n \"jotai\",\n \"nanostores\",\n \"redux-toolkit\",\n \"mobx\",\n \"xstate\",\n \"valtio\",\n \"tanstack-store\",\n \"legend-state\",\n \"none\",\n ])\n .describe(\"State management library\");\n\nexport const FormsSchema = z\n .enum([\n \"tanstack-form\",\n \"react-hook-form\",\n \"formik\",\n \"final-form\",\n \"conform\",\n \"modular-forms\",\n \"none\",\n ])\n .describe(\"Form handling library\");\n\nexport const ValidationSchema = z\n .enum([\"zod\", \"valibot\", \"arktype\", \"typebox\", \"typia\", \"runtypes\", \"effect-schema\", \"none\"])\n .describe(\"Schema validation library (none uses Zod as default for internal usage)\");\n\nexport const TestingSchema = z\n .enum([\"vitest\", \"playwright\", \"vitest-playwright\", \"jest\", \"cypress\", \"none\"])\n .describe(\"Testing framework (vitest-playwright includes both unit and e2e testing)\");\n\nexport const EmailSchema = z\n .enum([\n \"react-email\",\n \"resend\",\n \"nodemailer\",\n \"postmark\",\n \"sendgrid\",\n \"aws-ses\",\n \"mailgun\",\n \"plunk\",\n \"none\",\n ])\n .describe(\n \"Email solution (resend includes react-email, nodemailer is classic Node.js email, postmark/sendgrid/aws-ses/mailgun/plunk are transactional email services)\",\n );\n\nexport const RealtimeSchema = z\n .enum([\"socket-io\", \"partykit\", \"ably\", \"pusher\", \"liveblocks\", \"yjs\", \"none\"])\n .describe(\"Real-time/WebSocket solution\");\n\nexport const JobQueueSchema = z\n .enum([\"bullmq\", \"trigger-dev\", \"inngest\", \"temporal\", \"none\"])\n .describe(\"Job queue/background worker solution\");\n\nexport const CMSSchema = z\n .enum([\"payload\", \"sanity\", \"strapi\", \"tinacms\", \"none\"])\n .describe(\"Headless CMS solution\");\n\nexport const CachingSchema = z\n .enum([\"upstash-redis\", \"none\"])\n .describe(\"Caching solution (upstash-redis for serverless Redis)\");\n\nexport const SearchSchema = z\n .enum([\"meilisearch\", \"typesense\", \"elasticsearch\", \"algolia\", \"none\"])\n .describe(\n \"Search engine solution (meilisearch, typesense, elasticsearch, or algolia for fast search experiences)\",\n );\n\nexport const FileStorageSchema = z\n .enum([\"s3\", \"r2\", \"none\"])\n .describe(\"File storage solution (AWS S3 or Cloudflare R2 for object storage)\");\n\nexport const AnimationSchema = z\n .enum([\"framer-motion\", \"gsap\", \"react-spring\", \"auto-animate\", \"lottie\", \"none\"])\n .describe(\"Animation library\");\n\nexport const FileUploadSchema = z\n .enum([\"uploadthing\", \"filepond\", \"uppy\", \"none\"])\n .describe(\"File upload solution\");\n\nexport const LoggingSchema = z\n .enum([\"pino\", \"winston\", \"none\"])\n .describe(\"Server-side logging framework\");\n\nexport const ObservabilitySchema = z\n .enum([\"opentelemetry\", \"sentry\", \"grafana\", \"none\"])\n .describe(\"Observability and distributed tracing\");\n\nexport const FeatureFlagsSchema = z\n .enum([\"growthbook\", \"posthog\", \"none\"])\n .describe(\"Feature flags provider for A/B testing and feature management\");\n\nexport const AnalyticsSchema = z\n .enum([\"plausible\", \"umami\", \"none\"])\n .describe(\"Privacy-focused analytics provider\");\n\n// Rust ecosystem schemas\nexport const RustWebFrameworkSchema = z\n .enum([\"axum\", \"actix-web\", \"none\"])\n .describe(\"Rust web framework\");\n\nexport const RustFrontendSchema = z\n .enum([\"leptos\", \"dioxus\", \"none\"])\n .describe(\"Rust WASM frontend framework\");\n\nexport const RustOrmSchema = z\n .enum([\"sea-orm\", \"sqlx\", \"none\"])\n .describe(\"Rust ORM/database layer\");\n\nexport const RustApiSchema = z\n .enum([\"tonic\", \"async-graphql\", \"none\"])\n .describe(\"Rust API layer (gRPC/GraphQL)\");\n\nexport const RustCliSchema = z.enum([\"clap\", \"ratatui\", \"none\"]).describe(\"Rust CLI tools\");\n\nexport const RustLibrariesSchema = z\n .enum([\"serde\", \"validator\", \"jsonwebtoken\", \"argon2\", \"tokio-test\", \"mockall\", \"none\"])\n .describe(\"Rust core libraries\");\n\nexport const RustLoggingSchema = z\n .enum([\"tracing\", \"env-logger\", \"none\"])\n .describe(\"Rust logging/tracing library\");\n\n// Python ecosystem schemas\nexport const PythonWebFrameworkSchema = z\n .enum([\"fastapi\", \"django\", \"flask\", \"none\"])\n .describe(\"Python web framework\");\n\nexport const PythonOrmSchema = z\n .enum([\"sqlalchemy\", \"sqlmodel\", \"none\"])\n .describe(\"Python ORM/database layer\");\n\nexport const PythonValidationSchema = z\n .enum([\"pydantic\", \"none\"])\n .describe(\"Python validation library\");\n\nexport const PythonAiSchema = z\n .enum([\"langchain\", \"llamaindex\", \"openai-sdk\", \"anthropic-sdk\", \"langgraph\", \"crewai\", \"none\"])\n .describe(\"Python AI/ML framework\");\n\nexport const PythonTaskQueueSchema = z.enum([\"celery\", \"none\"]).describe(\"Python task queue\");\n\nexport const PythonQualitySchema = z.enum([\"ruff\", \"none\"]).describe(\"Python code quality tool\");\n\n// Go ecosystem schemas\nexport const GoWebFrameworkSchema = z.enum([\"gin\", \"echo\", \"fiber\", \"none\"]).describe(\"Go web framework\");\n\nexport const GoOrmSchema = z.enum([\"gorm\", \"sqlc\", \"none\"]).describe(\"Go ORM/database layer\");\n\nexport const GoApiSchema = z.enum([\"grpc-go\", \"none\"]).describe(\"Go API layer (gRPC)\");\n\nexport const GoCliSchema = z.enum([\"cobra\", \"bubbletea\", \"none\"]).describe(\"Go CLI tools\");\n\nexport const GoLoggingSchema = z.enum([\"zap\", \"none\"]).describe(\"Go logging library\");\n\nexport const AiDocsSchema = z\n .enum([\"claude-md\", \"agents-md\", \"cursorrules\", \"none\"])\n .describe(\"AI documentation files (CLAUDE.md, Agents.md, .cursorrules)\");\n\nexport const CSSFrameworkSchema = z\n .enum([\"tailwind\", \"scss\", \"less\", \"postcss-only\", \"none\"])\n .describe(\"CSS framework/preprocessor\");\n\nexport const UILibrarySchema = z\n .enum([\n \"shadcn-ui\",\n \"daisyui\",\n \"radix-ui\",\n \"headless-ui\",\n \"park-ui\",\n \"chakra-ui\",\n \"nextui\",\n \"mantine\",\n \"base-ui\",\n \"ark-ui\",\n \"react-aria\",\n \"none\",\n ])\n .describe(\"UI component library\");\n\nexport const ShadcnBaseSchema = z\n .enum([\"radix\", \"base\"])\n .describe(\"shadcn/ui headless UI base library (radix or base-ui)\");\nexport const ShadcnStyleSchema = z\n .enum([\"vega\", \"nova\", \"maia\", \"lyra\", \"mira\"])\n .describe(\"shadcn/ui visual style preset\");\nexport const ShadcnIconLibrarySchema = z\n .enum([\"lucide\", \"tabler\", \"hugeicons\", \"phosphor\", \"remixicon\"])\n .describe(\"shadcn/ui icon library\");\nexport const ShadcnColorThemeSchema = z\n .enum([\n \"neutral\",\n \"stone\",\n \"zinc\",\n \"gray\",\n \"amber\",\n \"blue\",\n \"cyan\",\n \"emerald\",\n \"fuchsia\",\n \"green\",\n \"indigo\",\n \"lime\",\n \"orange\",\n \"pink\",\n \"purple\",\n \"red\",\n \"rose\",\n \"sky\",\n \"teal\",\n \"violet\",\n \"yellow\",\n ])\n .describe(\"shadcn/ui accent color theme\");\nexport const ShadcnBaseColorSchema = z\n .enum([\"neutral\", \"stone\", \"zinc\", \"gray\"])\n .describe(\"shadcn/ui base neutral color\");\nexport const ShadcnFontSchema = z\n .enum([\n \"inter\",\n \"geist\",\n \"noto-sans\",\n \"nunito-sans\",\n \"figtree\",\n \"roboto\",\n \"raleway\",\n \"dm-sans\",\n \"public-sans\",\n \"outfit\",\n \"jetbrains-mono\",\n \"geist-mono\",\n ])\n .describe(\"shadcn/ui font family\");\nexport const ShadcnRadiusSchema = z\n .enum([\"default\", \"none\", \"small\", \"medium\", \"large\"])\n .describe(\"shadcn/ui border radius preset\");\n\nexport const DirectoryConflictSchema = z\n .enum([\"merge\", \"overwrite\", \"increment\", \"error\"])\n .describe(\"How to handle existing directory conflicts\");\n\nexport const TemplateSchema = z\n .enum([\"mern\", \"pern\", \"t3\", \"uniwind\", \"none\"])\n .describe(\"Predefined project template\");\n\nexport const ProjectNameSchema = z\n .string()\n .min(1, \"Project name cannot be empty\")\n .max(255, \"Project name must be less than 255 characters\")\n .refine(\n (name) => name === \".\" || !name.startsWith(\".\"),\n \"Project name cannot start with a dot (except for '.')\",\n )\n .refine((name) => name === \".\" || !name.startsWith(\"-\"), \"Project name cannot start with a dash\")\n .refine((name) => {\n const invalidChars = [\"<\", \">\", \":\", '\"', \"|\", \"?\", \"*\"];\n return !invalidChars.some((char) => name.includes(char));\n }, \"Project name contains invalid characters\")\n .refine((name) => name.toLowerCase() !== \"node_modules\", \"Project name is reserved\")\n .describe(\"Project name or path\");\n\nexport const CreateInputSchema = z.object({\n projectName: z.string().optional(),\n template: TemplateSchema.optional(),\n yes: z.boolean().optional(),\n yolo: z.boolean().optional(),\n verbose: z.boolean().optional(),\n dryRun: z.boolean().optional(),\n ecosystem: EcosystemSchema.optional(),\n database: DatabaseSchema.optional(),\n orm: ORMSchema.optional(),\n auth: AuthSchema.optional(),\n payments: PaymentsSchema.optional(),\n frontend: z.array(FrontendSchema).optional(),\n addons: z.array(AddonsSchema).optional(),\n examples: z.array(ExamplesSchema).optional(),\n git: z.boolean().optional(),\n packageManager: PackageManagerSchema.optional(),\n versionChannel: VersionChannelSchema.optional(),\n install: z.boolean().optional(),\n dbSetup: DatabaseSetupSchema.optional(),\n backend: BackendSchema.optional(),\n runtime: RuntimeSchema.optional(),\n api: APISchema.optional(),\n webDeploy: WebDeploySchema.optional(),\n serverDeploy: ServerDeploySchema.optional(),\n directoryConflict: DirectoryConflictSchema.optional(),\n renderTitle: z.boolean().optional(),\n disableAnalytics: z.boolean().optional(),\n manualDb: z.boolean().optional(),\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema.optional(),\n effect: EffectSchema.optional(),\n stateManagement: StateManagementSchema.optional(),\n forms: FormsSchema.optional(),\n testing: TestingSchema.optional(),\n email: EmailSchema.optional(),\n cssFramework: CSSFrameworkSchema.optional(),\n uiLibrary: UILibrarySchema.optional(),\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema.optional(),\n realtime: RealtimeSchema.optional(),\n jobQueue: JobQueueSchema.optional(),\n animation: AnimationSchema.optional(),\n fileUpload: FileUploadSchema.optional(),\n logging: LoggingSchema.optional(),\n observability: ObservabilitySchema.optional(),\n featureFlags: FeatureFlagsSchema.optional(),\n analytics: AnalyticsSchema.optional(),\n cms: CMSSchema.optional(),\n caching: CachingSchema.optional(),\n search: SearchSchema.optional(),\n fileStorage: FileStorageSchema.optional(),\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema.optional(),\n rustFrontend: RustFrontendSchema.optional(),\n rustOrm: RustOrmSchema.optional(),\n rustApi: RustApiSchema.optional(),\n rustCli: RustCliSchema.optional(),\n rustLibraries: z.array(RustLibrariesSchema).optional(),\n rustLogging: RustLoggingSchema.optional(),\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema.optional(),\n pythonOrm: PythonOrmSchema.optional(),\n pythonValidation: PythonValidationSchema.optional(),\n pythonAi: z.array(PythonAiSchema).optional(),\n pythonTaskQueue: PythonTaskQueueSchema.optional(),\n pythonQuality: PythonQualitySchema.optional(),\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema.optional(),\n goOrm: GoOrmSchema.optional(),\n goApi: GoApiSchema.optional(),\n goCli: GoCliSchema.optional(),\n goLogging: GoLoggingSchema.optional(),\n // AI documentation files\n aiDocs: z.array(AiDocsSchema).optional(),\n});\n\nexport const AddInputSchema = z.object({\n addons: z.array(AddonsSchema).optional(),\n webDeploy: WebDeploySchema.optional(),\n serverDeploy: ServerDeploySchema.optional(),\n projectDir: z.string().optional(),\n install: z.boolean().optional(),\n packageManager: PackageManagerSchema.optional(),\n});\n\nexport const CLIInputSchema = CreateInputSchema.extend({\n projectDirectory: z.string().optional(),\n});\n\nexport const ProjectConfigSchema = z.object({\n projectName: z.string(),\n projectDir: z.string(),\n relativePath: z.string(),\n ecosystem: EcosystemSchema,\n database: DatabaseSchema,\n orm: ORMSchema,\n backend: BackendSchema,\n runtime: RuntimeSchema,\n frontend: z.array(FrontendSchema),\n addons: z.array(AddonsSchema),\n examples: z.array(ExamplesSchema),\n auth: AuthSchema,\n payments: PaymentsSchema,\n git: z.boolean(),\n packageManager: PackageManagerSchema,\n versionChannel: VersionChannelSchema,\n install: z.boolean(),\n dbSetup: DatabaseSetupSchema,\n api: APISchema,\n webDeploy: WebDeploySchema,\n serverDeploy: ServerDeploySchema,\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema,\n effect: EffectSchema,\n stateManagement: StateManagementSchema,\n forms: FormsSchema,\n testing: TestingSchema,\n email: EmailSchema,\n cssFramework: CSSFrameworkSchema,\n uiLibrary: UILibrarySchema,\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema,\n realtime: RealtimeSchema,\n jobQueue: JobQueueSchema,\n animation: AnimationSchema,\n fileUpload: FileUploadSchema,\n logging: LoggingSchema,\n observability: ObservabilitySchema,\n featureFlags: FeatureFlagsSchema,\n analytics: AnalyticsSchema,\n cms: CMSSchema,\n caching: CachingSchema,\n search: SearchSchema,\n fileStorage: FileStorageSchema,\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema,\n rustFrontend: RustFrontendSchema,\n rustOrm: RustOrmSchema,\n rustApi: RustApiSchema,\n rustCli: RustCliSchema,\n rustLibraries: z.array(RustLibrariesSchema),\n rustLogging: RustLoggingSchema,\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n // AI documentation files\n aiDocs: z.array(AiDocsSchema),\n});\n\nexport const BetterTStackConfigSchema = z.object({\n version: z.string().describe(\"CLI version used to create this project\"),\n createdAt: z.string().describe(\"Timestamp when the project was created\"),\n ecosystem: EcosystemSchema,\n database: DatabaseSchema,\n orm: ORMSchema,\n backend: BackendSchema,\n runtime: RuntimeSchema,\n frontend: z.array(FrontendSchema),\n addons: z.array(AddonsSchema),\n examples: z.array(ExamplesSchema),\n auth: AuthSchema,\n payments: PaymentsSchema,\n packageManager: PackageManagerSchema,\n versionChannel: VersionChannelSchema,\n dbSetup: DatabaseSetupSchema,\n api: APISchema,\n webDeploy: WebDeploySchema,\n serverDeploy: ServerDeploySchema,\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema,\n effect: EffectSchema,\n stateManagement: StateManagementSchema,\n forms: FormsSchema,\n testing: TestingSchema,\n email: EmailSchema,\n cssFramework: CSSFrameworkSchema,\n uiLibrary: UILibrarySchema,\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema,\n realtime: RealtimeSchema,\n jobQueue: JobQueueSchema,\n animation: AnimationSchema,\n fileUpload: FileUploadSchema,\n logging: LoggingSchema,\n observability: ObservabilitySchema,\n featureFlags: FeatureFlagsSchema,\n analytics: AnalyticsSchema,\n cms: CMSSchema,\n caching: CachingSchema,\n search: SearchSchema,\n fileStorage: FileStorageSchema,\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema,\n rustFrontend: RustFrontendSchema,\n rustOrm: RustOrmSchema,\n rustApi: RustApiSchema,\n rustCli: RustCliSchema,\n rustLibraries: z.array(RustLibrariesSchema),\n rustLogging: RustLoggingSchema,\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n // AI documentation files\n aiDocs: z.array(AiDocsSchema),\n});\n\nexport const BetterTStackConfigFileSchema = z\n .object({\n $schema: z.string().optional().describe(\"JSON Schema reference for validation\"),\n })\n .extend(BetterTStackConfigSchema.shape)\n .meta({\n id: \"https://better-fullstack-web.vercel.app/schema.json\",\n title: \"Better Fullstack Configuration\",\n description: \"Configuration file for Better Fullstack projects\",\n });\n\nexport const InitResultSchema = z.object({\n success: z.boolean(),\n projectConfig: ProjectConfigSchema,\n reproducibleCommand: z.string(),\n timeScaffolded: z.string(),\n elapsedTimeMs: z.number(),\n projectDirectory: z.string(),\n relativePath: z.string(),\n error: z.string().optional(),\n});\n\nexport const DATABASE_VALUES = DatabaseSchema.options;\nexport const ORM_VALUES = ORMSchema.options;\nexport const BACKEND_VALUES = BackendSchema.options;\nexport const RUNTIME_VALUES = RuntimeSchema.options;\nexport const FRONTEND_VALUES = FrontendSchema.options;\nexport const ADDONS_VALUES = AddonsSchema.options;\nexport const EXAMPLES_VALUES = ExamplesSchema.options;\nexport const PACKAGE_MANAGER_VALUES = PackageManagerSchema.options;\nexport const VERSION_CHANNEL_VALUES = VersionChannelSchema.options;\nexport const DATABASE_SETUP_VALUES = DatabaseSetupSchema.options;\nexport const API_VALUES = APISchema.options;\nexport const AUTH_VALUES = AuthSchema.options;\nexport const PAYMENTS_VALUES = PaymentsSchema.options;\nexport const WEB_DEPLOY_VALUES = WebDeploySchema.options;\nexport const SERVER_DEPLOY_VALUES = ServerDeploySchema.options;\nexport const DIRECTORY_CONFLICT_VALUES = DirectoryConflictSchema.options;\nexport const TEMPLATE_VALUES = TemplateSchema.options;\nexport const ASTRO_INTEGRATION_VALUES = AstroIntegrationSchema.options;\nexport const AI_VALUES = AISchema.options;\nexport const EFFECT_VALUES = EffectSchema.options;\nexport const STATE_MANAGEMENT_VALUES = StateManagementSchema.options;\nexport const FORMS_VALUES = FormsSchema.options;\nexport const TESTING_VALUES = TestingSchema.options;\nexport const EMAIL_VALUES = EmailSchema.options;\nexport const CSS_FRAMEWORK_VALUES = CSSFrameworkSchema.options;\nexport const UI_LIBRARY_VALUES = UILibrarySchema.options;\nexport const VALIDATION_VALUES = ValidationSchema.options;\nexport const REALTIME_VALUES = RealtimeSchema.options;\nexport const JOB_QUEUE_VALUES = JobQueueSchema.options;\nexport const ANIMATION_VALUES = AnimationSchema.options;\nexport const FILE_UPLOAD_VALUES = FileUploadSchema.options;\nexport const LOGGING_VALUES = LoggingSchema.options;\nexport const OBSERVABILITY_VALUES = ObservabilitySchema.options;\nexport const FEATURE_FLAGS_VALUES = FeatureFlagsSchema.options;\nexport const ANALYTICS_VALUES = AnalyticsSchema.options;\nexport const CMS_VALUES = CMSSchema.options;\nexport const CACHING_VALUES = CachingSchema.options;\nexport const SEARCH_VALUES = SearchSchema.options;\nexport const FILE_STORAGE_VALUES = FileStorageSchema.options;\nexport const ECOSYSTEM_VALUES = EcosystemSchema.options;\nexport const RUST_WEB_FRAMEWORK_VALUES = RustWebFrameworkSchema.options;\nexport const RUST_FRONTEND_VALUES = RustFrontendSchema.options;\nexport const RUST_ORM_VALUES = RustOrmSchema.options;\nexport const RUST_API_VALUES = RustApiSchema.options;\nexport const RUST_CLI_VALUES = RustCliSchema.options;\nexport const RUST_LIBRARIES_VALUES = RustLibrariesSchema.options;\nexport const RUST_LOGGING_VALUES = RustLoggingSchema.options;\nexport const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;\nexport const PYTHON_ORM_VALUES = PythonOrmSchema.options;\nexport const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;\nexport const PYTHON_AI_VALUES = PythonAiSchema.options;\nexport const PYTHON_TASK_QUEUE_VALUES = PythonTaskQueueSchema.options;\nexport const PYTHON_QUALITY_VALUES = PythonQualitySchema.options;\nexport const GO_WEB_FRAMEWORK_VALUES = GoWebFrameworkSchema.options;\nexport const GO_ORM_VALUES = GoOrmSchema.options;\nexport const GO_API_VALUES = GoApiSchema.options;\nexport const GO_CLI_VALUES = GoCliSchema.options;\nexport const GO_LOGGING_VALUES = GoLoggingSchema.options;\nexport const AI_DOCS_VALUES = AiDocsSchema.options;\nexport const SHADCN_BASE_VALUES = ShadcnBaseSchema.options;\nexport const SHADCN_STYLE_VALUES = ShadcnStyleSchema.options;\nexport const SHADCN_ICON_LIBRARY_VALUES = ShadcnIconLibrarySchema.options;\nexport const SHADCN_COLOR_THEME_VALUES = ShadcnColorThemeSchema.options;\nexport const SHADCN_BASE_COLOR_VALUES = ShadcnBaseColorSchema.options;\nexport const SHADCN_FONT_VALUES = ShadcnFontSchema.options;\nexport const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;\n"],"mappings":";;;AAEA,MAAa,kBAAkB,EAC5B,KAAK;CAAC;CAAc;CAAQ;CAAU;CAAK,CAAC,CAC5C,SAAS,uDAAuD;AAEnE,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAQ;CAAU;CAAY;CAAS;CAAW;CAAU;CAAQ,CAAC,CAC3E,SAAS,gBAAgB;AAE5B,MAAa,YAAY,EACtB,KAAK;CAAC;CAAW;CAAU;CAAY;CAAW;CAAU;CAAY;CAAa;CAAO,CAAC,CAC7F,SAAS,WAAW;AAEvB,MAAa,gBAAgB,EAC1B,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,oBAAoB;AAEhC,MAAa,gBAAgB,EAC1B,KAAK;CAAC;CAAO;CAAQ;CAAW;CAAO,CAAC,CACxC,SAAS,sBAAsB;AAElC,MAAa,iBAAiB,EAC3B,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,qBAAqB;AAEjC,MAAa,yBAAyB,EACnC,KAAK;CAAC;CAAS;CAAO;CAAU;CAAS;CAAO,CAAC,CACjD,SAAS,iCAAiC;AAE7C,MAAa,eAAe,EACzB,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,oBAAoB;AAEhC,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAM;CAAY;CAAqB;CAAO,CAAC,CACrD,SAAS,+BAA+B;AAE3C,MAAa,uBAAuB,EACjC,KAAK;CAAC;CAAO;CAAQ;CAAO;CAAO,CAAC,CACpC,SAAS,kBAAkB;AAE9B,MAAa,uBAAuB,EACjC,KAAK;CAAC;CAAU;CAAU;CAAO,CAAC,CAClC,SAAS,6BAA6B;AAEzC,MAAa,sBAAsB,EAChC,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,yBAAyB;AAErC,MAAa,YAAY,EAAE,KAAK;CAAC;CAAQ;CAAQ;CAAW;CAAS;CAAO,CAAC,CAAC,SAAS,WAAW;AAElG,MAAa,aAAa,EACvB,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,0BAA0B;AAEtC,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAS;CAAU;CAAiB;CAAU;CAAQ;CAAO,CAAC,CACpE,SAAS,oBAAoB;AAEhC,MAAa,kBAAkB,EAC5B,KAAK;CAAC;CAAc;CAAO;CAAW;CAAU;CAAO;CAAO,CAAC,CAC/D,SAAS,iBAAiB;AAE7B,MAAa,qBAAqB,EAC/B,KAAK;CAAC;CAAc;CAAO;CAAW;CAAU;CAAO;CAAO,CAAC,CAC/D,SAAS,oBAAoB;AAEhC,MAAa,WAAW,EACrB,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,SAAS;AAErB,MAAa,eAAe,EACzB,KAAK;CAAC;CAAU;CAAe;CAAO,CAAC,CACvC,SACC,wFACD;AAEH,MAAa,wBAAwB,EAClC,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,2BAA2B;AAEvC,MAAa,cAAc,EACxB,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,wBAAwB;AAEpC,MAAa,mBAAmB,EAC7B,KAAK;CAAC;CAAO;CAAW;CAAW;CAAW;CAAS;CAAY;CAAiB;CAAO,CAAC,CAC5F,SAAS,0EAA0E;AAEtF,MAAa,gBAAgB,EAC1B,KAAK;CAAC;CAAU;CAAc;CAAqB;CAAQ;CAAW;CAAO,CAAC,CAC9E,SAAS,2EAA2E;AAEvF,MAAa,cAAc,EACxB,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SACC,8JACD;AAEH,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAa;CAAY;CAAQ;CAAU;CAAc;CAAO;CAAO,CAAC,CAC9E,SAAS,+BAA+B;AAE3C,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAU;CAAe;CAAW;CAAY;CAAO,CAAC,CAC9D,SAAS,uCAAuC;AAEnD,MAAa,YAAY,EACtB,KAAK;CAAC;CAAW;CAAU;CAAU;CAAW;CAAO,CAAC,CACxD,SAAS,wBAAwB;AAEpC,MAAa,gBAAgB,EAC1B,KAAK,CAAC,iBAAiB,OAAO,CAAC,CAC/B,SAAS,wDAAwD;AAEpE,MAAa,eAAe,EACzB,KAAK;CAAC;CAAe;CAAa;CAAiB;CAAW;CAAO,CAAC,CACtE,SACC,yGACD;AAEH,MAAa,oBAAoB,EAC9B,KAAK;CAAC;CAAM;CAAM;CAAO,CAAC,CAC1B,SAAS,qEAAqE;AAEjF,MAAa,kBAAkB,EAC5B,KAAK;CAAC;CAAiB;CAAQ;CAAgB;CAAgB;CAAU;CAAO,CAAC,CACjF,SAAS,oBAAoB;AAEhC,MAAa,mBAAmB,EAC7B,KAAK;CAAC;CAAe;CAAY;CAAQ;CAAO,CAAC,CACjD,SAAS,uBAAuB;AAEnC,MAAa,gBAAgB,EAC1B,KAAK;CAAC;CAAQ;CAAW;CAAO,CAAC,CACjC,SAAS,gCAAgC;AAE5C,MAAa,sBAAsB,EAChC,KAAK;CAAC;CAAiB;CAAU;CAAW;CAAO,CAAC,CACpD,SAAS,wCAAwC;AAEpD,MAAa,qBAAqB,EAC/B,KAAK;CAAC;CAAc;CAAW;CAAO,CAAC,CACvC,SAAS,gEAAgE;AAE5E,MAAa,kBAAkB,EAC5B,KAAK;CAAC;CAAa;CAAS;CAAO,CAAC,CACpC,SAAS,qCAAqC;AAGjD,MAAa,yBAAyB,EACnC,KAAK;CAAC;CAAQ;CAAa;CAAO,CAAC,CACnC,SAAS,qBAAqB;AAEjC,MAAa,qBAAqB,EAC/B,KAAK;CAAC;CAAU;CAAU;CAAO,CAAC,CAClC,SAAS,+BAA+B;AAE3C,MAAa,gBAAgB,EAC1B,KAAK;CAAC;CAAW;CAAQ;CAAO,CAAC,CACjC,SAAS,0BAA0B;AAEtC,MAAa,gBAAgB,EAC1B,KAAK;CAAC;CAAS;CAAiB;CAAO,CAAC,CACxC,SAAS,gCAAgC;AAE5C,MAAa,gBAAgB,EAAE,KAAK;CAAC;CAAQ;CAAW;CAAO,CAAC,CAAC,SAAS,iBAAiB;AAE3F,MAAa,sBAAsB,EAChC,KAAK;CAAC;CAAS;CAAa;CAAgB;CAAU;CAAc;CAAW;CAAO,CAAC,CACvF,SAAS,sBAAsB;AAElC,MAAa,oBAAoB,EAC9B,KAAK;CAAC;CAAW;CAAc;CAAO,CAAC,CACvC,SAAS,+BAA+B;AAG3C,MAAa,2BAA2B,EACrC,KAAK;CAAC;CAAW;CAAU;CAAS;CAAO,CAAC,CAC5C,SAAS,uBAAuB;AAEnC,MAAa,kBAAkB,EAC5B,KAAK;CAAC;CAAc;CAAY;CAAO,CAAC,CACxC,SAAS,4BAA4B;AAExC,MAAa,yBAAyB,EACnC,KAAK,CAAC,YAAY,OAAO,CAAC,CAC1B,SAAS,4BAA4B;AAExC,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAa;CAAc;CAAc;CAAiB;CAAa;CAAU;CAAO,CAAC,CAC/F,SAAS,yBAAyB;AAErC,MAAa,wBAAwB,EAAE,KAAK,CAAC,UAAU,OAAO,CAAC,CAAC,SAAS,oBAAoB;AAE7F,MAAa,sBAAsB,EAAE,KAAK,CAAC,QAAQ,OAAO,CAAC,CAAC,SAAS,2BAA2B;AAGhG,MAAa,uBAAuB,EAAE,KAAK;CAAC;CAAO;CAAQ;CAAS;CAAO,CAAC,CAAC,SAAS,mBAAmB;AAEzG,MAAa,cAAc,EAAE,KAAK;CAAC;CAAQ;CAAQ;CAAO,CAAC,CAAC,SAAS,wBAAwB;AAE7F,MAAa,cAAc,EAAE,KAAK,CAAC,WAAW,OAAO,CAAC,CAAC,SAAS,sBAAsB;AAEtF,MAAa,cAAc,EAAE,KAAK;CAAC;CAAS;CAAa;CAAO,CAAC,CAAC,SAAS,eAAe;AAE1F,MAAa,kBAAkB,EAAE,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC,SAAS,qBAAqB;AAErF,MAAa,eAAe,EACzB,KAAK;CAAC;CAAa;CAAa;CAAe;CAAO,CAAC,CACvD,SAAS,8DAA8D;AAE1E,MAAa,qBAAqB,EAC/B,KAAK;CAAC;CAAY;CAAQ;CAAQ;CAAgB;CAAO,CAAC,CAC1D,SAAS,6BAA6B;AAEzC,MAAa,kBAAkB,EAC5B,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,uBAAuB;AAEnC,MAAa,mBAAmB,EAC7B,KAAK,CAAC,SAAS,OAAO,CAAC,CACvB,SAAS,wDAAwD;AACpE,MAAa,oBAAoB,EAC9B,KAAK;CAAC;CAAQ;CAAQ;CAAQ;CAAQ;CAAO,CAAC,CAC9C,SAAS,gCAAgC;AAC5C,MAAa,0BAA0B,EACpC,KAAK;CAAC;CAAU;CAAU;CAAa;CAAY;CAAY,CAAC,CAChE,SAAS,yBAAyB;AACrC,MAAa,yBAAyB,EACnC,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,+BAA+B;AAC3C,MAAa,wBAAwB,EAClC,KAAK;CAAC;CAAW;CAAS;CAAQ;CAAO,CAAC,CAC1C,SAAS,+BAA+B;AAC3C,MAAa,mBAAmB,EAC7B,KAAK;CACJ;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC,CACD,SAAS,wBAAwB;AACpC,MAAa,qBAAqB,EAC/B,KAAK;CAAC;CAAW;CAAQ;CAAS;CAAU;CAAQ,CAAC,CACrD,SAAS,iCAAiC;AAE7C,MAAa,0BAA0B,EACpC,KAAK;CAAC;CAAS;CAAa;CAAa;CAAQ,CAAC,CAClD,SAAS,6CAA6C;AAEzD,MAAa,iBAAiB,EAC3B,KAAK;CAAC;CAAQ;CAAQ;CAAM;CAAW;CAAO,CAAC,CAC/C,SAAS,8BAA8B;AAE1C,MAAa,oBAAoB,EAC9B,QAAQ,CACR,IAAI,GAAG,+BAA+B,CACtC,IAAI,KAAK,gDAAgD,CACzD,QACE,SAAS,SAAS,OAAO,CAAC,KAAK,WAAW,IAAI,EAC/C,wDACD,CACA,QAAQ,SAAS,SAAS,OAAO,CAAC,KAAK,WAAW,IAAI,EAAE,wCAAwC,CAChG,QAAQ,SAAS;AAEhB,QAAO,CADc;EAAC;EAAK;EAAK;EAAK;EAAK;EAAK;EAAK;EAAI,CACnC,MAAM,SAAS,KAAK,SAAS,KAAK,CAAC;GACvD,2CAA2C,CAC7C,QAAQ,SAAS,KAAK,aAAa,KAAK,gBAAgB,2BAA2B,CACnF,SAAS,uBAAuB;AAEnC,MAAa,oBAAoB,EAAE,OAAO;CACxC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,UAAU,eAAe,UAAU;CACnC,KAAK,EAAE,SAAS,CAAC,UAAU;CAC3B,MAAM,EAAE,SAAS,CAAC,UAAU;CAC5B,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,WAAW,gBAAgB,UAAU;CACrC,UAAU,eAAe,UAAU;CACnC,KAAK,UAAU,UAAU;CACzB,MAAM,WAAW,UAAU;CAC3B,UAAU,eAAe,UAAU;CACnC,UAAU,EAAE,MAAM,eAAe,CAAC,UAAU;CAC5C,QAAQ,EAAE,MAAM,aAAa,CAAC,UAAU;CACxC,UAAU,EAAE,MAAM,eAAe,CAAC,UAAU;CAC5C,KAAK,EAAE,SAAS,CAAC,UAAU;CAC3B,gBAAgB,qBAAqB,UAAU;CAC/C,gBAAgB,qBAAqB,UAAU;CAC/C,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,SAAS,oBAAoB,UAAU;CACvC,SAAS,cAAc,UAAU;CACjC,SAAS,cAAc,UAAU;CACjC,KAAK,UAAU,UAAU;CACzB,WAAW,gBAAgB,UAAU;CACrC,cAAc,mBAAmB,UAAU;CAC3C,mBAAmB,wBAAwB,UAAU;CACrD,aAAa,EAAE,SAAS,CAAC,UAAU;CACnC,kBAAkB,EAAE,SAAS,CAAC,UAAU;CACxC,UAAU,EAAE,SAAS,CAAC,UAAU;CAChC,kBAAkB,uBAAuB,UAAU;CACnD,IAAI,SAAS,UAAU;CACvB,QAAQ,aAAa,UAAU;CAC/B,iBAAiB,sBAAsB,UAAU;CACjD,OAAO,YAAY,UAAU;CAC7B,SAAS,cAAc,UAAU;CACjC,OAAO,YAAY,UAAU;CAC7B,cAAc,mBAAmB,UAAU;CAC3C,WAAW,gBAAgB,UAAU;CACrC,YAAY,iBAAiB,UAAU;CACvC,aAAa,kBAAkB,UAAU;CACzC,mBAAmB,wBAAwB,UAAU;CACrD,kBAAkB,uBAAuB,UAAU;CACnD,iBAAiB,sBAAsB,UAAU;CACjD,YAAY,iBAAiB,UAAU;CACvC,cAAc,mBAAmB,UAAU;CAC3C,YAAY,iBAAiB,UAAU;CACvC,UAAU,eAAe,UAAU;CACnC,UAAU,eAAe,UAAU;CACnC,WAAW,gBAAgB,UAAU;CACrC,YAAY,iBAAiB,UAAU;CACvC,SAAS,cAAc,UAAU;CACjC,eAAe,oBAAoB,UAAU;CAC7C,cAAc,mBAAmB,UAAU;CAC3C,WAAW,gBAAgB,UAAU;CACrC,KAAK,UAAU,UAAU;CACzB,SAAS,cAAc,UAAU;CACjC,QAAQ,aAAa,UAAU;CAC/B,aAAa,kBAAkB,UAAU;CAEzC,kBAAkB,uBAAuB,UAAU;CACnD,cAAc,mBAAmB,UAAU;CAC3C,SAAS,cAAc,UAAU;CACjC,SAAS,cAAc,UAAU;CACjC,SAAS,cAAc,UAAU;CACjC,eAAe,EAAE,MAAM,oBAAoB,CAAC,UAAU;CACtD,aAAa,kBAAkB,UAAU;CAEzC,oBAAoB,yBAAyB,UAAU;CACvD,WAAW,gBAAgB,UAAU;CACrC,kBAAkB,uBAAuB,UAAU;CACnD,UAAU,EAAE,MAAM,eAAe,CAAC,UAAU;CAC5C,iBAAiB,sBAAsB,UAAU;CACjD,eAAe,oBAAoB,UAAU;CAE7C,gBAAgB,qBAAqB,UAAU;CAC/C,OAAO,YAAY,UAAU;CAC7B,OAAO,YAAY,UAAU;CAC7B,OAAO,YAAY,UAAU;CAC7B,WAAW,gBAAgB,UAAU;CAErC,QAAQ,EAAE,MAAM,aAAa,CAAC,UAAU;CACzC,CAAC;AAEF,MAAa,iBAAiB,EAAE,OAAO;CACrC,QAAQ,EAAE,MAAM,aAAa,CAAC,UAAU;CACxC,WAAW,gBAAgB,UAAU;CACrC,cAAc,mBAAmB,UAAU;CAC3C,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,gBAAgB,qBAAqB,UAAU;CAChD,CAAC;AAEF,MAAa,iBAAiB,kBAAkB,OAAO,EACrD,kBAAkB,EAAE,QAAQ,CAAC,UAAU,EACxC,CAAC;AAEF,MAAa,sBAAsB,EAAE,OAAO;CAC1C,aAAa,EAAE,QAAQ;CACvB,YAAY,EAAE,QAAQ;CACtB,cAAc,EAAE,QAAQ;CACxB,WAAW;CACX,UAAU;CACV,KAAK;CACL,SAAS;CACT,SAAS;CACT,UAAU,EAAE,MAAM,eAAe;CACjC,QAAQ,EAAE,MAAM,aAAa;CAC7B,UAAU,EAAE,MAAM,eAAe;CACjC,MAAM;CACN,UAAU;CACV,KAAK,EAAE,SAAS;CAChB,gBAAgB;CAChB,gBAAgB;CAChB,SAAS,EAAE,SAAS;CACpB,SAAS;CACT,KAAK;CACL,WAAW;CACX,cAAc;CACd,kBAAkB,uBAAuB,UAAU;CACnD,IAAI;CACJ,QAAQ;CACR,iBAAiB;CACjB,OAAO;CACP,SAAS;CACT,OAAO;CACP,cAAc;CACd,WAAW;CACX,YAAY,iBAAiB,UAAU;CACvC,aAAa,kBAAkB,UAAU;CACzC,mBAAmB,wBAAwB,UAAU;CACrD,kBAAkB,uBAAuB,UAAU;CACnD,iBAAiB,sBAAsB,UAAU;CACjD,YAAY,iBAAiB,UAAU;CACvC,cAAc,mBAAmB,UAAU;CAC3C,YAAY;CACZ,UAAU;CACV,UAAU;CACV,WAAW;CACX,YAAY;CACZ,SAAS;CACT,eAAe;CACf,cAAc;CACd,WAAW;CACX,KAAK;CACL,SAAS;CACT,QAAQ;CACR,aAAa;CAEb,kBAAkB;CAClB,cAAc;CACd,SAAS;CACT,SAAS;CACT,SAAS;CACT,eAAe,EAAE,MAAM,oBAAoB;CAC3C,aAAa;CAEb,oBAAoB;CACpB,WAAW;CACX,kBAAkB;CAClB,UAAU,EAAE,MAAM,eAAe;CACjC,iBAAiB;CACjB,eAAe;CAEf,gBAAgB;CAChB,OAAO;CACP,OAAO;CACP,OAAO;CACP,WAAW;CAEX,QAAQ,EAAE,MAAM,aAAa;CAC9B,CAAC;AAEF,MAAa,2BAA2B,EAAE,OAAO;CAC/C,SAAS,EAAE,QAAQ,CAAC,SAAS,0CAA0C;CACvE,WAAW,EAAE,QAAQ,CAAC,SAAS,yCAAyC;CACxE,WAAW;CACX,UAAU;CACV,KAAK;CACL,SAAS;CACT,SAAS;CACT,UAAU,EAAE,MAAM,eAAe;CACjC,QAAQ,EAAE,MAAM,aAAa;CAC7B,UAAU,EAAE,MAAM,eAAe;CACjC,MAAM;CACN,UAAU;CACV,gBAAgB;CAChB,gBAAgB;CAChB,SAAS;CACT,KAAK;CACL,WAAW;CACX,cAAc;CACd,kBAAkB,uBAAuB,UAAU;CACnD,IAAI;CACJ,QAAQ;CACR,iBAAiB;CACjB,OAAO;CACP,SAAS;CACT,OAAO;CACP,cAAc;CACd,WAAW;CACX,YAAY,iBAAiB,UAAU;CACvC,aAAa,kBAAkB,UAAU;CACzC,mBAAmB,wBAAwB,UAAU;CACrD,kBAAkB,uBAAuB,UAAU;CACnD,iBAAiB,sBAAsB,UAAU;CACjD,YAAY,iBAAiB,UAAU;CACvC,cAAc,mBAAmB,UAAU;CAC3C,YAAY;CACZ,UAAU;CACV,UAAU;CACV,WAAW;CACX,YAAY;CACZ,SAAS;CACT,eAAe;CACf,cAAc;CACd,WAAW;CACX,KAAK;CACL,SAAS;CACT,QAAQ;CACR,aAAa;CAEb,kBAAkB;CAClB,cAAc;CACd,SAAS;CACT,SAAS;CACT,SAAS;CACT,eAAe,EAAE,MAAM,oBAAoB;CAC3C,aAAa;CAEb,oBAAoB;CACpB,WAAW;CACX,kBAAkB;CAClB,UAAU,EAAE,MAAM,eAAe;CACjC,iBAAiB;CACjB,eAAe;CAEf,gBAAgB;CAChB,OAAO;CACP,OAAO;CACP,OAAO;CACP,WAAW;CAEX,QAAQ,EAAE,MAAM,aAAa;CAC9B,CAAC;AAEF,MAAa,+BAA+B,EACzC,OAAO,EACN,SAAS,EAAE,QAAQ,CAAC,UAAU,CAAC,SAAS,uCAAuC,EAChF,CAAC,CACD,OAAO,yBAAyB,MAAM,CACtC,KAAK;CACJ,IAAI;CACJ,OAAO;CACP,aAAa;CACd,CAAC;AAEJ,MAAa,mBAAmB,EAAE,OAAO;CACvC,SAAS,EAAE,SAAS;CACpB,eAAe;CACf,qBAAqB,EAAE,QAAQ;CAC/B,gBAAgB,EAAE,QAAQ;CAC1B,eAAe,EAAE,QAAQ;CACzB,kBAAkB,EAAE,QAAQ;CAC5B,cAAc,EAAE,QAAQ;CACxB,OAAO,EAAE,QAAQ,CAAC,UAAU;CAC7B,CAAC;AAEF,MAAa,kBAAkB,eAAe;AAC9C,MAAa,aAAa,UAAU;AACpC,MAAa,iBAAiB,cAAc;AAC5C,MAAa,iBAAiB,cAAc;AAC5C,MAAa,kBAAkB,eAAe;AAC9C,MAAa,gBAAgB,aAAa;AAC1C,MAAa,kBAAkB,eAAe;AAC9C,MAAa,yBAAyB,qBAAqB;AAC3D,MAAa,yBAAyB,qBAAqB;AAC3D,MAAa,wBAAwB,oBAAoB;AACzD,MAAa,aAAa,UAAU;AACpC,MAAa,cAAc,WAAW;AACtC,MAAa,kBAAkB,eAAe;AAC9C,MAAa,oBAAoB,gBAAgB;AACjD,MAAa,uBAAuB,mBAAmB;AACvD,MAAa,4BAA4B,wBAAwB;AACjE,MAAa,kBAAkB,eAAe;AAC9C,MAAa,2BAA2B,uBAAuB;AAC/D,MAAa,YAAY,SAAS;AAClC,MAAa,gBAAgB,aAAa;AAC1C,MAAa,0BAA0B,sBAAsB;AAC7D,MAAa,eAAe,YAAY;AACxC,MAAa,iBAAiB,cAAc;AAC5C,MAAa,eAAe,YAAY;AACxC,MAAa,uBAAuB,mBAAmB;AACvD,MAAa,oBAAoB,gBAAgB;AACjD,MAAa,oBAAoB,iBAAiB;AAClD,MAAa,kBAAkB,eAAe;AAC9C,MAAa,mBAAmB,eAAe;AAC/C,MAAa,mBAAmB,gBAAgB;AAChD,MAAa,qBAAqB,iBAAiB;AACnD,MAAa,iBAAiB,cAAc;AAC5C,MAAa,uBAAuB,oBAAoB;AACxD,MAAa,uBAAuB,mBAAmB;AACvD,MAAa,mBAAmB,gBAAgB;AAChD,MAAa,aAAa,UAAU;AACpC,MAAa,iBAAiB,cAAc;AAC5C,MAAa,gBAAgB,aAAa;AAC1C,MAAa,sBAAsB,kBAAkB;AACrD,MAAa,mBAAmB,gBAAgB;AAChD,MAAa,4BAA4B,uBAAuB;AAChE,MAAa,uBAAuB,mBAAmB;AACvD,MAAa,kBAAkB,cAAc;AAC7C,MAAa,kBAAkB,cAAc;AAC7C,MAAa,kBAAkB,cAAc;AAC7C,MAAa,wBAAwB,oBAAoB;AACzD,MAAa,sBAAsB,kBAAkB;AACrD,MAAa,8BAA8B,yBAAyB;AACpE,MAAa,oBAAoB,gBAAgB;AACjD,MAAa,2BAA2B,uBAAuB;AAC/D,MAAa,mBAAmB,eAAe;AAC/C,MAAa,2BAA2B,sBAAsB;AAC9D,MAAa,wBAAwB,oBAAoB;AACzD,MAAa,0BAA0B,qBAAqB;AAC5D,MAAa,gBAAgB,YAAY;AACzC,MAAa,gBAAgB,YAAY;AACzC,MAAa,gBAAgB,YAAY;AACzC,MAAa,oBAAoB,gBAAgB;AACjD,MAAa,iBAAiB,aAAa;AAC3C,MAAa,qBAAqB,iBAAiB;AACnD,MAAa,sBAAsB,kBAAkB;AACrD,MAAa,6BAA6B,wBAAwB;AAClE,MAAa,4BAA4B,uBAAuB;AAChE,MAAa,2BAA2B,sBAAsB;AAC9D,MAAa,qBAAqB,iBAAiB;AACnD,MAAa,uBAAuB,mBAAmB"}
|
package/dist/schemas.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as FrontendSchema, $t as
|
|
2
|
-
export { ADDONS_VALUES, AISchema, AI_DOCS_VALUES, AI_VALUES, ANALYTICS_VALUES, ANIMATION_VALUES, APISchema, API_VALUES, ASTRO_INTEGRATION_VALUES, AUTH_VALUES, AddInputSchema, AddonsSchema, AiDocsSchema, AnalyticsSchema, AnimationSchema, AstroIntegrationSchema, AuthSchema, BACKEND_VALUES, BackendSchema, BetterTStackConfigFileSchema, BetterTStackConfigSchema, CACHING_VALUES, CLIInputSchema, CMSSchema, CMS_VALUES, CSSFrameworkSchema, CSS_FRAMEWORK_VALUES, CachingSchema, CreateInputSchema, DATABASE_SETUP_VALUES, DATABASE_VALUES, DIRECTORY_CONFLICT_VALUES, DatabaseSchema, DatabaseSetupSchema, DirectoryConflictSchema, ECOSYSTEM_VALUES, EFFECT_VALUES, EMAIL_VALUES, EXAMPLES_VALUES, EcosystemSchema, EffectSchema, EmailSchema, ExamplesSchema, FEATURE_FLAGS_VALUES, FILE_STORAGE_VALUES, FILE_UPLOAD_VALUES, FORMS_VALUES, FRONTEND_VALUES, FeatureFlagsSchema, FileStorageSchema, FileUploadSchema, FormsSchema, FrontendSchema, GO_API_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CLI_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCliSchema, RustFrontendSchema, RustLibrariesSchema, RustOrmSchema, RustWebFrameworkSchema, SEARCH_VALUES, SERVER_DEPLOY_VALUES, SHADCN_BASE_COLOR_VALUES, SHADCN_BASE_VALUES, SHADCN_COLOR_THEME_VALUES, SHADCN_FONT_VALUES, SHADCN_ICON_LIBRARY_VALUES, SHADCN_RADIUS_VALUES, SHADCN_STYLE_VALUES, STATE_MANAGEMENT_VALUES, SearchSchema, ServerDeploySchema, ShadcnBaseColorSchema, ShadcnBaseSchema, ShadcnColorThemeSchema, ShadcnFontSchema, ShadcnIconLibrarySchema, ShadcnRadiusSchema, ShadcnStyleSchema, StateManagementSchema, TEMPLATE_VALUES, TESTING_VALUES, TemplateSchema, TestingSchema, UILibrarySchema, UI_LIBRARY_VALUES, VALIDATION_VALUES, VERSION_CHANNEL_VALUES, ValidationSchema, VersionChannelSchema, WEB_DEPLOY_VALUES, WebDeploySchema };
|
|
1
|
+
import { $ as FrontendSchema, $t as RustOrmSchema, A as DATABASE_SETUP_VALUES, An as VersionChannelSchema, At as ProjectNameSchema, B as EcosystemSchema, Bt as RUST_CLI_VALUES, C as CLIInputSchema, Cn as TemplateSchema, Ct as PYTHON_QUALITY_VALUES, D as CSS_FRAMEWORK_VALUES, Dn as VALIDATION_VALUES, Dt as PackageManagerSchema, E as CSSFrameworkSchema, En as UI_LIBRARY_VALUES, Et as PYTHON_WEB_FRAMEWORK_VALUES, F as DirectoryConflictSchema, Ft as PythonValidationSchema, G as FILE_STORAGE_VALUES, Gt as RUST_WEB_FRAMEWORK_VALUES, H as EmailSchema, Ht as RUST_LIBRARIES_VALUES, I as ECOSYSTEM_VALUES, It as PythonWebFrameworkSchema, J as FRONTEND_VALUES, Jt as RustApiSchema, K as FILE_UPLOAD_VALUES, Kt as RealtimeSchema, L as EFFECT_VALUES, Lt as REALTIME_VALUES, M as DIRECTORY_CONFLICT_VALUES, Mn as WebDeploySchema, Mt as PythonOrmSchema, N as DatabaseSchema, Nt as PythonQualitySchema, O as CachingSchema, On as VERSION_CHANNEL_VALUES, Ot as PaymentsSchema, P as DatabaseSetupSchema, Pt as PythonTaskQueueSchema, Q as FormsSchema, Qt as RustLoggingSchema, R as EMAIL_VALUES, Rt as RUNTIME_VALUES, S as CACHING_VALUES, Sn as TESTING_VALUES, St as PYTHON_ORM_VALUES, T as CMS_VALUES, Tn as UILibrarySchema, Tt as PYTHON_VALIDATION_VALUES, U as ExamplesSchema, Ut as RUST_LOGGING_VALUES, V as EffectSchema, Vt as RUST_FRONTEND_VALUES, W as FEATURE_FLAGS_VALUES, Wt as RUST_ORM_VALUES, X as FileStorageSchema, Xt as RustFrontendSchema, Y as FeatureFlagsSchema, Yt as RustCliSchema, Z as FileUploadSchema, Zt as RustLibrariesSchema, _ as AuthSchema, _n as ShadcnIconLibrarySchema, _t as ORM_VALUES, a as ANALYTICS_VALUES, an as SHADCN_COLOR_THEME_VALUES, at as GoApiSchema, b as BetterTStackConfigFileSchema, bn as StateManagementSchema, bt as PAYMENTS_VALUES, c as API_VALUES, cn as SHADCN_RADIUS_VALUES, ct as GoOrmSchema, d as AddInputSchema, dn as SearchSchema, dt as JOB_QUEUE_VALUES, en as RustWebFrameworkSchema, et as GO_API_VALUES, f as AddonsSchema, fn as ServerDeploySchema, ft as JobQueueSchema, g as AstroIntegrationSchema, gn as ShadcnFontSchema, gt as ORMSchema, h as AnimationSchema, hn as ShadcnColorThemeSchema, ht as OBSERVABILITY_VALUES, i as AI_VALUES, in as SHADCN_BASE_VALUES, it as GO_WEB_FRAMEWORK_VALUES, j as DATABASE_VALUES, jn as WEB_DEPLOY_VALUES, jt as PythonAiSchema, k as CreateInputSchema, kn as ValidationSchema, kt as ProjectConfigSchema, l as ASTRO_INTEGRATION_VALUES, ln as SHADCN_STYLE_VALUES, lt as GoWebFrameworkSchema, m as AnalyticsSchema, mn as ShadcnBaseSchema, mt as LoggingSchema, n as AISchema, nn as SERVER_DEPLOY_VALUES, nt as GO_LOGGING_VALUES, o as ANIMATION_VALUES, on as SHADCN_FONT_VALUES, ot as GoCliSchema, p as AiDocsSchema, pn as ShadcnBaseColorSchema, pt as LOGGING_VALUES, q as FORMS_VALUES, qt as RuntimeSchema, r as AI_DOCS_VALUES, rn as SHADCN_BASE_COLOR_VALUES, rt as GO_ORM_VALUES, s as APISchema, sn as SHADCN_ICON_LIBRARY_VALUES, st as GoLoggingSchema, t as ADDONS_VALUES, tn as SEARCH_VALUES, tt as GO_CLI_VALUES, u as AUTH_VALUES, un as STATE_MANAGEMENT_VALUES, ut as InitResultSchema, v as BACKEND_VALUES, vn as ShadcnRadiusSchema, vt as ObservabilitySchema, w as CMSSchema, wn as TestingSchema, wt as PYTHON_TASK_QUEUE_VALUES, x as BetterTStackConfigSchema, xn as TEMPLATE_VALUES, xt as PYTHON_AI_VALUES, y as BackendSchema, yn as ShadcnStyleSchema, yt as PACKAGE_MANAGER_VALUES, z as EXAMPLES_VALUES, zt as RUST_API_VALUES } from "./schemas-C0f82atI.mjs";
|
|
2
|
+
export { ADDONS_VALUES, AISchema, AI_DOCS_VALUES, AI_VALUES, ANALYTICS_VALUES, ANIMATION_VALUES, APISchema, API_VALUES, ASTRO_INTEGRATION_VALUES, AUTH_VALUES, AddInputSchema, AddonsSchema, AiDocsSchema, AnalyticsSchema, AnimationSchema, AstroIntegrationSchema, AuthSchema, BACKEND_VALUES, BackendSchema, BetterTStackConfigFileSchema, BetterTStackConfigSchema, CACHING_VALUES, CLIInputSchema, CMSSchema, CMS_VALUES, CSSFrameworkSchema, CSS_FRAMEWORK_VALUES, CachingSchema, CreateInputSchema, DATABASE_SETUP_VALUES, DATABASE_VALUES, DIRECTORY_CONFLICT_VALUES, DatabaseSchema, DatabaseSetupSchema, DirectoryConflictSchema, ECOSYSTEM_VALUES, EFFECT_VALUES, EMAIL_VALUES, EXAMPLES_VALUES, EcosystemSchema, EffectSchema, EmailSchema, ExamplesSchema, FEATURE_FLAGS_VALUES, FILE_STORAGE_VALUES, FILE_UPLOAD_VALUES, FORMS_VALUES, FRONTEND_VALUES, FeatureFlagsSchema, FileStorageSchema, FileUploadSchema, FormsSchema, FrontendSchema, GO_API_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CLI_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCliSchema, RustFrontendSchema, RustLibrariesSchema, RustLoggingSchema, RustOrmSchema, RustWebFrameworkSchema, SEARCH_VALUES, SERVER_DEPLOY_VALUES, SHADCN_BASE_COLOR_VALUES, SHADCN_BASE_VALUES, SHADCN_COLOR_THEME_VALUES, SHADCN_FONT_VALUES, SHADCN_ICON_LIBRARY_VALUES, SHADCN_RADIUS_VALUES, SHADCN_STYLE_VALUES, STATE_MANAGEMENT_VALUES, SearchSchema, ServerDeploySchema, ShadcnBaseColorSchema, ShadcnBaseSchema, ShadcnColorThemeSchema, ShadcnFontSchema, ShadcnIconLibrarySchema, ShadcnRadiusSchema, ShadcnStyleSchema, StateManagementSchema, TEMPLATE_VALUES, TESTING_VALUES, TemplateSchema, TestingSchema, UILibrarySchema, UI_LIBRARY_VALUES, VALIDATION_VALUES, VERSION_CHANNEL_VALUES, ValidationSchema, VersionChannelSchema, WEB_DEPLOY_VALUES, WebDeploySchema };
|
package/dist/schemas.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as FrontendSchema, $t as
|
|
1
|
+
import { $ as FrontendSchema, $t as RustOrmSchema, A as DATABASE_SETUP_VALUES, An as VersionChannelSchema, At as ProjectNameSchema, B as EcosystemSchema, Bt as RUST_CLI_VALUES, C as CLIInputSchema, Cn as TemplateSchema, Ct as PYTHON_QUALITY_VALUES, D as CSS_FRAMEWORK_VALUES, Dn as VALIDATION_VALUES, Dt as PackageManagerSchema, E as CSSFrameworkSchema, En as UI_LIBRARY_VALUES, Et as PYTHON_WEB_FRAMEWORK_VALUES, F as DirectoryConflictSchema, Ft as PythonValidationSchema, G as FILE_STORAGE_VALUES, Gt as RUST_WEB_FRAMEWORK_VALUES, H as EmailSchema, Ht as RUST_LIBRARIES_VALUES, I as ECOSYSTEM_VALUES, It as PythonWebFrameworkSchema, J as FRONTEND_VALUES, Jt as RustApiSchema, K as FILE_UPLOAD_VALUES, Kt as RealtimeSchema, L as EFFECT_VALUES, Lt as REALTIME_VALUES, M as DIRECTORY_CONFLICT_VALUES, Mn as WebDeploySchema, Mt as PythonOrmSchema, N as DatabaseSchema, Nt as PythonQualitySchema, O as CachingSchema, On as VERSION_CHANNEL_VALUES, Ot as PaymentsSchema, P as DatabaseSetupSchema, Pt as PythonTaskQueueSchema, Q as FormsSchema, Qt as RustLoggingSchema, R as EMAIL_VALUES, Rt as RUNTIME_VALUES, S as CACHING_VALUES, Sn as TESTING_VALUES, St as PYTHON_ORM_VALUES, T as CMS_VALUES, Tn as UILibrarySchema, Tt as PYTHON_VALIDATION_VALUES, U as ExamplesSchema, Ut as RUST_LOGGING_VALUES, V as EffectSchema, Vt as RUST_FRONTEND_VALUES, W as FEATURE_FLAGS_VALUES, Wt as RUST_ORM_VALUES, X as FileStorageSchema, Xt as RustFrontendSchema, Y as FeatureFlagsSchema, Yt as RustCliSchema, Z as FileUploadSchema, Zt as RustLibrariesSchema, _ as AuthSchema, _n as ShadcnIconLibrarySchema, _t as ORM_VALUES, a as ANALYTICS_VALUES, an as SHADCN_COLOR_THEME_VALUES, at as GoApiSchema, b as BetterTStackConfigFileSchema, bn as StateManagementSchema, bt as PAYMENTS_VALUES, c as API_VALUES, cn as SHADCN_RADIUS_VALUES, ct as GoOrmSchema, d as AddInputSchema, dn as SearchSchema, dt as JOB_QUEUE_VALUES, en as RustWebFrameworkSchema, et as GO_API_VALUES, f as AddonsSchema, fn as ServerDeploySchema, ft as JobQueueSchema, g as AstroIntegrationSchema, gn as ShadcnFontSchema, gt as ORMSchema, h as AnimationSchema, hn as ShadcnColorThemeSchema, ht as OBSERVABILITY_VALUES, i as AI_VALUES, in as SHADCN_BASE_VALUES, it as GO_WEB_FRAMEWORK_VALUES, j as DATABASE_VALUES, jn as WEB_DEPLOY_VALUES, jt as PythonAiSchema, k as CreateInputSchema, kn as ValidationSchema, kt as ProjectConfigSchema, l as ASTRO_INTEGRATION_VALUES, ln as SHADCN_STYLE_VALUES, lt as GoWebFrameworkSchema, m as AnalyticsSchema, mn as ShadcnBaseSchema, mt as LoggingSchema, n as AISchema, nn as SERVER_DEPLOY_VALUES, nt as GO_LOGGING_VALUES, o as ANIMATION_VALUES, on as SHADCN_FONT_VALUES, ot as GoCliSchema, p as AiDocsSchema, pn as ShadcnBaseColorSchema, pt as LOGGING_VALUES, q as FORMS_VALUES, qt as RuntimeSchema, r as AI_DOCS_VALUES, rn as SHADCN_BASE_COLOR_VALUES, rt as GO_ORM_VALUES, s as APISchema, sn as SHADCN_ICON_LIBRARY_VALUES, st as GoLoggingSchema, t as ADDONS_VALUES, tn as SEARCH_VALUES, tt as GO_CLI_VALUES, u as AUTH_VALUES, un as STATE_MANAGEMENT_VALUES, ut as InitResultSchema, v as BACKEND_VALUES, vn as ShadcnRadiusSchema, vt as ObservabilitySchema, w as CMSSchema, wn as TestingSchema, wt as PYTHON_TASK_QUEUE_VALUES, x as BetterTStackConfigSchema, xn as TEMPLATE_VALUES, xt as PYTHON_AI_VALUES, y as BackendSchema, yn as ShadcnStyleSchema, yt as PACKAGE_MANAGER_VALUES, z as EXAMPLES_VALUES, zt as RUST_API_VALUES } from "./schemas-PlcPX3a0.mjs";
|
|
2
2
|
|
|
3
|
-
export { ADDONS_VALUES, AISchema, AI_DOCS_VALUES, AI_VALUES, ANALYTICS_VALUES, ANIMATION_VALUES, APISchema, API_VALUES, ASTRO_INTEGRATION_VALUES, AUTH_VALUES, AddInputSchema, AddonsSchema, AiDocsSchema, AnalyticsSchema, AnimationSchema, AstroIntegrationSchema, AuthSchema, BACKEND_VALUES, BackendSchema, BetterTStackConfigFileSchema, BetterTStackConfigSchema, CACHING_VALUES, CLIInputSchema, CMSSchema, CMS_VALUES, CSSFrameworkSchema, CSS_FRAMEWORK_VALUES, CachingSchema, CreateInputSchema, DATABASE_SETUP_VALUES, DATABASE_VALUES, DIRECTORY_CONFLICT_VALUES, DatabaseSchema, DatabaseSetupSchema, DirectoryConflictSchema, ECOSYSTEM_VALUES, EFFECT_VALUES, EMAIL_VALUES, EXAMPLES_VALUES, EcosystemSchema, EffectSchema, EmailSchema, ExamplesSchema, FEATURE_FLAGS_VALUES, FILE_STORAGE_VALUES, FILE_UPLOAD_VALUES, FORMS_VALUES, FRONTEND_VALUES, FeatureFlagsSchema, FileStorageSchema, FileUploadSchema, FormsSchema, FrontendSchema, GO_API_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CLI_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCliSchema, RustFrontendSchema, RustLibrariesSchema, RustOrmSchema, RustWebFrameworkSchema, SEARCH_VALUES, SERVER_DEPLOY_VALUES, SHADCN_BASE_COLOR_VALUES, SHADCN_BASE_VALUES, SHADCN_COLOR_THEME_VALUES, SHADCN_FONT_VALUES, SHADCN_ICON_LIBRARY_VALUES, SHADCN_RADIUS_VALUES, SHADCN_STYLE_VALUES, STATE_MANAGEMENT_VALUES, SearchSchema, ServerDeploySchema, ShadcnBaseColorSchema, ShadcnBaseSchema, ShadcnColorThemeSchema, ShadcnFontSchema, ShadcnIconLibrarySchema, ShadcnRadiusSchema, ShadcnStyleSchema, StateManagementSchema, TEMPLATE_VALUES, TESTING_VALUES, TemplateSchema, TestingSchema, UILibrarySchema, UI_LIBRARY_VALUES, VALIDATION_VALUES, VERSION_CHANNEL_VALUES, ValidationSchema, VersionChannelSchema, WEB_DEPLOY_VALUES, WebDeploySchema };
|
|
3
|
+
export { ADDONS_VALUES, AISchema, AI_DOCS_VALUES, AI_VALUES, ANALYTICS_VALUES, ANIMATION_VALUES, APISchema, API_VALUES, ASTRO_INTEGRATION_VALUES, AUTH_VALUES, AddInputSchema, AddonsSchema, AiDocsSchema, AnalyticsSchema, AnimationSchema, AstroIntegrationSchema, AuthSchema, BACKEND_VALUES, BackendSchema, BetterTStackConfigFileSchema, BetterTStackConfigSchema, CACHING_VALUES, CLIInputSchema, CMSSchema, CMS_VALUES, CSSFrameworkSchema, CSS_FRAMEWORK_VALUES, CachingSchema, CreateInputSchema, DATABASE_SETUP_VALUES, DATABASE_VALUES, DIRECTORY_CONFLICT_VALUES, DatabaseSchema, DatabaseSetupSchema, DirectoryConflictSchema, ECOSYSTEM_VALUES, EFFECT_VALUES, EMAIL_VALUES, EXAMPLES_VALUES, EcosystemSchema, EffectSchema, EmailSchema, ExamplesSchema, FEATURE_FLAGS_VALUES, FILE_STORAGE_VALUES, FILE_UPLOAD_VALUES, FORMS_VALUES, FRONTEND_VALUES, FeatureFlagsSchema, FileStorageSchema, FileUploadSchema, FormsSchema, FrontendSchema, GO_API_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CLI_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCliSchema, RustFrontendSchema, RustLibrariesSchema, RustLoggingSchema, RustOrmSchema, RustWebFrameworkSchema, SEARCH_VALUES, SERVER_DEPLOY_VALUES, SHADCN_BASE_COLOR_VALUES, SHADCN_BASE_VALUES, SHADCN_COLOR_THEME_VALUES, SHADCN_FONT_VALUES, SHADCN_ICON_LIBRARY_VALUES, SHADCN_RADIUS_VALUES, SHADCN_STYLE_VALUES, STATE_MANAGEMENT_VALUES, SearchSchema, ServerDeploySchema, ShadcnBaseColorSchema, ShadcnBaseSchema, ShadcnColorThemeSchema, ShadcnFontSchema, ShadcnIconLibrarySchema, ShadcnRadiusSchema, ShadcnStyleSchema, StateManagementSchema, TEMPLATE_VALUES, TESTING_VALUES, TemplateSchema, TestingSchema, UILibrarySchema, UI_LIBRARY_VALUES, VALIDATION_VALUES, VERSION_CHANNEL_VALUES, ValidationSchema, VersionChannelSchema, WEB_DEPLOY_VALUES, WebDeploySchema };
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"schemas-B9qxrPyW.d.mts","names":[],"sources":["../src/schemas.ts"],"sourcesContent":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAId,qBAAmB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA2EnB,0BAAwB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwExB,8BAA4B,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAW5B,kBAAgB,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAWhB;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA;cACA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"schemas-Di-YtjGh.mjs","names":[],"sources":["../src/schemas.ts"],"sourcesContent":["import { z } from \"zod\";\n\nexport const EcosystemSchema = z\n .enum([\"typescript\", \"rust\", \"python\", \"go\"])\n .describe(\"Language ecosystem (typescript, rust, python, or go)\");\n\nexport const DatabaseSchema = z\n .enum([\"none\", \"sqlite\", \"postgres\", \"mysql\", \"mongodb\", \"edgedb\", \"redis\"])\n .describe(\"Database type\");\n\nexport const ORMSchema = z\n .enum([\"drizzle\", \"prisma\", \"mongoose\", \"typeorm\", \"kysely\", \"mikroorm\", \"sequelize\", \"none\"])\n .describe(\"ORM type\");\n\nexport const BackendSchema = z\n .enum([\n \"hono\",\n \"express\",\n \"fastify\",\n \"elysia\",\n \"fets\",\n \"nestjs\",\n \"adonisjs\",\n \"nitro\",\n \"encore\",\n \"convex\",\n \"self\",\n \"none\",\n ])\n .describe(\"Backend framework\");\n\nexport const RuntimeSchema = z\n .enum([\"bun\", \"node\", \"workers\", \"none\"])\n .describe(\"Runtime environment\");\n\nexport const FrontendSchema = z\n .enum([\n \"tanstack-router\",\n \"react-router\",\n \"react-vite\",\n \"tanstack-start\",\n \"next\",\n \"nuxt\",\n \"native-bare\",\n \"native-uniwind\",\n \"native-unistyles\",\n \"svelte\",\n \"solid\",\n \"solid-start\",\n \"astro\",\n \"qwik\",\n \"angular\",\n \"redwood\",\n \"fresh\",\n \"none\",\n ])\n .describe(\"Frontend framework\");\n\nexport const AstroIntegrationSchema = z\n .enum([\"react\", \"vue\", \"svelte\", \"solid\", \"none\"])\n .describe(\"Astro UI framework integration\");\n\nexport const AddonsSchema = z\n .enum([\n \"pwa\",\n \"tauri\",\n \"starlight\",\n \"biome\",\n \"lefthook\",\n \"husky\",\n \"ruler\",\n \"mcp\",\n \"skills\",\n \"turborepo\",\n \"fumadocs\",\n \"ultracite\",\n \"oxlint\",\n \"opentui\",\n \"wxt\",\n \"msw\",\n \"storybook\",\n \"tanstack-query\",\n \"tanstack-table\",\n \"tanstack-virtual\",\n \"tanstack-db\",\n \"tanstack-pacer\",\n \"none\",\n ])\n .describe(\"Additional addons\");\n\nexport const ExamplesSchema = z\n .enum([\"ai\", \"chat-sdk\", \"tanstack-showcase\", \"none\"])\n .describe(\"Example templates to include\");\n\nexport const PackageManagerSchema = z\n .enum([\"npm\", \"pnpm\", \"bun\", \"yarn\"])\n .describe(\"Package manager\");\n\nexport const VersionChannelSchema = z\n .enum([\"stable\", \"latest\", \"beta\"])\n .describe(\"Dependency version channel\");\n\nexport const DatabaseSetupSchema = z\n .enum([\n \"turso\",\n \"neon\",\n \"prisma-postgres\",\n \"planetscale\",\n \"mongodb-atlas\",\n \"supabase\",\n \"upstash\",\n \"d1\",\n \"docker\",\n \"none\",\n ])\n .describe(\"Database hosting setup\");\n\nexport const APISchema = z.enum([\"trpc\", \"orpc\", \"ts-rest\", \"garph\", \"none\"]).describe(\"API type\");\n\nexport const AuthSchema = z\n .enum([\n \"better-auth\",\n \"go-better-auth\",\n \"clerk\",\n \"nextauth\",\n \"stack-auth\",\n \"supabase-auth\",\n \"auth0\",\n \"none\",\n ])\n .describe(\"Authentication provider\");\n\nexport const PaymentsSchema = z\n .enum([\"polar\", \"stripe\", \"lemon-squeezy\", \"paddle\", \"dodo\", \"none\"])\n .describe(\"Payments provider\");\n\nexport const WebDeploySchema = z\n .enum([\"cloudflare\", \"fly\", \"railway\", \"docker\", \"sst\", \"none\"])\n .describe(\"Web deployment\");\n\nexport const ServerDeploySchema = z\n .enum([\"cloudflare\", \"fly\", \"railway\", \"docker\", \"sst\", \"none\"])\n .describe(\"Server deployment\");\n\nexport const AISchema = z\n .enum([\n \"vercel-ai\",\n \"mastra\",\n \"voltagent\",\n \"langgraph\",\n \"openai-agents\",\n \"google-adk\",\n \"modelfusion\",\n \"langchain\",\n \"llamaindex\",\n \"tanstack-ai\",\n \"none\",\n ])\n .describe(\"AI SDK\");\n\nexport const EffectSchema = z\n .enum([\"effect\", \"effect-full\", \"none\"])\n .describe(\n \"Effect ecosystem (effect-full includes @effect/schema, @effect/platform, @effect/sql)\",\n );\n\nexport const StateManagementSchema = z\n .enum([\n \"zustand\",\n \"jotai\",\n \"nanostores\",\n \"redux-toolkit\",\n \"mobx\",\n \"xstate\",\n \"valtio\",\n \"tanstack-store\",\n \"legend-state\",\n \"none\",\n ])\n .describe(\"State management library\");\n\nexport const FormsSchema = z\n .enum([\n \"tanstack-form\",\n \"react-hook-form\",\n \"formik\",\n \"final-form\",\n \"conform\",\n \"modular-forms\",\n \"none\",\n ])\n .describe(\"Form handling library\");\n\nexport const ValidationSchema = z\n .enum([\"zod\", \"valibot\", \"arktype\", \"typebox\", \"typia\", \"runtypes\", \"effect-schema\", \"none\"])\n .describe(\"Schema validation library (none uses Zod as default for internal usage)\");\n\nexport const TestingSchema = z\n .enum([\"vitest\", \"playwright\", \"vitest-playwright\", \"jest\", \"cypress\", \"none\"])\n .describe(\"Testing framework (vitest-playwright includes both unit and e2e testing)\");\n\nexport const EmailSchema = z\n .enum([\n \"react-email\",\n \"resend\",\n \"nodemailer\",\n \"postmark\",\n \"sendgrid\",\n \"aws-ses\",\n \"mailgun\",\n \"plunk\",\n \"none\",\n ])\n .describe(\n \"Email solution (resend includes react-email, nodemailer is classic Node.js email, postmark/sendgrid/aws-ses/mailgun/plunk are transactional email services)\",\n );\n\nexport const RealtimeSchema = z\n .enum([\"socket-io\", \"partykit\", \"ably\", \"pusher\", \"liveblocks\", \"yjs\", \"none\"])\n .describe(\"Real-time/WebSocket solution\");\n\nexport const JobQueueSchema = z\n .enum([\"bullmq\", \"trigger-dev\", \"inngest\", \"temporal\", \"none\"])\n .describe(\"Job queue/background worker solution\");\n\nexport const CMSSchema = z\n .enum([\"payload\", \"sanity\", \"strapi\", \"tinacms\", \"none\"])\n .describe(\"Headless CMS solution\");\n\nexport const CachingSchema = z\n .enum([\"upstash-redis\", \"none\"])\n .describe(\"Caching solution (upstash-redis for serverless Redis)\");\n\nexport const SearchSchema = z\n .enum([\"meilisearch\", \"typesense\", \"elasticsearch\", \"none\"])\n .describe(\n \"Search engine solution (meilisearch, typesense, or elasticsearch for fast search experiences)\",\n );\n\nexport const FileStorageSchema = z\n .enum([\"s3\", \"r2\", \"none\"])\n .describe(\"File storage solution (AWS S3 or Cloudflare R2 for object storage)\");\n\nexport const AnimationSchema = z\n .enum([\"framer-motion\", \"gsap\", \"react-spring\", \"auto-animate\", \"lottie\", \"none\"])\n .describe(\"Animation library\");\n\nexport const FileUploadSchema = z\n .enum([\"uploadthing\", \"filepond\", \"uppy\", \"none\"])\n .describe(\"File upload solution\");\n\nexport const LoggingSchema = z\n .enum([\"pino\", \"winston\", \"none\"])\n .describe(\"Server-side logging framework\");\n\nexport const ObservabilitySchema = z\n .enum([\"opentelemetry\", \"sentry\", \"grafana\", \"none\"])\n .describe(\"Observability and distributed tracing\");\n\nexport const FeatureFlagsSchema = z\n .enum([\"growthbook\", \"posthog\", \"none\"])\n .describe(\"Feature flags provider for A/B testing and feature management\");\n\nexport const AnalyticsSchema = z\n .enum([\"plausible\", \"umami\", \"none\"])\n .describe(\"Privacy-focused analytics provider\");\n\n// Rust ecosystem schemas\nexport const RustWebFrameworkSchema = z\n .enum([\"axum\", \"actix-web\", \"none\"])\n .describe(\"Rust web framework\");\n\nexport const RustFrontendSchema = z\n .enum([\"leptos\", \"dioxus\", \"none\"])\n .describe(\"Rust WASM frontend framework\");\n\nexport const RustOrmSchema = z\n .enum([\"sea-orm\", \"sqlx\", \"none\"])\n .describe(\"Rust ORM/database layer\");\n\nexport const RustApiSchema = z\n .enum([\"tonic\", \"async-graphql\", \"none\"])\n .describe(\"Rust API layer (gRPC/GraphQL)\");\n\nexport const RustCliSchema = z.enum([\"clap\", \"ratatui\", \"none\"]).describe(\"Rust CLI tools\");\n\nexport const RustLibrariesSchema = z\n .enum([\"serde\", \"validator\", \"jsonwebtoken\", \"argon2\", \"tokio-test\", \"mockall\", \"none\"])\n .describe(\"Rust core libraries\");\n\n// Python ecosystem schemas\nexport const PythonWebFrameworkSchema = z\n .enum([\"fastapi\", \"django\", \"none\"])\n .describe(\"Python web framework\");\n\nexport const PythonOrmSchema = z\n .enum([\"sqlalchemy\", \"sqlmodel\", \"none\"])\n .describe(\"Python ORM/database layer\");\n\nexport const PythonValidationSchema = z\n .enum([\"pydantic\", \"none\"])\n .describe(\"Python validation library\");\n\nexport const PythonAiSchema = z\n .enum([\"langchain\", \"llamaindex\", \"openai-sdk\", \"anthropic-sdk\", \"langgraph\", \"crewai\", \"none\"])\n .describe(\"Python AI/ML framework\");\n\nexport const PythonTaskQueueSchema = z.enum([\"celery\", \"none\"]).describe(\"Python task queue\");\n\nexport const PythonQualitySchema = z.enum([\"ruff\", \"none\"]).describe(\"Python code quality tool\");\n\n// Go ecosystem schemas\nexport const GoWebFrameworkSchema = z.enum([\"gin\", \"echo\", \"none\"]).describe(\"Go web framework\");\n\nexport const GoOrmSchema = z.enum([\"gorm\", \"sqlc\", \"none\"]).describe(\"Go ORM/database layer\");\n\nexport const GoApiSchema = z.enum([\"grpc-go\", \"none\"]).describe(\"Go API layer (gRPC)\");\n\nexport const GoCliSchema = z.enum([\"cobra\", \"bubbletea\", \"none\"]).describe(\"Go CLI tools\");\n\nexport const GoLoggingSchema = z.enum([\"zap\", \"none\"]).describe(\"Go logging library\");\n\nexport const AiDocsSchema = z\n .enum([\"claude-md\", \"agents-md\", \"cursorrules\", \"none\"])\n .describe(\"AI documentation files (CLAUDE.md, Agents.md, .cursorrules)\");\n\nexport const CSSFrameworkSchema = z\n .enum([\"tailwind\", \"scss\", \"less\", \"postcss-only\", \"none\"])\n .describe(\"CSS framework/preprocessor\");\n\nexport const UILibrarySchema = z\n .enum([\n \"shadcn-ui\",\n \"daisyui\",\n \"radix-ui\",\n \"headless-ui\",\n \"park-ui\",\n \"chakra-ui\",\n \"nextui\",\n \"mantine\",\n \"base-ui\",\n \"ark-ui\",\n \"react-aria\",\n \"none\",\n ])\n .describe(\"UI component library\");\n\nexport const ShadcnBaseSchema = z\n .enum([\"radix\", \"base\"])\n .describe(\"shadcn/ui headless UI base library (radix or base-ui)\");\nexport const ShadcnStyleSchema = z\n .enum([\"vega\", \"nova\", \"maia\", \"lyra\", \"mira\"])\n .describe(\"shadcn/ui visual style preset\");\nexport const ShadcnIconLibrarySchema = z\n .enum([\"lucide\", \"tabler\", \"hugeicons\", \"phosphor\", \"remixicon\"])\n .describe(\"shadcn/ui icon library\");\nexport const ShadcnColorThemeSchema = z\n .enum([\n \"neutral\",\n \"stone\",\n \"zinc\",\n \"gray\",\n \"amber\",\n \"blue\",\n \"cyan\",\n \"emerald\",\n \"fuchsia\",\n \"green\",\n \"indigo\",\n \"lime\",\n \"orange\",\n \"pink\",\n \"purple\",\n \"red\",\n \"rose\",\n \"sky\",\n \"teal\",\n \"violet\",\n \"yellow\",\n ])\n .describe(\"shadcn/ui accent color theme\");\nexport const ShadcnBaseColorSchema = z\n .enum([\"neutral\", \"stone\", \"zinc\", \"gray\"])\n .describe(\"shadcn/ui base neutral color\");\nexport const ShadcnFontSchema = z\n .enum([\n \"inter\",\n \"geist\",\n \"noto-sans\",\n \"nunito-sans\",\n \"figtree\",\n \"roboto\",\n \"raleway\",\n \"dm-sans\",\n \"public-sans\",\n \"outfit\",\n \"jetbrains-mono\",\n \"geist-mono\",\n ])\n .describe(\"shadcn/ui font family\");\nexport const ShadcnRadiusSchema = z\n .enum([\"default\", \"none\", \"small\", \"medium\", \"large\"])\n .describe(\"shadcn/ui border radius preset\");\n\nexport const DirectoryConflictSchema = z\n .enum([\"merge\", \"overwrite\", \"increment\", \"error\"])\n .describe(\"How to handle existing directory conflicts\");\n\nexport const TemplateSchema = z\n .enum([\"mern\", \"pern\", \"t3\", \"uniwind\", \"none\"])\n .describe(\"Predefined project template\");\n\nexport const ProjectNameSchema = z\n .string()\n .min(1, \"Project name cannot be empty\")\n .max(255, \"Project name must be less than 255 characters\")\n .refine(\n (name) => name === \".\" || !name.startsWith(\".\"),\n \"Project name cannot start with a dot (except for '.')\",\n )\n .refine((name) => name === \".\" || !name.startsWith(\"-\"), \"Project name cannot start with a dash\")\n .refine((name) => {\n const invalidChars = [\"<\", \">\", \":\", '\"', \"|\", \"?\", \"*\"];\n return !invalidChars.some((char) => name.includes(char));\n }, \"Project name contains invalid characters\")\n .refine((name) => name.toLowerCase() !== \"node_modules\", \"Project name is reserved\")\n .describe(\"Project name or path\");\n\nexport const CreateInputSchema = z.object({\n projectName: z.string().optional(),\n template: TemplateSchema.optional(),\n yes: z.boolean().optional(),\n yolo: z.boolean().optional(),\n verbose: z.boolean().optional(),\n ecosystem: EcosystemSchema.optional(),\n database: DatabaseSchema.optional(),\n orm: ORMSchema.optional(),\n auth: AuthSchema.optional(),\n payments: PaymentsSchema.optional(),\n frontend: z.array(FrontendSchema).optional(),\n addons: z.array(AddonsSchema).optional(),\n examples: z.array(ExamplesSchema).optional(),\n git: z.boolean().optional(),\n packageManager: PackageManagerSchema.optional(),\n versionChannel: VersionChannelSchema.optional(),\n install: z.boolean().optional(),\n dbSetup: DatabaseSetupSchema.optional(),\n backend: BackendSchema.optional(),\n runtime: RuntimeSchema.optional(),\n api: APISchema.optional(),\n webDeploy: WebDeploySchema.optional(),\n serverDeploy: ServerDeploySchema.optional(),\n directoryConflict: DirectoryConflictSchema.optional(),\n renderTitle: z.boolean().optional(),\n disableAnalytics: z.boolean().optional(),\n manualDb: z.boolean().optional(),\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema.optional(),\n effect: EffectSchema.optional(),\n stateManagement: StateManagementSchema.optional(),\n forms: FormsSchema.optional(),\n testing: TestingSchema.optional(),\n email: EmailSchema.optional(),\n cssFramework: CSSFrameworkSchema.optional(),\n uiLibrary: UILibrarySchema.optional(),\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema.optional(),\n realtime: RealtimeSchema.optional(),\n jobQueue: JobQueueSchema.optional(),\n animation: AnimationSchema.optional(),\n fileUpload: FileUploadSchema.optional(),\n logging: LoggingSchema.optional(),\n observability: ObservabilitySchema.optional(),\n featureFlags: FeatureFlagsSchema.optional(),\n analytics: AnalyticsSchema.optional(),\n cms: CMSSchema.optional(),\n caching: CachingSchema.optional(),\n search: SearchSchema.optional(),\n fileStorage: FileStorageSchema.optional(),\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema.optional(),\n rustFrontend: RustFrontendSchema.optional(),\n rustOrm: RustOrmSchema.optional(),\n rustApi: RustApiSchema.optional(),\n rustCli: RustCliSchema.optional(),\n rustLibraries: z.array(RustLibrariesSchema).optional(),\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema.optional(),\n pythonOrm: PythonOrmSchema.optional(),\n pythonValidation: PythonValidationSchema.optional(),\n pythonAi: z.array(PythonAiSchema).optional(),\n pythonTaskQueue: PythonTaskQueueSchema.optional(),\n pythonQuality: PythonQualitySchema.optional(),\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema.optional(),\n goOrm: GoOrmSchema.optional(),\n goApi: GoApiSchema.optional(),\n goCli: GoCliSchema.optional(),\n goLogging: GoLoggingSchema.optional(),\n // AI documentation files\n aiDocs: z.array(AiDocsSchema).optional(),\n});\n\nexport const AddInputSchema = z.object({\n addons: z.array(AddonsSchema).optional(),\n webDeploy: WebDeploySchema.optional(),\n serverDeploy: ServerDeploySchema.optional(),\n projectDir: z.string().optional(),\n install: z.boolean().optional(),\n packageManager: PackageManagerSchema.optional(),\n});\n\nexport const CLIInputSchema = CreateInputSchema.extend({\n projectDirectory: z.string().optional(),\n});\n\nexport const ProjectConfigSchema = z.object({\n projectName: z.string(),\n projectDir: z.string(),\n relativePath: z.string(),\n ecosystem: EcosystemSchema,\n database: DatabaseSchema,\n orm: ORMSchema,\n backend: BackendSchema,\n runtime: RuntimeSchema,\n frontend: z.array(FrontendSchema),\n addons: z.array(AddonsSchema),\n examples: z.array(ExamplesSchema),\n auth: AuthSchema,\n payments: PaymentsSchema,\n git: z.boolean(),\n packageManager: PackageManagerSchema,\n versionChannel: VersionChannelSchema,\n install: z.boolean(),\n dbSetup: DatabaseSetupSchema,\n api: APISchema,\n webDeploy: WebDeploySchema,\n serverDeploy: ServerDeploySchema,\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema,\n effect: EffectSchema,\n stateManagement: StateManagementSchema,\n forms: FormsSchema,\n testing: TestingSchema,\n email: EmailSchema,\n cssFramework: CSSFrameworkSchema,\n uiLibrary: UILibrarySchema,\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema,\n realtime: RealtimeSchema,\n jobQueue: JobQueueSchema,\n animation: AnimationSchema,\n fileUpload: FileUploadSchema,\n logging: LoggingSchema,\n observability: ObservabilitySchema,\n featureFlags: FeatureFlagsSchema,\n analytics: AnalyticsSchema,\n cms: CMSSchema,\n caching: CachingSchema,\n search: SearchSchema,\n fileStorage: FileStorageSchema,\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema,\n rustFrontend: RustFrontendSchema,\n rustOrm: RustOrmSchema,\n rustApi: RustApiSchema,\n rustCli: RustCliSchema,\n rustLibraries: z.array(RustLibrariesSchema),\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n // AI documentation files\n aiDocs: z.array(AiDocsSchema),\n});\n\nexport const BetterTStackConfigSchema = z.object({\n version: z.string().describe(\"CLI version used to create this project\"),\n createdAt: z.string().describe(\"Timestamp when the project was created\"),\n ecosystem: EcosystemSchema,\n database: DatabaseSchema,\n orm: ORMSchema,\n backend: BackendSchema,\n runtime: RuntimeSchema,\n frontend: z.array(FrontendSchema),\n addons: z.array(AddonsSchema),\n examples: z.array(ExamplesSchema),\n auth: AuthSchema,\n payments: PaymentsSchema,\n packageManager: PackageManagerSchema,\n versionChannel: VersionChannelSchema,\n dbSetup: DatabaseSetupSchema,\n api: APISchema,\n webDeploy: WebDeploySchema,\n serverDeploy: ServerDeploySchema,\n astroIntegration: AstroIntegrationSchema.optional(),\n ai: AISchema,\n effect: EffectSchema,\n stateManagement: StateManagementSchema,\n forms: FormsSchema,\n testing: TestingSchema,\n email: EmailSchema,\n cssFramework: CSSFrameworkSchema,\n uiLibrary: UILibrarySchema,\n shadcnBase: ShadcnBaseSchema.optional(),\n shadcnStyle: ShadcnStyleSchema.optional(),\n shadcnIconLibrary: ShadcnIconLibrarySchema.optional(),\n shadcnColorTheme: ShadcnColorThemeSchema.optional(),\n shadcnBaseColor: ShadcnBaseColorSchema.optional(),\n shadcnFont: ShadcnFontSchema.optional(),\n shadcnRadius: ShadcnRadiusSchema.optional(),\n validation: ValidationSchema,\n realtime: RealtimeSchema,\n jobQueue: JobQueueSchema,\n animation: AnimationSchema,\n fileUpload: FileUploadSchema,\n logging: LoggingSchema,\n observability: ObservabilitySchema,\n featureFlags: FeatureFlagsSchema,\n analytics: AnalyticsSchema,\n cms: CMSSchema,\n caching: CachingSchema,\n search: SearchSchema,\n fileStorage: FileStorageSchema,\n // Rust ecosystem options\n rustWebFramework: RustWebFrameworkSchema,\n rustFrontend: RustFrontendSchema,\n rustOrm: RustOrmSchema,\n rustApi: RustApiSchema,\n rustCli: RustCliSchema,\n rustLibraries: z.array(RustLibrariesSchema),\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n // AI documentation files\n aiDocs: z.array(AiDocsSchema),\n});\n\nexport const BetterTStackConfigFileSchema = z\n .object({\n $schema: z.string().optional().describe(\"JSON Schema reference for validation\"),\n })\n .extend(BetterTStackConfigSchema.shape)\n .meta({\n id: \"https://better-fullstack-web.vercel.app/schema.json\",\n title: \"Better Fullstack Configuration\",\n description: \"Configuration file for Better Fullstack projects\",\n });\n\nexport const InitResultSchema = z.object({\n success: z.boolean(),\n projectConfig: ProjectConfigSchema,\n reproducibleCommand: z.string(),\n timeScaffolded: z.string(),\n elapsedTimeMs: z.number(),\n projectDirectory: z.string(),\n relativePath: z.string(),\n error: z.string().optional(),\n});\n\nexport const DATABASE_VALUES = DatabaseSchema.options;\nexport const ORM_VALUES = ORMSchema.options;\nexport const BACKEND_VALUES = BackendSchema.options;\nexport const RUNTIME_VALUES = RuntimeSchema.options;\nexport const FRONTEND_VALUES = FrontendSchema.options;\nexport const ADDONS_VALUES = AddonsSchema.options;\nexport const EXAMPLES_VALUES = ExamplesSchema.options;\nexport const PACKAGE_MANAGER_VALUES = PackageManagerSchema.options;\nexport const VERSION_CHANNEL_VALUES = VersionChannelSchema.options;\nexport const DATABASE_SETUP_VALUES = DatabaseSetupSchema.options;\nexport const API_VALUES = APISchema.options;\nexport const AUTH_VALUES = AuthSchema.options;\nexport const PAYMENTS_VALUES = PaymentsSchema.options;\nexport const WEB_DEPLOY_VALUES = WebDeploySchema.options;\nexport const SERVER_DEPLOY_VALUES = ServerDeploySchema.options;\nexport const DIRECTORY_CONFLICT_VALUES = DirectoryConflictSchema.options;\nexport const TEMPLATE_VALUES = TemplateSchema.options;\nexport const ASTRO_INTEGRATION_VALUES = AstroIntegrationSchema.options;\nexport const AI_VALUES = AISchema.options;\nexport const EFFECT_VALUES = EffectSchema.options;\nexport const STATE_MANAGEMENT_VALUES = StateManagementSchema.options;\nexport const FORMS_VALUES = FormsSchema.options;\nexport const TESTING_VALUES = TestingSchema.options;\nexport const EMAIL_VALUES = EmailSchema.options;\nexport const CSS_FRAMEWORK_VALUES = CSSFrameworkSchema.options;\nexport const UI_LIBRARY_VALUES = UILibrarySchema.options;\nexport const VALIDATION_VALUES = ValidationSchema.options;\nexport const REALTIME_VALUES = RealtimeSchema.options;\nexport const JOB_QUEUE_VALUES = JobQueueSchema.options;\nexport const ANIMATION_VALUES = AnimationSchema.options;\nexport const FILE_UPLOAD_VALUES = FileUploadSchema.options;\nexport const LOGGING_VALUES = LoggingSchema.options;\nexport const OBSERVABILITY_VALUES = ObservabilitySchema.options;\nexport const FEATURE_FLAGS_VALUES = FeatureFlagsSchema.options;\nexport const ANALYTICS_VALUES = AnalyticsSchema.options;\nexport const CMS_VALUES = CMSSchema.options;\nexport const CACHING_VALUES = CachingSchema.options;\nexport const SEARCH_VALUES = SearchSchema.options;\nexport const FILE_STORAGE_VALUES = FileStorageSchema.options;\nexport const ECOSYSTEM_VALUES = EcosystemSchema.options;\nexport const RUST_WEB_FRAMEWORK_VALUES = RustWebFrameworkSchema.options;\nexport const RUST_FRONTEND_VALUES = RustFrontendSchema.options;\nexport const RUST_ORM_VALUES = RustOrmSchema.options;\nexport const RUST_API_VALUES = RustApiSchema.options;\nexport const RUST_CLI_VALUES = RustCliSchema.options;\nexport const RUST_LIBRARIES_VALUES = RustLibrariesSchema.options;\nexport const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;\nexport const PYTHON_ORM_VALUES = PythonOrmSchema.options;\nexport const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;\nexport const PYTHON_AI_VALUES = PythonAiSchema.options;\nexport const PYTHON_TASK_QUEUE_VALUES = PythonTaskQueueSchema.options;\nexport const PYTHON_QUALITY_VALUES = PythonQualitySchema.options;\nexport const GO_WEB_FRAMEWORK_VALUES = GoWebFrameworkSchema.options;\nexport const GO_ORM_VALUES = GoOrmSchema.options;\nexport const GO_API_VALUES = GoApiSchema.options;\nexport const GO_CLI_VALUES = GoCliSchema.options;\nexport const GO_LOGGING_VALUES = GoLoggingSchema.options;\nexport const AI_DOCS_VALUES = AiDocsSchema.options;\nexport const SHADCN_BASE_VALUES = ShadcnBaseSchema.options;\nexport const SHADCN_STYLE_VALUES = ShadcnStyleSchema.options;\nexport const SHADCN_ICON_LIBRARY_VALUES = ShadcnIconLibrarySchema.options;\nexport const SHADCN_COLOR_THEME_VALUES = ShadcnColorThemeSchema.options;\nexport const SHADCN_BASE_COLOR_VALUES = ShadcnBaseColorSchema.options;\nexport const SHADCN_FONT_VALUES = ShadcnFontSchema.options;\nexport const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;\n"],"mappings":"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"}
|