@zigrivers/scaffold 3.8.0 → 3.9.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/README.md +73 -8
- package/content/knowledge/browser-extension/browser-extension-architecture.md +195 -0
- package/content/knowledge/browser-extension/browser-extension-content-scripts.md +264 -0
- package/content/knowledge/browser-extension/browser-extension-conventions.md +156 -0
- package/content/knowledge/browser-extension/browser-extension-cross-browser.md +229 -0
- package/content/knowledge/browser-extension/browser-extension-dev-environment.md +247 -0
- package/content/knowledge/browser-extension/browser-extension-manifest.md +220 -0
- package/content/knowledge/browser-extension/browser-extension-project-structure.md +183 -0
- package/content/knowledge/browser-extension/browser-extension-requirements.md +107 -0
- package/content/knowledge/browser-extension/browser-extension-security.md +202 -0
- package/content/knowledge/browser-extension/browser-extension-service-workers.md +265 -0
- package/content/knowledge/browser-extension/browser-extension-store-submission.md +155 -0
- package/content/knowledge/browser-extension/browser-extension-testing.md +270 -0
- package/content/knowledge/data-pipeline/data-pipeline-architecture.md +175 -0
- package/content/knowledge/data-pipeline/data-pipeline-batch-patterns.md +263 -0
- package/content/knowledge/data-pipeline/data-pipeline-conventions.md +176 -0
- package/content/knowledge/data-pipeline/data-pipeline-dev-environment.md +350 -0
- package/content/knowledge/data-pipeline/data-pipeline-orchestration.md +291 -0
- package/content/knowledge/data-pipeline/data-pipeline-project-structure.md +257 -0
- package/content/knowledge/data-pipeline/data-pipeline-quality.md +324 -0
- package/content/knowledge/data-pipeline/data-pipeline-requirements.md +145 -0
- package/content/knowledge/data-pipeline/data-pipeline-schema-management.md +295 -0
- package/content/knowledge/data-pipeline/data-pipeline-security.md +326 -0
- package/content/knowledge/data-pipeline/data-pipeline-streaming-patterns.md +280 -0
- package/content/knowledge/data-pipeline/data-pipeline-testing.md +406 -0
- package/content/knowledge/ml/ml-architecture.md +172 -0
- package/content/knowledge/ml/ml-conventions.md +209 -0
- package/content/knowledge/ml/ml-dev-environment.md +299 -0
- package/content/knowledge/ml/ml-experiment-tracking.md +285 -0
- package/content/knowledge/ml/ml-model-evaluation.md +256 -0
- package/content/knowledge/ml/ml-observability.md +253 -0
- package/content/knowledge/ml/ml-project-structure.md +216 -0
- package/content/knowledge/ml/ml-requirements.md +138 -0
- package/content/knowledge/ml/ml-security.md +188 -0
- package/content/knowledge/ml/ml-serving-patterns.md +243 -0
- package/content/knowledge/ml/ml-testing.md +301 -0
- package/content/knowledge/ml/ml-training-patterns.md +269 -0
- package/content/methodology/browser-extension-overlay.yml +82 -0
- package/content/methodology/data-pipeline-overlay.yml +70 -0
- package/content/methodology/ml-overlay.yml +70 -0
- package/dist/cli/commands/init.d.ts +13 -0
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +122 -2
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/init.test.js +120 -0
- package/dist/cli/commands/init.test.js.map +1 -1
- package/dist/config/schema.d.ts +864 -48
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +53 -0
- package/dist/config/schema.js.map +1 -1
- package/dist/config/schema.test.js +166 -3
- package/dist/config/schema.test.js.map +1 -1
- package/dist/core/assembly/overlay-loader.test.js +33 -0
- package/dist/core/assembly/overlay-loader.test.js.map +1 -1
- package/dist/e2e/project-type-overlays.test.d.ts +2 -2
- package/dist/e2e/project-type-overlays.test.js +499 -33
- package/dist/e2e/project-type-overlays.test.js.map +1 -1
- package/dist/types/config.d.ts +10 -1
- package/dist/types/config.d.ts.map +1 -1
- package/dist/wizard/questions.d.ts +17 -1
- package/dist/wizard/questions.d.ts.map +1 -1
- package/dist/wizard/questions.js +75 -1
- package/dist/wizard/questions.js.map +1 -1
- package/dist/wizard/questions.test.js +167 -0
- package/dist/wizard/questions.test.js.map +1 -1
- package/dist/wizard/wizard.d.ts +13 -0
- package/dist/wizard/wizard.d.ts.map +1 -1
- package/dist/wizard/wizard.js +17 -1
- package/dist/wizard/wizard.js.map +1 -1
- package/package.json +1 -1
package/dist/config/schema.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>;
|
|
2
|
+
export declare const ProjectTypeSchema: z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>;
|
|
3
3
|
export declare const WebAppConfigSchema: z.ZodObject<{
|
|
4
4
|
renderingStrategy: z.ZodEnum<["spa", "ssr", "ssg", "hybrid"]>;
|
|
5
5
|
deployTarget: z.ZodDefault<z.ZodEnum<["static", "serverless", "container", "edge", "long-running"]>>;
|
|
@@ -83,6 +83,57 @@ export declare const MobileAppConfigSchema: z.ZodObject<{
|
|
|
83
83
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
84
84
|
hasPushNotifications?: boolean | undefined;
|
|
85
85
|
}>;
|
|
86
|
+
export declare const DataPipelineConfigSchema: z.ZodObject<{
|
|
87
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
88
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
89
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
90
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
91
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
92
|
+
}, "strict", z.ZodTypeAny, {
|
|
93
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
94
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
95
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
96
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
97
|
+
hasDataCatalog: boolean;
|
|
98
|
+
}, {
|
|
99
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
100
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
101
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
102
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
103
|
+
hasDataCatalog?: boolean | undefined;
|
|
104
|
+
}>;
|
|
105
|
+
export declare const MlConfigSchema: z.ZodObject<{
|
|
106
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
107
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
108
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
109
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
110
|
+
}, "strict", z.ZodTypeAny, {
|
|
111
|
+
projectPhase: "training" | "inference" | "both";
|
|
112
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
113
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
114
|
+
hasExperimentTracking: boolean;
|
|
115
|
+
}, {
|
|
116
|
+
projectPhase: "training" | "inference" | "both";
|
|
117
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
118
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
119
|
+
hasExperimentTracking?: boolean | undefined;
|
|
120
|
+
}>;
|
|
121
|
+
export declare const BrowserExtensionConfigSchema: z.ZodObject<{
|
|
122
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
123
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
124
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
125
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
126
|
+
}, "strict", z.ZodTypeAny, {
|
|
127
|
+
manifestVersion: "2" | "3";
|
|
128
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
129
|
+
hasContentScript: boolean;
|
|
130
|
+
hasBackgroundWorker: boolean;
|
|
131
|
+
}, {
|
|
132
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
133
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
134
|
+
hasContentScript?: boolean | undefined;
|
|
135
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
136
|
+
}>;
|
|
86
137
|
export declare const GameConfigSchema: z.ZodObject<{
|
|
87
138
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
88
139
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -100,7 +151,7 @@ export declare const GameConfigSchema: z.ZodObject<{
|
|
|
100
151
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
101
152
|
narrative: "none" | "light" | "heavy";
|
|
102
153
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
103
|
-
economy: "none" | "
|
|
154
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
104
155
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
105
156
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
106
157
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -112,7 +163,7 @@ export declare const GameConfigSchema: z.ZodObject<{
|
|
|
112
163
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
113
164
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
114
165
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
115
|
-
economy?: "none" | "
|
|
166
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
116
167
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
117
168
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
118
169
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -152,7 +203,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
152
203
|
project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
153
204
|
name: z.ZodOptional<z.ZodString>;
|
|
154
205
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
155
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
206
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
156
207
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
157
208
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
158
209
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -170,7 +221,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
170
221
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
171
222
|
narrative: "none" | "light" | "heavy";
|
|
172
223
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
173
|
-
economy: "none" | "
|
|
224
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
174
225
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
175
226
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
176
227
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -182,7 +233,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
182
233
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
183
234
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
184
235
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
185
|
-
economy?: "none" | "
|
|
236
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
186
237
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
187
238
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
188
239
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -273,10 +324,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
273
324
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
274
325
|
hasPushNotifications?: boolean | undefined;
|
|
275
326
|
}>>;
|
|
327
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
328
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
329
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
330
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
331
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
332
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
333
|
+
}, "strict", z.ZodTypeAny, {
|
|
334
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
335
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
336
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
337
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
338
|
+
hasDataCatalog: boolean;
|
|
339
|
+
}, {
|
|
340
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
341
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
342
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
343
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
344
|
+
hasDataCatalog?: boolean | undefined;
|
|
345
|
+
}>>;
|
|
346
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
347
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
348
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
349
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
350
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
351
|
+
}, "strict", z.ZodTypeAny, {
|
|
352
|
+
projectPhase: "training" | "inference" | "both";
|
|
353
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
354
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
355
|
+
hasExperimentTracking: boolean;
|
|
356
|
+
}, {
|
|
357
|
+
projectPhase: "training" | "inference" | "both";
|
|
358
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
359
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
360
|
+
hasExperimentTracking?: boolean | undefined;
|
|
361
|
+
}>>;
|
|
362
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
363
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
364
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
365
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
366
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
367
|
+
}, "strict", z.ZodTypeAny, {
|
|
368
|
+
manifestVersion: "2" | "3";
|
|
369
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
370
|
+
hasContentScript: boolean;
|
|
371
|
+
hasBackgroundWorker: boolean;
|
|
372
|
+
}, {
|
|
373
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
374
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
375
|
+
hasContentScript?: boolean | undefined;
|
|
376
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
377
|
+
}>>;
|
|
276
378
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
277
379
|
name: z.ZodOptional<z.ZodString>;
|
|
278
380
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
279
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
381
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
280
382
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
281
383
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
282
384
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -294,7 +396,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
294
396
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
295
397
|
narrative: "none" | "light" | "heavy";
|
|
296
398
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
297
|
-
economy: "none" | "
|
|
399
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
298
400
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
299
401
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
300
402
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -306,7 +408,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
306
408
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
307
409
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
308
410
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
309
|
-
economy?: "none" | "
|
|
411
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
310
412
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
311
413
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
312
414
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -397,10 +499,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
397
499
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
398
500
|
hasPushNotifications?: boolean | undefined;
|
|
399
501
|
}>>;
|
|
502
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
503
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
504
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
505
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
506
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
507
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
508
|
+
}, "strict", z.ZodTypeAny, {
|
|
509
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
510
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
511
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
512
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
513
|
+
hasDataCatalog: boolean;
|
|
514
|
+
}, {
|
|
515
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
516
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
517
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
518
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
519
|
+
hasDataCatalog?: boolean | undefined;
|
|
520
|
+
}>>;
|
|
521
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
522
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
523
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
524
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
525
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
526
|
+
}, "strict", z.ZodTypeAny, {
|
|
527
|
+
projectPhase: "training" | "inference" | "both";
|
|
528
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
529
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
530
|
+
hasExperimentTracking: boolean;
|
|
531
|
+
}, {
|
|
532
|
+
projectPhase: "training" | "inference" | "both";
|
|
533
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
534
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
535
|
+
hasExperimentTracking?: boolean | undefined;
|
|
536
|
+
}>>;
|
|
537
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
538
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
539
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
540
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
541
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
542
|
+
}, "strict", z.ZodTypeAny, {
|
|
543
|
+
manifestVersion: "2" | "3";
|
|
544
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
545
|
+
hasContentScript: boolean;
|
|
546
|
+
hasBackgroundWorker: boolean;
|
|
547
|
+
}, {
|
|
548
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
549
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
550
|
+
hasContentScript?: boolean | undefined;
|
|
551
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
552
|
+
}>>;
|
|
400
553
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
401
554
|
name: z.ZodOptional<z.ZodString>;
|
|
402
555
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
403
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
556
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
404
557
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
405
558
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
406
559
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -418,7 +571,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
418
571
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
419
572
|
narrative: "none" | "light" | "heavy";
|
|
420
573
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
421
|
-
economy: "none" | "
|
|
574
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
422
575
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
423
576
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
424
577
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -430,7 +583,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
430
583
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
431
584
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
432
585
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
433
|
-
economy?: "none" | "
|
|
586
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
434
587
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
435
588
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
436
589
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -521,10 +674,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
521
674
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
522
675
|
hasPushNotifications?: boolean | undefined;
|
|
523
676
|
}>>;
|
|
677
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
678
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
679
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
680
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
681
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
682
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
683
|
+
}, "strict", z.ZodTypeAny, {
|
|
684
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
685
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
686
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
687
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
688
|
+
hasDataCatalog: boolean;
|
|
689
|
+
}, {
|
|
690
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
691
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
692
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
693
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
694
|
+
hasDataCatalog?: boolean | undefined;
|
|
695
|
+
}>>;
|
|
696
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
697
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
698
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
699
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
700
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
701
|
+
}, "strict", z.ZodTypeAny, {
|
|
702
|
+
projectPhase: "training" | "inference" | "both";
|
|
703
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
704
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
705
|
+
hasExperimentTracking: boolean;
|
|
706
|
+
}, {
|
|
707
|
+
projectPhase: "training" | "inference" | "both";
|
|
708
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
709
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
710
|
+
hasExperimentTracking?: boolean | undefined;
|
|
711
|
+
}>>;
|
|
712
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
713
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
714
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
715
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
716
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
717
|
+
}, "strict", z.ZodTypeAny, {
|
|
718
|
+
manifestVersion: "2" | "3";
|
|
719
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
720
|
+
hasContentScript: boolean;
|
|
721
|
+
hasBackgroundWorker: boolean;
|
|
722
|
+
}, {
|
|
723
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
724
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
725
|
+
hasContentScript?: boolean | undefined;
|
|
726
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
727
|
+
}>>;
|
|
524
728
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
525
729
|
name: z.ZodOptional<z.ZodString>;
|
|
526
730
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
527
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
731
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
528
732
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
529
733
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
530
734
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -542,7 +746,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
542
746
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
543
747
|
narrative: "none" | "light" | "heavy";
|
|
544
748
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
545
|
-
economy: "none" | "
|
|
749
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
546
750
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
547
751
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
548
752
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -554,7 +758,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
554
758
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
555
759
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
556
760
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
557
|
-
economy?: "none" | "
|
|
761
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
558
762
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
559
763
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
560
764
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -645,10 +849,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
645
849
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
646
850
|
hasPushNotifications?: boolean | undefined;
|
|
647
851
|
}>>;
|
|
852
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
853
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
854
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
855
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
856
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
857
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
858
|
+
}, "strict", z.ZodTypeAny, {
|
|
859
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
860
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
861
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
862
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
863
|
+
hasDataCatalog: boolean;
|
|
864
|
+
}, {
|
|
865
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
866
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
867
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
868
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
869
|
+
hasDataCatalog?: boolean | undefined;
|
|
870
|
+
}>>;
|
|
871
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
872
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
873
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
874
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
875
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
876
|
+
}, "strict", z.ZodTypeAny, {
|
|
877
|
+
projectPhase: "training" | "inference" | "both";
|
|
878
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
879
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
880
|
+
hasExperimentTracking: boolean;
|
|
881
|
+
}, {
|
|
882
|
+
projectPhase: "training" | "inference" | "both";
|
|
883
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
884
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
885
|
+
hasExperimentTracking?: boolean | undefined;
|
|
886
|
+
}>>;
|
|
887
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
888
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
889
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
890
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
891
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
892
|
+
}, "strict", z.ZodTypeAny, {
|
|
893
|
+
manifestVersion: "2" | "3";
|
|
894
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
895
|
+
hasContentScript: boolean;
|
|
896
|
+
hasBackgroundWorker: boolean;
|
|
897
|
+
}, {
|
|
898
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
899
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
900
|
+
hasContentScript?: boolean | undefined;
|
|
901
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
902
|
+
}>>;
|
|
648
903
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
649
904
|
name: z.ZodOptional<z.ZodString>;
|
|
650
905
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
651
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
906
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
652
907
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
653
908
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
654
909
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -666,7 +921,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
666
921
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
667
922
|
narrative: "none" | "light" | "heavy";
|
|
668
923
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
669
|
-
economy: "none" | "
|
|
924
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
670
925
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
671
926
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
672
927
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -678,7 +933,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
678
933
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
679
934
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
680
935
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
681
|
-
economy?: "none" | "
|
|
936
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
682
937
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
683
938
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
684
939
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -769,6 +1024,57 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
769
1024
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
770
1025
|
hasPushNotifications?: boolean | undefined;
|
|
771
1026
|
}>>;
|
|
1027
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1028
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1029
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1030
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1031
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1032
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1033
|
+
}, "strict", z.ZodTypeAny, {
|
|
1034
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1035
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1036
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1037
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1038
|
+
hasDataCatalog: boolean;
|
|
1039
|
+
}, {
|
|
1040
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1041
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1042
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1043
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1044
|
+
hasDataCatalog?: boolean | undefined;
|
|
1045
|
+
}>>;
|
|
1046
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1047
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1048
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1049
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1050
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1051
|
+
}, "strict", z.ZodTypeAny, {
|
|
1052
|
+
projectPhase: "training" | "inference" | "both";
|
|
1053
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1054
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1055
|
+
hasExperimentTracking: boolean;
|
|
1056
|
+
}, {
|
|
1057
|
+
projectPhase: "training" | "inference" | "both";
|
|
1058
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1059
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1060
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1061
|
+
}>>;
|
|
1062
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1063
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1064
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1065
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1066
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1067
|
+
}, "strict", z.ZodTypeAny, {
|
|
1068
|
+
manifestVersion: "2" | "3";
|
|
1069
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1070
|
+
hasContentScript: boolean;
|
|
1071
|
+
hasBackgroundWorker: boolean;
|
|
1072
|
+
}, {
|
|
1073
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1074
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1075
|
+
hasContentScript?: boolean | undefined;
|
|
1076
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1077
|
+
}>>;
|
|
772
1078
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
773
1079
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
774
1080
|
version: z.ZodLiteral<2>;
|
|
@@ -802,7 +1108,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
802
1108
|
project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
803
1109
|
name: z.ZodOptional<z.ZodString>;
|
|
804
1110
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
805
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
1111
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
806
1112
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
807
1113
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
808
1114
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -820,7 +1126,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
820
1126
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
821
1127
|
narrative: "none" | "light" | "heavy";
|
|
822
1128
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
823
|
-
economy: "none" | "
|
|
1129
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
824
1130
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
825
1131
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
826
1132
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -832,7 +1138,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
832
1138
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
833
1139
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
834
1140
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
835
|
-
economy?: "none" | "
|
|
1141
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
836
1142
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
837
1143
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
838
1144
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -923,10 +1229,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
923
1229
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
924
1230
|
hasPushNotifications?: boolean | undefined;
|
|
925
1231
|
}>>;
|
|
1232
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1233
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1234
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1235
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1236
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1237
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1238
|
+
}, "strict", z.ZodTypeAny, {
|
|
1239
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1240
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1241
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1242
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1243
|
+
hasDataCatalog: boolean;
|
|
1244
|
+
}, {
|
|
1245
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1246
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1247
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1248
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1249
|
+
hasDataCatalog?: boolean | undefined;
|
|
1250
|
+
}>>;
|
|
1251
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1252
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1253
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1254
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1255
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1256
|
+
}, "strict", z.ZodTypeAny, {
|
|
1257
|
+
projectPhase: "training" | "inference" | "both";
|
|
1258
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1259
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1260
|
+
hasExperimentTracking: boolean;
|
|
1261
|
+
}, {
|
|
1262
|
+
projectPhase: "training" | "inference" | "both";
|
|
1263
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1264
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1265
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1266
|
+
}>>;
|
|
1267
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1268
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1269
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1270
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1271
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1272
|
+
}, "strict", z.ZodTypeAny, {
|
|
1273
|
+
manifestVersion: "2" | "3";
|
|
1274
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1275
|
+
hasContentScript: boolean;
|
|
1276
|
+
hasBackgroundWorker: boolean;
|
|
1277
|
+
}, {
|
|
1278
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1279
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1280
|
+
hasContentScript?: boolean | undefined;
|
|
1281
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1282
|
+
}>>;
|
|
926
1283
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
927
1284
|
name: z.ZodOptional<z.ZodString>;
|
|
928
1285
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
929
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
1286
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
930
1287
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
931
1288
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
932
1289
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -944,7 +1301,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
944
1301
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
945
1302
|
narrative: "none" | "light" | "heavy";
|
|
946
1303
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
947
|
-
economy: "none" | "
|
|
1304
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
948
1305
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
949
1306
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
950
1307
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -956,7 +1313,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
956
1313
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
957
1314
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
958
1315
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
959
|
-
economy?: "none" | "
|
|
1316
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
960
1317
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
961
1318
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
962
1319
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1047,10 +1404,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1047
1404
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1048
1405
|
hasPushNotifications?: boolean | undefined;
|
|
1049
1406
|
}>>;
|
|
1407
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1408
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1409
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1410
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1411
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1412
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1413
|
+
}, "strict", z.ZodTypeAny, {
|
|
1414
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1415
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1416
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1417
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1418
|
+
hasDataCatalog: boolean;
|
|
1419
|
+
}, {
|
|
1420
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1421
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1422
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1423
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1424
|
+
hasDataCatalog?: boolean | undefined;
|
|
1425
|
+
}>>;
|
|
1426
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1427
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1428
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1429
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1430
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1431
|
+
}, "strict", z.ZodTypeAny, {
|
|
1432
|
+
projectPhase: "training" | "inference" | "both";
|
|
1433
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1434
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1435
|
+
hasExperimentTracking: boolean;
|
|
1436
|
+
}, {
|
|
1437
|
+
projectPhase: "training" | "inference" | "both";
|
|
1438
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1439
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1440
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1441
|
+
}>>;
|
|
1442
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1443
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1444
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1445
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1446
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1447
|
+
}, "strict", z.ZodTypeAny, {
|
|
1448
|
+
manifestVersion: "2" | "3";
|
|
1449
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1450
|
+
hasContentScript: boolean;
|
|
1451
|
+
hasBackgroundWorker: boolean;
|
|
1452
|
+
}, {
|
|
1453
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1454
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1455
|
+
hasContentScript?: boolean | undefined;
|
|
1456
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1457
|
+
}>>;
|
|
1050
1458
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1051
1459
|
name: z.ZodOptional<z.ZodString>;
|
|
1052
1460
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1053
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
1461
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1054
1462
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1055
1463
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1056
1464
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1068,7 +1476,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1068
1476
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1069
1477
|
narrative: "none" | "light" | "heavy";
|
|
1070
1478
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1071
|
-
economy: "none" | "
|
|
1479
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1072
1480
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1073
1481
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1074
1482
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1080,7 +1488,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1080
1488
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1081
1489
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1082
1490
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1083
|
-
economy?: "none" | "
|
|
1491
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1084
1492
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1085
1493
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1086
1494
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1171,10 +1579,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1171
1579
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1172
1580
|
hasPushNotifications?: boolean | undefined;
|
|
1173
1581
|
}>>;
|
|
1582
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1583
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1584
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1585
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1586
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1587
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1588
|
+
}, "strict", z.ZodTypeAny, {
|
|
1589
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1590
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1591
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1592
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1593
|
+
hasDataCatalog: boolean;
|
|
1594
|
+
}, {
|
|
1595
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1596
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1597
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1598
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1599
|
+
hasDataCatalog?: boolean | undefined;
|
|
1600
|
+
}>>;
|
|
1601
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1602
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1603
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1604
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1605
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1606
|
+
}, "strict", z.ZodTypeAny, {
|
|
1607
|
+
projectPhase: "training" | "inference" | "both";
|
|
1608
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1609
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1610
|
+
hasExperimentTracking: boolean;
|
|
1611
|
+
}, {
|
|
1612
|
+
projectPhase: "training" | "inference" | "both";
|
|
1613
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1614
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1615
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1616
|
+
}>>;
|
|
1617
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1618
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1619
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1620
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1621
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1622
|
+
}, "strict", z.ZodTypeAny, {
|
|
1623
|
+
manifestVersion: "2" | "3";
|
|
1624
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1625
|
+
hasContentScript: boolean;
|
|
1626
|
+
hasBackgroundWorker: boolean;
|
|
1627
|
+
}, {
|
|
1628
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1629
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1630
|
+
hasContentScript?: boolean | undefined;
|
|
1631
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1632
|
+
}>>;
|
|
1174
1633
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
1175
1634
|
name: z.ZodOptional<z.ZodString>;
|
|
1176
1635
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1177
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
1636
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1178
1637
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1179
1638
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1180
1639
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1192,7 +1651,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1192
1651
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1193
1652
|
narrative: "none" | "light" | "heavy";
|
|
1194
1653
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1195
|
-
economy: "none" | "
|
|
1654
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1196
1655
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1197
1656
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1198
1657
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1204,7 +1663,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1204
1663
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1205
1664
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1206
1665
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1207
|
-
economy?: "none" | "
|
|
1666
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1208
1667
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1209
1668
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1210
1669
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1295,10 +1754,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1295
1754
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1296
1755
|
hasPushNotifications?: boolean | undefined;
|
|
1297
1756
|
}>>;
|
|
1757
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1758
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1759
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1760
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1761
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1762
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1763
|
+
}, "strict", z.ZodTypeAny, {
|
|
1764
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1765
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1766
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1767
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1768
|
+
hasDataCatalog: boolean;
|
|
1769
|
+
}, {
|
|
1770
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1771
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1772
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1773
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1774
|
+
hasDataCatalog?: boolean | undefined;
|
|
1775
|
+
}>>;
|
|
1776
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1777
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1778
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1779
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1780
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1781
|
+
}, "strict", z.ZodTypeAny, {
|
|
1782
|
+
projectPhase: "training" | "inference" | "both";
|
|
1783
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1784
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1785
|
+
hasExperimentTracking: boolean;
|
|
1786
|
+
}, {
|
|
1787
|
+
projectPhase: "training" | "inference" | "both";
|
|
1788
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1789
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1790
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1791
|
+
}>>;
|
|
1792
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1793
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1794
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1795
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1796
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1797
|
+
}, "strict", z.ZodTypeAny, {
|
|
1798
|
+
manifestVersion: "2" | "3";
|
|
1799
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1800
|
+
hasContentScript: boolean;
|
|
1801
|
+
hasBackgroundWorker: boolean;
|
|
1802
|
+
}, {
|
|
1803
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1804
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1805
|
+
hasContentScript?: boolean | undefined;
|
|
1806
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1807
|
+
}>>;
|
|
1298
1808
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1299
1809
|
name: z.ZodOptional<z.ZodString>;
|
|
1300
1810
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1301
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
1811
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1302
1812
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1303
1813
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1304
1814
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1316,7 +1826,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1316
1826
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1317
1827
|
narrative: "none" | "light" | "heavy";
|
|
1318
1828
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1319
|
-
economy: "none" | "
|
|
1829
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1320
1830
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1321
1831
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1322
1832
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1328,7 +1838,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1328
1838
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1329
1839
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1330
1840
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1331
|
-
economy?: "none" | "
|
|
1841
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1332
1842
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1333
1843
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1334
1844
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1419,6 +1929,57 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1419
1929
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1420
1930
|
hasPushNotifications?: boolean | undefined;
|
|
1421
1931
|
}>>;
|
|
1932
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
1933
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
1934
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
1935
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
1936
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
1937
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
1938
|
+
}, "strict", z.ZodTypeAny, {
|
|
1939
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1940
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
1941
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
1942
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
1943
|
+
hasDataCatalog: boolean;
|
|
1944
|
+
}, {
|
|
1945
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
1946
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
1947
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
1948
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
1949
|
+
hasDataCatalog?: boolean | undefined;
|
|
1950
|
+
}>>;
|
|
1951
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
1952
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
1953
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
1954
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
1955
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
1956
|
+
}, "strict", z.ZodTypeAny, {
|
|
1957
|
+
projectPhase: "training" | "inference" | "both";
|
|
1958
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
1959
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
1960
|
+
hasExperimentTracking: boolean;
|
|
1961
|
+
}, {
|
|
1962
|
+
projectPhase: "training" | "inference" | "both";
|
|
1963
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
1964
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
1965
|
+
hasExperimentTracking?: boolean | undefined;
|
|
1966
|
+
}>>;
|
|
1967
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
1968
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
1969
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
1970
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
1971
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
1972
|
+
}, "strict", z.ZodTypeAny, {
|
|
1973
|
+
manifestVersion: "2" | "3";
|
|
1974
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
1975
|
+
hasContentScript: boolean;
|
|
1976
|
+
hasBackgroundWorker: boolean;
|
|
1977
|
+
}, {
|
|
1978
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
1979
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
1980
|
+
hasContentScript?: boolean | undefined;
|
|
1981
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
1982
|
+
}>>;
|
|
1422
1983
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1423
1984
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1424
1985
|
version: z.ZodLiteral<2>;
|
|
@@ -1452,7 +2013,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1452
2013
|
project: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
1453
2014
|
name: z.ZodOptional<z.ZodString>;
|
|
1454
2015
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1455
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
2016
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1456
2017
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1457
2018
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1458
2019
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1470,7 +2031,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1470
2031
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1471
2032
|
narrative: "none" | "light" | "heavy";
|
|
1472
2033
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1473
|
-
economy: "none" | "
|
|
2034
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1474
2035
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1475
2036
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1476
2037
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1482,7 +2043,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1482
2043
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1483
2044
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1484
2045
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1485
|
-
economy?: "none" | "
|
|
2046
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1486
2047
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1487
2048
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1488
2049
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1573,10 +2134,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1573
2134
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1574
2135
|
hasPushNotifications?: boolean | undefined;
|
|
1575
2136
|
}>>;
|
|
2137
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
2138
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
2139
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
2140
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
2141
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
2142
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
2143
|
+
}, "strict", z.ZodTypeAny, {
|
|
2144
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2145
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
2146
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
2147
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
2148
|
+
hasDataCatalog: boolean;
|
|
2149
|
+
}, {
|
|
2150
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2151
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
2152
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
2153
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
2154
|
+
hasDataCatalog?: boolean | undefined;
|
|
2155
|
+
}>>;
|
|
2156
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
2157
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
2158
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
2159
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
2160
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2161
|
+
}, "strict", z.ZodTypeAny, {
|
|
2162
|
+
projectPhase: "training" | "inference" | "both";
|
|
2163
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
2164
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
2165
|
+
hasExperimentTracking: boolean;
|
|
2166
|
+
}, {
|
|
2167
|
+
projectPhase: "training" | "inference" | "both";
|
|
2168
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
2169
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
2170
|
+
hasExperimentTracking?: boolean | undefined;
|
|
2171
|
+
}>>;
|
|
2172
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
2173
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
2174
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
2175
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
2176
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
2177
|
+
}, "strict", z.ZodTypeAny, {
|
|
2178
|
+
manifestVersion: "2" | "3";
|
|
2179
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
2180
|
+
hasContentScript: boolean;
|
|
2181
|
+
hasBackgroundWorker: boolean;
|
|
2182
|
+
}, {
|
|
2183
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
2184
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
2185
|
+
hasContentScript?: boolean | undefined;
|
|
2186
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
2187
|
+
}>>;
|
|
1576
2188
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1577
2189
|
name: z.ZodOptional<z.ZodString>;
|
|
1578
2190
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1579
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
2191
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1580
2192
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1581
2193
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1582
2194
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1594,7 +2206,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1594
2206
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1595
2207
|
narrative: "none" | "light" | "heavy";
|
|
1596
2208
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1597
|
-
economy: "none" | "
|
|
2209
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1598
2210
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1599
2211
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1600
2212
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1606,7 +2218,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1606
2218
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1607
2219
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1608
2220
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1609
|
-
economy?: "none" | "
|
|
2221
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1610
2222
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1611
2223
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1612
2224
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1697,10 +2309,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1697
2309
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1698
2310
|
hasPushNotifications?: boolean | undefined;
|
|
1699
2311
|
}>>;
|
|
2312
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
2313
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
2314
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
2315
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
2316
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
2317
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
2318
|
+
}, "strict", z.ZodTypeAny, {
|
|
2319
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2320
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
2321
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
2322
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
2323
|
+
hasDataCatalog: boolean;
|
|
2324
|
+
}, {
|
|
2325
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2326
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
2327
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
2328
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
2329
|
+
hasDataCatalog?: boolean | undefined;
|
|
2330
|
+
}>>;
|
|
2331
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
2332
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
2333
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
2334
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
2335
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2336
|
+
}, "strict", z.ZodTypeAny, {
|
|
2337
|
+
projectPhase: "training" | "inference" | "both";
|
|
2338
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
2339
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
2340
|
+
hasExperimentTracking: boolean;
|
|
2341
|
+
}, {
|
|
2342
|
+
projectPhase: "training" | "inference" | "both";
|
|
2343
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
2344
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
2345
|
+
hasExperimentTracking?: boolean | undefined;
|
|
2346
|
+
}>>;
|
|
2347
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
2348
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
2349
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
2350
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
2351
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
2352
|
+
}, "strict", z.ZodTypeAny, {
|
|
2353
|
+
manifestVersion: "2" | "3";
|
|
2354
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
2355
|
+
hasContentScript: boolean;
|
|
2356
|
+
hasBackgroundWorker: boolean;
|
|
2357
|
+
}, {
|
|
2358
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
2359
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
2360
|
+
hasContentScript?: boolean | undefined;
|
|
2361
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
2362
|
+
}>>;
|
|
1700
2363
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1701
2364
|
name: z.ZodOptional<z.ZodString>;
|
|
1702
2365
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1703
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
2366
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1704
2367
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1705
2368
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1706
2369
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1718,7 +2381,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1718
2381
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1719
2382
|
narrative: "none" | "light" | "heavy";
|
|
1720
2383
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1721
|
-
economy: "none" | "
|
|
2384
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1722
2385
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1723
2386
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1724
2387
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1730,7 +2393,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1730
2393
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1731
2394
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1732
2395
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1733
|
-
economy?: "none" | "
|
|
2396
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1734
2397
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1735
2398
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1736
2399
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1821,10 +2484,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1821
2484
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1822
2485
|
hasPushNotifications?: boolean | undefined;
|
|
1823
2486
|
}>>;
|
|
2487
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
2488
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
2489
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
2490
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
2491
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
2492
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
2493
|
+
}, "strict", z.ZodTypeAny, {
|
|
2494
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2495
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
2496
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
2497
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
2498
|
+
hasDataCatalog: boolean;
|
|
2499
|
+
}, {
|
|
2500
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2501
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
2502
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
2503
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
2504
|
+
hasDataCatalog?: boolean | undefined;
|
|
2505
|
+
}>>;
|
|
2506
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
2507
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
2508
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
2509
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
2510
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2511
|
+
}, "strict", z.ZodTypeAny, {
|
|
2512
|
+
projectPhase: "training" | "inference" | "both";
|
|
2513
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
2514
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
2515
|
+
hasExperimentTracking: boolean;
|
|
2516
|
+
}, {
|
|
2517
|
+
projectPhase: "training" | "inference" | "both";
|
|
2518
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
2519
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
2520
|
+
hasExperimentTracking?: boolean | undefined;
|
|
2521
|
+
}>>;
|
|
2522
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
2523
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
2524
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
2525
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
2526
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
2527
|
+
}, "strict", z.ZodTypeAny, {
|
|
2528
|
+
manifestVersion: "2" | "3";
|
|
2529
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
2530
|
+
hasContentScript: boolean;
|
|
2531
|
+
hasBackgroundWorker: boolean;
|
|
2532
|
+
}, {
|
|
2533
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
2534
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
2535
|
+
hasContentScript?: boolean | undefined;
|
|
2536
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
2537
|
+
}>>;
|
|
1824
2538
|
}, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
|
|
1825
2539
|
name: z.ZodOptional<z.ZodString>;
|
|
1826
2540
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1827
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
2541
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1828
2542
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1829
2543
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1830
2544
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1842,7 +2556,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1842
2556
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1843
2557
|
narrative: "none" | "light" | "heavy";
|
|
1844
2558
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1845
|
-
economy: "none" | "
|
|
2559
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1846
2560
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1847
2561
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1848
2562
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1854,7 +2568,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1854
2568
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1855
2569
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1856
2570
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1857
|
-
economy?: "none" | "
|
|
2571
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1858
2572
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1859
2573
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1860
2574
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -1945,10 +2659,61 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1945
2659
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
1946
2660
|
hasPushNotifications?: boolean | undefined;
|
|
1947
2661
|
}>>;
|
|
2662
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
2663
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
2664
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
2665
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
2666
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
2667
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
2668
|
+
}, "strict", z.ZodTypeAny, {
|
|
2669
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2670
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
2671
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
2672
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
2673
|
+
hasDataCatalog: boolean;
|
|
2674
|
+
}, {
|
|
2675
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2676
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
2677
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
2678
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
2679
|
+
hasDataCatalog?: boolean | undefined;
|
|
2680
|
+
}>>;
|
|
2681
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
2682
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
2683
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
2684
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
2685
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2686
|
+
}, "strict", z.ZodTypeAny, {
|
|
2687
|
+
projectPhase: "training" | "inference" | "both";
|
|
2688
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
2689
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
2690
|
+
hasExperimentTracking: boolean;
|
|
2691
|
+
}, {
|
|
2692
|
+
projectPhase: "training" | "inference" | "both";
|
|
2693
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
2694
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
2695
|
+
hasExperimentTracking?: boolean | undefined;
|
|
2696
|
+
}>>;
|
|
2697
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
2698
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
2699
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
2700
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
2701
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
2702
|
+
}, "strict", z.ZodTypeAny, {
|
|
2703
|
+
manifestVersion: "2" | "3";
|
|
2704
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
2705
|
+
hasContentScript: boolean;
|
|
2706
|
+
hasBackgroundWorker: boolean;
|
|
2707
|
+
}, {
|
|
2708
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
2709
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
2710
|
+
hasContentScript?: boolean | undefined;
|
|
2711
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
2712
|
+
}>>;
|
|
1948
2713
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1949
2714
|
name: z.ZodOptional<z.ZodString>;
|
|
1950
2715
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
|
|
1951
|
-
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game"]>>;
|
|
2716
|
+
projectType: z.ZodOptional<z.ZodEnum<["web-app", "mobile-app", "backend", "cli", "library", "game", "data-pipeline", "ml", "browser-extension"]>>;
|
|
1952
2717
|
gameConfig: z.ZodOptional<z.ZodObject<{
|
|
1953
2718
|
engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
|
|
1954
2719
|
multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
|
|
@@ -1966,7 +2731,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1966
2731
|
multiplayerMode: "hybrid" | "none" | "local" | "online";
|
|
1967
2732
|
narrative: "none" | "light" | "heavy";
|
|
1968
2733
|
contentStructure: "discrete" | "open-world" | "procedural" | "endless" | "mission-based";
|
|
1969
|
-
economy: "none" | "
|
|
2734
|
+
economy: "none" | "both" | "progression" | "monetized";
|
|
1970
2735
|
onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
|
|
1971
2736
|
persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
|
|
1972
2737
|
targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
|
|
@@ -1978,7 +2743,7 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
1978
2743
|
multiplayerMode?: "hybrid" | "none" | "local" | "online" | undefined;
|
|
1979
2744
|
narrative?: "none" | "light" | "heavy" | undefined;
|
|
1980
2745
|
contentStructure?: "discrete" | "open-world" | "procedural" | "endless" | "mission-based" | undefined;
|
|
1981
|
-
economy?: "none" | "
|
|
2746
|
+
economy?: "none" | "both" | "progression" | "monetized" | undefined;
|
|
1982
2747
|
onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
|
|
1983
2748
|
persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
|
|
1984
2749
|
targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
|
|
@@ -2069,6 +2834,57 @@ export declare const ConfigSchema: z.ZodObject<{
|
|
|
2069
2834
|
offlineSupport?: "none" | "cache" | "offline-first" | undefined;
|
|
2070
2835
|
hasPushNotifications?: boolean | undefined;
|
|
2071
2836
|
}>>;
|
|
2837
|
+
dataPipelineConfig: z.ZodOptional<z.ZodObject<{
|
|
2838
|
+
processingModel: z.ZodEnum<["batch", "streaming", "hybrid"]>;
|
|
2839
|
+
orchestration: z.ZodDefault<z.ZodEnum<["none", "dag-based", "event-driven", "scheduled"]>>;
|
|
2840
|
+
dataQualityStrategy: z.ZodDefault<z.ZodEnum<["none", "validation", "testing", "observability"]>>;
|
|
2841
|
+
schemaManagement: z.ZodDefault<z.ZodEnum<["none", "schema-registry", "contracts"]>>;
|
|
2842
|
+
hasDataCatalog: z.ZodDefault<z.ZodBoolean>;
|
|
2843
|
+
}, "strict", z.ZodTypeAny, {
|
|
2844
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2845
|
+
orchestration: "none" | "event-driven" | "dag-based" | "scheduled";
|
|
2846
|
+
dataQualityStrategy: "validation" | "none" | "testing" | "observability";
|
|
2847
|
+
schemaManagement: "none" | "schema-registry" | "contracts";
|
|
2848
|
+
hasDataCatalog: boolean;
|
|
2849
|
+
}, {
|
|
2850
|
+
processingModel: "hybrid" | "batch" | "streaming";
|
|
2851
|
+
orchestration?: "none" | "event-driven" | "dag-based" | "scheduled" | undefined;
|
|
2852
|
+
dataQualityStrategy?: "validation" | "none" | "testing" | "observability" | undefined;
|
|
2853
|
+
schemaManagement?: "none" | "schema-registry" | "contracts" | undefined;
|
|
2854
|
+
hasDataCatalog?: boolean | undefined;
|
|
2855
|
+
}>>;
|
|
2856
|
+
mlConfig: z.ZodOptional<z.ZodObject<{
|
|
2857
|
+
projectPhase: z.ZodEnum<["training", "inference", "both"]>;
|
|
2858
|
+
modelType: z.ZodDefault<z.ZodEnum<["classical", "deep-learning", "llm"]>>;
|
|
2859
|
+
servingPattern: z.ZodDefault<z.ZodEnum<["none", "batch", "realtime", "edge"]>>;
|
|
2860
|
+
hasExperimentTracking: z.ZodDefault<z.ZodBoolean>;
|
|
2861
|
+
}, "strict", z.ZodTypeAny, {
|
|
2862
|
+
projectPhase: "training" | "inference" | "both";
|
|
2863
|
+
modelType: "classical" | "deep-learning" | "llm";
|
|
2864
|
+
servingPattern: "edge" | "none" | "realtime" | "batch";
|
|
2865
|
+
hasExperimentTracking: boolean;
|
|
2866
|
+
}, {
|
|
2867
|
+
projectPhase: "training" | "inference" | "both";
|
|
2868
|
+
modelType?: "classical" | "deep-learning" | "llm" | undefined;
|
|
2869
|
+
servingPattern?: "edge" | "none" | "realtime" | "batch" | undefined;
|
|
2870
|
+
hasExperimentTracking?: boolean | undefined;
|
|
2871
|
+
}>>;
|
|
2872
|
+
browserExtensionConfig: z.ZodOptional<z.ZodObject<{
|
|
2873
|
+
manifestVersion: z.ZodDefault<z.ZodEnum<["2", "3"]>>;
|
|
2874
|
+
uiSurfaces: z.ZodDefault<z.ZodArray<z.ZodEnum<["popup", "options", "newtab", "devtools", "sidepanel"]>, "many">>;
|
|
2875
|
+
hasContentScript: z.ZodDefault<z.ZodBoolean>;
|
|
2876
|
+
hasBackgroundWorker: z.ZodDefault<z.ZodBoolean>;
|
|
2877
|
+
}, "strict", z.ZodTypeAny, {
|
|
2878
|
+
manifestVersion: "2" | "3";
|
|
2879
|
+
uiSurfaces: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[];
|
|
2880
|
+
hasContentScript: boolean;
|
|
2881
|
+
hasBackgroundWorker: boolean;
|
|
2882
|
+
}, {
|
|
2883
|
+
manifestVersion?: "2" | "3" | undefined;
|
|
2884
|
+
uiSurfaces?: ("options" | "popup" | "newtab" | "devtools" | "sidepanel")[] | undefined;
|
|
2885
|
+
hasContentScript?: boolean | undefined;
|
|
2886
|
+
hasBackgroundWorker?: boolean | undefined;
|
|
2887
|
+
}>>;
|
|
2072
2888
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2073
2889
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2074
2890
|
export type ParsedConfig = z.infer<typeof ConfigSchema>;
|