@arcbridge/core 0.5.0 → 0.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.ts +4 -4
- package/dist/index.js +1091 -62
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare const ServiceSchema: z.ZodObject<{
|
|
|
23
23
|
declare const ArcBridgeConfigSchema: z.ZodObject<{
|
|
24
24
|
schema_version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
25
25
|
project_name: z.ZodString;
|
|
26
|
-
project_type: z.ZodDefault<z.ZodEnum<["nextjs-app-router", "react-vite", "api-service", "dotnet-webapi", "unity-game", "angular-app"]>>;
|
|
26
|
+
project_type: z.ZodDefault<z.ZodEnum<["nextjs-app-router", "react-vite", "api-service", "dotnet-webapi", "unity-game", "angular-app", "fullstack-nextjs-dotnet"]>>;
|
|
27
27
|
services: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
28
28
|
name: z.ZodString;
|
|
29
29
|
path: z.ZodDefault<z.ZodString>;
|
|
@@ -101,7 +101,7 @@ declare const ArcBridgeConfigSchema: z.ZodObject<{
|
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
102
|
schema_version: 1;
|
|
103
103
|
project_name: string;
|
|
104
|
-
project_type: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app";
|
|
104
|
+
project_type: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app" | "fullstack-nextjs-dotnet";
|
|
105
105
|
services: {
|
|
106
106
|
name: string;
|
|
107
107
|
path: string;
|
|
@@ -135,7 +135,7 @@ declare const ArcBridgeConfigSchema: z.ZodObject<{
|
|
|
135
135
|
}, {
|
|
136
136
|
project_name: string;
|
|
137
137
|
schema_version?: 1 | undefined;
|
|
138
|
-
project_type?: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app" | undefined;
|
|
138
|
+
project_type?: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app" | "fullstack-nextjs-dotnet" | undefined;
|
|
139
139
|
services?: {
|
|
140
140
|
name: string;
|
|
141
141
|
type: "nextjs" | "react" | "fastify" | "express" | "hono" | "dotnet" | "unity" | "angular";
|
|
@@ -755,7 +755,7 @@ declare function migrate(db: Database): void;
|
|
|
755
755
|
|
|
756
756
|
interface InitProjectInput {
|
|
757
757
|
name: string;
|
|
758
|
-
template: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app";
|
|
758
|
+
template: "nextjs-app-router" | "react-vite" | "api-service" | "dotnet-webapi" | "unity-game" | "angular-app" | "fullstack-nextjs-dotnet";
|
|
759
759
|
features: string[];
|
|
760
760
|
quality_priorities: string[];
|
|
761
761
|
platforms: string[];
|