@bscotch/yy 1.0.1 → 1.0.2
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 +368 -296
- package/dist/Yy.d.ts.map +1 -1
- package/dist/types/Yyp.d.ts +230 -155
- package/dist/types/Yyp.d.ts.map +1 -1
- package/dist/types/Yyp.js +5 -2
- package/dist/types/Yyp.js.map +1 -1
- package/package.json +1 -1
package/dist/Yy.d.ts
CHANGED
|
@@ -130,12 +130,6 @@ export declare const yySchemas: {
|
|
|
130
130
|
}>, "many">>;
|
|
131
131
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
132
132
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
133
|
-
/**
|
|
134
|
-
* Stringify an object into a Yy-formatted string,
|
|
135
|
-
* including trailing commas. If a schema is provided,
|
|
136
|
-
* it will be used to validate and populate defaults before
|
|
137
|
-
* stringifying.
|
|
138
|
-
*/
|
|
139
133
|
name: z.ZodString;
|
|
140
134
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
141
135
|
name: z.ZodString;
|
|
@@ -148,6 +142,7 @@ export declare const yySchemas: {
|
|
|
148
142
|
name: string;
|
|
149
143
|
}>>>;
|
|
150
144
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
145
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
151
146
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
152
147
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
153
148
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -157,41 +152,55 @@ export declare const yySchemas: {
|
|
|
157
152
|
directory: z.ZodOptional<z.ZodString>;
|
|
158
153
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
159
154
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
160
|
-
}, "
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
155
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
156
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
157
|
+
name: z.ZodString;
|
|
158
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
159
|
+
name: z.ZodString;
|
|
160
|
+
path: z.ZodString;
|
|
161
|
+
}, "strip", z.ZodTypeAny, {
|
|
166
162
|
path: string;
|
|
167
163
|
name: string;
|
|
168
|
-
}
|
|
169
|
-
isScaled: boolean;
|
|
170
|
-
autocrop: boolean;
|
|
171
|
-
border: number;
|
|
172
|
-
mipsToGenerate: number;
|
|
173
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
174
|
-
compressFormat?: string | undefined;
|
|
175
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
176
|
-
directory?: string | undefined;
|
|
177
|
-
}, {
|
|
178
|
-
name: string;
|
|
179
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
180
|
-
groupParent?: {
|
|
164
|
+
}, {
|
|
181
165
|
path: string;
|
|
182
166
|
name: string;
|
|
183
|
-
}
|
|
184
|
-
isScaled
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
167
|
+
}>>>;
|
|
168
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
169
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
170
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
171
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
172
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
173
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
174
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
175
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
176
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
177
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
178
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
179
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
180
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
181
|
+
name: z.ZodString;
|
|
182
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
183
|
+
name: z.ZodString;
|
|
184
|
+
path: z.ZodString;
|
|
185
|
+
}, "strip", z.ZodTypeAny, {
|
|
186
|
+
path: string;
|
|
187
|
+
name: string;
|
|
188
|
+
}, {
|
|
189
|
+
path: string;
|
|
190
|
+
name: string;
|
|
191
|
+
}>>>;
|
|
192
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
193
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
194
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
195
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
196
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
197
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
198
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
199
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
200
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
201
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
202
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
203
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
195
204
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
196
205
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
197
206
|
CopyToMask: z.ZodString;
|
|
@@ -355,12 +364,6 @@ export declare const yySchemas: {
|
|
|
355
364
|
}>, "many">>;
|
|
356
365
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
357
366
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
358
|
-
/**
|
|
359
|
-
* Stringify an object into a Yy-formatted string,
|
|
360
|
-
* including trailing commas. If a schema is provided,
|
|
361
|
-
* it will be used to validate and populate defaults before
|
|
362
|
-
* stringifying.
|
|
363
|
-
*/
|
|
364
367
|
name: z.ZodString;
|
|
365
368
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
366
369
|
name: z.ZodString;
|
|
@@ -373,6 +376,7 @@ export declare const yySchemas: {
|
|
|
373
376
|
name: string;
|
|
374
377
|
}>>>;
|
|
375
378
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
379
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
376
380
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
377
381
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
378
382
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -382,41 +386,55 @@ export declare const yySchemas: {
|
|
|
382
386
|
directory: z.ZodOptional<z.ZodString>;
|
|
383
387
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
384
388
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
385
|
-
}, "
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
390
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
391
|
+
name: z.ZodString;
|
|
392
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
393
|
+
name: z.ZodString;
|
|
394
|
+
path: z.ZodString;
|
|
395
|
+
}, "strip", z.ZodTypeAny, {
|
|
391
396
|
path: string;
|
|
392
397
|
name: string;
|
|
393
|
-
}
|
|
394
|
-
isScaled: boolean;
|
|
395
|
-
autocrop: boolean;
|
|
396
|
-
border: number;
|
|
397
|
-
mipsToGenerate: number;
|
|
398
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
399
|
-
compressFormat?: string | undefined;
|
|
400
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
401
|
-
directory?: string | undefined;
|
|
402
|
-
}, {
|
|
403
|
-
name: string;
|
|
404
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
405
|
-
groupParent?: {
|
|
398
|
+
}, {
|
|
406
399
|
path: string;
|
|
407
400
|
name: string;
|
|
408
|
-
}
|
|
409
|
-
isScaled
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
401
|
+
}>>>;
|
|
402
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
403
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
404
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
405
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
406
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
407
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
408
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
409
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
410
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
411
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
412
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
413
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
414
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
415
|
+
name: z.ZodString;
|
|
416
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
417
|
+
name: z.ZodString;
|
|
418
|
+
path: z.ZodString;
|
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
path: string;
|
|
421
|
+
name: string;
|
|
422
|
+
}, {
|
|
423
|
+
path: string;
|
|
424
|
+
name: string;
|
|
425
|
+
}>>>;
|
|
426
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
427
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
428
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
429
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
430
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
431
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
432
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
433
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
434
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
435
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
436
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
437
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
420
438
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
421
439
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
422
440
|
CopyToMask: z.ZodString;
|
|
@@ -580,12 +598,6 @@ export declare const yySchemas: {
|
|
|
580
598
|
}>, "many">>;
|
|
581
599
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
582
600
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
583
|
-
/**
|
|
584
|
-
* Stringify an object into a Yy-formatted string,
|
|
585
|
-
* including trailing commas. If a schema is provided,
|
|
586
|
-
* it will be used to validate and populate defaults before
|
|
587
|
-
* stringifying.
|
|
588
|
-
*/
|
|
589
601
|
name: z.ZodString;
|
|
590
602
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
591
603
|
name: z.ZodString;
|
|
@@ -598,6 +610,7 @@ export declare const yySchemas: {
|
|
|
598
610
|
name: string;
|
|
599
611
|
}>>>;
|
|
600
612
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
613
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
601
614
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
602
615
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
603
616
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -607,41 +620,55 @@ export declare const yySchemas: {
|
|
|
607
620
|
directory: z.ZodOptional<z.ZodString>;
|
|
608
621
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
609
622
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
610
|
-
}, "
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
623
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
624
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
625
|
+
name: z.ZodString;
|
|
626
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
627
|
+
name: z.ZodString;
|
|
628
|
+
path: z.ZodString;
|
|
629
|
+
}, "strip", z.ZodTypeAny, {
|
|
616
630
|
path: string;
|
|
617
631
|
name: string;
|
|
618
|
-
}
|
|
619
|
-
isScaled: boolean;
|
|
620
|
-
autocrop: boolean;
|
|
621
|
-
border: number;
|
|
622
|
-
mipsToGenerate: number;
|
|
623
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
624
|
-
compressFormat?: string | undefined;
|
|
625
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
626
|
-
directory?: string | undefined;
|
|
627
|
-
}, {
|
|
628
|
-
name: string;
|
|
629
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
630
|
-
groupParent?: {
|
|
632
|
+
}, {
|
|
631
633
|
path: string;
|
|
632
634
|
name: string;
|
|
633
|
-
}
|
|
634
|
-
isScaled
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
635
|
+
}>>>;
|
|
636
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
637
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
638
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
639
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
640
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
641
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
642
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
643
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
644
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
645
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
646
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
647
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
648
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
649
|
+
name: z.ZodString;
|
|
650
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
651
|
+
name: z.ZodString;
|
|
652
|
+
path: z.ZodString;
|
|
653
|
+
}, "strip", z.ZodTypeAny, {
|
|
654
|
+
path: string;
|
|
655
|
+
name: string;
|
|
656
|
+
}, {
|
|
657
|
+
path: string;
|
|
658
|
+
name: string;
|
|
659
|
+
}>>>;
|
|
660
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
661
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
662
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
663
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
664
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
665
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
666
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
667
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
668
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
669
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
670
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
671
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
645
672
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
646
673
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
647
674
|
CopyToMask: z.ZodString;
|
|
@@ -805,12 +832,6 @@ export declare const yySchemas: {
|
|
|
805
832
|
}>, "many">>;
|
|
806
833
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
807
834
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
808
|
-
/**
|
|
809
|
-
* Stringify an object into a Yy-formatted string,
|
|
810
|
-
* including trailing commas. If a schema is provided,
|
|
811
|
-
* it will be used to validate and populate defaults before
|
|
812
|
-
* stringifying.
|
|
813
|
-
*/
|
|
814
835
|
name: z.ZodString;
|
|
815
836
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
816
837
|
name: z.ZodString;
|
|
@@ -823,6 +844,7 @@ export declare const yySchemas: {
|
|
|
823
844
|
name: string;
|
|
824
845
|
}>>>;
|
|
825
846
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
847
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
826
848
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
827
849
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
828
850
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -832,41 +854,55 @@ export declare const yySchemas: {
|
|
|
832
854
|
directory: z.ZodOptional<z.ZodString>;
|
|
833
855
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
834
856
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
835
|
-
}, "
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
857
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
858
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
859
|
+
name: z.ZodString;
|
|
860
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
861
|
+
name: z.ZodString;
|
|
862
|
+
path: z.ZodString;
|
|
863
|
+
}, "strip", z.ZodTypeAny, {
|
|
841
864
|
path: string;
|
|
842
865
|
name: string;
|
|
843
|
-
}
|
|
844
|
-
isScaled: boolean;
|
|
845
|
-
autocrop: boolean;
|
|
846
|
-
border: number;
|
|
847
|
-
mipsToGenerate: number;
|
|
848
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
849
|
-
compressFormat?: string | undefined;
|
|
850
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
851
|
-
directory?: string | undefined;
|
|
852
|
-
}, {
|
|
853
|
-
name: string;
|
|
854
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
855
|
-
groupParent?: {
|
|
866
|
+
}, {
|
|
856
867
|
path: string;
|
|
857
868
|
name: string;
|
|
858
|
-
}
|
|
859
|
-
isScaled
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
869
|
+
}>>>;
|
|
870
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
871
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
872
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
873
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
874
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
875
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
876
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
877
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
878
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
879
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
880
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
881
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
882
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
883
|
+
name: z.ZodString;
|
|
884
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
885
|
+
name: z.ZodString;
|
|
886
|
+
path: z.ZodString;
|
|
887
|
+
}, "strip", z.ZodTypeAny, {
|
|
888
|
+
path: string;
|
|
889
|
+
name: string;
|
|
890
|
+
}, {
|
|
891
|
+
path: string;
|
|
892
|
+
name: string;
|
|
893
|
+
}>>>;
|
|
894
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
895
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
896
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
897
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
898
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
899
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
900
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
901
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
902
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
903
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
904
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
905
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
870
906
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
871
907
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
872
908
|
CopyToMask: z.ZodString;
|
|
@@ -4731,12 +4767,6 @@ export declare class Yy {
|
|
|
4731
4767
|
}>, "many">>;
|
|
4732
4768
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4733
4769
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4734
|
-
/**
|
|
4735
|
-
* Stringify an object into a Yy-formatted string,
|
|
4736
|
-
* including trailing commas. If a schema is provided,
|
|
4737
|
-
* it will be used to validate and populate defaults before
|
|
4738
|
-
* stringifying.
|
|
4739
|
-
*/
|
|
4740
4770
|
name: z.ZodString;
|
|
4741
4771
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4742
4772
|
name: z.ZodString;
|
|
@@ -4749,6 +4779,7 @@ export declare class Yy {
|
|
|
4749
4779
|
name: string;
|
|
4750
4780
|
}>>>;
|
|
4751
4781
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4782
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4752
4783
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4753
4784
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4754
4785
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4758,41 +4789,55 @@ export declare class Yy {
|
|
|
4758
4789
|
directory: z.ZodOptional<z.ZodString>;
|
|
4759
4790
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4760
4791
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4761
|
-
}, "
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4792
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4793
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4794
|
+
name: z.ZodString;
|
|
4795
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4796
|
+
name: z.ZodString;
|
|
4797
|
+
path: z.ZodString;
|
|
4798
|
+
}, "strip", z.ZodTypeAny, {
|
|
4767
4799
|
path: string;
|
|
4768
4800
|
name: string;
|
|
4769
|
-
}
|
|
4770
|
-
isScaled: boolean;
|
|
4771
|
-
autocrop: boolean;
|
|
4772
|
-
border: number;
|
|
4773
|
-
mipsToGenerate: number;
|
|
4774
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4775
|
-
compressFormat?: string | undefined;
|
|
4776
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
4777
|
-
directory?: string | undefined;
|
|
4778
|
-
}, {
|
|
4779
|
-
name: string;
|
|
4780
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4781
|
-
groupParent?: {
|
|
4801
|
+
}, {
|
|
4782
4802
|
path: string;
|
|
4783
4803
|
name: string;
|
|
4784
|
-
}
|
|
4785
|
-
isScaled
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4804
|
+
}>>>;
|
|
4805
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4806
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4807
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4808
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4809
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
4810
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
4811
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4812
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
4813
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
4814
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4815
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4816
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4817
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4818
|
+
name: z.ZodString;
|
|
4819
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4820
|
+
name: z.ZodString;
|
|
4821
|
+
path: z.ZodString;
|
|
4822
|
+
}, "strip", z.ZodTypeAny, {
|
|
4823
|
+
path: string;
|
|
4824
|
+
name: string;
|
|
4825
|
+
}, {
|
|
4826
|
+
path: string;
|
|
4827
|
+
name: string;
|
|
4828
|
+
}>>>;
|
|
4829
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4830
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4831
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4832
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4833
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
4834
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
4835
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4836
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
4837
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
4838
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4839
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4840
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4796
4841
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4797
4842
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4798
4843
|
CopyToMask: z.ZodString;
|
|
@@ -4956,12 +5001,6 @@ export declare class Yy {
|
|
|
4956
5001
|
}>, "many">>;
|
|
4957
5002
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4958
5003
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4959
|
-
/**
|
|
4960
|
-
* Stringify an object into a Yy-formatted string,
|
|
4961
|
-
* including trailing commas. If a schema is provided,
|
|
4962
|
-
* it will be used to validate and populate defaults before
|
|
4963
|
-
* stringifying.
|
|
4964
|
-
*/
|
|
4965
5004
|
name: z.ZodString;
|
|
4966
5005
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4967
5006
|
name: z.ZodString;
|
|
@@ -4974,6 +5013,7 @@ export declare class Yy {
|
|
|
4974
5013
|
name: string;
|
|
4975
5014
|
}>>>;
|
|
4976
5015
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5016
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4977
5017
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4978
5018
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4979
5019
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4983,41 +5023,55 @@ export declare class Yy {
|
|
|
4983
5023
|
directory: z.ZodOptional<z.ZodString>;
|
|
4984
5024
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4985
5025
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4986
|
-
}, "
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
5026
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5027
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5028
|
+
name: z.ZodString;
|
|
5029
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5030
|
+
name: z.ZodString;
|
|
5031
|
+
path: z.ZodString;
|
|
5032
|
+
}, "strip", z.ZodTypeAny, {
|
|
4992
5033
|
path: string;
|
|
4993
5034
|
name: string;
|
|
4994
|
-
}
|
|
4995
|
-
isScaled: boolean;
|
|
4996
|
-
autocrop: boolean;
|
|
4997
|
-
border: number;
|
|
4998
|
-
mipsToGenerate: number;
|
|
4999
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5000
|
-
compressFormat?: string | undefined;
|
|
5001
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5002
|
-
directory?: string | undefined;
|
|
5003
|
-
}, {
|
|
5004
|
-
name: string;
|
|
5005
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5006
|
-
groupParent?: {
|
|
5035
|
+
}, {
|
|
5007
5036
|
path: string;
|
|
5008
5037
|
name: string;
|
|
5009
|
-
}
|
|
5010
|
-
isScaled
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5038
|
+
}>>>;
|
|
5039
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5040
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5041
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5042
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5043
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5044
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5045
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5046
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5047
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5048
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5049
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5050
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5051
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5052
|
+
name: z.ZodString;
|
|
5053
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5054
|
+
name: z.ZodString;
|
|
5055
|
+
path: z.ZodString;
|
|
5056
|
+
}, "strip", z.ZodTypeAny, {
|
|
5057
|
+
path: string;
|
|
5058
|
+
name: string;
|
|
5059
|
+
}, {
|
|
5060
|
+
path: string;
|
|
5061
|
+
name: string;
|
|
5062
|
+
}>>>;
|
|
5063
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5064
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5065
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5066
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5067
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5068
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5069
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5070
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5071
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5072
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5073
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5074
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5021
5075
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5022
5076
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5023
5077
|
CopyToMask: z.ZodString;
|
|
@@ -5181,12 +5235,6 @@ export declare class Yy {
|
|
|
5181
5235
|
}>, "many">>;
|
|
5182
5236
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5183
5237
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5184
|
-
/**
|
|
5185
|
-
* Stringify an object into a Yy-formatted string,
|
|
5186
|
-
* including trailing commas. If a schema is provided,
|
|
5187
|
-
* it will be used to validate and populate defaults before
|
|
5188
|
-
* stringifying.
|
|
5189
|
-
*/
|
|
5190
5238
|
name: z.ZodString;
|
|
5191
5239
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5192
5240
|
name: z.ZodString;
|
|
@@ -5199,6 +5247,7 @@ export declare class Yy {
|
|
|
5199
5247
|
name: string;
|
|
5200
5248
|
}>>>;
|
|
5201
5249
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5250
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5202
5251
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5203
5252
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5204
5253
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -5208,41 +5257,55 @@ export declare class Yy {
|
|
|
5208
5257
|
directory: z.ZodOptional<z.ZodString>;
|
|
5209
5258
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5210
5259
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5211
|
-
}, "
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5260
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5261
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5262
|
+
name: z.ZodString;
|
|
5263
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5264
|
+
name: z.ZodString;
|
|
5265
|
+
path: z.ZodString;
|
|
5266
|
+
}, "strip", z.ZodTypeAny, {
|
|
5217
5267
|
path: string;
|
|
5218
5268
|
name: string;
|
|
5219
|
-
}
|
|
5220
|
-
isScaled: boolean;
|
|
5221
|
-
autocrop: boolean;
|
|
5222
|
-
border: number;
|
|
5223
|
-
mipsToGenerate: number;
|
|
5224
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5225
|
-
compressFormat?: string | undefined;
|
|
5226
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5227
|
-
directory?: string | undefined;
|
|
5228
|
-
}, {
|
|
5229
|
-
name: string;
|
|
5230
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5231
|
-
groupParent?: {
|
|
5269
|
+
}, {
|
|
5232
5270
|
path: string;
|
|
5233
5271
|
name: string;
|
|
5234
|
-
}
|
|
5235
|
-
isScaled
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5272
|
+
}>>>;
|
|
5273
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5274
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5275
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5276
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5277
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5278
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5279
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5280
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5281
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5282
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5283
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5284
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5285
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5286
|
+
name: z.ZodString;
|
|
5287
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5288
|
+
name: z.ZodString;
|
|
5289
|
+
path: z.ZodString;
|
|
5290
|
+
}, "strip", z.ZodTypeAny, {
|
|
5291
|
+
path: string;
|
|
5292
|
+
name: string;
|
|
5293
|
+
}, {
|
|
5294
|
+
path: string;
|
|
5295
|
+
name: string;
|
|
5296
|
+
}>>>;
|
|
5297
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5298
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5299
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5300
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5301
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5302
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5303
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5304
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5305
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5306
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5307
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5308
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5246
5309
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5247
5310
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5248
5311
|
CopyToMask: z.ZodString;
|
|
@@ -5406,12 +5469,6 @@ export declare class Yy {
|
|
|
5406
5469
|
}>, "many">>;
|
|
5407
5470
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5408
5471
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5409
|
-
/**
|
|
5410
|
-
* Stringify an object into a Yy-formatted string,
|
|
5411
|
-
* including trailing commas. If a schema is provided,
|
|
5412
|
-
* it will be used to validate and populate defaults before
|
|
5413
|
-
* stringifying.
|
|
5414
|
-
*/
|
|
5415
5472
|
name: z.ZodString;
|
|
5416
5473
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5417
5474
|
name: z.ZodString;
|
|
@@ -5424,6 +5481,7 @@ export declare class Yy {
|
|
|
5424
5481
|
name: string;
|
|
5425
5482
|
}>>>;
|
|
5426
5483
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5484
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5427
5485
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5428
5486
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5429
5487
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -5433,41 +5491,55 @@ export declare class Yy {
|
|
|
5433
5491
|
directory: z.ZodOptional<z.ZodString>;
|
|
5434
5492
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5435
5493
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5436
|
-
}, "
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5494
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5495
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5496
|
+
name: z.ZodString;
|
|
5497
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5498
|
+
name: z.ZodString;
|
|
5499
|
+
path: z.ZodString;
|
|
5500
|
+
}, "strip", z.ZodTypeAny, {
|
|
5442
5501
|
path: string;
|
|
5443
5502
|
name: string;
|
|
5444
|
-
}
|
|
5445
|
-
isScaled: boolean;
|
|
5446
|
-
autocrop: boolean;
|
|
5447
|
-
border: number;
|
|
5448
|
-
mipsToGenerate: number;
|
|
5449
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5450
|
-
compressFormat?: string | undefined;
|
|
5451
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5452
|
-
directory?: string | undefined;
|
|
5453
|
-
}, {
|
|
5454
|
-
name: string;
|
|
5455
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5456
|
-
groupParent?: {
|
|
5503
|
+
}, {
|
|
5457
5504
|
path: string;
|
|
5458
5505
|
name: string;
|
|
5459
|
-
}
|
|
5460
|
-
isScaled
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
|
|
5506
|
+
}>>>;
|
|
5507
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5508
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5509
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5510
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5511
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5512
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5513
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5514
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5515
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5516
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5517
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5518
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5519
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5520
|
+
name: z.ZodString;
|
|
5521
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5522
|
+
name: z.ZodString;
|
|
5523
|
+
path: z.ZodString;
|
|
5524
|
+
}, "strip", z.ZodTypeAny, {
|
|
5525
|
+
path: string;
|
|
5526
|
+
name: string;
|
|
5527
|
+
}, {
|
|
5528
|
+
path: string;
|
|
5529
|
+
name: string;
|
|
5530
|
+
}>>>;
|
|
5531
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5532
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5533
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5534
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5535
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5536
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5537
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5538
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5539
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5540
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5541
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5542
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5471
5543
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5472
5544
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5473
5545
|
CopyToMask: z.ZodString;
|