@zigrivers/scaffold 3.7.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/README.md +43 -3
  2. package/content/knowledge/library/library-api-design.md +306 -0
  3. package/content/knowledge/library/library-architecture.md +247 -0
  4. package/content/knowledge/library/library-bundling.md +244 -0
  5. package/content/knowledge/library/library-conventions.md +229 -0
  6. package/content/knowledge/library/library-dev-environment.md +220 -0
  7. package/content/knowledge/library/library-documentation.md +300 -0
  8. package/content/knowledge/library/library-project-structure.md +237 -0
  9. package/content/knowledge/library/library-requirements.md +173 -0
  10. package/content/knowledge/library/library-security.md +257 -0
  11. package/content/knowledge/library/library-testing.md +319 -0
  12. package/content/knowledge/library/library-type-definitions.md +284 -0
  13. package/content/knowledge/library/library-versioning.md +300 -0
  14. package/content/knowledge/mobile-app/mobile-app-architecture.md +283 -0
  15. package/content/knowledge/mobile-app/mobile-app-conventions.md +180 -0
  16. package/content/knowledge/mobile-app/mobile-app-deployment.md +298 -0
  17. package/content/knowledge/mobile-app/mobile-app-dev-environment.md +257 -0
  18. package/content/knowledge/mobile-app/mobile-app-distribution.md +264 -0
  19. package/content/knowledge/mobile-app/mobile-app-observability.md +317 -0
  20. package/content/knowledge/mobile-app/mobile-app-offline-patterns.md +311 -0
  21. package/content/knowledge/mobile-app/mobile-app-project-structure.md +245 -0
  22. package/content/knowledge/mobile-app/mobile-app-push-notifications.md +321 -0
  23. package/content/knowledge/mobile-app/mobile-app-requirements.md +147 -0
  24. package/content/knowledge/mobile-app/mobile-app-security.md +338 -0
  25. package/content/knowledge/mobile-app/mobile-app-testing.md +400 -0
  26. package/content/methodology/library-overlay.yml +67 -0
  27. package/content/methodology/mobile-app-overlay.yml +71 -0
  28. package/dist/cli/commands/init.d.ts +9 -0
  29. package/dist/cli/commands/init.d.ts.map +1 -1
  30. package/dist/cli/commands/init.js +82 -3
  31. package/dist/cli/commands/init.js.map +1 -1
  32. package/dist/cli/commands/init.test.js +70 -0
  33. package/dist/cli/commands/init.test.js.map +1 -1
  34. package/dist/config/schema.d.ts +592 -32
  35. package/dist/config/schema.d.ts.map +1 -1
  36. package/dist/config/schema.js +34 -0
  37. package/dist/config/schema.js.map +1 -1
  38. package/dist/config/schema.test.js +147 -1
  39. package/dist/config/schema.test.js.map +1 -1
  40. package/dist/core/assembly/overlay-loader.test.js +22 -0
  41. package/dist/core/assembly/overlay-loader.test.js.map +1 -1
  42. package/dist/e2e/project-type-overlays.test.d.ts +2 -1
  43. package/dist/e2e/project-type-overlays.test.d.ts.map +1 -1
  44. package/dist/e2e/project-type-overlays.test.js +302 -2
  45. package/dist/e2e/project-type-overlays.test.js.map +1 -1
  46. package/dist/types/config.d.ts +7 -1
  47. package/dist/types/config.d.ts.map +1 -1
  48. package/dist/wizard/questions.d.ts +12 -1
  49. package/dist/wizard/questions.d.ts.map +1 -1
  50. package/dist/wizard/questions.js +56 -1
  51. package/dist/wizard/questions.js.map +1 -1
  52. package/dist/wizard/questions.test.js +89 -4
  53. package/dist/wizard/questions.test.js.map +1 -1
  54. package/dist/wizard/wizard.d.ts +9 -0
  55. package/dist/wizard/wizard.d.ts.map +1 -1
  56. package/dist/wizard/wizard.js +12 -1
  57. package/dist/wizard/wizard.js.map +1 -1
  58. package/package.json +1 -1
@@ -48,6 +48,41 @@ export declare const CliConfigSchema: z.ZodObject<{
48
48
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
49
49
  hasStructuredOutput?: boolean | undefined;
50
50
  }>;
51
+ export declare const LibraryConfigSchema: z.ZodObject<{
52
+ visibility: z.ZodEnum<["public", "internal"]>;
53
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
54
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
55
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
56
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
57
+ }, "strict", z.ZodTypeAny, {
58
+ visibility: "public" | "internal";
59
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
60
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
61
+ hasTypeDefinitions: boolean;
62
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
63
+ }, {
64
+ visibility: "public" | "internal";
65
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
66
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
67
+ hasTypeDefinitions?: boolean | undefined;
68
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
69
+ }>;
70
+ export declare const MobileAppConfigSchema: z.ZodObject<{
71
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
72
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
73
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
74
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
75
+ }, "strict", z.ZodTypeAny, {
76
+ platform: "ios" | "android" | "cross-platform";
77
+ distributionModel: "public" | "private" | "mixed";
78
+ offlineSupport: "none" | "cache" | "offline-first";
79
+ hasPushNotifications: boolean;
80
+ }, {
81
+ platform: "ios" | "android" | "cross-platform";
82
+ distributionModel?: "public" | "private" | "mixed" | undefined;
83
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
84
+ hasPushNotifications?: boolean | undefined;
85
+ }>;
51
86
  export declare const GameConfigSchema: z.ZodObject<{
52
87
  engine: z.ZodEnum<["unity", "unreal", "godot", "custom"]>;
53
88
  multiplayerMode: z.ZodDefault<z.ZodEnum<["none", "local", "online", "hybrid"]>>;
@@ -68,7 +103,7 @@ export declare const GameConfigSchema: z.ZodObject<{
68
103
  economy: "none" | "progression" | "monetized" | "both";
69
104
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
70
105
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
71
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
106
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
72
107
  supportedLocales: string[];
73
108
  hasModding: boolean;
74
109
  npcAiComplexity: "none" | "simple" | "complex";
@@ -80,7 +115,7 @@ export declare const GameConfigSchema: z.ZodObject<{
80
115
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
81
116
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
82
117
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
83
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
118
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
84
119
  supportedLocales?: string[] | undefined;
85
120
  hasModding?: boolean | undefined;
86
121
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -138,7 +173,7 @@ export declare const ConfigSchema: z.ZodObject<{
138
173
  economy: "none" | "progression" | "monetized" | "both";
139
174
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
140
175
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
141
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
176
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
142
177
  supportedLocales: string[];
143
178
  hasModding: boolean;
144
179
  npcAiComplexity: "none" | "simple" | "complex";
@@ -150,7 +185,7 @@ export declare const ConfigSchema: z.ZodObject<{
150
185
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
151
186
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
152
187
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
153
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
188
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
154
189
  supportedLocales?: string[] | undefined;
155
190
  hasModding?: boolean | undefined;
156
191
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -203,6 +238,41 @@ export declare const ConfigSchema: z.ZodObject<{
203
238
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
204
239
  hasStructuredOutput?: boolean | undefined;
205
240
  }>>;
241
+ libraryConfig: z.ZodOptional<z.ZodObject<{
242
+ visibility: z.ZodEnum<["public", "internal"]>;
243
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
244
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
245
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
246
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
247
+ }, "strict", z.ZodTypeAny, {
248
+ visibility: "public" | "internal";
249
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
250
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
251
+ hasTypeDefinitions: boolean;
252
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
253
+ }, {
254
+ visibility: "public" | "internal";
255
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
256
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
257
+ hasTypeDefinitions?: boolean | undefined;
258
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
259
+ }>>;
260
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
261
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
262
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
263
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
264
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
265
+ }, "strict", z.ZodTypeAny, {
266
+ platform: "ios" | "android" | "cross-platform";
267
+ distributionModel: "public" | "private" | "mixed";
268
+ offlineSupport: "none" | "cache" | "offline-first";
269
+ hasPushNotifications: boolean;
270
+ }, {
271
+ platform: "ios" | "android" | "cross-platform";
272
+ distributionModel?: "public" | "private" | "mixed" | undefined;
273
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
274
+ hasPushNotifications?: boolean | undefined;
275
+ }>>;
206
276
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
207
277
  name: z.ZodOptional<z.ZodString>;
208
278
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -227,7 +297,7 @@ export declare const ConfigSchema: z.ZodObject<{
227
297
  economy: "none" | "progression" | "monetized" | "both";
228
298
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
229
299
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
230
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
300
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
231
301
  supportedLocales: string[];
232
302
  hasModding: boolean;
233
303
  npcAiComplexity: "none" | "simple" | "complex";
@@ -239,7 +309,7 @@ export declare const ConfigSchema: z.ZodObject<{
239
309
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
240
310
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
241
311
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
242
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
312
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
243
313
  supportedLocales?: string[] | undefined;
244
314
  hasModding?: boolean | undefined;
245
315
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -292,6 +362,41 @@ export declare const ConfigSchema: z.ZodObject<{
292
362
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
293
363
  hasStructuredOutput?: boolean | undefined;
294
364
  }>>;
365
+ libraryConfig: z.ZodOptional<z.ZodObject<{
366
+ visibility: z.ZodEnum<["public", "internal"]>;
367
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
368
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
369
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
370
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
371
+ }, "strict", z.ZodTypeAny, {
372
+ visibility: "public" | "internal";
373
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
374
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
375
+ hasTypeDefinitions: boolean;
376
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
377
+ }, {
378
+ visibility: "public" | "internal";
379
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
380
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
381
+ hasTypeDefinitions?: boolean | undefined;
382
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
383
+ }>>;
384
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
385
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
386
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
387
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
388
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
389
+ }, "strict", z.ZodTypeAny, {
390
+ platform: "ios" | "android" | "cross-platform";
391
+ distributionModel: "public" | "private" | "mixed";
392
+ offlineSupport: "none" | "cache" | "offline-first";
393
+ hasPushNotifications: boolean;
394
+ }, {
395
+ platform: "ios" | "android" | "cross-platform";
396
+ distributionModel?: "public" | "private" | "mixed" | undefined;
397
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
398
+ hasPushNotifications?: boolean | undefined;
399
+ }>>;
295
400
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
296
401
  name: z.ZodOptional<z.ZodString>;
297
402
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -316,7 +421,7 @@ export declare const ConfigSchema: z.ZodObject<{
316
421
  economy: "none" | "progression" | "monetized" | "both";
317
422
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
318
423
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
319
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
424
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
320
425
  supportedLocales: string[];
321
426
  hasModding: boolean;
322
427
  npcAiComplexity: "none" | "simple" | "complex";
@@ -328,7 +433,7 @@ export declare const ConfigSchema: z.ZodObject<{
328
433
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
329
434
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
330
435
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
331
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
436
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
332
437
  supportedLocales?: string[] | undefined;
333
438
  hasModding?: boolean | undefined;
334
439
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -381,6 +486,41 @@ export declare const ConfigSchema: z.ZodObject<{
381
486
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
382
487
  hasStructuredOutput?: boolean | undefined;
383
488
  }>>;
489
+ libraryConfig: z.ZodOptional<z.ZodObject<{
490
+ visibility: z.ZodEnum<["public", "internal"]>;
491
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
492
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
493
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
494
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
495
+ }, "strict", z.ZodTypeAny, {
496
+ visibility: "public" | "internal";
497
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
498
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
499
+ hasTypeDefinitions: boolean;
500
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
501
+ }, {
502
+ visibility: "public" | "internal";
503
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
504
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
505
+ hasTypeDefinitions?: boolean | undefined;
506
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
507
+ }>>;
508
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
509
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
510
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
511
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
512
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
513
+ }, "strict", z.ZodTypeAny, {
514
+ platform: "ios" | "android" | "cross-platform";
515
+ distributionModel: "public" | "private" | "mixed";
516
+ offlineSupport: "none" | "cache" | "offline-first";
517
+ hasPushNotifications: boolean;
518
+ }, {
519
+ platform: "ios" | "android" | "cross-platform";
520
+ distributionModel?: "public" | "private" | "mixed" | undefined;
521
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
522
+ hasPushNotifications?: boolean | undefined;
523
+ }>>;
384
524
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
385
525
  name: z.ZodOptional<z.ZodString>;
386
526
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -405,7 +545,7 @@ export declare const ConfigSchema: z.ZodObject<{
405
545
  economy: "none" | "progression" | "monetized" | "both";
406
546
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
407
547
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
408
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
548
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
409
549
  supportedLocales: string[];
410
550
  hasModding: boolean;
411
551
  npcAiComplexity: "none" | "simple" | "complex";
@@ -417,7 +557,7 @@ export declare const ConfigSchema: z.ZodObject<{
417
557
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
418
558
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
419
559
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
420
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
560
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
421
561
  supportedLocales?: string[] | undefined;
422
562
  hasModding?: boolean | undefined;
423
563
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -470,6 +610,41 @@ export declare const ConfigSchema: z.ZodObject<{
470
610
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
471
611
  hasStructuredOutput?: boolean | undefined;
472
612
  }>>;
613
+ libraryConfig: z.ZodOptional<z.ZodObject<{
614
+ visibility: z.ZodEnum<["public", "internal"]>;
615
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
616
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
617
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
618
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
619
+ }, "strict", z.ZodTypeAny, {
620
+ visibility: "public" | "internal";
621
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
622
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
623
+ hasTypeDefinitions: boolean;
624
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
625
+ }, {
626
+ visibility: "public" | "internal";
627
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
628
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
629
+ hasTypeDefinitions?: boolean | undefined;
630
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
631
+ }>>;
632
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
633
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
634
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
635
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
636
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
637
+ }, "strict", z.ZodTypeAny, {
638
+ platform: "ios" | "android" | "cross-platform";
639
+ distributionModel: "public" | "private" | "mixed";
640
+ offlineSupport: "none" | "cache" | "offline-first";
641
+ hasPushNotifications: boolean;
642
+ }, {
643
+ platform: "ios" | "android" | "cross-platform";
644
+ distributionModel?: "public" | "private" | "mixed" | undefined;
645
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
646
+ hasPushNotifications?: boolean | undefined;
647
+ }>>;
473
648
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
474
649
  name: z.ZodOptional<z.ZodString>;
475
650
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -494,7 +669,7 @@ export declare const ConfigSchema: z.ZodObject<{
494
669
  economy: "none" | "progression" | "monetized" | "both";
495
670
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
496
671
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
497
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
672
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
498
673
  supportedLocales: string[];
499
674
  hasModding: boolean;
500
675
  npcAiComplexity: "none" | "simple" | "complex";
@@ -506,7 +681,7 @@ export declare const ConfigSchema: z.ZodObject<{
506
681
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
507
682
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
508
683
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
509
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
684
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
510
685
  supportedLocales?: string[] | undefined;
511
686
  hasModding?: boolean | undefined;
512
687
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -559,6 +734,41 @@ export declare const ConfigSchema: z.ZodObject<{
559
734
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
560
735
  hasStructuredOutput?: boolean | undefined;
561
736
  }>>;
737
+ libraryConfig: z.ZodOptional<z.ZodObject<{
738
+ visibility: z.ZodEnum<["public", "internal"]>;
739
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
740
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
741
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
742
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
743
+ }, "strict", z.ZodTypeAny, {
744
+ visibility: "public" | "internal";
745
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
746
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
747
+ hasTypeDefinitions: boolean;
748
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
749
+ }, {
750
+ visibility: "public" | "internal";
751
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
752
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
753
+ hasTypeDefinitions?: boolean | undefined;
754
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
755
+ }>>;
756
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
757
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
758
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
759
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
760
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
761
+ }, "strict", z.ZodTypeAny, {
762
+ platform: "ios" | "android" | "cross-platform";
763
+ distributionModel: "public" | "private" | "mixed";
764
+ offlineSupport: "none" | "cache" | "offline-first";
765
+ hasPushNotifications: boolean;
766
+ }, {
767
+ platform: "ios" | "android" | "cross-platform";
768
+ distributionModel?: "public" | "private" | "mixed" | undefined;
769
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
770
+ hasPushNotifications?: boolean | undefined;
771
+ }>>;
562
772
  }, z.ZodTypeAny, "passthrough">>>;
563
773
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
564
774
  version: z.ZodLiteral<2>;
@@ -613,7 +823,7 @@ export declare const ConfigSchema: z.ZodObject<{
613
823
  economy: "none" | "progression" | "monetized" | "both";
614
824
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
615
825
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
616
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
826
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
617
827
  supportedLocales: string[];
618
828
  hasModding: boolean;
619
829
  npcAiComplexity: "none" | "simple" | "complex";
@@ -625,7 +835,7 @@ export declare const ConfigSchema: z.ZodObject<{
625
835
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
626
836
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
627
837
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
628
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
838
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
629
839
  supportedLocales?: string[] | undefined;
630
840
  hasModding?: boolean | undefined;
631
841
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -678,6 +888,41 @@ export declare const ConfigSchema: z.ZodObject<{
678
888
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
679
889
  hasStructuredOutput?: boolean | undefined;
680
890
  }>>;
891
+ libraryConfig: z.ZodOptional<z.ZodObject<{
892
+ visibility: z.ZodEnum<["public", "internal"]>;
893
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
894
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
895
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
896
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
897
+ }, "strict", z.ZodTypeAny, {
898
+ visibility: "public" | "internal";
899
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
900
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
901
+ hasTypeDefinitions: boolean;
902
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
903
+ }, {
904
+ visibility: "public" | "internal";
905
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
906
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
907
+ hasTypeDefinitions?: boolean | undefined;
908
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
909
+ }>>;
910
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
911
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
912
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
913
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
914
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
915
+ }, "strict", z.ZodTypeAny, {
916
+ platform: "ios" | "android" | "cross-platform";
917
+ distributionModel: "public" | "private" | "mixed";
918
+ offlineSupport: "none" | "cache" | "offline-first";
919
+ hasPushNotifications: boolean;
920
+ }, {
921
+ platform: "ios" | "android" | "cross-platform";
922
+ distributionModel?: "public" | "private" | "mixed" | undefined;
923
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
924
+ hasPushNotifications?: boolean | undefined;
925
+ }>>;
681
926
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
682
927
  name: z.ZodOptional<z.ZodString>;
683
928
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -702,7 +947,7 @@ export declare const ConfigSchema: z.ZodObject<{
702
947
  economy: "none" | "progression" | "monetized" | "both";
703
948
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
704
949
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
705
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
950
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
706
951
  supportedLocales: string[];
707
952
  hasModding: boolean;
708
953
  npcAiComplexity: "none" | "simple" | "complex";
@@ -714,7 +959,7 @@ export declare const ConfigSchema: z.ZodObject<{
714
959
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
715
960
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
716
961
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
717
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
962
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
718
963
  supportedLocales?: string[] | undefined;
719
964
  hasModding?: boolean | undefined;
720
965
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -767,6 +1012,41 @@ export declare const ConfigSchema: z.ZodObject<{
767
1012
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
768
1013
  hasStructuredOutput?: boolean | undefined;
769
1014
  }>>;
1015
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1016
+ visibility: z.ZodEnum<["public", "internal"]>;
1017
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1018
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1019
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1020
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1021
+ }, "strict", z.ZodTypeAny, {
1022
+ visibility: "public" | "internal";
1023
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1024
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1025
+ hasTypeDefinitions: boolean;
1026
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1027
+ }, {
1028
+ visibility: "public" | "internal";
1029
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1030
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1031
+ hasTypeDefinitions?: boolean | undefined;
1032
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1033
+ }>>;
1034
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1035
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1036
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1037
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1038
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1039
+ }, "strict", z.ZodTypeAny, {
1040
+ platform: "ios" | "android" | "cross-platform";
1041
+ distributionModel: "public" | "private" | "mixed";
1042
+ offlineSupport: "none" | "cache" | "offline-first";
1043
+ hasPushNotifications: boolean;
1044
+ }, {
1045
+ platform: "ios" | "android" | "cross-platform";
1046
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1047
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1048
+ hasPushNotifications?: boolean | undefined;
1049
+ }>>;
770
1050
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
771
1051
  name: z.ZodOptional<z.ZodString>;
772
1052
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -791,7 +1071,7 @@ export declare const ConfigSchema: z.ZodObject<{
791
1071
  economy: "none" | "progression" | "monetized" | "both";
792
1072
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
793
1073
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
794
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1074
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
795
1075
  supportedLocales: string[];
796
1076
  hasModding: boolean;
797
1077
  npcAiComplexity: "none" | "simple" | "complex";
@@ -803,7 +1083,7 @@ export declare const ConfigSchema: z.ZodObject<{
803
1083
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
804
1084
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
805
1085
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
806
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1086
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
807
1087
  supportedLocales?: string[] | undefined;
808
1088
  hasModding?: boolean | undefined;
809
1089
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -856,6 +1136,41 @@ export declare const ConfigSchema: z.ZodObject<{
856
1136
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
857
1137
  hasStructuredOutput?: boolean | undefined;
858
1138
  }>>;
1139
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1140
+ visibility: z.ZodEnum<["public", "internal"]>;
1141
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1142
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1143
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1144
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1145
+ }, "strict", z.ZodTypeAny, {
1146
+ visibility: "public" | "internal";
1147
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1148
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1149
+ hasTypeDefinitions: boolean;
1150
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1151
+ }, {
1152
+ visibility: "public" | "internal";
1153
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1154
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1155
+ hasTypeDefinitions?: boolean | undefined;
1156
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1157
+ }>>;
1158
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1159
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1160
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1161
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1162
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1163
+ }, "strict", z.ZodTypeAny, {
1164
+ platform: "ios" | "android" | "cross-platform";
1165
+ distributionModel: "public" | "private" | "mixed";
1166
+ offlineSupport: "none" | "cache" | "offline-first";
1167
+ hasPushNotifications: boolean;
1168
+ }, {
1169
+ platform: "ios" | "android" | "cross-platform";
1170
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1171
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1172
+ hasPushNotifications?: boolean | undefined;
1173
+ }>>;
859
1174
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
860
1175
  name: z.ZodOptional<z.ZodString>;
861
1176
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -880,7 +1195,7 @@ export declare const ConfigSchema: z.ZodObject<{
880
1195
  economy: "none" | "progression" | "monetized" | "both";
881
1196
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
882
1197
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
883
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1198
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
884
1199
  supportedLocales: string[];
885
1200
  hasModding: boolean;
886
1201
  npcAiComplexity: "none" | "simple" | "complex";
@@ -892,7 +1207,7 @@ export declare const ConfigSchema: z.ZodObject<{
892
1207
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
893
1208
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
894
1209
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
895
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1210
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
896
1211
  supportedLocales?: string[] | undefined;
897
1212
  hasModding?: boolean | undefined;
898
1213
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -945,6 +1260,41 @@ export declare const ConfigSchema: z.ZodObject<{
945
1260
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
946
1261
  hasStructuredOutput?: boolean | undefined;
947
1262
  }>>;
1263
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1264
+ visibility: z.ZodEnum<["public", "internal"]>;
1265
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1266
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1267
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1268
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1269
+ }, "strict", z.ZodTypeAny, {
1270
+ visibility: "public" | "internal";
1271
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1272
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1273
+ hasTypeDefinitions: boolean;
1274
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1275
+ }, {
1276
+ visibility: "public" | "internal";
1277
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1278
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1279
+ hasTypeDefinitions?: boolean | undefined;
1280
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1281
+ }>>;
1282
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1283
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1284
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1285
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1286
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1287
+ }, "strict", z.ZodTypeAny, {
1288
+ platform: "ios" | "android" | "cross-platform";
1289
+ distributionModel: "public" | "private" | "mixed";
1290
+ offlineSupport: "none" | "cache" | "offline-first";
1291
+ hasPushNotifications: boolean;
1292
+ }, {
1293
+ platform: "ios" | "android" | "cross-platform";
1294
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1295
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1296
+ hasPushNotifications?: boolean | undefined;
1297
+ }>>;
948
1298
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
949
1299
  name: z.ZodOptional<z.ZodString>;
950
1300
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -969,7 +1319,7 @@ export declare const ConfigSchema: z.ZodObject<{
969
1319
  economy: "none" | "progression" | "monetized" | "both";
970
1320
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
971
1321
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
972
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1322
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
973
1323
  supportedLocales: string[];
974
1324
  hasModding: boolean;
975
1325
  npcAiComplexity: "none" | "simple" | "complex";
@@ -981,7 +1331,7 @@ export declare const ConfigSchema: z.ZodObject<{
981
1331
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
982
1332
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
983
1333
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
984
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1334
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
985
1335
  supportedLocales?: string[] | undefined;
986
1336
  hasModding?: boolean | undefined;
987
1337
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1034,6 +1384,41 @@ export declare const ConfigSchema: z.ZodObject<{
1034
1384
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1035
1385
  hasStructuredOutput?: boolean | undefined;
1036
1386
  }>>;
1387
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1388
+ visibility: z.ZodEnum<["public", "internal"]>;
1389
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1390
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1391
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1392
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1393
+ }, "strict", z.ZodTypeAny, {
1394
+ visibility: "public" | "internal";
1395
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1396
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1397
+ hasTypeDefinitions: boolean;
1398
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1399
+ }, {
1400
+ visibility: "public" | "internal";
1401
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1402
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1403
+ hasTypeDefinitions?: boolean | undefined;
1404
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1405
+ }>>;
1406
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1407
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1408
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1409
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1410
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1411
+ }, "strict", z.ZodTypeAny, {
1412
+ platform: "ios" | "android" | "cross-platform";
1413
+ distributionModel: "public" | "private" | "mixed";
1414
+ offlineSupport: "none" | "cache" | "offline-first";
1415
+ hasPushNotifications: boolean;
1416
+ }, {
1417
+ platform: "ios" | "android" | "cross-platform";
1418
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1419
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1420
+ hasPushNotifications?: boolean | undefined;
1421
+ }>>;
1037
1422
  }, z.ZodTypeAny, "passthrough">>>;
1038
1423
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1039
1424
  version: z.ZodLiteral<2>;
@@ -1088,7 +1473,7 @@ export declare const ConfigSchema: z.ZodObject<{
1088
1473
  economy: "none" | "progression" | "monetized" | "both";
1089
1474
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1090
1475
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1091
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1476
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1092
1477
  supportedLocales: string[];
1093
1478
  hasModding: boolean;
1094
1479
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1100,7 +1485,7 @@ export declare const ConfigSchema: z.ZodObject<{
1100
1485
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
1101
1486
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1102
1487
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1103
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1488
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1104
1489
  supportedLocales?: string[] | undefined;
1105
1490
  hasModding?: boolean | undefined;
1106
1491
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1153,6 +1538,41 @@ export declare const ConfigSchema: z.ZodObject<{
1153
1538
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1154
1539
  hasStructuredOutput?: boolean | undefined;
1155
1540
  }>>;
1541
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1542
+ visibility: z.ZodEnum<["public", "internal"]>;
1543
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1544
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1545
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1546
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1547
+ }, "strict", z.ZodTypeAny, {
1548
+ visibility: "public" | "internal";
1549
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1550
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1551
+ hasTypeDefinitions: boolean;
1552
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1553
+ }, {
1554
+ visibility: "public" | "internal";
1555
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1556
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1557
+ hasTypeDefinitions?: boolean | undefined;
1558
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1559
+ }>>;
1560
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1561
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1562
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1563
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1564
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1565
+ }, "strict", z.ZodTypeAny, {
1566
+ platform: "ios" | "android" | "cross-platform";
1567
+ distributionModel: "public" | "private" | "mixed";
1568
+ offlineSupport: "none" | "cache" | "offline-first";
1569
+ hasPushNotifications: boolean;
1570
+ }, {
1571
+ platform: "ios" | "android" | "cross-platform";
1572
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1573
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1574
+ hasPushNotifications?: boolean | undefined;
1575
+ }>>;
1156
1576
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1157
1577
  name: z.ZodOptional<z.ZodString>;
1158
1578
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -1177,7 +1597,7 @@ export declare const ConfigSchema: z.ZodObject<{
1177
1597
  economy: "none" | "progression" | "monetized" | "both";
1178
1598
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1179
1599
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1180
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1600
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1181
1601
  supportedLocales: string[];
1182
1602
  hasModding: boolean;
1183
1603
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1189,7 +1609,7 @@ export declare const ConfigSchema: z.ZodObject<{
1189
1609
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
1190
1610
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1191
1611
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1192
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1612
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1193
1613
  supportedLocales?: string[] | undefined;
1194
1614
  hasModding?: boolean | undefined;
1195
1615
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1242,6 +1662,41 @@ export declare const ConfigSchema: z.ZodObject<{
1242
1662
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1243
1663
  hasStructuredOutput?: boolean | undefined;
1244
1664
  }>>;
1665
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1666
+ visibility: z.ZodEnum<["public", "internal"]>;
1667
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1668
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1669
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1670
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1671
+ }, "strict", z.ZodTypeAny, {
1672
+ visibility: "public" | "internal";
1673
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1674
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1675
+ hasTypeDefinitions: boolean;
1676
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1677
+ }, {
1678
+ visibility: "public" | "internal";
1679
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1680
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1681
+ hasTypeDefinitions?: boolean | undefined;
1682
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1683
+ }>>;
1684
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1685
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1686
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1687
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1688
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1689
+ }, "strict", z.ZodTypeAny, {
1690
+ platform: "ios" | "android" | "cross-platform";
1691
+ distributionModel: "public" | "private" | "mixed";
1692
+ offlineSupport: "none" | "cache" | "offline-first";
1693
+ hasPushNotifications: boolean;
1694
+ }, {
1695
+ platform: "ios" | "android" | "cross-platform";
1696
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1697
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1698
+ hasPushNotifications?: boolean | undefined;
1699
+ }>>;
1245
1700
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1246
1701
  name: z.ZodOptional<z.ZodString>;
1247
1702
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -1266,7 +1721,7 @@ export declare const ConfigSchema: z.ZodObject<{
1266
1721
  economy: "none" | "progression" | "monetized" | "both";
1267
1722
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1268
1723
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1269
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1724
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1270
1725
  supportedLocales: string[];
1271
1726
  hasModding: boolean;
1272
1727
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1278,7 +1733,7 @@ export declare const ConfigSchema: z.ZodObject<{
1278
1733
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
1279
1734
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1280
1735
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1281
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1736
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1282
1737
  supportedLocales?: string[] | undefined;
1283
1738
  hasModding?: boolean | undefined;
1284
1739
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1331,6 +1786,41 @@ export declare const ConfigSchema: z.ZodObject<{
1331
1786
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1332
1787
  hasStructuredOutput?: boolean | undefined;
1333
1788
  }>>;
1789
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1790
+ visibility: z.ZodEnum<["public", "internal"]>;
1791
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1792
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1793
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1794
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1795
+ }, "strict", z.ZodTypeAny, {
1796
+ visibility: "public" | "internal";
1797
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1798
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1799
+ hasTypeDefinitions: boolean;
1800
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1801
+ }, {
1802
+ visibility: "public" | "internal";
1803
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1804
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1805
+ hasTypeDefinitions?: boolean | undefined;
1806
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1807
+ }>>;
1808
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1809
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1810
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1811
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1812
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1813
+ }, "strict", z.ZodTypeAny, {
1814
+ platform: "ios" | "android" | "cross-platform";
1815
+ distributionModel: "public" | "private" | "mixed";
1816
+ offlineSupport: "none" | "cache" | "offline-first";
1817
+ hasPushNotifications: boolean;
1818
+ }, {
1819
+ platform: "ios" | "android" | "cross-platform";
1820
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1821
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1822
+ hasPushNotifications?: boolean | undefined;
1823
+ }>>;
1334
1824
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1335
1825
  name: z.ZodOptional<z.ZodString>;
1336
1826
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -1355,7 +1845,7 @@ export declare const ConfigSchema: z.ZodObject<{
1355
1845
  economy: "none" | "progression" | "monetized" | "both";
1356
1846
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1357
1847
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1358
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1848
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1359
1849
  supportedLocales: string[];
1360
1850
  hasModding: boolean;
1361
1851
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1367,7 +1857,7 @@ export declare const ConfigSchema: z.ZodObject<{
1367
1857
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
1368
1858
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1369
1859
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1370
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1860
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1371
1861
  supportedLocales?: string[] | undefined;
1372
1862
  hasModding?: boolean | undefined;
1373
1863
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1420,6 +1910,41 @@ export declare const ConfigSchema: z.ZodObject<{
1420
1910
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1421
1911
  hasStructuredOutput?: boolean | undefined;
1422
1912
  }>>;
1913
+ libraryConfig: z.ZodOptional<z.ZodObject<{
1914
+ visibility: z.ZodEnum<["public", "internal"]>;
1915
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
1916
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
1917
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
1918
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
1919
+ }, "strict", z.ZodTypeAny, {
1920
+ visibility: "public" | "internal";
1921
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
1922
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
1923
+ hasTypeDefinitions: boolean;
1924
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
1925
+ }, {
1926
+ visibility: "public" | "internal";
1927
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
1928
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
1929
+ hasTypeDefinitions?: boolean | undefined;
1930
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
1931
+ }>>;
1932
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
1933
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
1934
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
1935
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
1936
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
1937
+ }, "strict", z.ZodTypeAny, {
1938
+ platform: "ios" | "android" | "cross-platform";
1939
+ distributionModel: "public" | "private" | "mixed";
1940
+ offlineSupport: "none" | "cache" | "offline-first";
1941
+ hasPushNotifications: boolean;
1942
+ }, {
1943
+ platform: "ios" | "android" | "cross-platform";
1944
+ distributionModel?: "public" | "private" | "mixed" | undefined;
1945
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
1946
+ hasPushNotifications?: boolean | undefined;
1947
+ }>>;
1423
1948
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1424
1949
  name: z.ZodOptional<z.ZodString>;
1425
1950
  platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["web", "mobile", "desktop"]>, "many">>;
@@ -1444,7 +1969,7 @@ export declare const ConfigSchema: z.ZodObject<{
1444
1969
  economy: "none" | "progression" | "monetized" | "both";
1445
1970
  onlineServices: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[];
1446
1971
  persistence: "none" | "progression" | "settings-only" | "profile" | "cloud";
1447
- targetPlatforms: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1972
+ targetPlatforms: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[];
1448
1973
  supportedLocales: string[];
1449
1974
  hasModding: boolean;
1450
1975
  npcAiComplexity: "none" | "simple" | "complex";
@@ -1456,7 +1981,7 @@ export declare const ConfigSchema: z.ZodObject<{
1456
1981
  economy?: "none" | "progression" | "monetized" | "both" | undefined;
1457
1982
  onlineServices?: ("leaderboards" | "accounts" | "matchmaking" | "live-ops")[] | undefined;
1458
1983
  persistence?: "none" | "progression" | "settings-only" | "profile" | "cloud" | undefined;
1459
- targetPlatforms?: ("pc" | "web" | "ios" | "android" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1984
+ targetPlatforms?: ("ios" | "android" | "pc" | "web" | "ps5" | "xbox" | "switch" | "vr" | "ar")[] | undefined;
1460
1985
  supportedLocales?: string[] | undefined;
1461
1986
  hasModding?: boolean | undefined;
1462
1987
  npcAiComplexity?: "none" | "simple" | "complex" | undefined;
@@ -1509,6 +2034,41 @@ export declare const ConfigSchema: z.ZodObject<{
1509
2034
  distributionChannels?: ("container" | "package-manager" | "system-package-manager" | "standalone-binary")[] | undefined;
1510
2035
  hasStructuredOutput?: boolean | undefined;
1511
2036
  }>>;
2037
+ libraryConfig: z.ZodOptional<z.ZodObject<{
2038
+ visibility: z.ZodEnum<["public", "internal"]>;
2039
+ runtimeTarget: z.ZodDefault<z.ZodEnum<["node", "browser", "isomorphic", "edge"]>>;
2040
+ bundleFormat: z.ZodDefault<z.ZodEnum<["esm", "cjs", "dual", "unbundled"]>>;
2041
+ hasTypeDefinitions: z.ZodDefault<z.ZodBoolean>;
2042
+ documentationLevel: z.ZodDefault<z.ZodEnum<["none", "readme", "api-docs", "full-site"]>>;
2043
+ }, "strict", z.ZodTypeAny, {
2044
+ visibility: "public" | "internal";
2045
+ runtimeTarget: "edge" | "node" | "browser" | "isomorphic";
2046
+ bundleFormat: "esm" | "cjs" | "dual" | "unbundled";
2047
+ hasTypeDefinitions: boolean;
2048
+ documentationLevel: "none" | "readme" | "api-docs" | "full-site";
2049
+ }, {
2050
+ visibility: "public" | "internal";
2051
+ runtimeTarget?: "edge" | "node" | "browser" | "isomorphic" | undefined;
2052
+ bundleFormat?: "esm" | "cjs" | "dual" | "unbundled" | undefined;
2053
+ hasTypeDefinitions?: boolean | undefined;
2054
+ documentationLevel?: "none" | "readme" | "api-docs" | "full-site" | undefined;
2055
+ }>>;
2056
+ mobileAppConfig: z.ZodOptional<z.ZodObject<{
2057
+ platform: z.ZodEnum<["ios", "android", "cross-platform"]>;
2058
+ distributionModel: z.ZodDefault<z.ZodEnum<["public", "private", "mixed"]>>;
2059
+ offlineSupport: z.ZodDefault<z.ZodEnum<["none", "cache", "offline-first"]>>;
2060
+ hasPushNotifications: z.ZodDefault<z.ZodBoolean>;
2061
+ }, "strict", z.ZodTypeAny, {
2062
+ platform: "ios" | "android" | "cross-platform";
2063
+ distributionModel: "public" | "private" | "mixed";
2064
+ offlineSupport: "none" | "cache" | "offline-first";
2065
+ hasPushNotifications: boolean;
2066
+ }, {
2067
+ platform: "ios" | "android" | "cross-platform";
2068
+ distributionModel?: "public" | "private" | "mixed" | undefined;
2069
+ offlineSupport?: "none" | "cache" | "offline-first" | undefined;
2070
+ hasPushNotifications?: boolean | undefined;
2071
+ }>>;
1512
2072
  }, z.ZodTypeAny, "passthrough">>>;
1513
2073
  }, z.ZodTypeAny, "passthrough">>;
1514
2074
  export type ParsedConfig = z.infer<typeof ConfigSchema>;