create-better-fullstack 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -36,6 +36,7 @@ declare const router: {
36
36
  rust: "rust";
37
37
  python: "python";
38
38
  go: "go";
39
+ java: "java";
39
40
  }>>;
40
41
  database: z.ZodOptional<z.ZodEnum<{
41
42
  none: "none";
@@ -499,6 +500,10 @@ declare const router: {
499
500
  redis: "redis";
500
501
  moka: "moka";
501
502
  }>>;
503
+ rustAuth: z.ZodOptional<z.ZodEnum<{
504
+ none: "none";
505
+ oauth2: "oauth2";
506
+ }>>;
502
507
  pythonWebFramework: z.ZodOptional<z.ZodEnum<{
503
508
  none: "none";
504
509
  fastapi: "fastapi";
@@ -510,6 +515,7 @@ declare const router: {
510
515
  none: "none";
511
516
  sqlalchemy: "sqlalchemy";
512
517
  sqlmodel: "sqlmodel";
518
+ "tortoise-orm": "tortoise-orm";
513
519
  }>>;
514
520
  pythonValidation: z.ZodOptional<z.ZodEnum<{
515
521
  none: "none";
@@ -569,6 +575,40 @@ declare const router: {
569
575
  zerolog: "zerolog";
570
576
  slog: "slog";
571
577
  }>>;
578
+ goAuth: z.ZodOptional<z.ZodEnum<{
579
+ none: "none";
580
+ jwt: "jwt";
581
+ casbin: "casbin";
582
+ }>>;
583
+ javaWebFramework: z.ZodOptional<z.ZodEnum<{
584
+ none: "none";
585
+ "spring-boot": "spring-boot";
586
+ }>>;
587
+ javaBuildTool: z.ZodOptional<z.ZodEnum<{
588
+ none: "none";
589
+ maven: "maven";
590
+ gradle: "gradle";
591
+ }>>;
592
+ javaOrm: z.ZodOptional<z.ZodEnum<{
593
+ none: "none";
594
+ "spring-data-jpa": "spring-data-jpa";
595
+ }>>;
596
+ javaAuth: z.ZodOptional<z.ZodEnum<{
597
+ none: "none";
598
+ "spring-security": "spring-security";
599
+ }>>;
600
+ javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
601
+ none: "none";
602
+ "spring-actuator": "spring-actuator";
603
+ "spring-validation": "spring-validation";
604
+ flyway: "flyway";
605
+ }>>>;
606
+ javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
607
+ none: "none";
608
+ junit5: "junit5";
609
+ mockito: "mockito";
610
+ testcontainers: "testcontainers";
611
+ }>>>;
572
612
  aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
573
613
  none: "none";
574
614
  "claude-md": "claude-md";
@@ -581,7 +621,7 @@ declare const router: {
581
621
  projectName: string;
582
622
  projectDir: string;
583
623
  relativePath: string;
584
- ecosystem: "typescript" | "rust" | "python" | "go";
624
+ ecosystem: "typescript" | "rust" | "python" | "go" | "java";
585
625
  database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
586
626
  orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
587
627
  backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
@@ -630,8 +670,9 @@ declare const router: {
630
670
  rustLogging: "none" | "tracing" | "env-logger";
631
671
  rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
632
672
  rustCaching: "none" | "redis" | "moka";
673
+ rustAuth: "none" | "oauth2";
633
674
  pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
634
- pythonOrm: "none" | "sqlalchemy" | "sqlmodel";
675
+ pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
635
676
  pythonValidation: "none" | "pydantic";
636
677
  pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
637
678
  pythonAuth: "none" | "authlib" | "jwt";
@@ -643,6 +684,13 @@ declare const router: {
643
684
  goApi: "none" | "grpc-go";
644
685
  goCli: "none" | "cobra" | "bubbletea";
645
686
  goLogging: "none" | "zap" | "zerolog" | "slog";
687
+ goAuth: "none" | "jwt" | "casbin";
688
+ javaWebFramework: "none" | "spring-boot";
689
+ javaBuildTool: "none" | "maven" | "gradle";
690
+ javaOrm: "none" | "spring-data-jpa";
691
+ javaAuth: "none" | "spring-security";
692
+ javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
693
+ javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
646
694
  aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
647
695
  astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
648
696
  shadcnBase?: "radix" | "base" | undefined;
@@ -669,7 +717,7 @@ declare const router: {
669
717
  projectName: string;
670
718
  projectDir: string;
671
719
  relativePath: string;
672
- ecosystem: "typescript" | "rust" | "python" | "go";
720
+ ecosystem: "typescript" | "rust" | "python" | "go" | "java";
673
721
  database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
674
722
  orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
675
723
  backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
@@ -718,8 +766,9 @@ declare const router: {
718
766
  rustLogging: "none" | "tracing" | "env-logger";
719
767
  rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
720
768
  rustCaching: "none" | "redis" | "moka";
769
+ rustAuth: "none" | "oauth2";
721
770
  pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
722
- pythonOrm: "none" | "sqlalchemy" | "sqlmodel";
771
+ pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
723
772
  pythonValidation: "none" | "pydantic";
724
773
  pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
725
774
  pythonAuth: "none" | "authlib" | "jwt";
@@ -731,6 +780,13 @@ declare const router: {
731
780
  goApi: "none" | "grpc-go";
732
781
  goCli: "none" | "cobra" | "bubbletea";
733
782
  goLogging: "none" | "zap" | "zerolog" | "slog";
783
+ goAuth: "none" | "jwt" | "casbin";
784
+ javaWebFramework: "none" | "spring-boot";
785
+ javaBuildTool: "none" | "maven" | "gradle";
786
+ javaOrm: "none" | "spring-data-jpa";
787
+ javaAuth: "none" | "spring-security";
788
+ javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
789
+ javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
734
790
  aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
735
791
  astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
736
792
  shadcnBase?: "radix" | "base" | undefined;
@@ -770,7 +826,7 @@ declare const router: {
770
826
  projectName: string;
771
827
  projectDir: string;
772
828
  relativePath: string;
773
- ecosystem: "typescript" | "rust" | "python" | "go";
829
+ ecosystem: "typescript" | "rust" | "python" | "go" | "java";
774
830
  database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
775
831
  orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
776
832
  backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
@@ -819,8 +875,9 @@ declare const router: {
819
875
  rustLogging: "none" | "tracing" | "env-logger";
820
876
  rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
821
877
  rustCaching: "none" | "redis" | "moka";
878
+ rustAuth: "none" | "oauth2";
822
879
  pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
823
- pythonOrm: "none" | "sqlalchemy" | "sqlmodel";
880
+ pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
824
881
  pythonValidation: "none" | "pydantic";
825
882
  pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
826
883
  pythonAuth: "none" | "authlib" | "jwt";
@@ -832,6 +889,13 @@ declare const router: {
832
889
  goApi: "none" | "grpc-go";
833
890
  goCli: "none" | "cobra" | "bubbletea";
834
891
  goLogging: "none" | "zap" | "zerolog" | "slog";
892
+ goAuth: "none" | "jwt" | "casbin";
893
+ javaWebFramework: "none" | "spring-boot";
894
+ javaBuildTool: "none" | "maven" | "gradle";
895
+ javaOrm: "none" | "spring-data-jpa";
896
+ javaAuth: "none" | "spring-security";
897
+ javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
898
+ javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
835
899
  aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
836
900
  astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
837
901
  shadcnBase?: "radix" | "base" | undefined;
@@ -858,7 +922,7 @@ declare const router: {
858
922
  projectName: string;
859
923
  projectDir: string;
860
924
  relativePath: string;
861
- ecosystem: "typescript" | "rust" | "python" | "go";
925
+ ecosystem: "typescript" | "rust" | "python" | "go" | "java";
862
926
  database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
863
927
  orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
864
928
  backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
@@ -907,8 +971,9 @@ declare const router: {
907
971
  rustLogging: "none" | "tracing" | "env-logger";
908
972
  rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
909
973
  rustCaching: "none" | "redis" | "moka";
974
+ rustAuth: "none" | "oauth2";
910
975
  pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
911
- pythonOrm: "none" | "sqlalchemy" | "sqlmodel";
976
+ pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
912
977
  pythonValidation: "none" | "pydantic";
913
978
  pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
914
979
  pythonAuth: "none" | "authlib" | "jwt";
@@ -920,6 +985,13 @@ declare const router: {
920
985
  goApi: "none" | "grpc-go";
921
986
  goCli: "none" | "cobra" | "bubbletea";
922
987
  goLogging: "none" | "zap" | "zerolog" | "slog";
988
+ goAuth: "none" | "jwt" | "casbin";
989
+ javaWebFramework: "none" | "spring-boot";
990
+ javaBuildTool: "none" | "maven" | "gradle";
991
+ javaOrm: "none" | "spring-data-jpa";
992
+ javaAuth: "none" | "spring-security";
993
+ javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
994
+ javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
923
995
  aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
924
996
  astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
925
997
  shadcnBase?: "radix" | "base" | undefined;
@@ -1104,11 +1176,18 @@ type Effect = import__better_fullstack_types.Effect;
1104
1176
  type Examples = import__better_fullstack_types.Examples;
1105
1177
  type Frontend = import__better_fullstack_types.Frontend;
1106
1178
  type GoApi = import__better_fullstack_types.GoApi;
1179
+ type GoAuth = import__better_fullstack_types.GoAuth;
1107
1180
  type GoCli = import__better_fullstack_types.GoCli;
1108
1181
  type GoLogging = import__better_fullstack_types.GoLogging;
1109
1182
  type GoOrm = import__better_fullstack_types.GoOrm;
1110
1183
  type GoWebFramework = import__better_fullstack_types.GoWebFramework;
1111
1184
  type InitResult = import__better_fullstack_types.InitResult;
1185
+ type JavaAuth = import__better_fullstack_types.JavaAuth;
1186
+ type JavaBuildTool = import__better_fullstack_types.JavaBuildTool;
1187
+ type JavaLibraries = import__better_fullstack_types.JavaLibraries;
1188
+ type JavaOrm = import__better_fullstack_types.JavaOrm;
1189
+ type JavaTestingLibraries = import__better_fullstack_types.JavaTestingLibraries;
1190
+ type JavaWebFramework = import__better_fullstack_types.JavaWebFramework;
1112
1191
  type Logging = import__better_fullstack_types.Logging;
1113
1192
  type ORM = import__better_fullstack_types.ORM;
1114
1193
  type PackageManager = import__better_fullstack_types.PackageManager;
@@ -1132,4 +1211,4 @@ type ServerDeploy = import__better_fullstack_types.ServerDeploy;
1132
1211
  type Template = import__better_fullstack_types.Template;
1133
1212
  type UILibrary = import__better_fullstack_types.UILibrary;
1134
1213
  type WebDeploy = import__better_fullstack_types.WebDeploy;
1135
- export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
1214
+ export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoAuth, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type JavaAuth, type JavaBuildTool, type JavaLibraries, type JavaOrm, type JavaTestingLibraries, type JavaWebFramework, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };