@almadar/core 10.6.0 → 10.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +23 -3
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-CJgreUHY.d.ts → compose-behaviors-9xDCK9IA.d.ts} +1 -1
- package/dist/factory/index.d.ts +3 -3
- package/dist/index.d.ts +7 -7
- package/dist/index.js +24 -4
- package/dist/index.js.map +1 -1
- package/dist/{schema-Cq9DUnFw.d.ts → schema-C3osccoR.d.ts} +287 -1
- package/dist/{trait-BsnLnedq.d.ts → trait-DwxDJ6PP.d.ts} +168 -3
- package/dist/types/index.d.ts +6 -6
- package/dist/types/index.js +24 -4
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CdXuGm8S.d.ts → types-zx68_GSb.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { E as Expression, S as SExpr } from './expression-BUIi9ezJ.js';
|
|
2
|
-
import { T as TraitConfig, k as TraitConfigObject, S as ServiceRef, d as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, l as EventPayloadField, C as ConfigFieldDeclaration, m as ServiceDefinition, a as Trait } from './trait-
|
|
2
|
+
import { T as TraitConfig, k as TraitConfigObject, S as ServiceRef, d as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, l as EventPayloadField, C as ConfigFieldDeclaration, m as ServiceDefinition, a as Trait } from './trait-DwxDJ6PP.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -18473,18 +18473,24 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18473
18473
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18474
18474
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
18475
18475
|
variant: z.ZodOptional<z.ZodString>;
|
|
18476
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
18477
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
18476
18478
|
}, "strip", z.ZodTypeAny, {
|
|
18477
18479
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
18478
18480
|
category: string;
|
|
18479
18481
|
animations?: string[] | undefined;
|
|
18480
18482
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18481
18483
|
variant?: string | undefined;
|
|
18484
|
+
dimension?: "2d" | "3d" | undefined;
|
|
18485
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18482
18486
|
}, {
|
|
18483
18487
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
18484
18488
|
category: string;
|
|
18485
18489
|
animations?: string[] | undefined;
|
|
18486
18490
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18487
18491
|
variant?: string | undefined;
|
|
18492
|
+
dimension?: "2d" | "3d" | undefined;
|
|
18493
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18488
18494
|
}>>;
|
|
18489
18495
|
}, "strip", z.ZodTypeAny, {
|
|
18490
18496
|
name: string;
|
|
@@ -18502,6 +18508,8 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18502
18508
|
animations?: string[] | undefined;
|
|
18503
18509
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18504
18510
|
variant?: string | undefined;
|
|
18511
|
+
dimension?: "2d" | "3d" | undefined;
|
|
18512
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18505
18513
|
} | undefined;
|
|
18506
18514
|
}, {
|
|
18507
18515
|
name: string;
|
|
@@ -18519,6 +18527,8 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18519
18527
|
animations?: string[] | undefined;
|
|
18520
18528
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18521
18529
|
variant?: string | undefined;
|
|
18530
|
+
dimension?: "2d" | "3d" | undefined;
|
|
18531
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18522
18532
|
} | undefined;
|
|
18523
18533
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
18524
18534
|
extends: z.ZodString;
|
|
@@ -19155,18 +19165,24 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19155
19165
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19156
19166
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
19157
19167
|
variant: z.ZodOptional<z.ZodString>;
|
|
19168
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
19169
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
19158
19170
|
}, "strip", z.ZodTypeAny, {
|
|
19159
19171
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
19160
19172
|
category: string;
|
|
19161
19173
|
animations?: string[] | undefined;
|
|
19162
19174
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19163
19175
|
variant?: string | undefined;
|
|
19176
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19177
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19164
19178
|
}, {
|
|
19165
19179
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
19166
19180
|
category: string;
|
|
19167
19181
|
animations?: string[] | undefined;
|
|
19168
19182
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19169
19183
|
variant?: string | undefined;
|
|
19184
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19185
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19170
19186
|
}>>;
|
|
19171
19187
|
}, "strip", z.ZodTypeAny, {
|
|
19172
19188
|
name: string;
|
|
@@ -19184,6 +19200,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19184
19200
|
animations?: string[] | undefined;
|
|
19185
19201
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19186
19202
|
variant?: string | undefined;
|
|
19203
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19204
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19187
19205
|
} | undefined;
|
|
19188
19206
|
}, {
|
|
19189
19207
|
name: string;
|
|
@@ -19201,6 +19219,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19201
19219
|
animations?: string[] | undefined;
|
|
19202
19220
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19203
19221
|
variant?: string | undefined;
|
|
19222
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19223
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19204
19224
|
} | undefined;
|
|
19205
19225
|
}>>;
|
|
19206
19226
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19346,6 +19366,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19346
19366
|
animations?: string[] | undefined;
|
|
19347
19367
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19348
19368
|
variant?: string | undefined;
|
|
19369
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19370
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19349
19371
|
} | undefined;
|
|
19350
19372
|
} | undefined;
|
|
19351
19373
|
}, {
|
|
@@ -19491,6 +19513,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19491
19513
|
animations?: string[] | undefined;
|
|
19492
19514
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19493
19515
|
variant?: string | undefined;
|
|
19516
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19517
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19494
19518
|
} | undefined;
|
|
19495
19519
|
} | undefined;
|
|
19496
19520
|
}>]>, "many">>;
|
|
@@ -19642,6 +19666,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19642
19666
|
animations?: string[] | undefined;
|
|
19643
19667
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19644
19668
|
variant?: string | undefined;
|
|
19669
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19670
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19645
19671
|
} | undefined;
|
|
19646
19672
|
} | undefined;
|
|
19647
19673
|
} | {
|
|
@@ -19799,6 +19825,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19799
19825
|
animations?: string[] | undefined;
|
|
19800
19826
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19801
19827
|
variant?: string | undefined;
|
|
19828
|
+
dimension?: "2d" | "3d" | undefined;
|
|
19829
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19802
19830
|
} | undefined;
|
|
19803
19831
|
} | undefined;
|
|
19804
19832
|
} | {
|
|
@@ -20343,18 +20371,24 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20343
20371
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20344
20372
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
20345
20373
|
variant: z.ZodOptional<z.ZodString>;
|
|
20374
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
20375
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
20346
20376
|
}, "strip", z.ZodTypeAny, {
|
|
20347
20377
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
20348
20378
|
category: string;
|
|
20349
20379
|
animations?: string[] | undefined;
|
|
20350
20380
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20351
20381
|
variant?: string | undefined;
|
|
20382
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20383
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20352
20384
|
}, {
|
|
20353
20385
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
20354
20386
|
category: string;
|
|
20355
20387
|
animations?: string[] | undefined;
|
|
20356
20388
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20357
20389
|
variant?: string | undefined;
|
|
20390
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20391
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20358
20392
|
}>>;
|
|
20359
20393
|
}, "strip", z.ZodTypeAny, {
|
|
20360
20394
|
name: string;
|
|
@@ -20372,6 +20406,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20372
20406
|
animations?: string[] | undefined;
|
|
20373
20407
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20374
20408
|
variant?: string | undefined;
|
|
20409
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20410
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20375
20411
|
} | undefined;
|
|
20376
20412
|
}, {
|
|
20377
20413
|
name: string;
|
|
@@ -20389,6 +20425,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20389
20425
|
animations?: string[] | undefined;
|
|
20390
20426
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20391
20427
|
variant?: string | undefined;
|
|
20428
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20429
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20392
20430
|
} | undefined;
|
|
20393
20431
|
}>>;
|
|
20394
20432
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20534,6 +20572,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20534
20572
|
animations?: string[] | undefined;
|
|
20535
20573
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20536
20574
|
variant?: string | undefined;
|
|
20575
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20576
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20537
20577
|
} | undefined;
|
|
20538
20578
|
} | undefined;
|
|
20539
20579
|
}, {
|
|
@@ -20679,6 +20719,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20679
20719
|
animations?: string[] | undefined;
|
|
20680
20720
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20681
20721
|
variant?: string | undefined;
|
|
20722
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20723
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20682
20724
|
} | undefined;
|
|
20683
20725
|
} | undefined;
|
|
20684
20726
|
}>]>, "many">>;
|
|
@@ -20830,6 +20872,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20830
20872
|
animations?: string[] | undefined;
|
|
20831
20873
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20832
20874
|
variant?: string | undefined;
|
|
20875
|
+
dimension?: "2d" | "3d" | undefined;
|
|
20876
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20833
20877
|
} | undefined;
|
|
20834
20878
|
} | undefined;
|
|
20835
20879
|
} | {
|
|
@@ -20987,6 +21031,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20987
21031
|
animations?: string[] | undefined;
|
|
20988
21032
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20989
21033
|
variant?: string | undefined;
|
|
21034
|
+
dimension?: "2d" | "3d" | undefined;
|
|
21035
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20990
21036
|
} | undefined;
|
|
20991
21037
|
} | undefined;
|
|
20992
21038
|
} | {
|
|
@@ -25445,18 +25491,24 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25445
25491
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25446
25492
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
25447
25493
|
variant: z.ZodOptional<z.ZodString>;
|
|
25494
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
25495
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
25448
25496
|
}, "strip", z.ZodTypeAny, {
|
|
25449
25497
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
25450
25498
|
category: string;
|
|
25451
25499
|
animations?: string[] | undefined;
|
|
25452
25500
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25453
25501
|
variant?: string | undefined;
|
|
25502
|
+
dimension?: "2d" | "3d" | undefined;
|
|
25503
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25454
25504
|
}, {
|
|
25455
25505
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
25456
25506
|
category: string;
|
|
25457
25507
|
animations?: string[] | undefined;
|
|
25458
25508
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25459
25509
|
variant?: string | undefined;
|
|
25510
|
+
dimension?: "2d" | "3d" | undefined;
|
|
25511
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25460
25512
|
}>>;
|
|
25461
25513
|
}, "strip", z.ZodTypeAny, {
|
|
25462
25514
|
name: string;
|
|
@@ -25474,6 +25526,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25474
25526
|
animations?: string[] | undefined;
|
|
25475
25527
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25476
25528
|
variant?: string | undefined;
|
|
25529
|
+
dimension?: "2d" | "3d" | undefined;
|
|
25530
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25477
25531
|
} | undefined;
|
|
25478
25532
|
}, {
|
|
25479
25533
|
name: string;
|
|
@@ -25491,6 +25545,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25491
25545
|
animations?: string[] | undefined;
|
|
25492
25546
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25493
25547
|
variant?: string | undefined;
|
|
25548
|
+
dimension?: "2d" | "3d" | undefined;
|
|
25549
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25494
25550
|
} | undefined;
|
|
25495
25551
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
25496
25552
|
extends: z.ZodString;
|
|
@@ -26008,18 +26064,24 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26008
26064
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26009
26065
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
26010
26066
|
variant: z.ZodOptional<z.ZodString>;
|
|
26067
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
26068
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
26011
26069
|
}, "strip", z.ZodTypeAny, {
|
|
26012
26070
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
26013
26071
|
category: string;
|
|
26014
26072
|
animations?: string[] | undefined;
|
|
26015
26073
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26016
26074
|
variant?: string | undefined;
|
|
26075
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26076
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26017
26077
|
}, {
|
|
26018
26078
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
26019
26079
|
category: string;
|
|
26020
26080
|
animations?: string[] | undefined;
|
|
26021
26081
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26022
26082
|
variant?: string | undefined;
|
|
26083
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26084
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26023
26085
|
}>>;
|
|
26024
26086
|
}, "strip", z.ZodTypeAny, {
|
|
26025
26087
|
name: string;
|
|
@@ -26037,6 +26099,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26037
26099
|
animations?: string[] | undefined;
|
|
26038
26100
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26039
26101
|
variant?: string | undefined;
|
|
26102
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26103
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26040
26104
|
} | undefined;
|
|
26041
26105
|
}, {
|
|
26042
26106
|
name: string;
|
|
@@ -26054,6 +26118,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26054
26118
|
animations?: string[] | undefined;
|
|
26055
26119
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26056
26120
|
variant?: string | undefined;
|
|
26121
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26122
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26057
26123
|
} | undefined;
|
|
26058
26124
|
}>>;
|
|
26059
26125
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26199,6 +26265,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26199
26265
|
animations?: string[] | undefined;
|
|
26200
26266
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26201
26267
|
variant?: string | undefined;
|
|
26268
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26269
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26202
26270
|
} | undefined;
|
|
26203
26271
|
} | undefined;
|
|
26204
26272
|
}, {
|
|
@@ -26344,6 +26412,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26344
26412
|
animations?: string[] | undefined;
|
|
26345
26413
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26346
26414
|
variant?: string | undefined;
|
|
26415
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26416
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26347
26417
|
} | undefined;
|
|
26348
26418
|
} | undefined;
|
|
26349
26419
|
}>]>, "many">;
|
|
@@ -26881,18 +26951,24 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26881
26951
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26882
26952
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
26883
26953
|
variant: z.ZodOptional<z.ZodString>;
|
|
26954
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
26955
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
26884
26956
|
}, "strip", z.ZodTypeAny, {
|
|
26885
26957
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
26886
26958
|
category: string;
|
|
26887
26959
|
animations?: string[] | undefined;
|
|
26888
26960
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26889
26961
|
variant?: string | undefined;
|
|
26962
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26963
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26890
26964
|
}, {
|
|
26891
26965
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
26892
26966
|
category: string;
|
|
26893
26967
|
animations?: string[] | undefined;
|
|
26894
26968
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26895
26969
|
variant?: string | undefined;
|
|
26970
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26971
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26896
26972
|
}>>;
|
|
26897
26973
|
}, "strip", z.ZodTypeAny, {
|
|
26898
26974
|
name: string;
|
|
@@ -26910,6 +26986,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26910
26986
|
animations?: string[] | undefined;
|
|
26911
26987
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26912
26988
|
variant?: string | undefined;
|
|
26989
|
+
dimension?: "2d" | "3d" | undefined;
|
|
26990
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26913
26991
|
} | undefined;
|
|
26914
26992
|
}, {
|
|
26915
26993
|
name: string;
|
|
@@ -26927,6 +27005,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26927
27005
|
animations?: string[] | undefined;
|
|
26928
27006
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26929
27007
|
variant?: string | undefined;
|
|
27008
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27009
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26930
27010
|
} | undefined;
|
|
26931
27011
|
}>>;
|
|
26932
27012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27072,6 +27152,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27072
27152
|
animations?: string[] | undefined;
|
|
27073
27153
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27074
27154
|
variant?: string | undefined;
|
|
27155
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27156
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27075
27157
|
} | undefined;
|
|
27076
27158
|
} | undefined;
|
|
27077
27159
|
}, {
|
|
@@ -27217,6 +27299,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27217
27299
|
animations?: string[] | undefined;
|
|
27218
27300
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27219
27301
|
variant?: string | undefined;
|
|
27302
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27303
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27220
27304
|
} | undefined;
|
|
27221
27305
|
} | undefined;
|
|
27222
27306
|
}>]>, "many">>;
|
|
@@ -27368,6 +27452,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27368
27452
|
animations?: string[] | undefined;
|
|
27369
27453
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27370
27454
|
variant?: string | undefined;
|
|
27455
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27456
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27371
27457
|
} | undefined;
|
|
27372
27458
|
} | undefined;
|
|
27373
27459
|
} | {
|
|
@@ -27525,6 +27611,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27525
27611
|
animations?: string[] | undefined;
|
|
27526
27612
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27527
27613
|
variant?: string | undefined;
|
|
27614
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27615
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27528
27616
|
} | undefined;
|
|
27529
27617
|
} | undefined;
|
|
27530
27618
|
} | {
|
|
@@ -27793,6 +27881,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27793
27881
|
animations?: string[] | undefined;
|
|
27794
27882
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27795
27883
|
variant?: string | undefined;
|
|
27884
|
+
dimension?: "2d" | "3d" | undefined;
|
|
27885
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27796
27886
|
} | undefined;
|
|
27797
27887
|
} | {
|
|
27798
27888
|
extends: string;
|
|
@@ -27945,6 +28035,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27945
28035
|
animations?: string[] | undefined;
|
|
27946
28036
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
27947
28037
|
variant?: string | undefined;
|
|
28038
|
+
dimension?: "2d" | "3d" | undefined;
|
|
28039
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
27948
28040
|
} | undefined;
|
|
27949
28041
|
} | undefined;
|
|
27950
28042
|
} | {
|
|
@@ -28114,6 +28206,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28114
28206
|
animations?: string[] | undefined;
|
|
28115
28207
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
28116
28208
|
variant?: string | undefined;
|
|
28209
|
+
dimension?: "2d" | "3d" | undefined;
|
|
28210
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
28117
28211
|
} | undefined;
|
|
28118
28212
|
} | undefined;
|
|
28119
28213
|
} | {
|
|
@@ -28701,6 +28795,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28701
28795
|
animations?: string[] | undefined;
|
|
28702
28796
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
28703
28797
|
variant?: string | undefined;
|
|
28798
|
+
dimension?: "2d" | "3d" | undefined;
|
|
28799
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
28704
28800
|
} | undefined;
|
|
28705
28801
|
} | {
|
|
28706
28802
|
extends: string;
|
|
@@ -28853,6 +28949,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28853
28949
|
animations?: string[] | undefined;
|
|
28854
28950
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
28855
28951
|
variant?: string | undefined;
|
|
28952
|
+
dimension?: "2d" | "3d" | undefined;
|
|
28953
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
28856
28954
|
} | undefined;
|
|
28857
28955
|
} | undefined;
|
|
28858
28956
|
} | {
|
|
@@ -29022,6 +29120,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29022
29120
|
animations?: string[] | undefined;
|
|
29023
29121
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
29024
29122
|
variant?: string | undefined;
|
|
29123
|
+
dimension?: "2d" | "3d" | undefined;
|
|
29124
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
29025
29125
|
} | undefined;
|
|
29026
29126
|
} | undefined;
|
|
29027
29127
|
} | {
|
|
@@ -33648,18 +33748,24 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33648
33748
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
33649
33749
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
33650
33750
|
variant: z.ZodOptional<z.ZodString>;
|
|
33751
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
33752
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
33651
33753
|
}, "strip", z.ZodTypeAny, {
|
|
33652
33754
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
33653
33755
|
category: string;
|
|
33654
33756
|
animations?: string[] | undefined;
|
|
33655
33757
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33656
33758
|
variant?: string | undefined;
|
|
33759
|
+
dimension?: "2d" | "3d" | undefined;
|
|
33760
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33657
33761
|
}, {
|
|
33658
33762
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
33659
33763
|
category: string;
|
|
33660
33764
|
animations?: string[] | undefined;
|
|
33661
33765
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33662
33766
|
variant?: string | undefined;
|
|
33767
|
+
dimension?: "2d" | "3d" | undefined;
|
|
33768
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33663
33769
|
}>>;
|
|
33664
33770
|
}, "strip", z.ZodTypeAny, {
|
|
33665
33771
|
name: string;
|
|
@@ -33677,6 +33783,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33677
33783
|
animations?: string[] | undefined;
|
|
33678
33784
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33679
33785
|
variant?: string | undefined;
|
|
33786
|
+
dimension?: "2d" | "3d" | undefined;
|
|
33787
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33680
33788
|
} | undefined;
|
|
33681
33789
|
}, {
|
|
33682
33790
|
name: string;
|
|
@@ -33694,6 +33802,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33694
33802
|
animations?: string[] | undefined;
|
|
33695
33803
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33696
33804
|
variant?: string | undefined;
|
|
33805
|
+
dimension?: "2d" | "3d" | undefined;
|
|
33806
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33697
33807
|
} | undefined;
|
|
33698
33808
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
33699
33809
|
extends: z.ZodString;
|
|
@@ -34211,18 +34321,24 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34211
34321
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34212
34322
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
34213
34323
|
variant: z.ZodOptional<z.ZodString>;
|
|
34324
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
34325
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
34214
34326
|
}, "strip", z.ZodTypeAny, {
|
|
34215
34327
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
34216
34328
|
category: string;
|
|
34217
34329
|
animations?: string[] | undefined;
|
|
34218
34330
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34219
34331
|
variant?: string | undefined;
|
|
34332
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34333
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34220
34334
|
}, {
|
|
34221
34335
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
34222
34336
|
category: string;
|
|
34223
34337
|
animations?: string[] | undefined;
|
|
34224
34338
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34225
34339
|
variant?: string | undefined;
|
|
34340
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34341
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34226
34342
|
}>>;
|
|
34227
34343
|
}, "strip", z.ZodTypeAny, {
|
|
34228
34344
|
name: string;
|
|
@@ -34240,6 +34356,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34240
34356
|
animations?: string[] | undefined;
|
|
34241
34357
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34242
34358
|
variant?: string | undefined;
|
|
34359
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34360
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34243
34361
|
} | undefined;
|
|
34244
34362
|
}, {
|
|
34245
34363
|
name: string;
|
|
@@ -34257,6 +34375,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34257
34375
|
animations?: string[] | undefined;
|
|
34258
34376
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34259
34377
|
variant?: string | undefined;
|
|
34378
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34379
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34260
34380
|
} | undefined;
|
|
34261
34381
|
}>>;
|
|
34262
34382
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34402,6 +34522,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34402
34522
|
animations?: string[] | undefined;
|
|
34403
34523
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34404
34524
|
variant?: string | undefined;
|
|
34525
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34526
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34405
34527
|
} | undefined;
|
|
34406
34528
|
} | undefined;
|
|
34407
34529
|
}, {
|
|
@@ -34547,6 +34669,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34547
34669
|
animations?: string[] | undefined;
|
|
34548
34670
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34549
34671
|
variant?: string | undefined;
|
|
34672
|
+
dimension?: "2d" | "3d" | undefined;
|
|
34673
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34550
34674
|
} | undefined;
|
|
34551
34675
|
} | undefined;
|
|
34552
34676
|
}>]>, "many">;
|
|
@@ -35084,18 +35208,24 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35084
35208
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
35085
35209
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
35086
35210
|
variant: z.ZodOptional<z.ZodString>;
|
|
35211
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
35212
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
35087
35213
|
}, "strip", z.ZodTypeAny, {
|
|
35088
35214
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
35089
35215
|
category: string;
|
|
35090
35216
|
animations?: string[] | undefined;
|
|
35091
35217
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35092
35218
|
variant?: string | undefined;
|
|
35219
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35220
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35093
35221
|
}, {
|
|
35094
35222
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
35095
35223
|
category: string;
|
|
35096
35224
|
animations?: string[] | undefined;
|
|
35097
35225
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35098
35226
|
variant?: string | undefined;
|
|
35227
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35228
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35099
35229
|
}>>;
|
|
35100
35230
|
}, "strip", z.ZodTypeAny, {
|
|
35101
35231
|
name: string;
|
|
@@ -35113,6 +35243,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35113
35243
|
animations?: string[] | undefined;
|
|
35114
35244
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35115
35245
|
variant?: string | undefined;
|
|
35246
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35247
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35116
35248
|
} | undefined;
|
|
35117
35249
|
}, {
|
|
35118
35250
|
name: string;
|
|
@@ -35130,6 +35262,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35130
35262
|
animations?: string[] | undefined;
|
|
35131
35263
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35132
35264
|
variant?: string | undefined;
|
|
35265
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35266
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35133
35267
|
} | undefined;
|
|
35134
35268
|
}>>;
|
|
35135
35269
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35275,6 +35409,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35275
35409
|
animations?: string[] | undefined;
|
|
35276
35410
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35277
35411
|
variant?: string | undefined;
|
|
35412
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35413
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35278
35414
|
} | undefined;
|
|
35279
35415
|
} | undefined;
|
|
35280
35416
|
}, {
|
|
@@ -35420,6 +35556,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35420
35556
|
animations?: string[] | undefined;
|
|
35421
35557
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35422
35558
|
variant?: string | undefined;
|
|
35559
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35560
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35423
35561
|
} | undefined;
|
|
35424
35562
|
} | undefined;
|
|
35425
35563
|
}>]>, "many">>;
|
|
@@ -35571,6 +35709,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35571
35709
|
animations?: string[] | undefined;
|
|
35572
35710
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35573
35711
|
variant?: string | undefined;
|
|
35712
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35713
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35574
35714
|
} | undefined;
|
|
35575
35715
|
} | undefined;
|
|
35576
35716
|
} | {
|
|
@@ -35728,6 +35868,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35728
35868
|
animations?: string[] | undefined;
|
|
35729
35869
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35730
35870
|
variant?: string | undefined;
|
|
35871
|
+
dimension?: "2d" | "3d" | undefined;
|
|
35872
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35731
35873
|
} | undefined;
|
|
35732
35874
|
} | undefined;
|
|
35733
35875
|
} | {
|
|
@@ -35996,6 +36138,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35996
36138
|
animations?: string[] | undefined;
|
|
35997
36139
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35998
36140
|
variant?: string | undefined;
|
|
36141
|
+
dimension?: "2d" | "3d" | undefined;
|
|
36142
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35999
36143
|
} | undefined;
|
|
36000
36144
|
} | {
|
|
36001
36145
|
extends: string;
|
|
@@ -36148,6 +36292,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36148
36292
|
animations?: string[] | undefined;
|
|
36149
36293
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36150
36294
|
variant?: string | undefined;
|
|
36295
|
+
dimension?: "2d" | "3d" | undefined;
|
|
36296
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36151
36297
|
} | undefined;
|
|
36152
36298
|
} | undefined;
|
|
36153
36299
|
} | {
|
|
@@ -36317,6 +36463,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36317
36463
|
animations?: string[] | undefined;
|
|
36318
36464
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36319
36465
|
variant?: string | undefined;
|
|
36466
|
+
dimension?: "2d" | "3d" | undefined;
|
|
36467
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36320
36468
|
} | undefined;
|
|
36321
36469
|
} | undefined;
|
|
36322
36470
|
} | {
|
|
@@ -36904,6 +37052,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36904
37052
|
animations?: string[] | undefined;
|
|
36905
37053
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36906
37054
|
variant?: string | undefined;
|
|
37055
|
+
dimension?: "2d" | "3d" | undefined;
|
|
37056
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36907
37057
|
} | undefined;
|
|
36908
37058
|
} | {
|
|
36909
37059
|
extends: string;
|
|
@@ -37056,6 +37206,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37056
37206
|
animations?: string[] | undefined;
|
|
37057
37207
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37058
37208
|
variant?: string | undefined;
|
|
37209
|
+
dimension?: "2d" | "3d" | undefined;
|
|
37210
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37059
37211
|
} | undefined;
|
|
37060
37212
|
} | undefined;
|
|
37061
37213
|
} | {
|
|
@@ -37225,6 +37377,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37225
37377
|
animations?: string[] | undefined;
|
|
37226
37378
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37227
37379
|
variant?: string | undefined;
|
|
37380
|
+
dimension?: "2d" | "3d" | undefined;
|
|
37381
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37228
37382
|
} | undefined;
|
|
37229
37383
|
} | undefined;
|
|
37230
37384
|
} | {
|
|
@@ -41858,18 +42012,24 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41858
42012
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
41859
42013
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
41860
42014
|
variant: z.ZodOptional<z.ZodString>;
|
|
42015
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
42016
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
41861
42017
|
}, "strip", z.ZodTypeAny, {
|
|
41862
42018
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
41863
42019
|
category: string;
|
|
41864
42020
|
animations?: string[] | undefined;
|
|
41865
42021
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41866
42022
|
variant?: string | undefined;
|
|
42023
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42024
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41867
42025
|
}, {
|
|
41868
42026
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
41869
42027
|
category: string;
|
|
41870
42028
|
animations?: string[] | undefined;
|
|
41871
42029
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41872
42030
|
variant?: string | undefined;
|
|
42031
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42032
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41873
42033
|
}>>;
|
|
41874
42034
|
}, "strip", z.ZodTypeAny, {
|
|
41875
42035
|
name: string;
|
|
@@ -41887,6 +42047,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41887
42047
|
animations?: string[] | undefined;
|
|
41888
42048
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41889
42049
|
variant?: string | undefined;
|
|
42050
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42051
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41890
42052
|
} | undefined;
|
|
41891
42053
|
}, {
|
|
41892
42054
|
name: string;
|
|
@@ -41904,6 +42066,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41904
42066
|
animations?: string[] | undefined;
|
|
41905
42067
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41906
42068
|
variant?: string | undefined;
|
|
42069
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42070
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41907
42071
|
} | undefined;
|
|
41908
42072
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
41909
42073
|
extends: z.ZodString;
|
|
@@ -42421,18 +42585,24 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42421
42585
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
42422
42586
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
42423
42587
|
variant: z.ZodOptional<z.ZodString>;
|
|
42588
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
42589
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
42424
42590
|
}, "strip", z.ZodTypeAny, {
|
|
42425
42591
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
42426
42592
|
category: string;
|
|
42427
42593
|
animations?: string[] | undefined;
|
|
42428
42594
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42429
42595
|
variant?: string | undefined;
|
|
42596
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42597
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42430
42598
|
}, {
|
|
42431
42599
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
42432
42600
|
category: string;
|
|
42433
42601
|
animations?: string[] | undefined;
|
|
42434
42602
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42435
42603
|
variant?: string | undefined;
|
|
42604
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42605
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42436
42606
|
}>>;
|
|
42437
42607
|
}, "strip", z.ZodTypeAny, {
|
|
42438
42608
|
name: string;
|
|
@@ -42450,6 +42620,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42450
42620
|
animations?: string[] | undefined;
|
|
42451
42621
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42452
42622
|
variant?: string | undefined;
|
|
42623
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42624
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42453
42625
|
} | undefined;
|
|
42454
42626
|
}, {
|
|
42455
42627
|
name: string;
|
|
@@ -42467,6 +42639,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42467
42639
|
animations?: string[] | undefined;
|
|
42468
42640
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42469
42641
|
variant?: string | undefined;
|
|
42642
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42643
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42470
42644
|
} | undefined;
|
|
42471
42645
|
}>>;
|
|
42472
42646
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42612,6 +42786,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42612
42786
|
animations?: string[] | undefined;
|
|
42613
42787
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42614
42788
|
variant?: string | undefined;
|
|
42789
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42790
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42615
42791
|
} | undefined;
|
|
42616
42792
|
} | undefined;
|
|
42617
42793
|
}, {
|
|
@@ -42757,6 +42933,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42757
42933
|
animations?: string[] | undefined;
|
|
42758
42934
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
42759
42935
|
variant?: string | undefined;
|
|
42936
|
+
dimension?: "2d" | "3d" | undefined;
|
|
42937
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
42760
42938
|
} | undefined;
|
|
42761
42939
|
} | undefined;
|
|
42762
42940
|
}>]>, "many">;
|
|
@@ -43294,18 +43472,24 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43294
43472
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
43295
43473
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
43296
43474
|
variant: z.ZodOptional<z.ZodString>;
|
|
43475
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
43476
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
43297
43477
|
}, "strip", z.ZodTypeAny, {
|
|
43298
43478
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
43299
43479
|
category: string;
|
|
43300
43480
|
animations?: string[] | undefined;
|
|
43301
43481
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43302
43482
|
variant?: string | undefined;
|
|
43483
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43484
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43303
43485
|
}, {
|
|
43304
43486
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
43305
43487
|
category: string;
|
|
43306
43488
|
animations?: string[] | undefined;
|
|
43307
43489
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43308
43490
|
variant?: string | undefined;
|
|
43491
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43492
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43309
43493
|
}>>;
|
|
43310
43494
|
}, "strip", z.ZodTypeAny, {
|
|
43311
43495
|
name: string;
|
|
@@ -43323,6 +43507,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43323
43507
|
animations?: string[] | undefined;
|
|
43324
43508
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43325
43509
|
variant?: string | undefined;
|
|
43510
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43511
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43326
43512
|
} | undefined;
|
|
43327
43513
|
}, {
|
|
43328
43514
|
name: string;
|
|
@@ -43340,6 +43526,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43340
43526
|
animations?: string[] | undefined;
|
|
43341
43527
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43342
43528
|
variant?: string | undefined;
|
|
43529
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43530
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43343
43531
|
} | undefined;
|
|
43344
43532
|
}>>;
|
|
43345
43533
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43485,6 +43673,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43485
43673
|
animations?: string[] | undefined;
|
|
43486
43674
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43487
43675
|
variant?: string | undefined;
|
|
43676
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43677
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43488
43678
|
} | undefined;
|
|
43489
43679
|
} | undefined;
|
|
43490
43680
|
}, {
|
|
@@ -43630,6 +43820,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43630
43820
|
animations?: string[] | undefined;
|
|
43631
43821
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43632
43822
|
variant?: string | undefined;
|
|
43823
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43824
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43633
43825
|
} | undefined;
|
|
43634
43826
|
} | undefined;
|
|
43635
43827
|
}>]>, "many">>;
|
|
@@ -43781,6 +43973,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43781
43973
|
animations?: string[] | undefined;
|
|
43782
43974
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43783
43975
|
variant?: string | undefined;
|
|
43976
|
+
dimension?: "2d" | "3d" | undefined;
|
|
43977
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43784
43978
|
} | undefined;
|
|
43785
43979
|
} | undefined;
|
|
43786
43980
|
} | {
|
|
@@ -43938,6 +44132,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43938
44132
|
animations?: string[] | undefined;
|
|
43939
44133
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
43940
44134
|
variant?: string | undefined;
|
|
44135
|
+
dimension?: "2d" | "3d" | undefined;
|
|
44136
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
43941
44137
|
} | undefined;
|
|
43942
44138
|
} | undefined;
|
|
43943
44139
|
} | {
|
|
@@ -44206,6 +44402,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44206
44402
|
animations?: string[] | undefined;
|
|
44207
44403
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
44208
44404
|
variant?: string | undefined;
|
|
44405
|
+
dimension?: "2d" | "3d" | undefined;
|
|
44406
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
44209
44407
|
} | undefined;
|
|
44210
44408
|
} | {
|
|
44211
44409
|
extends: string;
|
|
@@ -44358,6 +44556,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44358
44556
|
animations?: string[] | undefined;
|
|
44359
44557
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
44360
44558
|
variant?: string | undefined;
|
|
44559
|
+
dimension?: "2d" | "3d" | undefined;
|
|
44560
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
44361
44561
|
} | undefined;
|
|
44362
44562
|
} | undefined;
|
|
44363
44563
|
} | {
|
|
@@ -44527,6 +44727,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44527
44727
|
animations?: string[] | undefined;
|
|
44528
44728
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
44529
44729
|
variant?: string | undefined;
|
|
44730
|
+
dimension?: "2d" | "3d" | undefined;
|
|
44731
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
44530
44732
|
} | undefined;
|
|
44531
44733
|
} | undefined;
|
|
44532
44734
|
} | {
|
|
@@ -45114,6 +45316,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45114
45316
|
animations?: string[] | undefined;
|
|
45115
45317
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45116
45318
|
variant?: string | undefined;
|
|
45319
|
+
dimension?: "2d" | "3d" | undefined;
|
|
45320
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45117
45321
|
} | undefined;
|
|
45118
45322
|
} | {
|
|
45119
45323
|
extends: string;
|
|
@@ -45266,6 +45470,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45266
45470
|
animations?: string[] | undefined;
|
|
45267
45471
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45268
45472
|
variant?: string | undefined;
|
|
45473
|
+
dimension?: "2d" | "3d" | undefined;
|
|
45474
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45269
45475
|
} | undefined;
|
|
45270
45476
|
} | undefined;
|
|
45271
45477
|
} | {
|
|
@@ -45435,6 +45641,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45435
45641
|
animations?: string[] | undefined;
|
|
45436
45642
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45437
45643
|
variant?: string | undefined;
|
|
45644
|
+
dimension?: "2d" | "3d" | undefined;
|
|
45645
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45438
45646
|
} | undefined;
|
|
45439
45647
|
} | undefined;
|
|
45440
45648
|
} | {
|
|
@@ -50405,18 +50613,24 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50405
50613
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50406
50614
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
50407
50615
|
variant: z.ZodOptional<z.ZodString>;
|
|
50616
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
50617
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
50408
50618
|
}, "strip", z.ZodTypeAny, {
|
|
50409
50619
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
50410
50620
|
category: string;
|
|
50411
50621
|
animations?: string[] | undefined;
|
|
50412
50622
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50413
50623
|
variant?: string | undefined;
|
|
50624
|
+
dimension?: "2d" | "3d" | undefined;
|
|
50625
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50414
50626
|
}, {
|
|
50415
50627
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
50416
50628
|
category: string;
|
|
50417
50629
|
animations?: string[] | undefined;
|
|
50418
50630
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50419
50631
|
variant?: string | undefined;
|
|
50632
|
+
dimension?: "2d" | "3d" | undefined;
|
|
50633
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50420
50634
|
}>>;
|
|
50421
50635
|
}, "strip", z.ZodTypeAny, {
|
|
50422
50636
|
name: string;
|
|
@@ -50434,6 +50648,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50434
50648
|
animations?: string[] | undefined;
|
|
50435
50649
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50436
50650
|
variant?: string | undefined;
|
|
50651
|
+
dimension?: "2d" | "3d" | undefined;
|
|
50652
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50437
50653
|
} | undefined;
|
|
50438
50654
|
}, {
|
|
50439
50655
|
name: string;
|
|
@@ -50451,6 +50667,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50451
50667
|
animations?: string[] | undefined;
|
|
50452
50668
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50453
50669
|
variant?: string | undefined;
|
|
50670
|
+
dimension?: "2d" | "3d" | undefined;
|
|
50671
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50454
50672
|
} | undefined;
|
|
50455
50673
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
50456
50674
|
extends: z.ZodString;
|
|
@@ -50968,18 +51186,24 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50968
51186
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50969
51187
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
50970
51188
|
variant: z.ZodOptional<z.ZodString>;
|
|
51189
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
51190
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
50971
51191
|
}, "strip", z.ZodTypeAny, {
|
|
50972
51192
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
50973
51193
|
category: string;
|
|
50974
51194
|
animations?: string[] | undefined;
|
|
50975
51195
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50976
51196
|
variant?: string | undefined;
|
|
51197
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51198
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50977
51199
|
}, {
|
|
50978
51200
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
50979
51201
|
category: string;
|
|
50980
51202
|
animations?: string[] | undefined;
|
|
50981
51203
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50982
51204
|
variant?: string | undefined;
|
|
51205
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51206
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50983
51207
|
}>>;
|
|
50984
51208
|
}, "strip", z.ZodTypeAny, {
|
|
50985
51209
|
name: string;
|
|
@@ -50997,6 +51221,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50997
51221
|
animations?: string[] | undefined;
|
|
50998
51222
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50999
51223
|
variant?: string | undefined;
|
|
51224
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51225
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51000
51226
|
} | undefined;
|
|
51001
51227
|
}, {
|
|
51002
51228
|
name: string;
|
|
@@ -51014,6 +51240,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51014
51240
|
animations?: string[] | undefined;
|
|
51015
51241
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51016
51242
|
variant?: string | undefined;
|
|
51243
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51244
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51017
51245
|
} | undefined;
|
|
51018
51246
|
}>>;
|
|
51019
51247
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51159,6 +51387,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51159
51387
|
animations?: string[] | undefined;
|
|
51160
51388
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51161
51389
|
variant?: string | undefined;
|
|
51390
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51391
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51162
51392
|
} | undefined;
|
|
51163
51393
|
} | undefined;
|
|
51164
51394
|
}, {
|
|
@@ -51304,6 +51534,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51304
51534
|
animations?: string[] | undefined;
|
|
51305
51535
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51306
51536
|
variant?: string | undefined;
|
|
51537
|
+
dimension?: "2d" | "3d" | undefined;
|
|
51538
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51307
51539
|
} | undefined;
|
|
51308
51540
|
} | undefined;
|
|
51309
51541
|
}>]>, "many">;
|
|
@@ -51841,18 +52073,24 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51841
52073
|
animations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51842
52074
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
51843
52075
|
variant: z.ZodOptional<z.ZodString>;
|
|
52076
|
+
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
52077
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
51844
52078
|
}, "strip", z.ZodTypeAny, {
|
|
51845
52079
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
51846
52080
|
category: string;
|
|
51847
52081
|
animations?: string[] | undefined;
|
|
51848
52082
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51849
52083
|
variant?: string | undefined;
|
|
52084
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52085
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51850
52086
|
}, {
|
|
51851
52087
|
role: "player" | "enemy" | "npc" | "item" | "tile" | "projectile" | "effect" | "ui" | "decoration" | "vehicle";
|
|
51852
52088
|
category: string;
|
|
51853
52089
|
animations?: string[] | undefined;
|
|
51854
52090
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51855
52091
|
variant?: string | undefined;
|
|
52092
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52093
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51856
52094
|
}>>;
|
|
51857
52095
|
}, "strip", z.ZodTypeAny, {
|
|
51858
52096
|
name: string;
|
|
@@ -51870,6 +52108,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51870
52108
|
animations?: string[] | undefined;
|
|
51871
52109
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51872
52110
|
variant?: string | undefined;
|
|
52111
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52112
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51873
52113
|
} | undefined;
|
|
51874
52114
|
}, {
|
|
51875
52115
|
name: string;
|
|
@@ -51887,6 +52127,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51887
52127
|
animations?: string[] | undefined;
|
|
51888
52128
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51889
52129
|
variant?: string | undefined;
|
|
52130
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52131
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51890
52132
|
} | undefined;
|
|
51891
52133
|
}>>;
|
|
51892
52134
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52032,6 +52274,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52032
52274
|
animations?: string[] | undefined;
|
|
52033
52275
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52034
52276
|
variant?: string | undefined;
|
|
52277
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52278
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52035
52279
|
} | undefined;
|
|
52036
52280
|
} | undefined;
|
|
52037
52281
|
}, {
|
|
@@ -52177,6 +52421,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52177
52421
|
animations?: string[] | undefined;
|
|
52178
52422
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52179
52423
|
variant?: string | undefined;
|
|
52424
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52425
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52180
52426
|
} | undefined;
|
|
52181
52427
|
} | undefined;
|
|
52182
52428
|
}>]>, "many">>;
|
|
@@ -52328,6 +52574,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52328
52574
|
animations?: string[] | undefined;
|
|
52329
52575
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52330
52576
|
variant?: string | undefined;
|
|
52577
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52578
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52331
52579
|
} | undefined;
|
|
52332
52580
|
} | undefined;
|
|
52333
52581
|
} | {
|
|
@@ -52485,6 +52733,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52485
52733
|
animations?: string[] | undefined;
|
|
52486
52734
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52487
52735
|
variant?: string | undefined;
|
|
52736
|
+
dimension?: "2d" | "3d" | undefined;
|
|
52737
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52488
52738
|
} | undefined;
|
|
52489
52739
|
} | undefined;
|
|
52490
52740
|
} | {
|
|
@@ -52753,6 +53003,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52753
53003
|
animations?: string[] | undefined;
|
|
52754
53004
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52755
53005
|
variant?: string | undefined;
|
|
53006
|
+
dimension?: "2d" | "3d" | undefined;
|
|
53007
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52756
53008
|
} | undefined;
|
|
52757
53009
|
} | {
|
|
52758
53010
|
extends: string;
|
|
@@ -52905,6 +53157,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52905
53157
|
animations?: string[] | undefined;
|
|
52906
53158
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52907
53159
|
variant?: string | undefined;
|
|
53160
|
+
dimension?: "2d" | "3d" | undefined;
|
|
53161
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52908
53162
|
} | undefined;
|
|
52909
53163
|
} | undefined;
|
|
52910
53164
|
} | {
|
|
@@ -53074,6 +53328,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53074
53328
|
animations?: string[] | undefined;
|
|
53075
53329
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53076
53330
|
variant?: string | undefined;
|
|
53331
|
+
dimension?: "2d" | "3d" | undefined;
|
|
53332
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53077
53333
|
} | undefined;
|
|
53078
53334
|
} | undefined;
|
|
53079
53335
|
} | {
|
|
@@ -53661,6 +53917,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53661
53917
|
animations?: string[] | undefined;
|
|
53662
53918
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53663
53919
|
variant?: string | undefined;
|
|
53920
|
+
dimension?: "2d" | "3d" | undefined;
|
|
53921
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53664
53922
|
} | undefined;
|
|
53665
53923
|
} | {
|
|
53666
53924
|
extends: string;
|
|
@@ -53813,6 +54071,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53813
54071
|
animations?: string[] | undefined;
|
|
53814
54072
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53815
54073
|
variant?: string | undefined;
|
|
54074
|
+
dimension?: "2d" | "3d" | undefined;
|
|
54075
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53816
54076
|
} | undefined;
|
|
53817
54077
|
} | undefined;
|
|
53818
54078
|
} | {
|
|
@@ -53982,6 +54242,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53982
54242
|
animations?: string[] | undefined;
|
|
53983
54243
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53984
54244
|
variant?: string | undefined;
|
|
54245
|
+
dimension?: "2d" | "3d" | undefined;
|
|
54246
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53985
54247
|
} | undefined;
|
|
53986
54248
|
} | undefined;
|
|
53987
54249
|
} | {
|
|
@@ -54791,6 +55053,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54791
55053
|
animations?: string[] | undefined;
|
|
54792
55054
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54793
55055
|
variant?: string | undefined;
|
|
55056
|
+
dimension?: "2d" | "3d" | undefined;
|
|
55057
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
54794
55058
|
} | undefined;
|
|
54795
55059
|
} | {
|
|
54796
55060
|
extends: string;
|
|
@@ -54943,6 +55207,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54943
55207
|
animations?: string[] | undefined;
|
|
54944
55208
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54945
55209
|
variant?: string | undefined;
|
|
55210
|
+
dimension?: "2d" | "3d" | undefined;
|
|
55211
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
54946
55212
|
} | undefined;
|
|
54947
55213
|
} | undefined;
|
|
54948
55214
|
} | {
|
|
@@ -55112,6 +55378,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55112
55378
|
animations?: string[] | undefined;
|
|
55113
55379
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55114
55380
|
variant?: string | undefined;
|
|
55381
|
+
dimension?: "2d" | "3d" | undefined;
|
|
55382
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55115
55383
|
} | undefined;
|
|
55116
55384
|
} | undefined;
|
|
55117
55385
|
} | {
|
|
@@ -55801,6 +56069,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55801
56069
|
animations?: string[] | undefined;
|
|
55802
56070
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55803
56071
|
variant?: string | undefined;
|
|
56072
|
+
dimension?: "2d" | "3d" | undefined;
|
|
56073
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55804
56074
|
} | undefined;
|
|
55805
56075
|
} | {
|
|
55806
56076
|
extends: string;
|
|
@@ -55953,6 +56223,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55953
56223
|
animations?: string[] | undefined;
|
|
55954
56224
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55955
56225
|
variant?: string | undefined;
|
|
56226
|
+
dimension?: "2d" | "3d" | undefined;
|
|
56227
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55956
56228
|
} | undefined;
|
|
55957
56229
|
} | undefined;
|
|
55958
56230
|
} | {
|
|
@@ -56122,6 +56394,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56122
56394
|
animations?: string[] | undefined;
|
|
56123
56395
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
56124
56396
|
variant?: string | undefined;
|
|
56397
|
+
dimension?: "2d" | "3d" | undefined;
|
|
56398
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
56125
56399
|
} | undefined;
|
|
56126
56400
|
} | undefined;
|
|
56127
56401
|
} | {
|
|
@@ -56876,6 +57150,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
56876
57150
|
animations?: string[] | undefined;
|
|
56877
57151
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
56878
57152
|
variant?: string | undefined;
|
|
57153
|
+
dimension?: "2d" | "3d" | undefined;
|
|
57154
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
56879
57155
|
} | undefined;
|
|
56880
57156
|
} | {
|
|
56881
57157
|
extends: string;
|
|
@@ -57028,6 +57304,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57028
57304
|
animations?: string[] | undefined;
|
|
57029
57305
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
57030
57306
|
variant?: string | undefined;
|
|
57307
|
+
dimension?: "2d" | "3d" | undefined;
|
|
57308
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
57031
57309
|
} | undefined;
|
|
57032
57310
|
} | undefined;
|
|
57033
57311
|
} | {
|
|
@@ -57197,6 +57475,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57197
57475
|
animations?: string[] | undefined;
|
|
57198
57476
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
57199
57477
|
variant?: string | undefined;
|
|
57478
|
+
dimension?: "2d" | "3d" | undefined;
|
|
57479
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
57200
57480
|
} | undefined;
|
|
57201
57481
|
} | undefined;
|
|
57202
57482
|
} | {
|
|
@@ -57886,6 +58166,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57886
58166
|
animations?: string[] | undefined;
|
|
57887
58167
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
57888
58168
|
variant?: string | undefined;
|
|
58169
|
+
dimension?: "2d" | "3d" | undefined;
|
|
58170
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
57889
58171
|
} | undefined;
|
|
57890
58172
|
} | {
|
|
57891
58173
|
extends: string;
|
|
@@ -58038,6 +58320,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58038
58320
|
animations?: string[] | undefined;
|
|
58039
58321
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
58040
58322
|
variant?: string | undefined;
|
|
58323
|
+
dimension?: "2d" | "3d" | undefined;
|
|
58324
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
58041
58325
|
} | undefined;
|
|
58042
58326
|
} | undefined;
|
|
58043
58327
|
} | {
|
|
@@ -58207,6 +58491,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58207
58491
|
animations?: string[] | undefined;
|
|
58208
58492
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
58209
58493
|
variant?: string | undefined;
|
|
58494
|
+
dimension?: "2d" | "3d" | undefined;
|
|
58495
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
58210
58496
|
} | undefined;
|
|
58211
58497
|
} | undefined;
|
|
58212
58498
|
} | {
|