@bscotch/yy 0.8.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Yy.d.ts +785 -179
- package/dist/Yy.d.ts.map +1 -1
- package/dist/types/YyObject.d.ts +8 -0
- package/dist/types/YyObject.d.ts.map +1 -1
- package/dist/types/YyObject.js +2 -1
- package/dist/types/YyObject.js.map +1 -1
- package/dist/types/YyRoom.d.ts +50 -0
- package/dist/types/YyRoom.d.ts.map +1 -1
- package/dist/types/YyRoom.js +3 -1
- package/dist/types/YyRoom.js.map +1 -1
- package/dist/types/Yyp.d.ts +352 -63
- package/dist/types/Yyp.d.ts.map +1 -1
- package/dist/types/Yyp.js +7 -4
- package/dist/types/Yyp.js.map +1 -1
- package/package.json +4 -4
package/dist/Yy.d.ts
CHANGED
|
@@ -89,16 +89,16 @@ export declare const yySchemas: {
|
|
|
89
89
|
name: z.ZodString;
|
|
90
90
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
91
91
|
folderPath: z.ZodString;
|
|
92
|
-
order: z.
|
|
92
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
93
93
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
94
94
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
name: string;
|
|
97
97
|
resourceType: "GMFolder";
|
|
98
98
|
resourceVersion: "1.0";
|
|
99
|
-
order: number;
|
|
100
99
|
folderPath: string;
|
|
101
100
|
tags?: string[] | undefined;
|
|
101
|
+
order?: number | undefined;
|
|
102
102
|
}, {
|
|
103
103
|
name: string;
|
|
104
104
|
folderPath: string;
|
|
@@ -127,12 +127,7 @@ export declare const yySchemas: {
|
|
|
127
127
|
resourceVersion?: "1.3" | undefined;
|
|
128
128
|
}>, "many">>;
|
|
129
129
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
130
|
-
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
131
|
-
* Stringify an object into a Yy-formatted string,
|
|
132
|
-
* including trailing commas. If a schema is provided,
|
|
133
|
-
* it will be used to validate and populate defaults before
|
|
134
|
-
* stringifying.
|
|
135
|
-
*/
|
|
130
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
136
131
|
name: z.ZodString;
|
|
137
132
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
138
133
|
name: z.ZodString;
|
|
@@ -228,52 +223,151 @@ export declare const yySchemas: {
|
|
|
228
223
|
}, {
|
|
229
224
|
IDEVersion: string;
|
|
230
225
|
}>;
|
|
226
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
231
227
|
resourceVersion: z.ZodString;
|
|
232
228
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
233
|
-
}, "
|
|
234
|
-
name:
|
|
235
|
-
resourceType: "GMProject"
|
|
236
|
-
|
|
237
|
-
|
|
229
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
230
|
+
name: z.ZodString;
|
|
231
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMProject">>;
|
|
232
|
+
resources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
233
|
+
id: z.ZodObject<{
|
|
234
|
+
name: z.ZodString;
|
|
235
|
+
path: z.ZodString;
|
|
236
|
+
}, "strip", z.ZodTypeAny, {
|
|
237
|
+
path: string;
|
|
238
|
+
name: string;
|
|
239
|
+
}, {
|
|
240
|
+
path: string;
|
|
241
|
+
name: string;
|
|
242
|
+
}>;
|
|
243
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
244
|
+
}, "strip", z.ZodTypeAny, {
|
|
238
245
|
id: {
|
|
239
246
|
path: string;
|
|
240
247
|
name: string;
|
|
241
248
|
};
|
|
242
249
|
order?: number | undefined;
|
|
243
|
-
}
|
|
244
|
-
|
|
250
|
+
}, {
|
|
251
|
+
id: {
|
|
252
|
+
path: string;
|
|
253
|
+
name: string;
|
|
254
|
+
};
|
|
255
|
+
order?: number | undefined;
|
|
256
|
+
}>, "many">>;
|
|
257
|
+
RoomOrderNodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
258
|
+
roomId: z.ZodObject<{
|
|
259
|
+
name: z.ZodString;
|
|
260
|
+
path: z.ZodString;
|
|
261
|
+
}, "strip", z.ZodTypeAny, {
|
|
262
|
+
path: string;
|
|
263
|
+
name: string;
|
|
264
|
+
}, {
|
|
265
|
+
path: string;
|
|
266
|
+
name: string;
|
|
267
|
+
}>;
|
|
268
|
+
}, "strip", z.ZodTypeAny, {
|
|
245
269
|
roomId: {
|
|
246
270
|
path: string;
|
|
247
271
|
name: string;
|
|
248
272
|
};
|
|
249
|
-
}
|
|
250
|
-
|
|
273
|
+
}, {
|
|
274
|
+
roomId: {
|
|
275
|
+
path: string;
|
|
276
|
+
name: string;
|
|
277
|
+
};
|
|
278
|
+
}>, "many">>;
|
|
279
|
+
Options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
280
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
281
|
+
name: z.ZodString;
|
|
282
|
+
path: z.ZodString;
|
|
283
|
+
}, "strip", z.ZodTypeAny, {
|
|
251
284
|
path: string;
|
|
252
285
|
name: string;
|
|
253
286
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
287
|
+
}, {
|
|
288
|
+
path: string;
|
|
289
|
+
name: string;
|
|
290
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
291
|
+
}>, "many">>;
|
|
292
|
+
isDnDProject: z.ZodOptional<z.ZodBoolean>;
|
|
293
|
+
defaultScriptType: z.ZodDefault<z.ZodNumber>;
|
|
294
|
+
isEcma: z.ZodDefault<z.ZodBoolean>;
|
|
295
|
+
tutorialPath: z.ZodOptional<z.ZodString>;
|
|
296
|
+
configs: z.ZodObject<{
|
|
297
|
+
name: z.ZodDefault<z.ZodLiteral<"Default">>;
|
|
298
|
+
children: z.ZodDefault<z.ZodArray<Schema<import("./types/Yyp.js").YypConfig, z.ZodTypeDef, import("./types/Yyp.js").YypConfig>, "many">>;
|
|
299
|
+
}, "strip", z.ZodTypeAny, {
|
|
258
300
|
name: "Default";
|
|
259
301
|
children: import("./types/Yyp.js").YypConfig[];
|
|
260
|
-
}
|
|
261
|
-
|
|
302
|
+
}, {
|
|
303
|
+
name?: "Default" | undefined;
|
|
304
|
+
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
305
|
+
}>;
|
|
306
|
+
Folders: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
307
|
+
name: z.ZodString;
|
|
308
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
309
|
+
folderPath: z.ZodString;
|
|
310
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
312
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
313
|
+
}, "strip", z.ZodTypeAny, {
|
|
262
314
|
name: string;
|
|
263
315
|
resourceType: "GMFolder";
|
|
264
316
|
resourceVersion: "1.0";
|
|
265
|
-
order: number;
|
|
266
317
|
folderPath: string;
|
|
267
318
|
tags?: string[] | undefined;
|
|
268
|
-
|
|
269
|
-
|
|
319
|
+
order?: number | undefined;
|
|
320
|
+
}, {
|
|
321
|
+
name: string;
|
|
322
|
+
folderPath: string;
|
|
323
|
+
tags?: string[] | undefined;
|
|
324
|
+
order?: number | undefined;
|
|
325
|
+
resourceType?: "GMFolder" | undefined;
|
|
326
|
+
resourceVersion?: "1.0" | undefined;
|
|
327
|
+
}>, "many">>;
|
|
328
|
+
AudioGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
329
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
330
|
+
name: z.ZodString;
|
|
331
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
332
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMAudioGroup">>;
|
|
333
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
334
|
+
}, "strip", z.ZodTypeAny, {
|
|
270
335
|
name: string;
|
|
271
336
|
resourceType: "GMAudioGroup";
|
|
272
337
|
resourceVersion: "1.3";
|
|
273
338
|
targets: bigint;
|
|
274
339
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
275
|
-
}
|
|
276
|
-
|
|
340
|
+
}, {
|
|
341
|
+
name: string;
|
|
342
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
343
|
+
targets?: number | bigint | undefined;
|
|
344
|
+
resourceType?: "GMAudioGroup" | undefined;
|
|
345
|
+
resourceVersion?: "1.3" | undefined;
|
|
346
|
+
}>, "many">>;
|
|
347
|
+
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
348
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
349
|
+
name: z.ZodString;
|
|
350
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
351
|
+
name: z.ZodString;
|
|
352
|
+
path: z.ZodString;
|
|
353
|
+
}, "strip", z.ZodTypeAny, {
|
|
354
|
+
path: string;
|
|
355
|
+
name: string;
|
|
356
|
+
}, {
|
|
357
|
+
path: string;
|
|
358
|
+
name: string;
|
|
359
|
+
}>>>;
|
|
360
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
361
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
362
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
363
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
364
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
365
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
366
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
367
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
368
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
369
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
370
|
+
}, "strip", z.ZodTypeAny, {
|
|
277
371
|
name: string;
|
|
278
372
|
resourceType: "GMTextureGroup";
|
|
279
373
|
resourceVersion: "1.3";
|
|
@@ -290,8 +384,38 @@ export declare const yySchemas: {
|
|
|
290
384
|
compressFormat?: string | undefined;
|
|
291
385
|
loadType?: "default" | "dynamicpages" | undefined;
|
|
292
386
|
directory?: string | undefined;
|
|
293
|
-
}
|
|
294
|
-
|
|
387
|
+
}, {
|
|
388
|
+
name: string;
|
|
389
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
390
|
+
groupParent?: {
|
|
391
|
+
path: string;
|
|
392
|
+
name: string;
|
|
393
|
+
} | null | undefined;
|
|
394
|
+
isScaled?: boolean | undefined;
|
|
395
|
+
compressFormat?: string | undefined;
|
|
396
|
+
autocrop?: boolean | undefined;
|
|
397
|
+
border?: number | undefined;
|
|
398
|
+
mipsToGenerate?: number | undefined;
|
|
399
|
+
targets?: number | bigint | undefined;
|
|
400
|
+
loadType?: "default" | "dynamicpages" | undefined;
|
|
401
|
+
directory?: string | undefined;
|
|
402
|
+
resourceType?: "GMTextureGroup" | undefined;
|
|
403
|
+
resourceVersion?: "1.3" | undefined;
|
|
404
|
+
}>, "many">>;
|
|
405
|
+
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
406
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
407
|
+
CopyToMask: z.ZodString;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
CopyToMask: string;
|
|
410
|
+
}, {
|
|
411
|
+
CopyToMask: string;
|
|
412
|
+
}>>>;
|
|
413
|
+
name: z.ZodString;
|
|
414
|
+
CopyToMask: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
415
|
+
filePath: z.ZodString;
|
|
416
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMIncludedFile">>;
|
|
417
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
418
|
+
}, "strip", z.ZodTypeAny, {
|
|
295
419
|
name: string;
|
|
296
420
|
resourceType: "GMIncludedFile";
|
|
297
421
|
resourceVersion: "1.0";
|
|
@@ -300,62 +424,185 @@ export declare const yySchemas: {
|
|
|
300
424
|
ConfigValues?: Record<string, {
|
|
301
425
|
CopyToMask: string;
|
|
302
426
|
}> | undefined;
|
|
303
|
-
}
|
|
304
|
-
|
|
427
|
+
}, {
|
|
428
|
+
name: string;
|
|
429
|
+
filePath: string;
|
|
430
|
+
ConfigValues?: Record<string, {
|
|
431
|
+
CopyToMask: string;
|
|
432
|
+
}> | undefined;
|
|
433
|
+
CopyToMask?: number | bigint | undefined;
|
|
434
|
+
resourceType?: "GMIncludedFile" | undefined;
|
|
435
|
+
resourceVersion?: "1.0" | undefined;
|
|
436
|
+
}>, "many">>;
|
|
437
|
+
MetaData: z.ZodObject<{
|
|
438
|
+
IDEVersion: z.ZodString;
|
|
439
|
+
}, "strip", z.ZodTypeAny, {
|
|
305
440
|
IDEVersion: string;
|
|
306
|
-
}
|
|
307
|
-
isDnDProject?: boolean | undefined;
|
|
308
|
-
tutorialPath?: string | undefined;
|
|
309
|
-
tags?: string[] | undefined;
|
|
310
|
-
}, {
|
|
311
|
-
name: string;
|
|
312
|
-
resourceVersion: string;
|
|
313
|
-
configs: {
|
|
314
|
-
name?: "Default" | undefined;
|
|
315
|
-
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
316
|
-
};
|
|
317
|
-
MetaData: {
|
|
441
|
+
}, {
|
|
318
442
|
IDEVersion: string;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
|
|
443
|
+
}>;
|
|
444
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
445
|
+
resourceVersion: z.ZodString;
|
|
446
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
447
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
448
|
+
name: z.ZodString;
|
|
449
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMProject">>;
|
|
450
|
+
resources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
451
|
+
id: z.ZodObject<{
|
|
452
|
+
name: z.ZodString;
|
|
453
|
+
path: z.ZodString;
|
|
454
|
+
}, "strip", z.ZodTypeAny, {
|
|
455
|
+
path: string;
|
|
456
|
+
name: string;
|
|
457
|
+
}, {
|
|
458
|
+
path: string;
|
|
459
|
+
name: string;
|
|
460
|
+
}>;
|
|
461
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
462
|
+
}, "strip", z.ZodTypeAny, {
|
|
322
463
|
id: {
|
|
323
464
|
path: string;
|
|
324
465
|
name: string;
|
|
325
466
|
};
|
|
326
467
|
order?: number | undefined;
|
|
327
|
-
}
|
|
328
|
-
|
|
468
|
+
}, {
|
|
469
|
+
id: {
|
|
470
|
+
path: string;
|
|
471
|
+
name: string;
|
|
472
|
+
};
|
|
473
|
+
order?: number | undefined;
|
|
474
|
+
}>, "many">>;
|
|
475
|
+
RoomOrderNodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
476
|
+
roomId: z.ZodObject<{
|
|
477
|
+
name: z.ZodString;
|
|
478
|
+
path: z.ZodString;
|
|
479
|
+
}, "strip", z.ZodTypeAny, {
|
|
480
|
+
path: string;
|
|
481
|
+
name: string;
|
|
482
|
+
}, {
|
|
483
|
+
path: string;
|
|
484
|
+
name: string;
|
|
485
|
+
}>;
|
|
486
|
+
}, "strip", z.ZodTypeAny, {
|
|
329
487
|
roomId: {
|
|
330
488
|
path: string;
|
|
331
489
|
name: string;
|
|
332
|
-
};
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
490
|
+
};
|
|
491
|
+
}, {
|
|
492
|
+
roomId: {
|
|
493
|
+
path: string;
|
|
494
|
+
name: string;
|
|
495
|
+
};
|
|
496
|
+
}>, "many">>;
|
|
497
|
+
Options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
498
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
499
|
+
name: z.ZodString;
|
|
500
|
+
path: z.ZodString;
|
|
501
|
+
}, "strip", z.ZodTypeAny, {
|
|
502
|
+
path: string;
|
|
503
|
+
name: string;
|
|
504
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
505
|
+
}, {
|
|
506
|
+
path: string;
|
|
507
|
+
name: string;
|
|
508
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
509
|
+
}>, "many">>;
|
|
510
|
+
isDnDProject: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
defaultScriptType: z.ZodDefault<z.ZodNumber>;
|
|
512
|
+
isEcma: z.ZodDefault<z.ZodBoolean>;
|
|
513
|
+
tutorialPath: z.ZodOptional<z.ZodString>;
|
|
514
|
+
configs: z.ZodObject<{
|
|
515
|
+
name: z.ZodDefault<z.ZodLiteral<"Default">>;
|
|
516
|
+
children: z.ZodDefault<z.ZodArray<Schema<import("./types/Yyp.js").YypConfig, z.ZodTypeDef, import("./types/Yyp.js").YypConfig>, "many">>;
|
|
517
|
+
}, "strip", z.ZodTypeAny, {
|
|
518
|
+
name: "Default";
|
|
519
|
+
children: import("./types/Yyp.js").YypConfig[];
|
|
520
|
+
}, {
|
|
521
|
+
name?: "Default" | undefined;
|
|
522
|
+
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
523
|
+
}>;
|
|
524
|
+
Folders: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
525
|
+
name: z.ZodString;
|
|
526
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
527
|
+
folderPath: z.ZodString;
|
|
528
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
529
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
530
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
531
|
+
}, "strip", z.ZodTypeAny, {
|
|
532
|
+
name: string;
|
|
533
|
+
resourceType: "GMFolder";
|
|
534
|
+
resourceVersion: "1.0";
|
|
535
|
+
folderPath: string;
|
|
536
|
+
tags?: string[] | undefined;
|
|
537
|
+
order?: number | undefined;
|
|
538
|
+
}, {
|
|
539
|
+
name: string;
|
|
540
|
+
folderPath: string;
|
|
541
|
+
tags?: string[] | undefined;
|
|
542
|
+
order?: number | undefined;
|
|
543
|
+
resourceType?: "GMFolder" | undefined;
|
|
544
|
+
resourceVersion?: "1.0" | undefined;
|
|
545
|
+
}>, "many">>;
|
|
546
|
+
AudioGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
547
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
548
|
+
name: z.ZodString;
|
|
549
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
550
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMAudioGroup">>;
|
|
551
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
552
|
+
}, "strip", z.ZodTypeAny, {
|
|
553
|
+
name: string;
|
|
554
|
+
resourceType: "GMAudioGroup";
|
|
555
|
+
resourceVersion: "1.3";
|
|
556
|
+
targets: bigint;
|
|
557
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
558
|
+
}, {
|
|
559
|
+
name: string;
|
|
560
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
561
|
+
targets?: number | bigint | undefined;
|
|
562
|
+
resourceType?: "GMAudioGroup" | undefined;
|
|
563
|
+
resourceVersion?: "1.3" | undefined;
|
|
564
|
+
}>, "many">>;
|
|
565
|
+
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
566
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
567
|
+
name: z.ZodString;
|
|
568
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
569
|
+
name: z.ZodString;
|
|
570
|
+
path: z.ZodString;
|
|
571
|
+
}, "strip", z.ZodTypeAny, {
|
|
572
|
+
path: string;
|
|
573
|
+
name: string;
|
|
574
|
+
}, {
|
|
575
|
+
path: string;
|
|
576
|
+
name: string;
|
|
577
|
+
}>>>;
|
|
578
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
579
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
580
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
581
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
582
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
583
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
584
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
585
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
586
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
587
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
588
|
+
}, "strip", z.ZodTypeAny, {
|
|
589
|
+
name: string;
|
|
590
|
+
resourceType: "GMTextureGroup";
|
|
591
|
+
resourceVersion: "1.3";
|
|
592
|
+
targets: bigint;
|
|
593
|
+
groupParent: {
|
|
594
|
+
path: string;
|
|
595
|
+
name: string;
|
|
596
|
+
} | null;
|
|
597
|
+
isScaled: boolean;
|
|
598
|
+
autocrop: boolean;
|
|
599
|
+
border: number;
|
|
600
|
+
mipsToGenerate: number;
|
|
353
601
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
}
|
|
358
|
-
TextureGroups?: {
|
|
602
|
+
compressFormat?: string | undefined;
|
|
603
|
+
loadType?: "default" | "dynamicpages" | undefined;
|
|
604
|
+
directory?: string | undefined;
|
|
605
|
+
}, {
|
|
359
606
|
name: string;
|
|
360
607
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
361
608
|
groupParent?: {
|
|
@@ -372,8 +619,30 @@ export declare const yySchemas: {
|
|
|
372
619
|
directory?: string | undefined;
|
|
373
620
|
resourceType?: "GMTextureGroup" | undefined;
|
|
374
621
|
resourceVersion?: "1.3" | undefined;
|
|
375
|
-
}
|
|
376
|
-
IncludedFiles
|
|
622
|
+
}>, "many">>;
|
|
623
|
+
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
624
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
625
|
+
CopyToMask: z.ZodString;
|
|
626
|
+
}, "strip", z.ZodTypeAny, {
|
|
627
|
+
CopyToMask: string;
|
|
628
|
+
}, {
|
|
629
|
+
CopyToMask: string;
|
|
630
|
+
}>>>;
|
|
631
|
+
name: z.ZodString;
|
|
632
|
+
CopyToMask: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
633
|
+
filePath: z.ZodString;
|
|
634
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMIncludedFile">>;
|
|
635
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
636
|
+
}, "strip", z.ZodTypeAny, {
|
|
637
|
+
name: string;
|
|
638
|
+
resourceType: "GMIncludedFile";
|
|
639
|
+
resourceVersion: "1.0";
|
|
640
|
+
CopyToMask: bigint;
|
|
641
|
+
filePath: string;
|
|
642
|
+
ConfigValues?: Record<string, {
|
|
643
|
+
CopyToMask: string;
|
|
644
|
+
}> | undefined;
|
|
645
|
+
}, {
|
|
377
646
|
name: string;
|
|
378
647
|
filePath: string;
|
|
379
648
|
ConfigValues?: Record<string, {
|
|
@@ -382,9 +651,18 @@ export declare const yySchemas: {
|
|
|
382
651
|
CopyToMask?: number | bigint | undefined;
|
|
383
652
|
resourceType?: "GMIncludedFile" | undefined;
|
|
384
653
|
resourceVersion?: "1.0" | undefined;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
|
|
654
|
+
}>, "many">>;
|
|
655
|
+
MetaData: z.ZodObject<{
|
|
656
|
+
IDEVersion: z.ZodString;
|
|
657
|
+
}, "strip", z.ZodTypeAny, {
|
|
658
|
+
IDEVersion: string;
|
|
659
|
+
}, {
|
|
660
|
+
IDEVersion: string;
|
|
661
|
+
}>;
|
|
662
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
663
|
+
resourceVersion: z.ZodString;
|
|
664
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
665
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
388
666
|
readonly animcurves: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
389
667
|
readonly extensions: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
390
668
|
readonly fonts: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -476,6 +754,7 @@ export declare const yySchemas: {
|
|
|
476
754
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
477
755
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
478
756
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMEvent">>;
|
|
757
|
+
parent: z.ZodOptional<z.ZodUnknown>;
|
|
479
758
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
480
759
|
name: string;
|
|
481
760
|
resourceType: "GMEvent";
|
|
@@ -488,6 +767,7 @@ export declare const yySchemas: {
|
|
|
488
767
|
name: string;
|
|
489
768
|
} | null;
|
|
490
769
|
tags?: string[] | undefined;
|
|
770
|
+
parent?: unknown;
|
|
491
771
|
}, {
|
|
492
772
|
eventType: number;
|
|
493
773
|
isDnD?: boolean | undefined;
|
|
@@ -500,6 +780,7 @@ export declare const yySchemas: {
|
|
|
500
780
|
tags?: string[] | undefined;
|
|
501
781
|
resourceVersion?: "1.0" | undefined;
|
|
502
782
|
resourceType?: "GMEvent" | undefined;
|
|
783
|
+
parent?: unknown;
|
|
503
784
|
}>, "many">>;
|
|
504
785
|
properties: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
505
786
|
name: z.ZodString;
|
|
@@ -594,6 +875,7 @@ export declare const yySchemas: {
|
|
|
594
875
|
name: string;
|
|
595
876
|
} | null;
|
|
596
877
|
tags?: string[] | undefined;
|
|
878
|
+
parent?: unknown;
|
|
597
879
|
}[];
|
|
598
880
|
properties: {
|
|
599
881
|
value: string;
|
|
@@ -664,6 +946,7 @@ export declare const yySchemas: {
|
|
|
664
946
|
tags?: string[] | undefined;
|
|
665
947
|
resourceVersion?: "1.0" | undefined;
|
|
666
948
|
resourceType?: "GMEvent" | undefined;
|
|
949
|
+
parent?: unknown;
|
|
667
950
|
}[] | undefined;
|
|
668
951
|
properties?: {
|
|
669
952
|
value: string;
|
|
@@ -708,6 +991,8 @@ export declare const yySchemas: {
|
|
|
708
991
|
userdefinedDepth: z.ZodDefault<z.ZodBoolean>;
|
|
709
992
|
inheritLayerDepth: z.ZodDefault<z.ZodBoolean>;
|
|
710
993
|
inheritLayerSettings: z.ZodDefault<z.ZodBoolean>;
|
|
994
|
+
inheritVisibility: z.ZodDefault<z.ZodBoolean>;
|
|
995
|
+
inheritSubLayers: z.ZodDefault<z.ZodBoolean>;
|
|
711
996
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
712
997
|
gridY: z.ZodDefault<z.ZodNumber>;
|
|
713
998
|
layers: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
@@ -815,6 +1100,8 @@ export declare const yySchemas: {
|
|
|
815
1100
|
userdefinedDepth: boolean;
|
|
816
1101
|
inheritLayerDepth: boolean;
|
|
817
1102
|
inheritLayerSettings: boolean;
|
|
1103
|
+
inheritVisibility: boolean;
|
|
1104
|
+
inheritSubLayers: boolean;
|
|
818
1105
|
gridX: number;
|
|
819
1106
|
gridY: number;
|
|
820
1107
|
layers: unknown[];
|
|
@@ -857,6 +1144,8 @@ export declare const yySchemas: {
|
|
|
857
1144
|
userdefinedDepth?: boolean | undefined;
|
|
858
1145
|
inheritLayerDepth?: boolean | undefined;
|
|
859
1146
|
inheritLayerSettings?: boolean | undefined;
|
|
1147
|
+
inheritVisibility?: boolean | undefined;
|
|
1148
|
+
inheritSubLayers?: boolean | undefined;
|
|
860
1149
|
gridX?: number | undefined;
|
|
861
1150
|
gridY?: number | undefined;
|
|
862
1151
|
layers?: unknown[] | undefined;
|
|
@@ -895,6 +1184,8 @@ export declare const yySchemas: {
|
|
|
895
1184
|
userdefinedDepth: z.ZodDefault<z.ZodBoolean>;
|
|
896
1185
|
inheritLayerDepth: z.ZodDefault<z.ZodBoolean>;
|
|
897
1186
|
inheritLayerSettings: z.ZodDefault<z.ZodBoolean>;
|
|
1187
|
+
inheritVisibility: z.ZodDefault<z.ZodBoolean>;
|
|
1188
|
+
inheritSubLayers: z.ZodDefault<z.ZodBoolean>;
|
|
898
1189
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
899
1190
|
gridY: z.ZodDefault<z.ZodNumber>;
|
|
900
1191
|
layers: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
@@ -932,6 +1223,8 @@ export declare const yySchemas: {
|
|
|
932
1223
|
userdefinedDepth: boolean;
|
|
933
1224
|
inheritLayerDepth: boolean;
|
|
934
1225
|
inheritLayerSettings: boolean;
|
|
1226
|
+
inheritVisibility: boolean;
|
|
1227
|
+
inheritSubLayers: boolean;
|
|
935
1228
|
gridX: number;
|
|
936
1229
|
gridY: number;
|
|
937
1230
|
layers: unknown[];
|
|
@@ -954,6 +1247,8 @@ export declare const yySchemas: {
|
|
|
954
1247
|
userdefinedDepth?: boolean | undefined;
|
|
955
1248
|
inheritLayerDepth?: boolean | undefined;
|
|
956
1249
|
inheritLayerSettings?: boolean | undefined;
|
|
1250
|
+
inheritVisibility?: boolean | undefined;
|
|
1251
|
+
inheritSubLayers?: boolean | undefined;
|
|
957
1252
|
gridX?: number | undefined;
|
|
958
1253
|
gridY?: number | undefined;
|
|
959
1254
|
layers?: unknown[] | undefined;
|
|
@@ -1115,6 +1410,8 @@ export declare const yySchemas: {
|
|
|
1115
1410
|
userdefinedDepth: boolean;
|
|
1116
1411
|
inheritLayerDepth: boolean;
|
|
1117
1412
|
inheritLayerSettings: boolean;
|
|
1413
|
+
inheritVisibility: boolean;
|
|
1414
|
+
inheritSubLayers: boolean;
|
|
1118
1415
|
gridX: number;
|
|
1119
1416
|
gridY: number;
|
|
1120
1417
|
layers: unknown[];
|
|
@@ -1163,6 +1460,8 @@ export declare const yySchemas: {
|
|
|
1163
1460
|
userdefinedDepth: boolean;
|
|
1164
1461
|
inheritLayerDepth: boolean;
|
|
1165
1462
|
inheritLayerSettings: boolean;
|
|
1463
|
+
inheritVisibility: boolean;
|
|
1464
|
+
inheritSubLayers: boolean;
|
|
1166
1465
|
gridX: number;
|
|
1167
1466
|
gridY: number;
|
|
1168
1467
|
layers: unknown[];
|
|
@@ -1244,6 +1543,8 @@ export declare const yySchemas: {
|
|
|
1244
1543
|
userdefinedDepth?: boolean | undefined;
|
|
1245
1544
|
inheritLayerDepth?: boolean | undefined;
|
|
1246
1545
|
inheritLayerSettings?: boolean | undefined;
|
|
1546
|
+
inheritVisibility?: boolean | undefined;
|
|
1547
|
+
inheritSubLayers?: boolean | undefined;
|
|
1247
1548
|
gridX?: number | undefined;
|
|
1248
1549
|
gridY?: number | undefined;
|
|
1249
1550
|
layers?: unknown[] | undefined;
|
|
@@ -1283,6 +1584,8 @@ export declare const yySchemas: {
|
|
|
1283
1584
|
userdefinedDepth?: boolean | undefined;
|
|
1284
1585
|
inheritLayerDepth?: boolean | undefined;
|
|
1285
1586
|
inheritLayerSettings?: boolean | undefined;
|
|
1587
|
+
inheritVisibility?: boolean | undefined;
|
|
1588
|
+
inheritSubLayers?: boolean | undefined;
|
|
1286
1589
|
gridX?: number | undefined;
|
|
1287
1590
|
gridY?: number | undefined;
|
|
1288
1591
|
layers?: unknown[] | undefined;
|
|
@@ -3502,16 +3805,234 @@ export declare class Yy {
|
|
|
3502
3805
|
name: z.ZodString;
|
|
3503
3806
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3504
3807
|
folderPath: z.ZodString;
|
|
3505
|
-
order: z.
|
|
3808
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
3809
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
3810
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3811
|
+
}, "strip", z.ZodTypeAny, {
|
|
3812
|
+
name: string;
|
|
3813
|
+
resourceType: "GMFolder";
|
|
3814
|
+
resourceVersion: "1.0";
|
|
3815
|
+
folderPath: string;
|
|
3816
|
+
tags?: string[] | undefined;
|
|
3817
|
+
order?: number | undefined;
|
|
3818
|
+
}, {
|
|
3819
|
+
name: string;
|
|
3820
|
+
folderPath: string;
|
|
3821
|
+
tags?: string[] | undefined;
|
|
3822
|
+
order?: number | undefined;
|
|
3823
|
+
resourceType?: "GMFolder" | undefined;
|
|
3824
|
+
resourceVersion?: "1.0" | undefined;
|
|
3825
|
+
}>, "many">>;
|
|
3826
|
+
AudioGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3827
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3828
|
+
name: z.ZodString;
|
|
3829
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
3830
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMAudioGroup">>;
|
|
3831
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
3832
|
+
}, "strip", z.ZodTypeAny, {
|
|
3833
|
+
name: string;
|
|
3834
|
+
resourceType: "GMAudioGroup";
|
|
3835
|
+
resourceVersion: "1.3";
|
|
3836
|
+
targets: bigint;
|
|
3837
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3838
|
+
}, {
|
|
3839
|
+
name: string;
|
|
3840
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3841
|
+
targets?: number | bigint | undefined;
|
|
3842
|
+
resourceType?: "GMAudioGroup" | undefined;
|
|
3843
|
+
resourceVersion?: "1.3" | undefined;
|
|
3844
|
+
}>, "many">>;
|
|
3845
|
+
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3846
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3847
|
+
name: z.ZodString;
|
|
3848
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
3849
|
+
name: z.ZodString;
|
|
3850
|
+
path: z.ZodString;
|
|
3851
|
+
}, "strip", z.ZodTypeAny, {
|
|
3852
|
+
path: string;
|
|
3853
|
+
name: string;
|
|
3854
|
+
}, {
|
|
3855
|
+
path: string;
|
|
3856
|
+
name: string;
|
|
3857
|
+
}>>>;
|
|
3858
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
3859
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
3860
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
3861
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
3862
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
3863
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
3864
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
3865
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3866
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
3867
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
3868
|
+
}, "strip", z.ZodTypeAny, {
|
|
3869
|
+
name: string;
|
|
3870
|
+
resourceType: "GMTextureGroup";
|
|
3871
|
+
resourceVersion: "1.3";
|
|
3872
|
+
targets: bigint;
|
|
3873
|
+
groupParent: {
|
|
3874
|
+
path: string;
|
|
3875
|
+
name: string;
|
|
3876
|
+
} | null;
|
|
3877
|
+
isScaled: boolean;
|
|
3878
|
+
autocrop: boolean;
|
|
3879
|
+
border: number;
|
|
3880
|
+
mipsToGenerate: number;
|
|
3881
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3882
|
+
compressFormat?: string | undefined;
|
|
3883
|
+
loadType?: "default" | "dynamicpages" | undefined;
|
|
3884
|
+
directory?: string | undefined;
|
|
3885
|
+
}, {
|
|
3886
|
+
name: string;
|
|
3887
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3888
|
+
groupParent?: {
|
|
3889
|
+
path: string;
|
|
3890
|
+
name: string;
|
|
3891
|
+
} | null | undefined;
|
|
3892
|
+
isScaled?: boolean | undefined;
|
|
3893
|
+
compressFormat?: string | undefined;
|
|
3894
|
+
autocrop?: boolean | undefined;
|
|
3895
|
+
border?: number | undefined;
|
|
3896
|
+
mipsToGenerate?: number | undefined;
|
|
3897
|
+
targets?: number | bigint | undefined;
|
|
3898
|
+
loadType?: "default" | "dynamicpages" | undefined;
|
|
3899
|
+
directory?: string | undefined;
|
|
3900
|
+
resourceType?: "GMTextureGroup" | undefined;
|
|
3901
|
+
resourceVersion?: "1.3" | undefined;
|
|
3902
|
+
}>, "many">>;
|
|
3903
|
+
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3904
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3905
|
+
CopyToMask: z.ZodString;
|
|
3906
|
+
}, "strip", z.ZodTypeAny, {
|
|
3907
|
+
CopyToMask: string;
|
|
3908
|
+
}, {
|
|
3909
|
+
CopyToMask: string;
|
|
3910
|
+
}>>>;
|
|
3911
|
+
name: z.ZodString;
|
|
3912
|
+
CopyToMask: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
3913
|
+
filePath: z.ZodString;
|
|
3914
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMIncludedFile">>;
|
|
3915
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3916
|
+
}, "strip", z.ZodTypeAny, {
|
|
3917
|
+
name: string;
|
|
3918
|
+
resourceType: "GMIncludedFile";
|
|
3919
|
+
resourceVersion: "1.0";
|
|
3920
|
+
CopyToMask: bigint;
|
|
3921
|
+
filePath: string;
|
|
3922
|
+
ConfigValues?: Record<string, {
|
|
3923
|
+
CopyToMask: string;
|
|
3924
|
+
}> | undefined;
|
|
3925
|
+
}, {
|
|
3926
|
+
name: string;
|
|
3927
|
+
filePath: string;
|
|
3928
|
+
ConfigValues?: Record<string, {
|
|
3929
|
+
CopyToMask: string;
|
|
3930
|
+
}> | undefined;
|
|
3931
|
+
CopyToMask?: number | bigint | undefined;
|
|
3932
|
+
resourceType?: "GMIncludedFile" | undefined;
|
|
3933
|
+
resourceVersion?: "1.0" | undefined;
|
|
3934
|
+
}>, "many">>;
|
|
3935
|
+
MetaData: z.ZodObject<{
|
|
3936
|
+
IDEVersion: z.ZodString;
|
|
3937
|
+
}, "strip", z.ZodTypeAny, {
|
|
3938
|
+
IDEVersion: string;
|
|
3939
|
+
}, {
|
|
3940
|
+
IDEVersion: string;
|
|
3941
|
+
}>;
|
|
3942
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3943
|
+
resourceVersion: z.ZodString;
|
|
3944
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3945
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3946
|
+
name: z.ZodString;
|
|
3947
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMProject">>;
|
|
3948
|
+
resources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3949
|
+
id: z.ZodObject<{
|
|
3950
|
+
name: z.ZodString;
|
|
3951
|
+
path: z.ZodString;
|
|
3952
|
+
}, "strip", z.ZodTypeAny, {
|
|
3953
|
+
path: string;
|
|
3954
|
+
name: string;
|
|
3955
|
+
}, {
|
|
3956
|
+
path: string;
|
|
3957
|
+
name: string;
|
|
3958
|
+
}>;
|
|
3959
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
3960
|
+
}, "strip", z.ZodTypeAny, {
|
|
3961
|
+
id: {
|
|
3962
|
+
path: string;
|
|
3963
|
+
name: string;
|
|
3964
|
+
};
|
|
3965
|
+
order?: number | undefined;
|
|
3966
|
+
}, {
|
|
3967
|
+
id: {
|
|
3968
|
+
path: string;
|
|
3969
|
+
name: string;
|
|
3970
|
+
};
|
|
3971
|
+
order?: number | undefined;
|
|
3972
|
+
}>, "many">>;
|
|
3973
|
+
RoomOrderNodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3974
|
+
roomId: z.ZodObject<{
|
|
3975
|
+
name: z.ZodString;
|
|
3976
|
+
path: z.ZodString;
|
|
3977
|
+
}, "strip", z.ZodTypeAny, {
|
|
3978
|
+
path: string;
|
|
3979
|
+
name: string;
|
|
3980
|
+
}, {
|
|
3981
|
+
path: string;
|
|
3982
|
+
name: string;
|
|
3983
|
+
}>;
|
|
3984
|
+
}, "strip", z.ZodTypeAny, {
|
|
3985
|
+
roomId: {
|
|
3986
|
+
path: string;
|
|
3987
|
+
name: string;
|
|
3988
|
+
};
|
|
3989
|
+
}, {
|
|
3990
|
+
roomId: {
|
|
3991
|
+
path: string;
|
|
3992
|
+
name: string;
|
|
3993
|
+
};
|
|
3994
|
+
}>, "many">>;
|
|
3995
|
+
Options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3996
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3997
|
+
name: z.ZodString;
|
|
3998
|
+
path: z.ZodString;
|
|
3999
|
+
}, "strip", z.ZodTypeAny, {
|
|
4000
|
+
path: string;
|
|
4001
|
+
name: string;
|
|
4002
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4003
|
+
}, {
|
|
4004
|
+
path: string;
|
|
4005
|
+
name: string;
|
|
4006
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4007
|
+
}>, "many">>;
|
|
4008
|
+
isDnDProject: z.ZodOptional<z.ZodBoolean>;
|
|
4009
|
+
defaultScriptType: z.ZodDefault<z.ZodNumber>;
|
|
4010
|
+
isEcma: z.ZodDefault<z.ZodBoolean>;
|
|
4011
|
+
tutorialPath: z.ZodOptional<z.ZodString>;
|
|
4012
|
+
configs: z.ZodObject<{
|
|
4013
|
+
name: z.ZodDefault<z.ZodLiteral<"Default">>;
|
|
4014
|
+
children: z.ZodDefault<z.ZodArray<Schema<import("./types/Yyp.js").YypConfig, z.ZodTypeDef, import("./types/Yyp.js").YypConfig>, "many">>;
|
|
4015
|
+
}, "strip", z.ZodTypeAny, {
|
|
4016
|
+
name: "Default";
|
|
4017
|
+
children: import("./types/Yyp.js").YypConfig[];
|
|
4018
|
+
}, {
|
|
4019
|
+
name?: "Default" | undefined;
|
|
4020
|
+
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
4021
|
+
}>;
|
|
4022
|
+
Folders: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4023
|
+
name: z.ZodString;
|
|
4024
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4025
|
+
folderPath: z.ZodString;
|
|
4026
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
3506
4027
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
3507
4028
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3508
4029
|
}, "strip", z.ZodTypeAny, {
|
|
3509
4030
|
name: string;
|
|
3510
4031
|
resourceType: "GMFolder";
|
|
3511
4032
|
resourceVersion: "1.0";
|
|
3512
|
-
order: number;
|
|
3513
4033
|
folderPath: string;
|
|
3514
4034
|
tags?: string[] | undefined;
|
|
4035
|
+
order?: number | undefined;
|
|
3515
4036
|
}, {
|
|
3516
4037
|
name: string;
|
|
3517
4038
|
folderPath: string;
|
|
@@ -3540,12 +4061,7 @@ export declare class Yy {
|
|
|
3540
4061
|
resourceVersion?: "1.3" | undefined;
|
|
3541
4062
|
}>, "many">>;
|
|
3542
4063
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3543
|
-
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3544
|
-
* Stringify an object into a Yy-formatted string,
|
|
3545
|
-
* including trailing commas. If a schema is provided,
|
|
3546
|
-
* it will be used to validate and populate defaults before
|
|
3547
|
-
* stringifying.
|
|
3548
|
-
*/
|
|
4064
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3549
4065
|
name: z.ZodString;
|
|
3550
4066
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
3551
4067
|
name: z.ZodString;
|
|
@@ -3641,52 +4157,151 @@ export declare class Yy {
|
|
|
3641
4157
|
}, {
|
|
3642
4158
|
IDEVersion: string;
|
|
3643
4159
|
}>;
|
|
4160
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3644
4161
|
resourceVersion: z.ZodString;
|
|
3645
4162
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3646
|
-
}, "
|
|
3647
|
-
name:
|
|
3648
|
-
resourceType: "GMProject"
|
|
3649
|
-
|
|
3650
|
-
|
|
4163
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4164
|
+
name: z.ZodString;
|
|
4165
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMProject">>;
|
|
4166
|
+
resources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4167
|
+
id: z.ZodObject<{
|
|
4168
|
+
name: z.ZodString;
|
|
4169
|
+
path: z.ZodString;
|
|
4170
|
+
}, "strip", z.ZodTypeAny, {
|
|
4171
|
+
path: string;
|
|
4172
|
+
name: string;
|
|
4173
|
+
}, {
|
|
4174
|
+
path: string;
|
|
4175
|
+
name: string;
|
|
4176
|
+
}>;
|
|
4177
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
4178
|
+
}, "strip", z.ZodTypeAny, {
|
|
3651
4179
|
id: {
|
|
3652
4180
|
path: string;
|
|
3653
4181
|
name: string;
|
|
3654
4182
|
};
|
|
3655
4183
|
order?: number | undefined;
|
|
3656
|
-
}
|
|
3657
|
-
|
|
4184
|
+
}, {
|
|
4185
|
+
id: {
|
|
4186
|
+
path: string;
|
|
4187
|
+
name: string;
|
|
4188
|
+
};
|
|
4189
|
+
order?: number | undefined;
|
|
4190
|
+
}>, "many">>;
|
|
4191
|
+
RoomOrderNodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4192
|
+
roomId: z.ZodObject<{
|
|
4193
|
+
name: z.ZodString;
|
|
4194
|
+
path: z.ZodString;
|
|
4195
|
+
}, "strip", z.ZodTypeAny, {
|
|
4196
|
+
path: string;
|
|
4197
|
+
name: string;
|
|
4198
|
+
}, {
|
|
4199
|
+
path: string;
|
|
4200
|
+
name: string;
|
|
4201
|
+
}>;
|
|
4202
|
+
}, "strip", z.ZodTypeAny, {
|
|
3658
4203
|
roomId: {
|
|
3659
4204
|
path: string;
|
|
3660
4205
|
name: string;
|
|
3661
4206
|
};
|
|
3662
|
-
}
|
|
3663
|
-
|
|
4207
|
+
}, {
|
|
4208
|
+
roomId: {
|
|
4209
|
+
path: string;
|
|
4210
|
+
name: string;
|
|
4211
|
+
};
|
|
4212
|
+
}>, "many">>;
|
|
4213
|
+
Options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4214
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4215
|
+
name: z.ZodString;
|
|
4216
|
+
path: z.ZodString;
|
|
4217
|
+
}, "strip", z.ZodTypeAny, {
|
|
3664
4218
|
path: string;
|
|
3665
4219
|
name: string;
|
|
3666
4220
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3667
|
-
}
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
4221
|
+
}, {
|
|
4222
|
+
path: string;
|
|
4223
|
+
name: string;
|
|
4224
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4225
|
+
}>, "many">>;
|
|
4226
|
+
isDnDProject: z.ZodOptional<z.ZodBoolean>;
|
|
4227
|
+
defaultScriptType: z.ZodDefault<z.ZodNumber>;
|
|
4228
|
+
isEcma: z.ZodDefault<z.ZodBoolean>;
|
|
4229
|
+
tutorialPath: z.ZodOptional<z.ZodString>;
|
|
4230
|
+
configs: z.ZodObject<{
|
|
4231
|
+
name: z.ZodDefault<z.ZodLiteral<"Default">>;
|
|
4232
|
+
children: z.ZodDefault<z.ZodArray<Schema<import("./types/Yyp.js").YypConfig, z.ZodTypeDef, import("./types/Yyp.js").YypConfig>, "many">>;
|
|
4233
|
+
}, "strip", z.ZodTypeAny, {
|
|
3671
4234
|
name: "Default";
|
|
3672
4235
|
children: import("./types/Yyp.js").YypConfig[];
|
|
3673
|
-
}
|
|
3674
|
-
|
|
4236
|
+
}, {
|
|
4237
|
+
name?: "Default" | undefined;
|
|
4238
|
+
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
4239
|
+
}>;
|
|
4240
|
+
Folders: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4241
|
+
name: z.ZodString;
|
|
4242
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4243
|
+
folderPath: z.ZodString;
|
|
4244
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
4245
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMFolder">>;
|
|
4246
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
4247
|
+
}, "strip", z.ZodTypeAny, {
|
|
3675
4248
|
name: string;
|
|
3676
4249
|
resourceType: "GMFolder";
|
|
3677
4250
|
resourceVersion: "1.0";
|
|
3678
|
-
order: number;
|
|
3679
4251
|
folderPath: string;
|
|
3680
4252
|
tags?: string[] | undefined;
|
|
3681
|
-
|
|
3682
|
-
|
|
4253
|
+
order?: number | undefined;
|
|
4254
|
+
}, {
|
|
4255
|
+
name: string;
|
|
4256
|
+
folderPath: string;
|
|
4257
|
+
tags?: string[] | undefined;
|
|
4258
|
+
order?: number | undefined;
|
|
4259
|
+
resourceType?: "GMFolder" | undefined;
|
|
4260
|
+
resourceVersion?: "1.0" | undefined;
|
|
4261
|
+
}>, "many">>;
|
|
4262
|
+
AudioGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4263
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4264
|
+
name: z.ZodString;
|
|
4265
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4266
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMAudioGroup">>;
|
|
4267
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
4268
|
+
}, "strip", z.ZodTypeAny, {
|
|
3683
4269
|
name: string;
|
|
3684
4270
|
resourceType: "GMAudioGroup";
|
|
3685
4271
|
resourceVersion: "1.3";
|
|
3686
4272
|
targets: bigint;
|
|
3687
4273
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3688
|
-
}
|
|
3689
|
-
|
|
4274
|
+
}, {
|
|
4275
|
+
name: string;
|
|
4276
|
+
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4277
|
+
targets?: number | bigint | undefined;
|
|
4278
|
+
resourceType?: "GMAudioGroup" | undefined;
|
|
4279
|
+
resourceVersion?: "1.3" | undefined;
|
|
4280
|
+
}>, "many">>;
|
|
4281
|
+
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4282
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4283
|
+
name: z.ZodString;
|
|
4284
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4285
|
+
name: z.ZodString;
|
|
4286
|
+
path: z.ZodString;
|
|
4287
|
+
}, "strip", z.ZodTypeAny, {
|
|
4288
|
+
path: string;
|
|
4289
|
+
name: string;
|
|
4290
|
+
}, {
|
|
4291
|
+
path: string;
|
|
4292
|
+
name: string;
|
|
4293
|
+
}>>>;
|
|
4294
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4295
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4296
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4297
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
4298
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
4299
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4300
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
4301
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
4302
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4303
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.3">>;
|
|
4304
|
+
}, "strip", z.ZodTypeAny, {
|
|
3690
4305
|
name: string;
|
|
3691
4306
|
resourceType: "GMTextureGroup";
|
|
3692
4307
|
resourceVersion: "1.3";
|
|
@@ -3703,72 +4318,7 @@ export declare class Yy {
|
|
|
3703
4318
|
compressFormat?: string | undefined;
|
|
3704
4319
|
loadType?: "default" | "dynamicpages" | undefined;
|
|
3705
4320
|
directory?: string | undefined;
|
|
3706
|
-
}
|
|
3707
|
-
IncludedFiles: {
|
|
3708
|
-
name: string;
|
|
3709
|
-
resourceType: "GMIncludedFile";
|
|
3710
|
-
resourceVersion: "1.0";
|
|
3711
|
-
CopyToMask: bigint;
|
|
3712
|
-
filePath: string;
|
|
3713
|
-
ConfigValues?: Record<string, {
|
|
3714
|
-
CopyToMask: string;
|
|
3715
|
-
}> | undefined;
|
|
3716
|
-
}[];
|
|
3717
|
-
MetaData: {
|
|
3718
|
-
IDEVersion: string;
|
|
3719
|
-
};
|
|
3720
|
-
isDnDProject?: boolean | undefined;
|
|
3721
|
-
tutorialPath?: string | undefined;
|
|
3722
|
-
tags?: string[] | undefined;
|
|
3723
|
-
}, {
|
|
3724
|
-
name: string;
|
|
3725
|
-
resourceVersion: string;
|
|
3726
|
-
configs: {
|
|
3727
|
-
name?: "Default" | undefined;
|
|
3728
|
-
children?: import("./types/Yyp.js").YypConfig[] | undefined;
|
|
3729
|
-
};
|
|
3730
|
-
MetaData: {
|
|
3731
|
-
IDEVersion: string;
|
|
3732
|
-
};
|
|
3733
|
-
resourceType?: "GMProject" | undefined;
|
|
3734
|
-
resources?: {
|
|
3735
|
-
id: {
|
|
3736
|
-
path: string;
|
|
3737
|
-
name: string;
|
|
3738
|
-
};
|
|
3739
|
-
order?: number | undefined;
|
|
3740
|
-
}[] | undefined;
|
|
3741
|
-
RoomOrderNodes?: {
|
|
3742
|
-
roomId: {
|
|
3743
|
-
path: string;
|
|
3744
|
-
name: string;
|
|
3745
|
-
};
|
|
3746
|
-
}[] | undefined;
|
|
3747
|
-
Options?: {
|
|
3748
|
-
path: string;
|
|
3749
|
-
name: string;
|
|
3750
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3751
|
-
}[] | undefined;
|
|
3752
|
-
isDnDProject?: boolean | undefined;
|
|
3753
|
-
defaultScriptType?: number | undefined;
|
|
3754
|
-
isEcma?: boolean | undefined;
|
|
3755
|
-
tutorialPath?: string | undefined;
|
|
3756
|
-
Folders?: {
|
|
3757
|
-
name: string;
|
|
3758
|
-
folderPath: string;
|
|
3759
|
-
tags?: string[] | undefined;
|
|
3760
|
-
order?: number | undefined;
|
|
3761
|
-
resourceType?: "GMFolder" | undefined;
|
|
3762
|
-
resourceVersion?: "1.0" | undefined;
|
|
3763
|
-
}[] | undefined;
|
|
3764
|
-
AudioGroups?: {
|
|
3765
|
-
name: string;
|
|
3766
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3767
|
-
targets?: number | bigint | undefined;
|
|
3768
|
-
resourceType?: "GMAudioGroup" | undefined;
|
|
3769
|
-
resourceVersion?: "1.3" | undefined;
|
|
3770
|
-
}[] | undefined;
|
|
3771
|
-
TextureGroups?: {
|
|
4321
|
+
}, {
|
|
3772
4322
|
name: string;
|
|
3773
4323
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3774
4324
|
groupParent?: {
|
|
@@ -3785,8 +4335,30 @@ export declare class Yy {
|
|
|
3785
4335
|
directory?: string | undefined;
|
|
3786
4336
|
resourceType?: "GMTextureGroup" | undefined;
|
|
3787
4337
|
resourceVersion?: "1.3" | undefined;
|
|
3788
|
-
}
|
|
3789
|
-
IncludedFiles
|
|
4338
|
+
}>, "many">>;
|
|
4339
|
+
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4340
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4341
|
+
CopyToMask: z.ZodString;
|
|
4342
|
+
}, "strip", z.ZodTypeAny, {
|
|
4343
|
+
CopyToMask: string;
|
|
4344
|
+
}, {
|
|
4345
|
+
CopyToMask: string;
|
|
4346
|
+
}>>>;
|
|
4347
|
+
name: z.ZodString;
|
|
4348
|
+
CopyToMask: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4349
|
+
filePath: z.ZodString;
|
|
4350
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMIncludedFile">>;
|
|
4351
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
4352
|
+
}, "strip", z.ZodTypeAny, {
|
|
4353
|
+
name: string;
|
|
4354
|
+
resourceType: "GMIncludedFile";
|
|
4355
|
+
resourceVersion: "1.0";
|
|
4356
|
+
CopyToMask: bigint;
|
|
4357
|
+
filePath: string;
|
|
4358
|
+
ConfigValues?: Record<string, {
|
|
4359
|
+
CopyToMask: string;
|
|
4360
|
+
}> | undefined;
|
|
4361
|
+
}, {
|
|
3790
4362
|
name: string;
|
|
3791
4363
|
filePath: string;
|
|
3792
4364
|
ConfigValues?: Record<string, {
|
|
@@ -3795,9 +4367,18 @@ export declare class Yy {
|
|
|
3795
4367
|
CopyToMask?: number | bigint | undefined;
|
|
3796
4368
|
resourceType?: "GMIncludedFile" | undefined;
|
|
3797
4369
|
resourceVersion?: "1.0" | undefined;
|
|
3798
|
-
}
|
|
3799
|
-
|
|
3800
|
-
|
|
4370
|
+
}>, "many">>;
|
|
4371
|
+
MetaData: z.ZodObject<{
|
|
4372
|
+
IDEVersion: z.ZodString;
|
|
4373
|
+
}, "strip", z.ZodTypeAny, {
|
|
4374
|
+
IDEVersion: string;
|
|
4375
|
+
}, {
|
|
4376
|
+
IDEVersion: string;
|
|
4377
|
+
}>;
|
|
4378
|
+
LibraryEmitters: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
4379
|
+
resourceVersion: z.ZodString;
|
|
4380
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4381
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
3801
4382
|
readonly animcurves: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
3802
4383
|
readonly extensions: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
3803
4384
|
readonly fonts: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -3889,6 +4470,7 @@ export declare class Yy {
|
|
|
3889
4470
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3890
4471
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3891
4472
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMEvent">>;
|
|
4473
|
+
parent: z.ZodOptional<z.ZodUnknown>;
|
|
3892
4474
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3893
4475
|
name: string;
|
|
3894
4476
|
resourceType: "GMEvent";
|
|
@@ -3901,6 +4483,7 @@ export declare class Yy {
|
|
|
3901
4483
|
name: string;
|
|
3902
4484
|
} | null;
|
|
3903
4485
|
tags?: string[] | undefined;
|
|
4486
|
+
parent?: unknown;
|
|
3904
4487
|
}, {
|
|
3905
4488
|
eventType: number;
|
|
3906
4489
|
isDnD?: boolean | undefined;
|
|
@@ -3913,6 +4496,7 @@ export declare class Yy {
|
|
|
3913
4496
|
tags?: string[] | undefined;
|
|
3914
4497
|
resourceVersion?: "1.0" | undefined;
|
|
3915
4498
|
resourceType?: "GMEvent" | undefined;
|
|
4499
|
+
parent?: unknown;
|
|
3916
4500
|
}>, "many">>;
|
|
3917
4501
|
properties: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3918
4502
|
name: z.ZodString;
|
|
@@ -4007,6 +4591,7 @@ export declare class Yy {
|
|
|
4007
4591
|
name: string;
|
|
4008
4592
|
} | null;
|
|
4009
4593
|
tags?: string[] | undefined;
|
|
4594
|
+
parent?: unknown;
|
|
4010
4595
|
}[];
|
|
4011
4596
|
properties: {
|
|
4012
4597
|
value: string;
|
|
@@ -4077,6 +4662,7 @@ export declare class Yy {
|
|
|
4077
4662
|
tags?: string[] | undefined;
|
|
4078
4663
|
resourceVersion?: "1.0" | undefined;
|
|
4079
4664
|
resourceType?: "GMEvent" | undefined;
|
|
4665
|
+
parent?: unknown;
|
|
4080
4666
|
}[] | undefined;
|
|
4081
4667
|
properties?: {
|
|
4082
4668
|
value: string;
|
|
@@ -4121,6 +4707,8 @@ export declare class Yy {
|
|
|
4121
4707
|
userdefinedDepth: z.ZodDefault<z.ZodBoolean>;
|
|
4122
4708
|
inheritLayerDepth: z.ZodDefault<z.ZodBoolean>;
|
|
4123
4709
|
inheritLayerSettings: z.ZodDefault<z.ZodBoolean>;
|
|
4710
|
+
inheritVisibility: z.ZodDefault<z.ZodBoolean>;
|
|
4711
|
+
inheritSubLayers: z.ZodDefault<z.ZodBoolean>;
|
|
4124
4712
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
4125
4713
|
gridY: z.ZodDefault<z.ZodNumber>;
|
|
4126
4714
|
layers: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
@@ -4228,6 +4816,8 @@ export declare class Yy {
|
|
|
4228
4816
|
userdefinedDepth: boolean;
|
|
4229
4817
|
inheritLayerDepth: boolean;
|
|
4230
4818
|
inheritLayerSettings: boolean;
|
|
4819
|
+
inheritVisibility: boolean;
|
|
4820
|
+
inheritSubLayers: boolean;
|
|
4231
4821
|
gridX: number;
|
|
4232
4822
|
gridY: number;
|
|
4233
4823
|
layers: unknown[];
|
|
@@ -4270,6 +4860,8 @@ export declare class Yy {
|
|
|
4270
4860
|
userdefinedDepth?: boolean | undefined;
|
|
4271
4861
|
inheritLayerDepth?: boolean | undefined;
|
|
4272
4862
|
inheritLayerSettings?: boolean | undefined;
|
|
4863
|
+
inheritVisibility?: boolean | undefined;
|
|
4864
|
+
inheritSubLayers?: boolean | undefined;
|
|
4273
4865
|
gridX?: number | undefined;
|
|
4274
4866
|
gridY?: number | undefined;
|
|
4275
4867
|
layers?: unknown[] | undefined;
|
|
@@ -4308,6 +4900,8 @@ export declare class Yy {
|
|
|
4308
4900
|
userdefinedDepth: z.ZodDefault<z.ZodBoolean>;
|
|
4309
4901
|
inheritLayerDepth: z.ZodDefault<z.ZodBoolean>;
|
|
4310
4902
|
inheritLayerSettings: z.ZodDefault<z.ZodBoolean>;
|
|
4903
|
+
inheritVisibility: z.ZodDefault<z.ZodBoolean>;
|
|
4904
|
+
inheritSubLayers: z.ZodDefault<z.ZodBoolean>;
|
|
4311
4905
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
4312
4906
|
gridY: z.ZodDefault<z.ZodNumber>;
|
|
4313
4907
|
layers: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
@@ -4345,6 +4939,8 @@ export declare class Yy {
|
|
|
4345
4939
|
userdefinedDepth: boolean;
|
|
4346
4940
|
inheritLayerDepth: boolean;
|
|
4347
4941
|
inheritLayerSettings: boolean;
|
|
4942
|
+
inheritVisibility: boolean;
|
|
4943
|
+
inheritSubLayers: boolean;
|
|
4348
4944
|
gridX: number;
|
|
4349
4945
|
gridY: number;
|
|
4350
4946
|
layers: unknown[];
|
|
@@ -4367,6 +4963,8 @@ export declare class Yy {
|
|
|
4367
4963
|
userdefinedDepth?: boolean | undefined;
|
|
4368
4964
|
inheritLayerDepth?: boolean | undefined;
|
|
4369
4965
|
inheritLayerSettings?: boolean | undefined;
|
|
4966
|
+
inheritVisibility?: boolean | undefined;
|
|
4967
|
+
inheritSubLayers?: boolean | undefined;
|
|
4370
4968
|
gridX?: number | undefined;
|
|
4371
4969
|
gridY?: number | undefined;
|
|
4372
4970
|
layers?: unknown[] | undefined;
|
|
@@ -4528,6 +5126,8 @@ export declare class Yy {
|
|
|
4528
5126
|
userdefinedDepth: boolean;
|
|
4529
5127
|
inheritLayerDepth: boolean;
|
|
4530
5128
|
inheritLayerSettings: boolean;
|
|
5129
|
+
inheritVisibility: boolean;
|
|
5130
|
+
inheritSubLayers: boolean;
|
|
4531
5131
|
gridX: number;
|
|
4532
5132
|
gridY: number;
|
|
4533
5133
|
layers: unknown[];
|
|
@@ -4576,6 +5176,8 @@ export declare class Yy {
|
|
|
4576
5176
|
userdefinedDepth: boolean;
|
|
4577
5177
|
inheritLayerDepth: boolean;
|
|
4578
5178
|
inheritLayerSettings: boolean;
|
|
5179
|
+
inheritVisibility: boolean;
|
|
5180
|
+
inheritSubLayers: boolean;
|
|
4579
5181
|
gridX: number;
|
|
4580
5182
|
gridY: number;
|
|
4581
5183
|
layers: unknown[];
|
|
@@ -4657,6 +5259,8 @@ export declare class Yy {
|
|
|
4657
5259
|
userdefinedDepth?: boolean | undefined;
|
|
4658
5260
|
inheritLayerDepth?: boolean | undefined;
|
|
4659
5261
|
inheritLayerSettings?: boolean | undefined;
|
|
5262
|
+
inheritVisibility?: boolean | undefined;
|
|
5263
|
+
inheritSubLayers?: boolean | undefined;
|
|
4660
5264
|
gridX?: number | undefined;
|
|
4661
5265
|
gridY?: number | undefined;
|
|
4662
5266
|
layers?: unknown[] | undefined;
|
|
@@ -4696,6 +5300,8 @@ export declare class Yy {
|
|
|
4696
5300
|
userdefinedDepth?: boolean | undefined;
|
|
4697
5301
|
inheritLayerDepth?: boolean | undefined;
|
|
4698
5302
|
inheritLayerSettings?: boolean | undefined;
|
|
5303
|
+
inheritVisibility?: boolean | undefined;
|
|
5304
|
+
inheritSubLayers?: boolean | undefined;
|
|
4699
5305
|
gridX?: number | undefined;
|
|
4700
5306
|
gridY?: number | undefined;
|
|
4701
5307
|
layers?: unknown[] | undefined;
|