@better-fullstack/types 1.6.0 → 1.6.2
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/defaults-CYLeFakd.d.mts +8 -0
- package/dist/defaults-CYLeFakd.d.mts.map +1 -0
- package/dist/defaults-aGwVXJh5.mjs +90 -0
- package/dist/defaults-aGwVXJh5.mjs.map +1 -0
- package/dist/defaults.d.mts +4 -0
- package/dist/defaults.mjs +3 -0
- package/dist/index.d.mts +25 -91
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +206 -12
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +489 -1
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +26 -2
- package/dist/json-schema.mjs.map +1 -1
- package/dist/{schemas-D7GE2nDP.d.mts → schemas-7gZRZ72r.d.mts} +369 -4
- package/dist/schemas-7gZRZ72r.d.mts.map +1 -0
- package/dist/{schemas-AEYe9g7W.mjs → schemas-rS6DMnT_.mjs} +75 -4
- package/dist/schemas-rS6DMnT_.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/types-sNGWng-q.d.mts +95 -0
- package/dist/types-sNGWng-q.d.mts.map +1 -0
- package/dist/types.d.mts +3 -0
- package/dist/types.mjs +1 -0
- package/package.json +9 -1
- package/dist/schemas-AEYe9g7W.mjs.map +0 -1
- package/dist/schemas-D7GE2nDP.d.mts.map +0 -1
|
@@ -5,8 +5,9 @@ const EcosystemSchema = z.enum([
|
|
|
5
5
|
"typescript",
|
|
6
6
|
"rust",
|
|
7
7
|
"python",
|
|
8
|
-
"go"
|
|
9
|
-
|
|
8
|
+
"go",
|
|
9
|
+
"java"
|
|
10
|
+
]).describe("Language ecosystem (typescript, rust, python, go, or java)");
|
|
10
11
|
const DatabaseSchema = z.enum([
|
|
11
12
|
"none",
|
|
12
13
|
"sqlite",
|
|
@@ -366,6 +367,7 @@ const RustCachingSchema = z.enum([
|
|
|
366
367
|
"redis",
|
|
367
368
|
"none"
|
|
368
369
|
]).describe("Rust caching library");
|
|
370
|
+
const RustAuthSchema = z.enum(["oauth2", "none"]).describe("Rust authentication library");
|
|
369
371
|
const PythonWebFrameworkSchema = z.enum([
|
|
370
372
|
"fastapi",
|
|
371
373
|
"django",
|
|
@@ -376,6 +378,7 @@ const PythonWebFrameworkSchema = z.enum([
|
|
|
376
378
|
const PythonOrmSchema = z.enum([
|
|
377
379
|
"sqlalchemy",
|
|
378
380
|
"sqlmodel",
|
|
381
|
+
"tortoise-orm",
|
|
379
382
|
"none"
|
|
380
383
|
]).describe("Python ORM/database layer");
|
|
381
384
|
const PythonValidationSchema = z.enum(["pydantic", "none"]).describe("Python validation library");
|
|
@@ -421,6 +424,42 @@ const GoLoggingSchema = z.enum([
|
|
|
421
424
|
"slog",
|
|
422
425
|
"none"
|
|
423
426
|
]).describe("Go logging library");
|
|
427
|
+
const GoAuthSchema = z.enum([
|
|
428
|
+
"casbin",
|
|
429
|
+
"jwt",
|
|
430
|
+
"none"
|
|
431
|
+
]).describe("Go authentication library");
|
|
432
|
+
const JavaWebFrameworkSchema = z.enum(["spring-boot", "none"]).describe("Java web framework");
|
|
433
|
+
const JavaBuildToolSchema = z.enum([
|
|
434
|
+
"maven",
|
|
435
|
+
"gradle",
|
|
436
|
+
"none"
|
|
437
|
+
]).describe("Java build tool");
|
|
438
|
+
const JavaOrmSchema = z.enum(["spring-data-jpa", "none"]).describe("Java ORM/database layer");
|
|
439
|
+
const JavaAuthSchema = z.enum(["spring-security", "none"]).describe("Java authentication library");
|
|
440
|
+
const JavaLibrariesSchema = z.enum([
|
|
441
|
+
"spring-actuator",
|
|
442
|
+
"spring-validation",
|
|
443
|
+
"flyway",
|
|
444
|
+
"liquibase",
|
|
445
|
+
"springdoc-openapi",
|
|
446
|
+
"lombok",
|
|
447
|
+
"mapstruct",
|
|
448
|
+
"caffeine",
|
|
449
|
+
"none"
|
|
450
|
+
]).describe("Java application libraries");
|
|
451
|
+
const JavaTestingLibrariesSchema = z.enum([
|
|
452
|
+
"junit5",
|
|
453
|
+
"mockito",
|
|
454
|
+
"testcontainers",
|
|
455
|
+
"assertj",
|
|
456
|
+
"rest-assured",
|
|
457
|
+
"wiremock",
|
|
458
|
+
"awaitility",
|
|
459
|
+
"archunit",
|
|
460
|
+
"jqwik",
|
|
461
|
+
"none"
|
|
462
|
+
]).describe("Java testing libraries");
|
|
424
463
|
const AiDocsSchema = z.enum([
|
|
425
464
|
"claude-md",
|
|
426
465
|
"agents-md",
|
|
@@ -605,6 +644,7 @@ const CreateInputSchema = z.object({
|
|
|
605
644
|
rustLogging: RustLoggingSchema.optional(),
|
|
606
645
|
rustErrorHandling: RustErrorHandlingSchema.optional(),
|
|
607
646
|
rustCaching: RustCachingSchema.optional(),
|
|
647
|
+
rustAuth: RustAuthSchema.optional(),
|
|
608
648
|
pythonWebFramework: PythonWebFrameworkSchema.optional(),
|
|
609
649
|
pythonOrm: PythonOrmSchema.optional(),
|
|
610
650
|
pythonValidation: PythonValidationSchema.optional(),
|
|
@@ -618,6 +658,13 @@ const CreateInputSchema = z.object({
|
|
|
618
658
|
goApi: GoApiSchema.optional(),
|
|
619
659
|
goCli: GoCliSchema.optional(),
|
|
620
660
|
goLogging: GoLoggingSchema.optional(),
|
|
661
|
+
goAuth: GoAuthSchema.optional(),
|
|
662
|
+
javaWebFramework: JavaWebFrameworkSchema.optional(),
|
|
663
|
+
javaBuildTool: JavaBuildToolSchema.optional(),
|
|
664
|
+
javaOrm: JavaOrmSchema.optional(),
|
|
665
|
+
javaAuth: JavaAuthSchema.optional(),
|
|
666
|
+
javaLibraries: z.array(JavaLibrariesSchema).optional(),
|
|
667
|
+
javaTestingLibraries: z.array(JavaTestingLibrariesSchema).optional(),
|
|
621
668
|
aiDocs: z.array(AiDocsSchema).optional()
|
|
622
669
|
});
|
|
623
670
|
const AddInputSchema = z.object({
|
|
@@ -690,6 +737,7 @@ const ProjectConfigSchema = z.object({
|
|
|
690
737
|
rustLogging: RustLoggingSchema,
|
|
691
738
|
rustErrorHandling: RustErrorHandlingSchema,
|
|
692
739
|
rustCaching: RustCachingSchema,
|
|
740
|
+
rustAuth: RustAuthSchema,
|
|
693
741
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
694
742
|
pythonOrm: PythonOrmSchema,
|
|
695
743
|
pythonValidation: PythonValidationSchema,
|
|
@@ -703,6 +751,13 @@ const ProjectConfigSchema = z.object({
|
|
|
703
751
|
goApi: GoApiSchema,
|
|
704
752
|
goCli: GoCliSchema,
|
|
705
753
|
goLogging: GoLoggingSchema,
|
|
754
|
+
goAuth: GoAuthSchema,
|
|
755
|
+
javaWebFramework: JavaWebFrameworkSchema,
|
|
756
|
+
javaBuildTool: JavaBuildToolSchema,
|
|
757
|
+
javaOrm: JavaOrmSchema,
|
|
758
|
+
javaAuth: JavaAuthSchema,
|
|
759
|
+
javaLibraries: z.array(JavaLibrariesSchema),
|
|
760
|
+
javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
|
|
706
761
|
aiDocs: z.array(AiDocsSchema)
|
|
707
762
|
});
|
|
708
763
|
const BetterTStackConfigSchema = z.object({
|
|
@@ -763,6 +818,7 @@ const BetterTStackConfigSchema = z.object({
|
|
|
763
818
|
rustLogging: RustLoggingSchema,
|
|
764
819
|
rustErrorHandling: RustErrorHandlingSchema,
|
|
765
820
|
rustCaching: RustCachingSchema,
|
|
821
|
+
rustAuth: RustAuthSchema,
|
|
766
822
|
pythonWebFramework: PythonWebFrameworkSchema,
|
|
767
823
|
pythonOrm: PythonOrmSchema,
|
|
768
824
|
pythonValidation: PythonValidationSchema,
|
|
@@ -776,6 +832,13 @@ const BetterTStackConfigSchema = z.object({
|
|
|
776
832
|
goApi: GoApiSchema,
|
|
777
833
|
goCli: GoCliSchema,
|
|
778
834
|
goLogging: GoLoggingSchema,
|
|
835
|
+
goAuth: GoAuthSchema,
|
|
836
|
+
javaWebFramework: JavaWebFrameworkSchema,
|
|
837
|
+
javaBuildTool: JavaBuildToolSchema,
|
|
838
|
+
javaOrm: JavaOrmSchema,
|
|
839
|
+
javaAuth: JavaAuthSchema,
|
|
840
|
+
javaLibraries: z.array(JavaLibrariesSchema),
|
|
841
|
+
javaTestingLibraries: z.array(JavaTestingLibrariesSchema),
|
|
779
842
|
aiDocs: z.array(AiDocsSchema)
|
|
780
843
|
});
|
|
781
844
|
const BetterTStackConfigFileSchema = z.object({ $schema: z.string().optional().describe("JSON Schema reference for validation") }).extend(BetterTStackConfigSchema.shape).meta({
|
|
@@ -843,6 +906,7 @@ const RUST_LIBRARIES_VALUES = RustLibrariesSchema.options;
|
|
|
843
906
|
const RUST_LOGGING_VALUES = RustLoggingSchema.options;
|
|
844
907
|
const RUST_ERROR_HANDLING_VALUES = RustErrorHandlingSchema.options;
|
|
845
908
|
const RUST_CACHING_VALUES = RustCachingSchema.options;
|
|
909
|
+
const RUST_AUTH_VALUES = RustAuthSchema.options;
|
|
846
910
|
const PYTHON_WEB_FRAMEWORK_VALUES = PythonWebFrameworkSchema.options;
|
|
847
911
|
const PYTHON_ORM_VALUES = PythonOrmSchema.options;
|
|
848
912
|
const PYTHON_VALIDATION_VALUES = PythonValidationSchema.options;
|
|
@@ -856,6 +920,13 @@ const GO_ORM_VALUES = GoOrmSchema.options;
|
|
|
856
920
|
const GO_API_VALUES = GoApiSchema.options;
|
|
857
921
|
const GO_CLI_VALUES = GoCliSchema.options;
|
|
858
922
|
const GO_LOGGING_VALUES = GoLoggingSchema.options;
|
|
923
|
+
const GO_AUTH_VALUES = GoAuthSchema.options;
|
|
924
|
+
const JAVA_WEB_FRAMEWORK_VALUES = JavaWebFrameworkSchema.options;
|
|
925
|
+
const JAVA_BUILD_TOOL_VALUES = JavaBuildToolSchema.options;
|
|
926
|
+
const JAVA_ORM_VALUES = JavaOrmSchema.options;
|
|
927
|
+
const JAVA_AUTH_VALUES = JavaAuthSchema.options;
|
|
928
|
+
const JAVA_LIBRARIES_VALUES = JavaLibrariesSchema.options;
|
|
929
|
+
const JAVA_TESTING_LIBRARIES_VALUES = JavaTestingLibrariesSchema.options;
|
|
859
930
|
const AI_DOCS_VALUES = AiDocsSchema.options;
|
|
860
931
|
const SHADCN_BASE_VALUES = ShadcnBaseSchema.options;
|
|
861
932
|
const SHADCN_STYLE_VALUES = ShadcnStyleSchema.options;
|
|
@@ -866,5 +937,5 @@ const SHADCN_FONT_VALUES = ShadcnFontSchema.options;
|
|
|
866
937
|
const SHADCN_RADIUS_VALUES = ShadcnRadiusSchema.options;
|
|
867
938
|
|
|
868
939
|
//#endregion
|
|
869
|
-
export { FrontendSchema as $,
|
|
870
|
-
//# sourceMappingURL=schemas-
|
|
940
|
+
export { FrontendSchema as $, VALIDATION_VALUES as $n, PythonQualitySchema as $t, DATABASE_SETUP_VALUES as A, SHADCN_BASE_VALUES as An, LoggingSchema as At, EcosystemSchema as B, ShadcnBaseSchema as Bn, PYTHON_ORM_VALUES as Bt, CLIInputSchema as C, RustLibrariesSchema as Cn, JavaBuildToolSchema as Ct, CSS_FRAMEWORK_VALUES as D, SEARCH_VALUES as Dn, JavaWebFrameworkSchema as Dt, CSSFrameworkSchema as E, RustWebFrameworkSchema as En, JavaTestingLibrariesSchema as Et, DirectoryConflictSchema as F, SHADCN_STYLE_VALUES as Fn, PACKAGE_MANAGER_VALUES as Ft, FILE_STORAGE_VALUES as G, ShadcnStyleSchema as Gn, PackageManagerSchema as Gt, EmailSchema as H, ShadcnFontSchema as Hn, PYTHON_TASK_QUEUE_VALUES as Ht, ECOSYSTEM_VALUES as I, STATE_MANAGEMENT_VALUES as In, PAYMENTS_VALUES as It, FRONTEND_VALUES as J, TESTING_VALUES as Jn, ProjectNameSchema as Jt, FILE_UPLOAD_VALUES as K, StateManagementSchema as Kn, PaymentsSchema as Kt, EFFECT_VALUES as L, SearchSchema as Ln, PYTHON_AI_VALUES as Lt, DIRECTORY_CONFLICT_VALUES as M, SHADCN_FONT_VALUES as Mn, ORMSchema as Mt, DatabaseSchema as N, SHADCN_ICON_LIBRARY_VALUES as Nn, ORM_VALUES as Nt, CachingSchema as O, SERVER_DEPLOY_VALUES as On, JobQueueSchema as Ot, DatabaseSetupSchema as P, SHADCN_RADIUS_VALUES as Pn, ObservabilitySchema as Pt, FormsSchema as Q, UI_LIBRARY_VALUES as Qn, PythonOrmSchema as Qt, EMAIL_VALUES as R, ServerDeploySchema as Rn, PYTHON_AUTH_VALUES as Rt, CACHING_VALUES as S, RustFrontendSchema as Sn, JavaAuthSchema as St, CMS_VALUES as T, RustOrmSchema as Tn, JavaOrmSchema as Tt, ExamplesSchema as U, ShadcnIconLibrarySchema as Un, PYTHON_VALIDATION_VALUES as Ut, EffectSchema as V, ShadcnColorThemeSchema as Vn, PYTHON_QUALITY_VALUES as Vt, FEATURE_FLAGS_VALUES as W, ShadcnRadiusSchema as Wn, PYTHON_WEB_FRAMEWORK_VALUES as Wt, FileStorageSchema as X, TestingSchema as Xn, PythonAuthSchema as Xt, FeatureFlagsSchema as Y, TemplateSchema as Yn, PythonAiSchema as Yt, FileUploadSchema as Z, UILibrarySchema as Zn, PythonGraphqlSchema as Zt, AuthSchema as _, RustApiSchema as _n, JAVA_LIBRARIES_VALUES as _t, ANALYTICS_VALUES as a, RUST_API_VALUES as an, GO_WEB_FRAMEWORK_VALUES as at, BetterTStackConfigFileSchema as b, RustCliSchema as bn, JAVA_WEB_FRAMEWORK_VALUES as bt, API_VALUES as c, RUST_CLI_VALUES as cn, GoCliSchema as ct, AddInputSchema as d, RUST_LIBRARIES_VALUES as dn, GoWebFrameworkSchema as dt, PythonTaskQueueSchema as en, VERSION_CHANNEL_VALUES as er, GO_API_VALUES as et, AddonsSchema as f, RUST_LOGGING_VALUES as fn, I18N_VALUES as ft, AstroIntegrationSchema as g, RuntimeSchema as gn, JAVA_BUILD_TOOL_VALUES as gt, AnimationSchema as h, RealtimeSchema as hn, JAVA_AUTH_VALUES as ht, AI_VALUES as i, RUNTIME_VALUES as in, WebDeploySchema as ir, GO_ORM_VALUES as it, DATABASE_VALUES as j, SHADCN_COLOR_THEME_VALUES as jn, OBSERVABILITY_VALUES as jt, CreateInputSchema as k, SHADCN_BASE_COLOR_VALUES as kn, LOGGING_VALUES as kt, ASTRO_INTEGRATION_VALUES as l, RUST_ERROR_HANDLING_VALUES as ln, GoLoggingSchema as lt, AnalyticsSchema as m, RUST_WEB_FRAMEWORK_VALUES as mn, InitResultSchema as mt, AISchema as n, PythonWebFrameworkSchema as nn, VersionChannelSchema as nr, GO_CLI_VALUES as nt, ANIMATION_VALUES as o, RUST_AUTH_VALUES as on, GoApiSchema as ot, AiDocsSchema as p, RUST_ORM_VALUES as pn, I18nSchema as pt, FORMS_VALUES as q, TEMPLATE_VALUES as qn, ProjectConfigSchema as qt, AI_DOCS_VALUES as r, REALTIME_VALUES as rn, WEB_DEPLOY_VALUES as rr, GO_LOGGING_VALUES as rt, APISchema as s, RUST_CACHING_VALUES as sn, GoAuthSchema as st, ADDONS_VALUES as t, PythonValidationSchema as tn, ValidationSchema as tr, GO_AUTH_VALUES as tt, AUTH_VALUES as u, RUST_FRONTEND_VALUES as un, GoOrmSchema as ut, BACKEND_VALUES as v, RustAuthSchema as vn, JAVA_ORM_VALUES as vt, CMSSchema as w, RustLoggingSchema as wn, JavaLibrariesSchema as wt, BetterTStackConfigSchema as x, RustErrorHandlingSchema as xn, JOB_QUEUE_VALUES as xt, BackendSchema as y, RustCachingSchema as yn, JAVA_TESTING_LIBRARIES_VALUES as yt, EXAMPLES_VALUES as z, ShadcnBaseColorSchema as zn, PYTHON_GRAPHQL_VALUES as zt };
|
|
941
|
+
//# sourceMappingURL=schemas-rS6DMnT_.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas-rS6DMnT_.mjs","names":[],"sources":["../src/schemas.ts"],"sourcesContent":["import { z } from \"zod\";\n\nexport const EcosystemSchema = z\n .enum([\"typescript\", \"rust\", \"python\", \"go\", \"java\"])\n .describe(\"Language ecosystem (typescript, rust, python, go, or java)\");\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\n .enum([\"trpc\", \"orpc\", \"ts-rest\", \"garph\", \"graphql-yoga\", \"none\"])\n .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\", \"vercel\", \"none\"])\n .describe(\"Web deployment\");\n\nexport const ServerDeploySchema = z\n .enum([\"cloudflare\", \"fly\", \"railway\", \"docker\", \"sst\", \"vercel\", \"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 I18nSchema = z\n .enum([\"i18next\", \"next-intl\", \"none\"])\n .describe(\"Internationalization (i18n) library\");\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\", \"rocket\", \"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\", \"diesel\", \"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\nexport const RustErrorHandlingSchema = z\n .enum([\"anyhow-thiserror\", \"eyre\", \"none\"])\n .describe(\"Rust error handling library\");\n\nexport const RustCachingSchema = z.enum([\"moka\", \"redis\", \"none\"]).describe(\"Rust caching library\");\n\nexport const RustAuthSchema = z.enum([\"oauth2\", \"none\"]).describe(\"Rust authentication library\");\n\n// Python ecosystem schemas\nexport const PythonWebFrameworkSchema = z\n .enum([\"fastapi\", \"django\", \"flask\", \"litestar\", \"none\"])\n .describe(\"Python web framework\");\n\nexport const PythonOrmSchema = z\n .enum([\"sqlalchemy\", \"sqlmodel\", \"tortoise-orm\", \"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 PythonAuthSchema = z\n .enum([\"authlib\", \"jwt\", \"none\"])\n .describe(\"Python authentication library\");\n\nexport const PythonTaskQueueSchema = z.enum([\"celery\", \"none\"]).describe(\"Python task queue\");\n\nexport const PythonGraphqlSchema = z\n .enum([\"strawberry\", \"none\"])\n .describe(\"Python GraphQL framework\");\n\nexport const PythonQualitySchema = z.enum([\"ruff\", \"none\"]).describe(\"Python code quality tool\");\n\n// Go ecosystem schemas\nexport const GoWebFrameworkSchema = z\n .enum([\"gin\", \"echo\", \"fiber\", \"chi\", \"none\"])\n .describe(\"Go web framework\");\n\nexport const GoOrmSchema = z\n .enum([\"gorm\", \"sqlc\", \"ent\", \"none\"])\n .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\n .enum([\"zap\", \"zerolog\", \"slog\", \"none\"])\n .describe(\"Go logging library\");\n\nexport const GoAuthSchema = z.enum([\"casbin\", \"jwt\", \"none\"]).describe(\"Go authentication library\");\n\n// Java ecosystem schemas\nexport const JavaWebFrameworkSchema = z\n .enum([\"spring-boot\", \"none\"])\n .describe(\"Java web framework\");\n\nexport const JavaBuildToolSchema = z.enum([\"maven\", \"gradle\", \"none\"]).describe(\"Java build tool\");\n\nexport const JavaOrmSchema = z\n .enum([\"spring-data-jpa\", \"none\"])\n .describe(\"Java ORM/database layer\");\n\nexport const JavaAuthSchema = z\n .enum([\"spring-security\", \"none\"])\n .describe(\"Java authentication library\");\n\nexport const JavaLibrariesSchema = z\n .enum([\n \"spring-actuator\",\n \"spring-validation\",\n \"flyway\",\n \"liquibase\",\n \"springdoc-openapi\",\n \"lombok\",\n \"mapstruct\",\n \"caffeine\",\n \"none\",\n ])\n .describe(\"Java application libraries\");\n\nexport const JavaTestingLibrariesSchema = z\n .enum([\n \"junit5\",\n \"mockito\",\n \"testcontainers\",\n \"assertj\",\n \"rest-assured\",\n \"wiremock\",\n \"awaitility\",\n \"archunit\",\n \"jqwik\",\n \"none\",\n ])\n .describe(\"Java testing libraries\");\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 i18n: I18nSchema.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 rustErrorHandling: RustErrorHandlingSchema.optional(),\n rustCaching: RustCachingSchema.optional(),\n rustAuth: RustAuthSchema.optional(),\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema.optional(),\n pythonOrm: PythonOrmSchema.optional(),\n pythonValidation: PythonValidationSchema.optional(),\n pythonAi: z.array(PythonAiSchema).optional(),\n pythonAuth: PythonAuthSchema.optional(),\n pythonTaskQueue: PythonTaskQueueSchema.optional(),\n pythonGraphql: PythonGraphqlSchema.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 goAuth: GoAuthSchema.optional(),\n // Java ecosystem options\n javaWebFramework: JavaWebFrameworkSchema.optional(),\n javaBuildTool: JavaBuildToolSchema.optional(),\n javaOrm: JavaOrmSchema.optional(),\n javaAuth: JavaAuthSchema.optional(),\n javaLibraries: z.array(JavaLibrariesSchema).optional(),\n javaTestingLibraries: z.array(JavaTestingLibrariesSchema).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 i18n: I18nSchema,\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 rustErrorHandling: RustErrorHandlingSchema,\n rustCaching: RustCachingSchema,\n rustAuth: RustAuthSchema,\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonAuth: PythonAuthSchema,\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonGraphql: PythonGraphqlSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n goAuth: GoAuthSchema,\n // Java ecosystem options\n javaWebFramework: JavaWebFrameworkSchema,\n javaBuildTool: JavaBuildToolSchema,\n javaOrm: JavaOrmSchema,\n javaAuth: JavaAuthSchema,\n javaLibraries: z.array(JavaLibrariesSchema),\n javaTestingLibraries: z.array(JavaTestingLibrariesSchema),\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 i18n: I18nSchema,\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 rustErrorHandling: RustErrorHandlingSchema,\n rustCaching: RustCachingSchema,\n rustAuth: RustAuthSchema,\n // Python ecosystem options\n pythonWebFramework: PythonWebFrameworkSchema,\n pythonOrm: PythonOrmSchema,\n pythonValidation: PythonValidationSchema,\n pythonAi: z.array(PythonAiSchema),\n pythonAuth: PythonAuthSchema,\n pythonTaskQueue: PythonTaskQueueSchema,\n pythonGraphql: PythonGraphqlSchema,\n pythonQuality: PythonQualitySchema,\n // Go ecosystem options\n goWebFramework: GoWebFrameworkSchema,\n goOrm: GoOrmSchema,\n goApi: GoApiSchema,\n goCli: GoCliSchema,\n goLogging: GoLoggingSchema,\n goAuth: GoAuthSchema,\n // Java ecosystem options\n javaWebFramework: JavaWebFrameworkSchema,\n javaBuildTool: JavaBuildToolSchema,\n javaOrm: JavaOrmSchema,\n javaAuth: JavaAuthSchema,\n javaLibraries: z.array(JavaLibrariesSchema),\n javaTestingLibraries: z.array(JavaTestingLibrariesSchema),\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 I18N_VALUES = I18nSchema.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 RUST_ERROR_HANDLING_VALUES = RustErrorHandlingSchema.options;\nexport const RUST_CACHING_VALUES = RustCachingSchema.options;\nexport const RUST_AUTH_VALUES = RustAuthSchema.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_AUTH_VALUES = PythonAuthSchema.options;\nexport const PYTHON_TASK_QUEUE_VALUES = PythonTaskQueueSchema.options;\nexport const PYTHON_GRAPHQL_VALUES = PythonGraphqlSchema.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 GO_AUTH_VALUES = GoAuthSchema.options;\nexport const JAVA_WEB_FRAMEWORK_VALUES = JavaWebFrameworkSchema.options;\nexport const JAVA_BUILD_TOOL_VALUES = JavaBuildToolSchema.options;\nexport const JAVA_ORM_VALUES = JavaOrmSchema.options;\nexport const JAVA_AUTH_VALUES = JavaAuthSchema.options;\nexport const JAVA_LIBRARIES_VALUES = JavaLibrariesSchema.options;\nexport const JAVA_TESTING_LIBRARIES_VALUES = JavaTestingLibrariesSchema.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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"}
|
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, I18N_VALUES, I18nSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_AUTH_VALUES, PYTHON_GRAPHQL_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonAuthSchema, PythonGraphqlSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CACHING_VALUES, RUST_CLI_VALUES, RUST_ERROR_HANDLING_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCachingSchema, RustCliSchema, RustErrorHandlingSchema, 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 };
|
|
1
|
+
import { $ as FrontendSchema, $n as VALIDATION_VALUES, $t as PythonQualitySchema, A as DATABASE_SETUP_VALUES, An as SHADCN_BASE_VALUES, At as LoggingSchema, B as EcosystemSchema, Bn as ShadcnBaseSchema, Bt as PYTHON_ORM_VALUES, C as CLIInputSchema, Cn as RustLibrariesSchema, Ct as JavaBuildToolSchema, D as CSS_FRAMEWORK_VALUES, Dn as SEARCH_VALUES, Dt as JavaWebFrameworkSchema, E as CSSFrameworkSchema, En as RustWebFrameworkSchema, Et as JavaTestingLibrariesSchema, F as DirectoryConflictSchema, Fn as SHADCN_STYLE_VALUES, Ft as PACKAGE_MANAGER_VALUES, G as FILE_STORAGE_VALUES, Gn as ShadcnStyleSchema, Gt as PackageManagerSchema, H as EmailSchema, Hn as ShadcnFontSchema, Ht as PYTHON_TASK_QUEUE_VALUES, I as ECOSYSTEM_VALUES, In as STATE_MANAGEMENT_VALUES, It as PAYMENTS_VALUES, J as FRONTEND_VALUES, Jn as TESTING_VALUES, Jt as ProjectNameSchema, K as FILE_UPLOAD_VALUES, Kn as StateManagementSchema, Kt as PaymentsSchema, L as EFFECT_VALUES, Ln as SearchSchema, Lt as PYTHON_AI_VALUES, M as DIRECTORY_CONFLICT_VALUES, Mn as SHADCN_FONT_VALUES, Mt as ORMSchema, N as DatabaseSchema, Nn as SHADCN_ICON_LIBRARY_VALUES, Nt as ORM_VALUES, O as CachingSchema, On as SERVER_DEPLOY_VALUES, Ot as JobQueueSchema, P as DatabaseSetupSchema, Pn as SHADCN_RADIUS_VALUES, Pt as ObservabilitySchema, Q as FormsSchema, Qn as UI_LIBRARY_VALUES, Qt as PythonOrmSchema, R as EMAIL_VALUES, Rn as ServerDeploySchema, Rt as PYTHON_AUTH_VALUES, S as CACHING_VALUES, Sn as RustFrontendSchema, St as JavaAuthSchema, T as CMS_VALUES, Tn as RustOrmSchema, Tt as JavaOrmSchema, U as ExamplesSchema, Un as ShadcnIconLibrarySchema, Ut as PYTHON_VALIDATION_VALUES, V as EffectSchema, Vn as ShadcnColorThemeSchema, Vt as PYTHON_QUALITY_VALUES, W as FEATURE_FLAGS_VALUES, Wn as ShadcnRadiusSchema, Wt as PYTHON_WEB_FRAMEWORK_VALUES, X as FileStorageSchema, Xn as TestingSchema, Xt as PythonAuthSchema, Y as FeatureFlagsSchema, Yn as TemplateSchema, Yt as PythonAiSchema, Z as FileUploadSchema, Zn as UILibrarySchema, Zt as PythonGraphqlSchema, _ as AuthSchema, _n as RustApiSchema, _t as JAVA_LIBRARIES_VALUES, a as ANALYTICS_VALUES, an as RUST_API_VALUES, at as GO_WEB_FRAMEWORK_VALUES, b as BetterTStackConfigFileSchema, bn as RustCliSchema, bt as JAVA_WEB_FRAMEWORK_VALUES, c as API_VALUES, cn as RUST_CLI_VALUES, ct as GoCliSchema, d as AddInputSchema, dn as RUST_LIBRARIES_VALUES, dt as GoWebFrameworkSchema, en as PythonTaskQueueSchema, er as VERSION_CHANNEL_VALUES, et as GO_API_VALUES, f as AddonsSchema, fn as RUST_LOGGING_VALUES, ft as I18N_VALUES, g as AstroIntegrationSchema, gn as RuntimeSchema, gt as JAVA_BUILD_TOOL_VALUES, h as AnimationSchema, hn as RealtimeSchema, ht as JAVA_AUTH_VALUES, i as AI_VALUES, in as RUNTIME_VALUES, ir as WebDeploySchema, it as GO_ORM_VALUES, j as DATABASE_VALUES, jn as SHADCN_COLOR_THEME_VALUES, jt as OBSERVABILITY_VALUES, k as CreateInputSchema, kn as SHADCN_BASE_COLOR_VALUES, kt as LOGGING_VALUES, l as ASTRO_INTEGRATION_VALUES, ln as RUST_ERROR_HANDLING_VALUES, lt as GoLoggingSchema, m as AnalyticsSchema, mn as RUST_WEB_FRAMEWORK_VALUES, mt as InitResultSchema, n as AISchema, nn as PythonWebFrameworkSchema, nr as VersionChannelSchema, nt as GO_CLI_VALUES, o as ANIMATION_VALUES, on as RUST_AUTH_VALUES, ot as GoApiSchema, p as AiDocsSchema, pn as RUST_ORM_VALUES, pt as I18nSchema, q as FORMS_VALUES, qn as TEMPLATE_VALUES, qt as ProjectConfigSchema, r as AI_DOCS_VALUES, rn as REALTIME_VALUES, rr as WEB_DEPLOY_VALUES, rt as GO_LOGGING_VALUES, s as APISchema, sn as RUST_CACHING_VALUES, st as GoAuthSchema, t as ADDONS_VALUES, tn as PythonValidationSchema, tr as ValidationSchema, tt as GO_AUTH_VALUES, u as AUTH_VALUES, un as RUST_FRONTEND_VALUES, ut as GoOrmSchema, v as BACKEND_VALUES, vn as RustAuthSchema, vt as JAVA_ORM_VALUES, w as CMSSchema, wn as RustLoggingSchema, wt as JavaLibrariesSchema, x as BetterTStackConfigSchema, xn as RustErrorHandlingSchema, xt as JOB_QUEUE_VALUES, y as BackendSchema, yn as RustCachingSchema, yt as JAVA_TESTING_LIBRARIES_VALUES, z as EXAMPLES_VALUES, zn as ShadcnBaseColorSchema, zt as PYTHON_GRAPHQL_VALUES } from "./schemas-7gZRZ72r.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_AUTH_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoAuthSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, I18N_VALUES, I18nSchema, InitResultSchema, JAVA_AUTH_VALUES, JAVA_BUILD_TOOL_VALUES, JAVA_LIBRARIES_VALUES, JAVA_ORM_VALUES, JAVA_TESTING_LIBRARIES_VALUES, JAVA_WEB_FRAMEWORK_VALUES, JOB_QUEUE_VALUES, JavaAuthSchema, JavaBuildToolSchema, JavaLibrariesSchema, JavaOrmSchema, JavaTestingLibrariesSchema, JavaWebFrameworkSchema, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_AUTH_VALUES, PYTHON_GRAPHQL_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonAuthSchema, PythonGraphqlSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_AUTH_VALUES, RUST_CACHING_VALUES, RUST_CLI_VALUES, RUST_ERROR_HANDLING_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustAuthSchema, RustCachingSchema, RustCliSchema, RustErrorHandlingSchema, 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, $n as VALIDATION_VALUES, $t as PythonQualitySchema, A as DATABASE_SETUP_VALUES, An as SHADCN_BASE_VALUES, At as LoggingSchema, B as EcosystemSchema, Bn as ShadcnBaseSchema, Bt as PYTHON_ORM_VALUES, C as CLIInputSchema, Cn as RustLibrariesSchema, Ct as JavaBuildToolSchema, D as CSS_FRAMEWORK_VALUES, Dn as SEARCH_VALUES, Dt as JavaWebFrameworkSchema, E as CSSFrameworkSchema, En as RustWebFrameworkSchema, Et as JavaTestingLibrariesSchema, F as DirectoryConflictSchema, Fn as SHADCN_STYLE_VALUES, Ft as PACKAGE_MANAGER_VALUES, G as FILE_STORAGE_VALUES, Gn as ShadcnStyleSchema, Gt as PackageManagerSchema, H as EmailSchema, Hn as ShadcnFontSchema, Ht as PYTHON_TASK_QUEUE_VALUES, I as ECOSYSTEM_VALUES, In as STATE_MANAGEMENT_VALUES, It as PAYMENTS_VALUES, J as FRONTEND_VALUES, Jn as TESTING_VALUES, Jt as ProjectNameSchema, K as FILE_UPLOAD_VALUES, Kn as StateManagementSchema, Kt as PaymentsSchema, L as EFFECT_VALUES, Ln as SearchSchema, Lt as PYTHON_AI_VALUES, M as DIRECTORY_CONFLICT_VALUES, Mn as SHADCN_FONT_VALUES, Mt as ORMSchema, N as DatabaseSchema, Nn as SHADCN_ICON_LIBRARY_VALUES, Nt as ORM_VALUES, O as CachingSchema, On as SERVER_DEPLOY_VALUES, Ot as JobQueueSchema, P as DatabaseSetupSchema, Pn as SHADCN_RADIUS_VALUES, Pt as ObservabilitySchema, Q as FormsSchema, Qn as UI_LIBRARY_VALUES, Qt as PythonOrmSchema, R as EMAIL_VALUES, Rn as ServerDeploySchema, Rt as PYTHON_AUTH_VALUES, S as CACHING_VALUES, Sn as RustFrontendSchema, St as JavaAuthSchema, T as CMS_VALUES, Tn as RustOrmSchema, Tt as JavaOrmSchema, U as ExamplesSchema, Un as ShadcnIconLibrarySchema, Ut as PYTHON_VALIDATION_VALUES, V as EffectSchema, Vn as ShadcnColorThemeSchema, Vt as PYTHON_QUALITY_VALUES, W as FEATURE_FLAGS_VALUES, Wn as ShadcnRadiusSchema, Wt as PYTHON_WEB_FRAMEWORK_VALUES, X as FileStorageSchema, Xn as TestingSchema, Xt as PythonAuthSchema, Y as FeatureFlagsSchema, Yn as TemplateSchema, Yt as PythonAiSchema, Z as FileUploadSchema, Zn as UILibrarySchema, Zt as PythonGraphqlSchema, _ as AuthSchema, _n as RustApiSchema, _t as JAVA_LIBRARIES_VALUES, a as ANALYTICS_VALUES, an as RUST_API_VALUES, at as GO_WEB_FRAMEWORK_VALUES, b as BetterTStackConfigFileSchema, bn as RustCliSchema, bt as JAVA_WEB_FRAMEWORK_VALUES, c as API_VALUES, cn as RUST_CLI_VALUES, ct as GoCliSchema, d as AddInputSchema, dn as RUST_LIBRARIES_VALUES, dt as GoWebFrameworkSchema, en as PythonTaskQueueSchema, er as VERSION_CHANNEL_VALUES, et as GO_API_VALUES, f as AddonsSchema, fn as RUST_LOGGING_VALUES, ft as I18N_VALUES, g as AstroIntegrationSchema, gn as RuntimeSchema, gt as JAVA_BUILD_TOOL_VALUES, h as AnimationSchema, hn as RealtimeSchema, ht as JAVA_AUTH_VALUES, i as AI_VALUES, in as RUNTIME_VALUES, ir as WebDeploySchema, it as GO_ORM_VALUES, j as DATABASE_VALUES, jn as SHADCN_COLOR_THEME_VALUES, jt as OBSERVABILITY_VALUES, k as CreateInputSchema, kn as SHADCN_BASE_COLOR_VALUES, kt as LOGGING_VALUES, l as ASTRO_INTEGRATION_VALUES, ln as RUST_ERROR_HANDLING_VALUES, lt as GoLoggingSchema, m as AnalyticsSchema, mn as RUST_WEB_FRAMEWORK_VALUES, mt as InitResultSchema, n as AISchema, nn as PythonWebFrameworkSchema, nr as VersionChannelSchema, nt as GO_CLI_VALUES, o as ANIMATION_VALUES, on as RUST_AUTH_VALUES, ot as GoApiSchema, p as AiDocsSchema, pn as RUST_ORM_VALUES, pt as I18nSchema, q as FORMS_VALUES, qn as TEMPLATE_VALUES, qt as ProjectConfigSchema, r as AI_DOCS_VALUES, rn as REALTIME_VALUES, rr as WEB_DEPLOY_VALUES, rt as GO_LOGGING_VALUES, s as APISchema, sn as RUST_CACHING_VALUES, st as GoAuthSchema, t as ADDONS_VALUES, tn as PythonValidationSchema, tr as ValidationSchema, tt as GO_AUTH_VALUES, u as AUTH_VALUES, un as RUST_FRONTEND_VALUES, ut as GoOrmSchema, v as BACKEND_VALUES, vn as RustAuthSchema, vt as JAVA_ORM_VALUES, w as CMSSchema, wn as RustLoggingSchema, wt as JavaLibrariesSchema, x as BetterTStackConfigSchema, xn as RustErrorHandlingSchema, xt as JOB_QUEUE_VALUES, y as BackendSchema, yn as RustCachingSchema, yt as JAVA_TESTING_LIBRARIES_VALUES, z as EXAMPLES_VALUES, zn as ShadcnBaseColorSchema, zt as PYTHON_GRAPHQL_VALUES } from "./schemas-rS6DMnT_.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, I18N_VALUES, I18nSchema, InitResultSchema, JOB_QUEUE_VALUES, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_AUTH_VALUES, PYTHON_GRAPHQL_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonAuthSchema, PythonGraphqlSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_CACHING_VALUES, RUST_CLI_VALUES, RUST_ERROR_HANDLING_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustCachingSchema, RustCliSchema, RustErrorHandlingSchema, 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 };
|
|
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_AUTH_VALUES, GO_CLI_VALUES, GO_LOGGING_VALUES, GO_ORM_VALUES, GO_WEB_FRAMEWORK_VALUES, GoApiSchema, GoAuthSchema, GoCliSchema, GoLoggingSchema, GoOrmSchema, GoWebFrameworkSchema, I18N_VALUES, I18nSchema, InitResultSchema, JAVA_AUTH_VALUES, JAVA_BUILD_TOOL_VALUES, JAVA_LIBRARIES_VALUES, JAVA_ORM_VALUES, JAVA_TESTING_LIBRARIES_VALUES, JAVA_WEB_FRAMEWORK_VALUES, JOB_QUEUE_VALUES, JavaAuthSchema, JavaBuildToolSchema, JavaLibrariesSchema, JavaOrmSchema, JavaTestingLibrariesSchema, JavaWebFrameworkSchema, JobQueueSchema, LOGGING_VALUES, LoggingSchema, OBSERVABILITY_VALUES, ORMSchema, ORM_VALUES, ObservabilitySchema, PACKAGE_MANAGER_VALUES, PAYMENTS_VALUES, PYTHON_AI_VALUES, PYTHON_AUTH_VALUES, PYTHON_GRAPHQL_VALUES, PYTHON_ORM_VALUES, PYTHON_QUALITY_VALUES, PYTHON_TASK_QUEUE_VALUES, PYTHON_VALIDATION_VALUES, PYTHON_WEB_FRAMEWORK_VALUES, PackageManagerSchema, PaymentsSchema, ProjectConfigSchema, ProjectNameSchema, PythonAiSchema, PythonAuthSchema, PythonGraphqlSchema, PythonOrmSchema, PythonQualitySchema, PythonTaskQueueSchema, PythonValidationSchema, PythonWebFrameworkSchema, REALTIME_VALUES, RUNTIME_VALUES, RUST_API_VALUES, RUST_AUTH_VALUES, RUST_CACHING_VALUES, RUST_CLI_VALUES, RUST_ERROR_HANDLING_VALUES, RUST_FRONTEND_VALUES, RUST_LIBRARIES_VALUES, RUST_LOGGING_VALUES, RUST_ORM_VALUES, RUST_WEB_FRAMEWORK_VALUES, RealtimeSchema, RuntimeSchema, RustApiSchema, RustAuthSchema, RustCachingSchema, RustCliSchema, RustErrorHandlingSchema, 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 };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { $ as FrontendSchema, $t as PythonQualitySchema, At as LoggingSchema, B as EcosystemSchema, Bn as ShadcnBaseSchema, C as CLIInputSchema, Cn as RustLibrariesSchema, Ct as JavaBuildToolSchema, Dt as JavaWebFrameworkSchema, E as CSSFrameworkSchema, En as RustWebFrameworkSchema, Et as JavaTestingLibrariesSchema, F as DirectoryConflictSchema, Gn as ShadcnStyleSchema, Gt as PackageManagerSchema, H as EmailSchema, Hn as ShadcnFontSchema, Jt as ProjectNameSchema, Kn as StateManagementSchema, Kt as PaymentsSchema, Ln as SearchSchema, Mt as ORMSchema, N as DatabaseSchema, O as CachingSchema, Ot as JobQueueSchema, P as DatabaseSetupSchema, Pt as ObservabilitySchema, Q as FormsSchema, Qt as PythonOrmSchema, Rn as ServerDeploySchema, Sn as RustFrontendSchema, St as JavaAuthSchema, Tn as RustOrmSchema, Tt as JavaOrmSchema, U as ExamplesSchema, Un as ShadcnIconLibrarySchema, V as EffectSchema, Vn as ShadcnColorThemeSchema, Wn as ShadcnRadiusSchema, X as FileStorageSchema, Xn as TestingSchema, Xt as PythonAuthSchema, Y as FeatureFlagsSchema, Yn as TemplateSchema, Yt as PythonAiSchema, Z as FileUploadSchema, Zn as UILibrarySchema, Zt as PythonGraphqlSchema, _ as AuthSchema, _n as RustApiSchema, bn as RustCliSchema, ct as GoCliSchema, d as AddInputSchema, dt as GoWebFrameworkSchema, en as PythonTaskQueueSchema, f as AddonsSchema, g as AstroIntegrationSchema, gn as RuntimeSchema, h as AnimationSchema, hn as RealtimeSchema, ir as WebDeploySchema, k as CreateInputSchema, lt as GoLoggingSchema, m as AnalyticsSchema, mt as InitResultSchema, n as AISchema, nn as PythonWebFrameworkSchema, nr as VersionChannelSchema, ot as GoApiSchema, p as AiDocsSchema, pt as I18nSchema, qt as ProjectConfigSchema, s as APISchema, st as GoAuthSchema, tn as PythonValidationSchema, tr as ValidationSchema, ut as GoOrmSchema, vn as RustAuthSchema, w as CMSSchema, wn as RustLoggingSchema, wt as JavaLibrariesSchema, x as BetterTStackConfigSchema, xn as RustErrorHandlingSchema, y as BackendSchema, yn as RustCachingSchema, zn as ShadcnBaseColorSchema } from "./schemas-7gZRZ72r.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/types.d.ts
|
|
5
|
+
type Database = z.infer<typeof DatabaseSchema>;
|
|
6
|
+
type ORM = z.infer<typeof ORMSchema>;
|
|
7
|
+
type Backend = z.infer<typeof BackendSchema>;
|
|
8
|
+
type Runtime = z.infer<typeof RuntimeSchema>;
|
|
9
|
+
type Frontend = z.infer<typeof FrontendSchema>;
|
|
10
|
+
type Addons = z.infer<typeof AddonsSchema>;
|
|
11
|
+
type Examples = z.infer<typeof ExamplesSchema>;
|
|
12
|
+
type PackageManager = z.infer<typeof PackageManagerSchema>;
|
|
13
|
+
type VersionChannel = z.infer<typeof VersionChannelSchema>;
|
|
14
|
+
type DatabaseSetup = z.infer<typeof DatabaseSetupSchema>;
|
|
15
|
+
type API = z.infer<typeof APISchema>;
|
|
16
|
+
type Auth = z.infer<typeof AuthSchema>;
|
|
17
|
+
type Payments = z.infer<typeof PaymentsSchema>;
|
|
18
|
+
type WebDeploy = z.infer<typeof WebDeploySchema>;
|
|
19
|
+
type ServerDeploy = z.infer<typeof ServerDeploySchema>;
|
|
20
|
+
type DirectoryConflict = z.infer<typeof DirectoryConflictSchema>;
|
|
21
|
+
type Template = z.infer<typeof TemplateSchema>;
|
|
22
|
+
type ProjectName = z.infer<typeof ProjectNameSchema>;
|
|
23
|
+
type AstroIntegration = z.infer<typeof AstroIntegrationSchema>;
|
|
24
|
+
type AI = z.infer<typeof AISchema>;
|
|
25
|
+
type Effect = z.infer<typeof EffectSchema>;
|
|
26
|
+
type StateManagement = z.infer<typeof StateManagementSchema>;
|
|
27
|
+
type Forms = z.infer<typeof FormsSchema>;
|
|
28
|
+
type Testing = z.infer<typeof TestingSchema>;
|
|
29
|
+
type Email = z.infer<typeof EmailSchema>;
|
|
30
|
+
type CSSFramework = z.infer<typeof CSSFrameworkSchema>;
|
|
31
|
+
type UILibrary = z.infer<typeof UILibrarySchema>;
|
|
32
|
+
type Validation = z.infer<typeof ValidationSchema>;
|
|
33
|
+
type Realtime = z.infer<typeof RealtimeSchema>;
|
|
34
|
+
type JobQueue = z.infer<typeof JobQueueSchema>;
|
|
35
|
+
type Animation = z.infer<typeof AnimationSchema>;
|
|
36
|
+
type FileUpload = z.infer<typeof FileUploadSchema>;
|
|
37
|
+
type Logging = z.infer<typeof LoggingSchema>;
|
|
38
|
+
type Observability = z.infer<typeof ObservabilitySchema>;
|
|
39
|
+
type FeatureFlags = z.infer<typeof FeatureFlagsSchema>;
|
|
40
|
+
type Analytics = z.infer<typeof AnalyticsSchema>;
|
|
41
|
+
type CMS = z.infer<typeof CMSSchema>;
|
|
42
|
+
type Caching = z.infer<typeof CachingSchema>;
|
|
43
|
+
type I18n = z.infer<typeof I18nSchema>;
|
|
44
|
+
type Search = z.infer<typeof SearchSchema>;
|
|
45
|
+
type FileStorage = z.infer<typeof FileStorageSchema>;
|
|
46
|
+
type Ecosystem = z.infer<typeof EcosystemSchema>;
|
|
47
|
+
type RustWebFramework = z.infer<typeof RustWebFrameworkSchema>;
|
|
48
|
+
type RustFrontend = z.infer<typeof RustFrontendSchema>;
|
|
49
|
+
type RustOrm = z.infer<typeof RustOrmSchema>;
|
|
50
|
+
type RustApi = z.infer<typeof RustApiSchema>;
|
|
51
|
+
type RustCli = z.infer<typeof RustCliSchema>;
|
|
52
|
+
type RustLibraries = z.infer<typeof RustLibrariesSchema>;
|
|
53
|
+
type RustLogging = z.infer<typeof RustLoggingSchema>;
|
|
54
|
+
type RustErrorHandling = z.infer<typeof RustErrorHandlingSchema>;
|
|
55
|
+
type RustCaching = z.infer<typeof RustCachingSchema>;
|
|
56
|
+
type RustAuth = z.infer<typeof RustAuthSchema>;
|
|
57
|
+
type PythonWebFramework = z.infer<typeof PythonWebFrameworkSchema>;
|
|
58
|
+
type PythonOrm = z.infer<typeof PythonOrmSchema>;
|
|
59
|
+
type PythonValidation = z.infer<typeof PythonValidationSchema>;
|
|
60
|
+
type PythonAi = z.infer<typeof PythonAiSchema>;
|
|
61
|
+
type PythonAuth = z.infer<typeof PythonAuthSchema>;
|
|
62
|
+
type PythonTaskQueue = z.infer<typeof PythonTaskQueueSchema>;
|
|
63
|
+
type PythonGraphql = z.infer<typeof PythonGraphqlSchema>;
|
|
64
|
+
type PythonQuality = z.infer<typeof PythonQualitySchema>;
|
|
65
|
+
type GoWebFramework = z.infer<typeof GoWebFrameworkSchema>;
|
|
66
|
+
type GoOrm = z.infer<typeof GoOrmSchema>;
|
|
67
|
+
type GoApi = z.infer<typeof GoApiSchema>;
|
|
68
|
+
type GoCli = z.infer<typeof GoCliSchema>;
|
|
69
|
+
type GoLogging = z.infer<typeof GoLoggingSchema>;
|
|
70
|
+
type GoAuth = z.infer<typeof GoAuthSchema>;
|
|
71
|
+
type JavaWebFramework = z.infer<typeof JavaWebFrameworkSchema>;
|
|
72
|
+
type JavaBuildTool = z.infer<typeof JavaBuildToolSchema>;
|
|
73
|
+
type JavaOrm = z.infer<typeof JavaOrmSchema>;
|
|
74
|
+
type JavaAuth = z.infer<typeof JavaAuthSchema>;
|
|
75
|
+
type JavaLibraries = z.infer<typeof JavaLibrariesSchema>;
|
|
76
|
+
type JavaTestingLibraries = z.infer<typeof JavaTestingLibrariesSchema>;
|
|
77
|
+
type AiDocs = z.infer<typeof AiDocsSchema>;
|
|
78
|
+
type ShadcnBase = z.infer<typeof ShadcnBaseSchema>;
|
|
79
|
+
type ShadcnStyle = z.infer<typeof ShadcnStyleSchema>;
|
|
80
|
+
type ShadcnIconLibrary = z.infer<typeof ShadcnIconLibrarySchema>;
|
|
81
|
+
type ShadcnColorTheme = z.infer<typeof ShadcnColorThemeSchema>;
|
|
82
|
+
type ShadcnBaseColor = z.infer<typeof ShadcnBaseColorSchema>;
|
|
83
|
+
type ShadcnFont = z.infer<typeof ShadcnFontSchema>;
|
|
84
|
+
type ShadcnRadius = z.infer<typeof ShadcnRadiusSchema>;
|
|
85
|
+
type CreateInput = z.infer<typeof CreateInputSchema>;
|
|
86
|
+
type AddInput = z.infer<typeof AddInputSchema>;
|
|
87
|
+
type CLIInput = z.infer<typeof CLIInputSchema>;
|
|
88
|
+
type ProjectConfig = z.infer<typeof ProjectConfigSchema>;
|
|
89
|
+
type BetterTStackConfig = z.infer<typeof BetterTStackConfigSchema>;
|
|
90
|
+
type InitResult = z.infer<typeof InitResultSchema>;
|
|
91
|
+
type WebFrontend = Extract<Frontend, "tanstack-router" | "react-router" | "react-vite" | "tanstack-start" | "next" | "nuxt" | "svelte" | "solid" | "solid-start" | "astro" | "none">;
|
|
92
|
+
type NativeFrontend = Extract<Frontend, "native-bare" | "native-uniwind" | "native-unistyles" | "none">;
|
|
93
|
+
//#endregion
|
|
94
|
+
export { PythonAuth as $, GoAuth as A, UILibrary as At, JavaOrm as B, Examples as C, ShadcnFont as Ct, Forms as D, StateManagement as Dt, FileUpload as E, ShadcnStyle as Et, I18n as F, NativeFrontend as G, JavaWebFramework as H, InitResult as I, PackageManager as J, ORM as K, JavaAuth as L, GoLogging as M, VersionChannel as Mt, GoOrm as N, WebDeploy as Nt, Frontend as O, Template as Ot, GoWebFramework as P, WebFrontend as Pt, PythonAi as Q, JavaBuildTool as R, Email as S, ShadcnColorTheme as St, FileStorage as T, ShadcnRadius as Tt, JobQueue as U, JavaTestingLibraries as V, Logging as W, ProjectConfig as X, Payments as Y, ProjectName as Z, Database as _, RustWebFramework as _t, AiDocs as a, PythonWebFramework as at, Ecosystem as b, ShadcnBase as bt, AstroIntegration as c, RustApi as ct, BetterTStackConfig as d, RustCli as dt, PythonGraphql as et, CLIInput as f, RustErrorHandling as ft, CreateInput as g, RustOrm as gt, Caching as h, RustLogging as ht, Addons as i, PythonValidation as it, GoCli as j, Validation as jt, GoApi as k, Testing as kt, Auth as l, RustAuth as lt, CSSFramework as m, RustLibraries as mt, API as n, PythonQuality as nt, Analytics as o, Realtime as ot, CMS as p, RustFrontend as pt, Observability as q, AddInput as r, PythonTaskQueue as rt, Animation as s, Runtime as st, AI as t, PythonOrm as tt, Backend as u, RustCaching as ut, DatabaseSetup as v, Search as vt, FeatureFlags as w, ShadcnIconLibrary as wt, Effect as x, ShadcnBaseColor as xt, DirectoryConflict as y, ServerDeploy as yt, JavaLibraries as z };
|
|
95
|
+
//# sourceMappingURL=types-sNGWng-q.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types-sNGWng-q.d.mts","names":[],"sources":["../src/types.ts"],"sourcesContent":[],"mappings":"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"}
|
package/dist/types.d.mts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import "./schemas-7gZRZ72r.mjs";
|
|
2
|
+
import { $ as PythonAuth, A as GoAuth, At as UILibrary, B as JavaOrm, C as Examples, Ct as ShadcnFont, D as Forms, Dt as StateManagement, E as FileUpload, Et as ShadcnStyle, F as I18n, G as NativeFrontend, H as JavaWebFramework, I as InitResult, J as PackageManager, K as ORM, L as JavaAuth, M as GoLogging, Mt as VersionChannel, N as GoOrm, Nt as WebDeploy, O as Frontend, Ot as Template, P as GoWebFramework, Pt as WebFrontend, Q as PythonAi, R as JavaBuildTool, S as Email, St as ShadcnColorTheme, T as FileStorage, Tt as ShadcnRadius, U as JobQueue, V as JavaTestingLibraries, W as Logging, X as ProjectConfig, Y as Payments, Z as ProjectName, _ as Database, _t as RustWebFramework, a as AiDocs, at as PythonWebFramework, b as Ecosystem, bt as ShadcnBase, c as AstroIntegration, ct as RustApi, d as BetterTStackConfig, dt as RustCli, et as PythonGraphql, f as CLIInput, ft as RustErrorHandling, g as CreateInput, gt as RustOrm, h as Caching, ht as RustLogging, i as Addons, it as PythonValidation, j as GoCli, jt as Validation, k as GoApi, kt as Testing, l as Auth, lt as RustAuth, m as CSSFramework, mt as RustLibraries, n as API, nt as PythonQuality, o as Analytics, ot as Realtime, p as CMS, pt as RustFrontend, q as Observability, r as AddInput, rt as PythonTaskQueue, s as Animation, st as Runtime, t as AI, tt as PythonOrm, u as Backend, ut as RustCaching, v as DatabaseSetup, vt as Search, w as FeatureFlags, wt as ShadcnIconLibrary, x as Effect, xt as ShadcnBaseColor, y as DirectoryConflict, yt as ServerDeploy, z as JavaLibraries } from "./types-sNGWng-q.mjs";
|
|
3
|
+
export { AI, API, AddInput, Addons, AiDocs, Analytics, Animation, AstroIntegration, Auth, Backend, BetterTStackConfig, CLIInput, CMS, CSSFramework, Caching, CreateInput, Database, DatabaseSetup, DirectoryConflict, Ecosystem, Effect, Email, Examples, FeatureFlags, FileStorage, FileUpload, Forms, Frontend, GoApi, GoAuth, GoCli, GoLogging, GoOrm, GoWebFramework, I18n, InitResult, JavaAuth, JavaBuildTool, JavaLibraries, JavaOrm, JavaTestingLibraries, JavaWebFramework, JobQueue, Logging, NativeFrontend, ORM, Observability, PackageManager, Payments, ProjectConfig, ProjectName, PythonAi, PythonAuth, PythonGraphql, PythonOrm, PythonQuality, PythonTaskQueue, PythonValidation, PythonWebFramework, Realtime, Runtime, RustApi, RustAuth, RustCaching, RustCli, RustErrorHandling, RustFrontend, RustLibraries, RustLogging, RustOrm, RustWebFramework, Search, ServerDeploy, ShadcnBase, ShadcnBaseColor, ShadcnColorTheme, ShadcnFont, ShadcnIconLibrary, ShadcnRadius, ShadcnStyle, StateManagement, Template, Testing, UILibrary, Validation, VersionChannel, WebDeploy, WebFrontend };
|
package/dist/types.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-fullstack/types",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "TypeScript types and schemas for Better Fullstack CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-fullstack",
|
|
@@ -33,6 +33,14 @@
|
|
|
33
33
|
"./json-schema": {
|
|
34
34
|
"types": "./dist/json-schema.d.mts",
|
|
35
35
|
"default": "./dist/json-schema.mjs"
|
|
36
|
+
},
|
|
37
|
+
"./defaults": {
|
|
38
|
+
"types": "./dist/defaults.d.mts",
|
|
39
|
+
"default": "./dist/defaults.mjs"
|
|
40
|
+
},
|
|
41
|
+
"./types": {
|
|
42
|
+
"types": "./dist/types.d.mts",
|
|
43
|
+
"default": "./dist/types.mjs"
|
|
36
44
|
}
|
|
37
45
|
},
|
|
38
46
|
"publishConfig": {
|