@zigrivers/scaffold 3.5.3 → 3.7.0
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/README.md +150 -8
- package/content/knowledge/backend/backend-api-design.md +103 -0
- package/content/knowledge/backend/backend-architecture.md +100 -0
- package/content/knowledge/backend/backend-async-patterns.md +101 -0
- package/content/knowledge/backend/backend-auth-patterns.md +100 -0
- package/content/knowledge/backend/backend-conventions.md +105 -0
- package/content/knowledge/backend/backend-data-modeling.md +102 -0
- package/content/knowledge/backend/backend-deployment.md +100 -0
- package/content/knowledge/backend/backend-dev-environment.md +102 -0
- package/content/knowledge/backend/backend-observability.md +102 -0
- package/content/knowledge/backend/backend-project-structure.md +100 -0
- package/content/knowledge/backend/backend-requirements.md +103 -0
- package/content/knowledge/backend/backend-security.md +104 -0
- package/content/knowledge/backend/backend-testing.md +101 -0
- package/content/knowledge/backend/backend-worker-patterns.md +100 -0
- package/content/knowledge/cli/cli-architecture.md +101 -0
- package/content/knowledge/cli/cli-conventions.md +117 -0
- package/content/knowledge/cli/cli-dev-environment.md +121 -0
- package/content/knowledge/cli/cli-distribution-patterns.md +106 -0
- package/content/knowledge/cli/cli-interactivity-patterns.md +116 -0
- package/content/knowledge/cli/cli-output-patterns.md +107 -0
- package/content/knowledge/cli/cli-project-structure.md +124 -0
- package/content/knowledge/cli/cli-requirements.md +101 -0
- package/content/knowledge/cli/cli-shell-integration.md +130 -0
- package/content/knowledge/cli/cli-testing.md +134 -0
- package/content/knowledge/web-app/web-app-api-patterns.md +224 -0
- package/content/knowledge/web-app/web-app-architecture.md +116 -0
- package/content/knowledge/web-app/web-app-auth-patterns.md +256 -0
- package/content/knowledge/web-app/web-app-conventions.md +121 -0
- package/content/knowledge/web-app/web-app-data-patterns.md +218 -0
- package/content/knowledge/web-app/web-app-deployment-workflow.md +143 -0
- package/content/knowledge/web-app/web-app-deployment.md +134 -0
- package/content/knowledge/web-app/web-app-design-system.md +158 -0
- package/content/knowledge/web-app/web-app-dev-environment.md +173 -0
- package/content/knowledge/web-app/web-app-observability.md +221 -0
- package/content/knowledge/web-app/web-app-project-structure.md +160 -0
- package/content/knowledge/web-app/web-app-rendering-strategies.md +133 -0
- package/content/knowledge/web-app/web-app-requirements.md +112 -0
- package/content/knowledge/web-app/web-app-security.md +193 -0
- package/content/knowledge/web-app/web-app-session-patterns.md +214 -0
- package/content/knowledge/web-app/web-app-testing.md +249 -0
- package/content/knowledge/web-app/web-app-ux-patterns.md +162 -0
- package/content/methodology/backend-overlay.yml +73 -0
- package/content/methodology/cli-overlay.yml +69 -0
- package/content/methodology/web-app-overlay.yml +79 -0
- package/dist/cli/commands/init.d.ts +26 -0
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +354 -7
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/init.test.js +136 -0
- package/dist/cli/commands/init.test.js.map +1 -1
- package/dist/config/schema.d.ts +800 -32
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +48 -5
- package/dist/config/schema.js.map +1 -1
- package/dist/config/schema.test.js +156 -1
- package/dist/config/schema.test.js.map +1 -1
- package/dist/core/assembly/overlay-loader.d.ts.map +1 -1
- package/dist/core/assembly/overlay-loader.js +2 -1
- package/dist/core/assembly/overlay-loader.js.map +1 -1
- package/dist/core/assembly/overlay-loader.test.js +34 -0
- package/dist/core/assembly/overlay-loader.test.js.map +1 -1
- package/dist/e2e/game-pipeline.test.js +1 -0
- package/dist/e2e/game-pipeline.test.js.map +1 -1
- package/dist/e2e/project-type-overlays.test.d.ts +15 -0
- package/dist/e2e/project-type-overlays.test.d.ts.map +1 -0
- package/dist/e2e/project-type-overlays.test.js +534 -0
- package/dist/e2e/project-type-overlays.test.js.map +1 -0
- package/dist/types/config.d.ts +13 -2
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +0 -1
- package/dist/types/index.js.map +1 -1
- package/dist/wizard/questions.d.ts +30 -1
- package/dist/wizard/questions.d.ts.map +1 -1
- package/dist/wizard/questions.js +181 -36
- package/dist/wizard/questions.js.map +1 -1
- package/dist/wizard/questions.test.js +334 -4
- package/dist/wizard/questions.test.js.map +1 -1
- package/dist/wizard/wizard.d.ts +26 -0
- package/dist/wizard/wizard.d.ts.map +1 -1
- package/dist/wizard/wizard.js +31 -2
- package/dist/wizard/wizard.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/wizard.d.ts +0 -14
- package/dist/types/wizard.d.ts.map +0 -1
- package/dist/types/wizard.js +0 -2
- package/dist/types/wizard.js.map +0 -1
package/dist/config/schema.d.ts
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>;
|
|
3
|
+
export declare const WebAppConfigSchema: z.ZodObject<{
|
|
4
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
5
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
6
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
7
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
8
|
+
}, "strict", z.ZodTypeAny, {
|
|
9
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
10
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
11
|
+
realtime: "none" | "websocket" | "sse";
|
|
12
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
13
|
+
}, {
|
|
14
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
15
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
16
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
17
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const BackendConfigSchema: z.ZodObject<{
|
|
20
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
21
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
22
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
23
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
24
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
25
|
+
}, "strict", z.ZodTypeAny, {
|
|
26
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
27
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
28
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
29
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
30
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
31
|
+
}, {
|
|
32
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
33
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
34
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
35
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
36
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const CliConfigSchema: z.ZodObject<{
|
|
39
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
40
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
41
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
42
|
+
}, "strict", z.ZodTypeAny, {
|
|
43
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
44
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
45
|
+
hasStructuredOutput: boolean;
|
|
46
|
+
}, {
|
|
47
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
48
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
49
|
+
hasStructuredOutput?: boolean | undefined;
|
|
50
|
+
}>;
|
|
3
51
|
export declare const GameConfigSchema: z.ZodObject<{
|
|
4
52
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
5
53
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -14,7 +62,7 @@ export declare const GameConfigSchema: z.ZodObject<{
|
|
|
14
62
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
15
63
|
}, "strict", z.ZodTypeAny, {
|
|
16
64
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
17
|
-
multiplayerMode: "
|
|
65
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
18
66
|
narrative: "none" | "light" | "heavy";
|
|
19
67
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
20
68
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -26,7 +74,7 @@ export declare const GameConfigSchema: z.ZodObject<{
|
|
|
26
74
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
27
75
|
}, {
|
|
28
76
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
29
|
-
multiplayerMode?: "
|
|
77
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
30
78
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
31
79
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
32
80
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -84,7 +132,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
84
132
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
85
133
|
}, "strict", z.ZodTypeAny, {
|
|
86
134
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
87
|
-
multiplayerMode: "
|
|
135
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
88
136
|
narrative: "none" | "light" | "heavy";
|
|
89
137
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
90
138
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -96,7 +144,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
96
144
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
97
145
|
}, {
|
|
98
146
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
99
|
-
multiplayerMode?: "
|
|
147
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
100
148
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
101
149
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
102
150
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -107,6 +155,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
107
155
|
hasModding?: boolean | undefined;
|
|
108
156
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
109
157
|
}>>;
|
|
158
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
159
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
160
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
161
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
162
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
163
|
+
}, "strict", z.ZodTypeAny, {
|
|
164
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
165
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
166
|
+
realtime: "none" | "websocket" | "sse";
|
|
167
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
168
|
+
}, {
|
|
169
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
170
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
171
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
172
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
173
|
+
}>>;
|
|
174
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
175
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
176
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
177
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
178
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
179
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
180
|
+
}, "strict", z.ZodTypeAny, {
|
|
181
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
182
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
183
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
184
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
185
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
186
|
+
}, {
|
|
187
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
188
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
189
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
190
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
191
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
192
|
+
}>>;
|
|
193
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
194
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
195
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
196
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
197
|
+
}, "strict", z.ZodTypeAny, {
|
|
198
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
199
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
200
|
+
hasStructuredOutput: boolean;
|
|
201
|
+
}, {
|
|
202
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
203
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
204
|
+
hasStructuredOutput?: boolean | undefined;
|
|
205
|
+
}>>;
|
|
110
206
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
111
207
|
name: z.ZodOptional<z.ZodString>;
|
|
112
208
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -125,7 +221,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
125
221
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
126
222
|
}, "strict", z.ZodTypeAny, {
|
|
127
223
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
128
|
-
multiplayerMode: "
|
|
224
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
129
225
|
narrative: "none" | "light" | "heavy";
|
|
130
226
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
131
227
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -137,7 +233,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
137
233
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
138
234
|
}, {
|
|
139
235
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
140
|
-
multiplayerMode?: "
|
|
236
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
141
237
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
142
238
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
143
239
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -148,6 +244,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
148
244
|
hasModding?: boolean | undefined;
|
|
149
245
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
150
246
|
}>>;
|
|
247
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
248
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
249
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
250
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
251
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
252
|
+
}, "strict", z.ZodTypeAny, {
|
|
253
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
254
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
255
|
+
realtime: "none" | "websocket" | "sse";
|
|
256
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
257
|
+
}, {
|
|
258
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
259
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
260
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
261
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
262
|
+
}>>;
|
|
263
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
264
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
265
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
266
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
267
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
268
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
269
|
+
}, "strict", z.ZodTypeAny, {
|
|
270
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
271
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
272
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
273
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
274
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
275
|
+
}, {
|
|
276
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
277
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
278
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
279
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
280
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
281
|
+
}>>;
|
|
282
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
283
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
284
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
285
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
286
|
+
}, "strict", z.ZodTypeAny, {
|
|
287
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
288
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
289
|
+
hasStructuredOutput: boolean;
|
|
290
|
+
}, {
|
|
291
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
292
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
293
|
+
hasStructuredOutput?: boolean | undefined;
|
|
294
|
+
}>>;
|
|
151
295
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
152
296
|
name: z.ZodOptional<z.ZodString>;
|
|
153
297
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -166,7 +310,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
166
310
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
167
311
|
}, "strict", z.ZodTypeAny, {
|
|
168
312
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
169
|
-
multiplayerMode: "
|
|
313
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
170
314
|
narrative: "none" | "light" | "heavy";
|
|
171
315
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
172
316
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -178,7 +322,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
178
322
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
179
323
|
}, {
|
|
180
324
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
181
|
-
multiplayerMode?: "
|
|
325
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
182
326
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
183
327
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
184
328
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -189,6 +333,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
189
333
|
hasModding?: boolean | undefined;
|
|
190
334
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
191
335
|
}>>;
|
|
336
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
337
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
338
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
339
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
340
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
341
|
+
}, "strict", z.ZodTypeAny, {
|
|
342
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
343
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
344
|
+
realtime: "none" | "websocket" | "sse";
|
|
345
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
346
|
+
}, {
|
|
347
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
348
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
349
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
350
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
351
|
+
}>>;
|
|
352
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
353
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
354
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
355
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
356
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
357
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
358
|
+
}, "strict", z.ZodTypeAny, {
|
|
359
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
360
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
361
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
362
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
363
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
364
|
+
}, {
|
|
365
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
366
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
367
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
368
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
369
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
370
|
+
}>>;
|
|
371
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
372
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
373
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
374
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
375
|
+
}, "strict", z.ZodTypeAny, {
|
|
376
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
377
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
378
|
+
hasStructuredOutput: boolean;
|
|
379
|
+
}, {
|
|
380
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
381
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
382
|
+
hasStructuredOutput?: boolean | undefined;
|
|
383
|
+
}>>;
|
|
192
384
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
193
385
|
name: z.ZodOptional<z.ZodString>;
|
|
194
386
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -207,7 +399,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
207
399
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
208
400
|
}, "strict", z.ZodTypeAny, {
|
|
209
401
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
210
|
-
multiplayerMode: "
|
|
402
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
211
403
|
narrative: "none" | "light" | "heavy";
|
|
212
404
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
213
405
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -219,7 +411,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
219
411
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
220
412
|
}, {
|
|
221
413
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
222
|
-
multiplayerMode?: "
|
|
414
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
223
415
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
224
416
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
225
417
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -230,6 +422,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
230
422
|
hasModding?: boolean | undefined;
|
|
231
423
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
232
424
|
}>>;
|
|
425
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
426
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
427
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
428
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
429
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
430
|
+
}, "strict", z.ZodTypeAny, {
|
|
431
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
432
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
433
|
+
realtime: "none" | "websocket" | "sse";
|
|
434
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
435
|
+
}, {
|
|
436
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
437
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
438
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
439
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
440
|
+
}>>;
|
|
441
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
442
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
443
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
444
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
445
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
446
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
447
|
+
}, "strict", z.ZodTypeAny, {
|
|
448
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
449
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
450
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
451
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
452
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
453
|
+
}, {
|
|
454
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
455
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
456
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
457
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
458
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
459
|
+
}>>;
|
|
460
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
461
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
462
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
463
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
464
|
+
}, "strict", z.ZodTypeAny, {
|
|
465
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
466
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
467
|
+
hasStructuredOutput: boolean;
|
|
468
|
+
}, {
|
|
469
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
470
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
471
|
+
hasStructuredOutput?: boolean | undefined;
|
|
472
|
+
}>>;
|
|
233
473
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
234
474
|
name: z.ZodOptional<z.ZodString>;
|
|
235
475
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -248,7 +488,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
248
488
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
249
489
|
}, "strict", z.ZodTypeAny, {
|
|
250
490
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
251
|
-
multiplayerMode: "
|
|
491
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
252
492
|
narrative: "none" | "light" | "heavy";
|
|
253
493
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
254
494
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -260,7 +500,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
260
500
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
261
501
|
}, {
|
|
262
502
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
263
|
-
multiplayerMode?: "
|
|
503
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
264
504
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
265
505
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
266
506
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -271,6 +511,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
271
511
|
hasModding?: boolean | undefined;
|
|
272
512
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
273
513
|
}>>;
|
|
514
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
515
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
516
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
517
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
518
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
519
|
+
}, "strict", z.ZodTypeAny, {
|
|
520
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
521
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
522
|
+
realtime: "none" | "websocket" | "sse";
|
|
523
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
524
|
+
}, {
|
|
525
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
526
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
527
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
528
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
529
|
+
}>>;
|
|
530
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
531
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
532
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
533
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
534
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
535
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
536
|
+
}, "strict", z.ZodTypeAny, {
|
|
537
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
538
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
539
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
540
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
541
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
542
|
+
}, {
|
|
543
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
544
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
545
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
546
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
547
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
548
|
+
}>>;
|
|
549
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
550
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
551
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
552
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
553
|
+
}, "strict", z.ZodTypeAny, {
|
|
554
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
555
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
556
|
+
hasStructuredOutput: boolean;
|
|
557
|
+
}, {
|
|
558
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
559
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
560
|
+
hasStructuredOutput?: boolean | undefined;
|
|
561
|
+
}>>;
|
|
274
562
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
275
563
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
276
564
|
version: z.ZodLiteral<2>;
|
|
@@ -319,7 +607,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
319
607
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
320
608
|
}, "strict", z.ZodTypeAny, {
|
|
321
609
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
322
|
-
multiplayerMode: "
|
|
610
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
323
611
|
narrative: "none" | "light" | "heavy";
|
|
324
612
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
325
613
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -331,7 +619,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
331
619
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
332
620
|
}, {
|
|
333
621
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
334
|
-
multiplayerMode?: "
|
|
622
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
335
623
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
336
624
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
337
625
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -342,6 +630,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
342
630
|
hasModding?: boolean | undefined;
|
|
343
631
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
344
632
|
}>>;
|
|
633
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
634
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
635
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
636
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
637
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
638
|
+
}, "strict", z.ZodTypeAny, {
|
|
639
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
640
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
641
|
+
realtime: "none" | "websocket" | "sse";
|
|
642
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
643
|
+
}, {
|
|
644
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
645
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
646
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
647
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
648
|
+
}>>;
|
|
649
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
650
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
651
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
652
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
653
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
654
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
655
|
+
}, "strict", z.ZodTypeAny, {
|
|
656
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
657
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
658
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
659
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
660
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
661
|
+
}, {
|
|
662
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
663
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
664
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
665
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
666
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
667
|
+
}>>;
|
|
668
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
669
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
670
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
671
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
672
|
+
}, "strict", z.ZodTypeAny, {
|
|
673
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
674
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
675
|
+
hasStructuredOutput: boolean;
|
|
676
|
+
}, {
|
|
677
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
678
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
679
|
+
hasStructuredOutput?: boolean | undefined;
|
|
680
|
+
}>>;
|
|
345
681
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
346
682
|
name: z.ZodOptional<z.ZodString>;
|
|
347
683
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -360,7 +696,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
360
696
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
361
697
|
}, "strict", z.ZodTypeAny, {
|
|
362
698
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
363
|
-
multiplayerMode: "
|
|
699
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
364
700
|
narrative: "none" | "light" | "heavy";
|
|
365
701
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
366
702
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -372,7 +708,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
372
708
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
373
709
|
}, {
|
|
374
710
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
375
|
-
multiplayerMode?: "
|
|
711
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
376
712
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
377
713
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
378
714
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -383,6 +719,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
383
719
|
hasModding?: boolean | undefined;
|
|
384
720
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
385
721
|
}>>;
|
|
722
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
723
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
724
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
725
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
726
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
727
|
+
}, "strict", z.ZodTypeAny, {
|
|
728
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
729
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
730
|
+
realtime: "none" | "websocket" | "sse";
|
|
731
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
732
|
+
}, {
|
|
733
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
734
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
735
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
736
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
737
|
+
}>>;
|
|
738
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
739
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
740
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
741
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
742
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
743
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
744
|
+
}, "strict", z.ZodTypeAny, {
|
|
745
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
746
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
747
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
748
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
749
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
750
|
+
}, {
|
|
751
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
752
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
753
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
754
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
755
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
756
|
+
}>>;
|
|
757
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
758
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
759
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
760
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
761
|
+
}, "strict", z.ZodTypeAny, {
|
|
762
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
763
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
764
|
+
hasStructuredOutput: boolean;
|
|
765
|
+
}, {
|
|
766
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
767
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
768
|
+
hasStructuredOutput?: boolean | undefined;
|
|
769
|
+
}>>;
|
|
386
770
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
387
771
|
name: z.ZodOptional<z.ZodString>;
|
|
388
772
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -401,7 +785,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
401
785
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
402
786
|
}, "strict", z.ZodTypeAny, {
|
|
403
787
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
404
|
-
multiplayerMode: "
|
|
788
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
405
789
|
narrative: "none" | "light" | "heavy";
|
|
406
790
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
407
791
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -413,7 +797,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
413
797
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
414
798
|
}, {
|
|
415
799
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
416
|
-
multiplayerMode?: "
|
|
800
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
417
801
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
418
802
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
419
803
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -424,6 +808,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
424
808
|
hasModding?: boolean | undefined;
|
|
425
809
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
426
810
|
}>>;
|
|
811
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
812
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
813
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
814
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
815
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
816
|
+
}, "strict", z.ZodTypeAny, {
|
|
817
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
818
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
819
|
+
realtime: "none" | "websocket" | "sse";
|
|
820
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
821
|
+
}, {
|
|
822
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
823
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
824
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
825
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
826
|
+
}>>;
|
|
827
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
828
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
829
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
830
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
831
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
832
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
833
|
+
}, "strict", z.ZodTypeAny, {
|
|
834
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
835
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
836
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
837
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
838
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
839
|
+
}, {
|
|
840
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
841
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
842
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
843
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
844
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
845
|
+
}>>;
|
|
846
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
847
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
848
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
849
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
850
|
+
}, "strict", z.ZodTypeAny, {
|
|
851
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
852
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
853
|
+
hasStructuredOutput: boolean;
|
|
854
|
+
}, {
|
|
855
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
856
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
857
|
+
hasStructuredOutput?: boolean | undefined;
|
|
858
|
+
}>>;
|
|
427
859
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
428
860
|
name: z.ZodOptional<z.ZodString>;
|
|
429
861
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -442,7 +874,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
442
874
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
443
875
|
}, "strict", z.ZodTypeAny, {
|
|
444
876
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
445
|
-
multiplayerMode: "
|
|
877
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
446
878
|
narrative: "none" | "light" | "heavy";
|
|
447
879
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
448
880
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -454,7 +886,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
454
886
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
455
887
|
}, {
|
|
456
888
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
457
|
-
multiplayerMode?: "
|
|
889
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
458
890
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
459
891
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
460
892
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -465,6 +897,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
465
897
|
hasModding?: boolean | undefined;
|
|
466
898
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
467
899
|
}>>;
|
|
900
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
901
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
902
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
903
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
904
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
905
|
+
}, "strict", z.ZodTypeAny, {
|
|
906
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
907
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
908
|
+
realtime: "none" | "websocket" | "sse";
|
|
909
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
910
|
+
}, {
|
|
911
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
912
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
913
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
914
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
915
|
+
}>>;
|
|
916
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
918
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
919
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
920
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
921
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
922
|
+
}, "strict", z.ZodTypeAny, {
|
|
923
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
924
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
925
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
926
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
927
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
928
|
+
}, {
|
|
929
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
930
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
931
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
932
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
933
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
934
|
+
}>>;
|
|
935
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
936
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
937
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
938
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
939
|
+
}, "strict", z.ZodTypeAny, {
|
|
940
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
941
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
942
|
+
hasStructuredOutput: boolean;
|
|
943
|
+
}, {
|
|
944
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
945
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
946
|
+
hasStructuredOutput?: boolean | undefined;
|
|
947
|
+
}>>;
|
|
468
948
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
469
949
|
name: z.ZodOptional<z.ZodString>;
|
|
470
950
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -483,7 +963,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
483
963
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
484
964
|
}, "strict", z.ZodTypeAny, {
|
|
485
965
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
486
|
-
multiplayerMode: "
|
|
966
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
487
967
|
narrative: "none" | "light" | "heavy";
|
|
488
968
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
489
969
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -495,7 +975,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
495
975
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
496
976
|
}, {
|
|
497
977
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
498
|
-
multiplayerMode?: "
|
|
978
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
499
979
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
500
980
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
501
981
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -506,6 +986,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
506
986
|
hasModding?: boolean | undefined;
|
|
507
987
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
508
988
|
}>>;
|
|
989
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
990
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
991
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
992
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
993
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
994
|
+
}, "strict", z.ZodTypeAny, {
|
|
995
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
996
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
997
|
+
realtime: "none" | "websocket" | "sse";
|
|
998
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
999
|
+
}, {
|
|
1000
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1001
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1002
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1003
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1004
|
+
}>>;
|
|
1005
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1006
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1007
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1008
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1009
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1010
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1011
|
+
}, "strict", z.ZodTypeAny, {
|
|
1012
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1013
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1014
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1015
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1016
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1017
|
+
}, {
|
|
1018
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1019
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1020
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1021
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1022
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1023
|
+
}>>;
|
|
1024
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1025
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1026
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1027
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1028
|
+
}, "strict", z.ZodTypeAny, {
|
|
1029
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1030
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1031
|
+
hasStructuredOutput: boolean;
|
|
1032
|
+
}, {
|
|
1033
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1034
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1035
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1036
|
+
}>>;
|
|
509
1037
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
510
1038
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
511
1039
|
version: z.ZodLiteral<2>;
|
|
@@ -554,7 +1082,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
554
1082
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
555
1083
|
}, "strict", z.ZodTypeAny, {
|
|
556
1084
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
557
|
-
multiplayerMode: "
|
|
1085
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
558
1086
|
narrative: "none" | "light" | "heavy";
|
|
559
1087
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
560
1088
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -566,7 +1094,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
566
1094
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
567
1095
|
}, {
|
|
568
1096
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
569
|
-
multiplayerMode?: "
|
|
1097
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
570
1098
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
571
1099
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
572
1100
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -577,6 +1105,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
577
1105
|
hasModding?: boolean | undefined;
|
|
578
1106
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
579
1107
|
}>>;
|
|
1108
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1109
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
1110
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
1111
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
1112
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
1113
|
+
}, "strict", z.ZodTypeAny, {
|
|
1114
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1115
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
1116
|
+
realtime: "none" | "websocket" | "sse";
|
|
1117
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1118
|
+
}, {
|
|
1119
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1120
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1121
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1122
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1123
|
+
}>>;
|
|
1124
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1125
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1126
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1127
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1128
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1129
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1130
|
+
}, "strict", z.ZodTypeAny, {
|
|
1131
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1132
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1133
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1134
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1135
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1136
|
+
}, {
|
|
1137
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1138
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1139
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1140
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1141
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1142
|
+
}>>;
|
|
1143
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1144
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1145
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1146
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1147
|
+
}, "strict", z.ZodTypeAny, {
|
|
1148
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1149
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1150
|
+
hasStructuredOutput: boolean;
|
|
1151
|
+
}, {
|
|
1152
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1153
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1154
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1155
|
+
}>>;
|
|
580
1156
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
581
1157
|
name: z.ZodOptional<z.ZodString>;
|
|
582
1158
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -595,7 +1171,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
595
1171
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
596
1172
|
}, "strict", z.ZodTypeAny, {
|
|
597
1173
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
598
|
-
multiplayerMode: "
|
|
1174
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
599
1175
|
narrative: "none" | "light" | "heavy";
|
|
600
1176
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
601
1177
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -607,7 +1183,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
607
1183
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
608
1184
|
}, {
|
|
609
1185
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
610
|
-
multiplayerMode?: "
|
|
1186
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
611
1187
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
612
1188
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
613
1189
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -618,6 +1194,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
618
1194
|
hasModding?: boolean | undefined;
|
|
619
1195
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
620
1196
|
}>>;
|
|
1197
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1198
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
1199
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
1200
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
1201
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
1202
|
+
}, "strict", z.ZodTypeAny, {
|
|
1203
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1204
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
1205
|
+
realtime: "none" | "websocket" | "sse";
|
|
1206
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1207
|
+
}, {
|
|
1208
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1209
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1210
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1211
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1212
|
+
}>>;
|
|
1213
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1214
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1215
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1216
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1217
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1218
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1219
|
+
}, "strict", z.ZodTypeAny, {
|
|
1220
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1221
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1222
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1223
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1224
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1225
|
+
}, {
|
|
1226
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1227
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1228
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1229
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1230
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1231
|
+
}>>;
|
|
1232
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1233
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1234
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1235
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1236
|
+
}, "strict", z.ZodTypeAny, {
|
|
1237
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1238
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1239
|
+
hasStructuredOutput: boolean;
|
|
1240
|
+
}, {
|
|
1241
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1242
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1243
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1244
|
+
}>>;
|
|
621
1245
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
622
1246
|
name: z.ZodOptional<z.ZodString>;
|
|
623
1247
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -636,7 +1260,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
636
1260
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
637
1261
|
}, "strict", z.ZodTypeAny, {
|
|
638
1262
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
639
|
-
multiplayerMode: "
|
|
1263
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
640
1264
|
narrative: "none" | "light" | "heavy";
|
|
641
1265
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
642
1266
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -648,7 +1272,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
648
1272
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
649
1273
|
}, {
|
|
650
1274
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
651
|
-
multiplayerMode?: "
|
|
1275
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
652
1276
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
653
1277
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
654
1278
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -659,6 +1283,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
659
1283
|
hasModding?: boolean | undefined;
|
|
660
1284
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
661
1285
|
}>>;
|
|
1286
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1287
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
1288
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
1289
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
1290
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
1291
|
+
}, "strict", z.ZodTypeAny, {
|
|
1292
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1293
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
1294
|
+
realtime: "none" | "websocket" | "sse";
|
|
1295
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1296
|
+
}, {
|
|
1297
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1298
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1299
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1300
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1301
|
+
}>>;
|
|
1302
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1303
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1304
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1305
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1306
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1307
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1308
|
+
}, "strict", z.ZodTypeAny, {
|
|
1309
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1310
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1311
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1312
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1313
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1314
|
+
}, {
|
|
1315
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1316
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1317
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1318
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1319
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1320
|
+
}>>;
|
|
1321
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1322
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1323
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1324
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1325
|
+
}, "strict", z.ZodTypeAny, {
|
|
1326
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1327
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1328
|
+
hasStructuredOutput: boolean;
|
|
1329
|
+
}, {
|
|
1330
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1331
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1332
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1333
|
+
}>>;
|
|
662
1334
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
663
1335
|
name: z.ZodOptional<z.ZodString>;
|
|
664
1336
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -677,7 +1349,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
677
1349
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
678
1350
|
}, "strict", z.ZodTypeAny, {
|
|
679
1351
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
680
|
-
multiplayerMode: "
|
|
1352
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
681
1353
|
narrative: "none" | "light" | "heavy";
|
|
682
1354
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
683
1355
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -689,7 +1361,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
689
1361
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
690
1362
|
}, {
|
|
691
1363
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
692
|
-
multiplayerMode?: "
|
|
1364
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
693
1365
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
694
1366
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
695
1367
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -700,6 +1372,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
700
1372
|
hasModding?: boolean | undefined;
|
|
701
1373
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
702
1374
|
}>>;
|
|
1375
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1376
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
1377
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
1378
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
1379
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
1380
|
+
}, "strict", z.ZodTypeAny, {
|
|
1381
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1382
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
1383
|
+
realtime: "none" | "websocket" | "sse";
|
|
1384
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1385
|
+
}, {
|
|
1386
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1387
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1388
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1389
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1390
|
+
}>>;
|
|
1391
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1392
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1393
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1394
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1395
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1396
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1397
|
+
}, "strict", z.ZodTypeAny, {
|
|
1398
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1399
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1400
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1401
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1402
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1403
|
+
}, {
|
|
1404
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1405
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1406
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1407
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1408
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1409
|
+
}>>;
|
|
1410
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1411
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1412
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1413
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1414
|
+
}, "strict", z.ZodTypeAny, {
|
|
1415
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1416
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1417
|
+
hasStructuredOutput: boolean;
|
|
1418
|
+
}, {
|
|
1419
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1420
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1421
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1422
|
+
}>>;
|
|
703
1423
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
704
1424
|
name: z.ZodOptional<z.ZodString>;
|
|
705
1425
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
@@ -718,7 +1438,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
718
1438
|
npcAiComplexity: z.ZodDefault<z.ZodEnum<["none", "simple", "complex"]>>;
|
|
719
1439
|
}, "strict", z.ZodTypeAny, {
|
|
720
1440
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
721
|
-
multiplayerMode: "
|
|
1441
|
+
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
722
1442
|
narrative: "none" | "light" | "heavy";
|
|
723
1443
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
724
1444
|
economy: "none" | "progression" | "monetized" | "both";
|
|
@@ -730,7 +1450,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
730
1450
|
npcAiComplexity: "none" | "simple" | "complex";
|
|
731
1451
|
}, {
|
|
732
1452
|
engine: "custom" | "unity" | "unreal" | "godot";
|
|
733
|
-
multiplayerMode?: "
|
|
1453
|
+
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
734
1454
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
735
1455
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
736
1456
|
economy?: "none" | "progression" | "monetized" | "both" | undefined;
|
|
@@ -741,6 +1461,54 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
741
1461
|
hasModding?: boolean | undefined;
|
|
742
1462
|
npcAiComplexity?: "none" | "simple" | "complex" | undefined;
|
|
743
1463
|
}>>;
|
|
1464
|
+
webAppConfig: z.ZodOptional<z.ZodObject<{
|
|
1465
|
+
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
1466
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
1467
|
+
realtime: z.ZodDefault<z.ZodEnum<["none", "websocket", "sse"]>>;
|
|
1468
|
+
authFlow: z.ZodDefault<z.ZodEnum<["none", "session", "oauth", "passkey"]>>;
|
|
1469
|
+
}, "strict", z.ZodTypeAny, {
|
|
1470
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1471
|
+
deployTarget: "static" | "serverless" | "container" | "edge" | "long-running";
|
|
1472
|
+
realtime: "none" | "websocket" | "sse";
|
|
1473
|
+
authFlow: "none" | "session" | "oauth" | "passkey";
|
|
1474
|
+
}, {
|
|
1475
|
+
renderingStrategy: "spa" | "ssr" | "ssg" | "hybrid";
|
|
1476
|
+
deployTarget?: "static" | "serverless" | "container" | "edge" | "long-running" | undefined;
|
|
1477
|
+
realtime?: "none" | "websocket" | "sse" | undefined;
|
|
1478
|
+
authFlow?: "none" | "session" | "oauth" | "passkey" | undefined;
|
|
1479
|
+
}>>;
|
|
1480
|
+
backendConfig: z.ZodOptional<z.ZodObject<{
|
|
1481
|
+
apiStyle: z.ZodEnum<["rest", "graphql", "grpc", "trpc", "none"]>;
|
|
1482
|
+
dataStore: z.ZodDefault<z.ZodArray<z.ZodEnum<["relational", "document", "key-value"]>, "many">>;
|
|
1483
|
+
authMechanism: z.ZodDefault<z.ZodEnum<["none", "jwt", "session", "oauth", "apikey"]>>;
|
|
1484
|
+
asyncMessaging: z.ZodDefault<z.ZodEnum<["none", "queue", "event-driven"]>>;
|
|
1485
|
+
deployTarget: z.ZodDefault<z.ZodEnum<["serverless", "container", "long-running"]>>;
|
|
1486
|
+
}, "strict", z.ZodTypeAny, {
|
|
1487
|
+
deployTarget: "serverless" | "container" | "long-running";
|
|
1488
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1489
|
+
dataStore: ("relational" | "document" | "key-value")[];
|
|
1490
|
+
authMechanism: "none" | "session" | "oauth" | "jwt" | "apikey";
|
|
1491
|
+
asyncMessaging: "none" | "queue" | "event-driven";
|
|
1492
|
+
}, {
|
|
1493
|
+
apiStyle: "none" | "rest" | "graphql" | "grpc" | "trpc";
|
|
1494
|
+
deployTarget?: "serverless" | "container" | "long-running" | undefined;
|
|
1495
|
+
dataStore?: ("relational" | "document" | "key-value")[] | undefined;
|
|
1496
|
+
authMechanism?: "none" | "session" | "oauth" | "jwt" | "apikey" | undefined;
|
|
1497
|
+
asyncMessaging?: "none" | "queue" | "event-driven" | undefined;
|
|
1498
|
+
}>>;
|
|
1499
|
+
cliConfig: z.ZodOptional<z.ZodObject<{
|
|
1500
|
+
interactivity: z.ZodEnum<["args-only", "interactive", "hybrid"]>;
|
|
1501
|
+
distributionChannels: z.ZodDefault<z.ZodArray<z.ZodEnum<["package-manager", "system-package-manager", "standalone-binary", "container"]>, "many">>;
|
|
1502
|
+
hasStructuredOutput: z.ZodDefault<z.ZodBoolean>;
|
|
1503
|
+
}, "strict", z.ZodTypeAny, {
|
|
1504
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1505
|
+
distributionChannels: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[];
|
|
1506
|
+
hasStructuredOutput: boolean;
|
|
1507
|
+
}, {
|
|
1508
|
+
interactivity: "interactive" | "hybrid" | "args-only";
|
|
1509
|
+
distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
|
|
1510
|
+
hasStructuredOutput?: boolean | undefined;
|
|
1511
|
+
}>>;
|
|
744
1512
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
745
1513
|
}, z.ZodTypeAny, "passthrough">>;
|
|
746
1514
|
export type ParsedConfig = z.infer<typeof ConfigSchema>;
|