@almadar/core 10.88.0 → 10.90.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 +9 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DMA97JxX.d.ts → effect-7jQQxiIt.d.ts} +58 -42
- package/dist/{entityAccess-B5_Y9zF5.d.ts → entityAccess-CpHfCQA3.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +467 -9
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +9 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.js +6 -0
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-CYE40P_7.d.ts → index-BresfHJy.d.ts} +63 -6
- package/dist/index.d.ts +34 -12
- package/dist/index.js +582 -17
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +54 -5
- package/dist/mock/index.js +33 -3
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1160 -14
- package/dist/patterns/index.js +545 -12
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +72 -1
- package/dist/patterns/patterns-registry.json +461 -8
- package/dist/patterns/registry.json +461 -8
- package/dist/patterns/services-registry.json +150 -64
- package/dist/{schema-ex9koAoK.d.ts → schema-C52juBr8.d.ts} +500 -325
- package/dist/{trait-BJAX5TJK.d.ts → trait-CFiL1YUN.d.ts} +98 -55
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +11 -6
- package/dist/types/index.js.map +1 -1
- package/dist/{types-kHQhEEXQ.d.ts → types-BgC8ETnl.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, D as DeclaredTraitConfig, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitEntityField, P as PayloadField, f as TraitTypeParamDef, g as TraitConfigValue, h as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, D as DeclaredTraitConfig, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitEntityField, P as PayloadField, f as TraitTypeParamDef, g as TraitConfigValue, h as Trait } from './trait-CFiL1YUN.js';
|
|
2
2
|
import { J as JsonValue, R as RuntimeValue } from './json-D8gmyK3l.js';
|
|
3
3
|
import { E as Expression, S as SExpr } from './expression-WfTp2arD.js';
|
|
4
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, h as ServiceDefinition, I as IdentityLedger } from './effect-
|
|
4
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, h as ServiceDefinition, I as IdentityLedger } from './effect-7jQQxiIt.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -9428,14 +9428,17 @@ type ThemeRef = ThemeDefinition | string;
|
|
|
9428
9428
|
* `icon`/`badge`/`children` are optional shaping knobs an author may set on a
|
|
9429
9429
|
* call-site override. The `@pages` render sigil yields the minimal
|
|
9430
9430
|
* `{ href, label }` form (one per inline page: `href = page.path`,
|
|
9431
|
-
* `label = page.name`), which is assignable to this type.
|
|
9431
|
+
* `label = page.name`), which is assignable to this type. `children` nests
|
|
9432
|
+
* one level deep — a NavItem with children renders as a group header that
|
|
9433
|
+
* expands its children on click rather than navigating directly; a further
|
|
9434
|
+
* nested `children` on those entries is not rendered (depth 2 only).
|
|
9432
9435
|
*/
|
|
9433
9436
|
interface NavItem {
|
|
9434
9437
|
label: string;
|
|
9435
9438
|
href: string;
|
|
9436
9439
|
icon?: string;
|
|
9437
9440
|
badge?: string;
|
|
9438
|
-
children?:
|
|
9441
|
+
children?: NavItem[];
|
|
9439
9442
|
}
|
|
9440
9443
|
/**
|
|
9441
9444
|
* NavStackEntry - one level of the client-session navigation stack an
|
|
@@ -18709,7 +18712,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18709
18712
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
18710
18713
|
variant: z.ZodOptional<z.ZodString>;
|
|
18711
18714
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
18712
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
18715
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
18713
18716
|
}, "strip", z.ZodTypeAny, {
|
|
18714
18717
|
role: string;
|
|
18715
18718
|
category: string;
|
|
@@ -18717,7 +18720,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18717
18720
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18718
18721
|
variant?: string | undefined;
|
|
18719
18722
|
dimension?: "2d" | "3d" | undefined;
|
|
18720
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18723
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
18721
18724
|
}, {
|
|
18722
18725
|
role: string;
|
|
18723
18726
|
category: string;
|
|
@@ -18725,7 +18728,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18725
18728
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18726
18729
|
variant?: string | undefined;
|
|
18727
18730
|
dimension?: "2d" | "3d" | undefined;
|
|
18728
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18731
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
18729
18732
|
}>>;
|
|
18730
18733
|
}, "strip", z.ZodTypeAny, {
|
|
18731
18734
|
name: string;
|
|
@@ -18757,7 +18760,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18757
18760
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18758
18761
|
variant?: string | undefined;
|
|
18759
18762
|
dimension?: "2d" | "3d" | undefined;
|
|
18760
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18763
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
18761
18764
|
} | undefined;
|
|
18762
18765
|
}, {
|
|
18763
18766
|
name: string;
|
|
@@ -18789,7 +18792,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18789
18792
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
18790
18793
|
variant?: string | undefined;
|
|
18791
18794
|
dimension?: "2d" | "3d" | undefined;
|
|
18792
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
18795
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
18793
18796
|
} | undefined;
|
|
18794
18797
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
18795
18798
|
extends: z.ZodString;
|
|
@@ -18996,6 +18999,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18996
18999
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
18997
19000
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18998
19001
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
19002
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
18999
19003
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
19000
19004
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
19001
19005
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -19493,7 +19497,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19493
19497
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
19494
19498
|
variant: z.ZodOptional<z.ZodString>;
|
|
19495
19499
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
19496
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
19500
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
19497
19501
|
}, "strip", z.ZodTypeAny, {
|
|
19498
19502
|
role: string;
|
|
19499
19503
|
category: string;
|
|
@@ -19501,7 +19505,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19501
19505
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19502
19506
|
variant?: string | undefined;
|
|
19503
19507
|
dimension?: "2d" | "3d" | undefined;
|
|
19504
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19508
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19505
19509
|
}, {
|
|
19506
19510
|
role: string;
|
|
19507
19511
|
category: string;
|
|
@@ -19509,7 +19513,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19509
19513
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19510
19514
|
variant?: string | undefined;
|
|
19511
19515
|
dimension?: "2d" | "3d" | undefined;
|
|
19512
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19516
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19513
19517
|
}>>;
|
|
19514
19518
|
}, "strip", z.ZodTypeAny, {
|
|
19515
19519
|
name: string;
|
|
@@ -19541,7 +19545,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19541
19545
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19542
19546
|
variant?: string | undefined;
|
|
19543
19547
|
dimension?: "2d" | "3d" | undefined;
|
|
19544
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19548
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19545
19549
|
} | undefined;
|
|
19546
19550
|
}, {
|
|
19547
19551
|
name: string;
|
|
@@ -19573,7 +19577,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19573
19577
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19574
19578
|
variant?: string | undefined;
|
|
19575
19579
|
dimension?: "2d" | "3d" | undefined;
|
|
19576
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19580
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19577
19581
|
} | undefined;
|
|
19578
19582
|
}>>;
|
|
19579
19583
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -19699,6 +19703,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19699
19703
|
}[] | undefined;
|
|
19700
19704
|
entityBindingDescription?: string | undefined;
|
|
19701
19705
|
entityBindingSynonyms?: string | undefined;
|
|
19706
|
+
local?: boolean | undefined;
|
|
19702
19707
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
19703
19708
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
19704
19709
|
requiredFields?: {
|
|
@@ -19755,7 +19760,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19755
19760
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19756
19761
|
variant?: string | undefined;
|
|
19757
19762
|
dimension?: "2d" | "3d" | undefined;
|
|
19758
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19763
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19759
19764
|
} | undefined;
|
|
19760
19765
|
} | undefined;
|
|
19761
19766
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -19881,6 +19886,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19881
19886
|
}[] | undefined;
|
|
19882
19887
|
entityBindingDescription?: string | undefined;
|
|
19883
19888
|
entityBindingSynonyms?: string | undefined;
|
|
19889
|
+
local?: boolean | undefined;
|
|
19884
19890
|
entityRefIds?: Record<string, string> | undefined;
|
|
19885
19891
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
19886
19892
|
requiredFields?: {
|
|
@@ -19937,7 +19943,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19937
19943
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
19938
19944
|
variant?: string | undefined;
|
|
19939
19945
|
dimension?: "2d" | "3d" | undefined;
|
|
19940
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
19946
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
19941
19947
|
} | undefined;
|
|
19942
19948
|
} | undefined;
|
|
19943
19949
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -20206,6 +20212,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20206
20212
|
}[] | undefined;
|
|
20207
20213
|
entityBindingDescription?: string | undefined;
|
|
20208
20214
|
entityBindingSynonyms?: string | undefined;
|
|
20215
|
+
local?: boolean | undefined;
|
|
20209
20216
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
20210
20217
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
20211
20218
|
requiredFields?: {
|
|
@@ -20262,7 +20269,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20262
20269
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20263
20270
|
variant?: string | undefined;
|
|
20264
20271
|
dimension?: "2d" | "3d" | undefined;
|
|
20265
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20272
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
20266
20273
|
} | undefined;
|
|
20267
20274
|
} | undefined;
|
|
20268
20275
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -20430,6 +20437,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20430
20437
|
}[] | undefined;
|
|
20431
20438
|
entityBindingDescription?: string | undefined;
|
|
20432
20439
|
entityBindingSynonyms?: string | undefined;
|
|
20440
|
+
local?: boolean | undefined;
|
|
20433
20441
|
entityRefIds?: Record<string, string> | undefined;
|
|
20434
20442
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
20435
20443
|
requiredFields?: {
|
|
@@ -20486,7 +20494,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20486
20494
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20487
20495
|
variant?: string | undefined;
|
|
20488
20496
|
dimension?: "2d" | "3d" | undefined;
|
|
20489
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20497
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
20490
20498
|
} | undefined;
|
|
20491
20499
|
} | undefined;
|
|
20492
20500
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -20654,6 +20662,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20654
20662
|
}[] | undefined;
|
|
20655
20663
|
entityBindingDescription?: string | undefined;
|
|
20656
20664
|
entityBindingSynonyms?: string | undefined;
|
|
20665
|
+
local?: boolean | undefined;
|
|
20657
20666
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
20658
20667
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
20659
20668
|
requiredFields?: {
|
|
@@ -20710,7 +20719,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20710
20719
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20711
20720
|
variant?: string | undefined;
|
|
20712
20721
|
dimension?: "2d" | "3d" | undefined;
|
|
20713
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20722
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
20714
20723
|
} | undefined;
|
|
20715
20724
|
} | undefined;
|
|
20716
20725
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -20878,6 +20887,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20878
20887
|
}[] | undefined;
|
|
20879
20888
|
entityBindingDescription?: string | undefined;
|
|
20880
20889
|
entityBindingSynonyms?: string | undefined;
|
|
20890
|
+
local?: boolean | undefined;
|
|
20881
20891
|
entityRefIds?: Record<string, string> | undefined;
|
|
20882
20892
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
20883
20893
|
requiredFields?: {
|
|
@@ -20934,7 +20944,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20934
20944
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
20935
20945
|
variant?: string | undefined;
|
|
20936
20946
|
dimension?: "2d" | "3d" | undefined;
|
|
20937
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
20947
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
20938
20948
|
} | undefined;
|
|
20939
20949
|
} | undefined;
|
|
20940
20950
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -20978,6 +20988,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20978
20988
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
20979
20989
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20980
20990
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
20991
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
20981
20992
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
20982
20993
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
20983
20994
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -21475,7 +21486,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21475
21486
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
21476
21487
|
variant: z.ZodOptional<z.ZodString>;
|
|
21477
21488
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
21478
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
21489
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
21479
21490
|
}, "strip", z.ZodTypeAny, {
|
|
21480
21491
|
role: string;
|
|
21481
21492
|
category: string;
|
|
@@ -21483,7 +21494,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21483
21494
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21484
21495
|
variant?: string | undefined;
|
|
21485
21496
|
dimension?: "2d" | "3d" | undefined;
|
|
21486
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21497
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21487
21498
|
}, {
|
|
21488
21499
|
role: string;
|
|
21489
21500
|
category: string;
|
|
@@ -21491,7 +21502,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21491
21502
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21492
21503
|
variant?: string | undefined;
|
|
21493
21504
|
dimension?: "2d" | "3d" | undefined;
|
|
21494
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21505
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21495
21506
|
}>>;
|
|
21496
21507
|
}, "strip", z.ZodTypeAny, {
|
|
21497
21508
|
name: string;
|
|
@@ -21523,7 +21534,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21523
21534
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21524
21535
|
variant?: string | undefined;
|
|
21525
21536
|
dimension?: "2d" | "3d" | undefined;
|
|
21526
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21537
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21527
21538
|
} | undefined;
|
|
21528
21539
|
}, {
|
|
21529
21540
|
name: string;
|
|
@@ -21555,7 +21566,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21555
21566
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21556
21567
|
variant?: string | undefined;
|
|
21557
21568
|
dimension?: "2d" | "3d" | undefined;
|
|
21558
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21569
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21559
21570
|
} | undefined;
|
|
21560
21571
|
}>>;
|
|
21561
21572
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -21681,6 +21692,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21681
21692
|
}[] | undefined;
|
|
21682
21693
|
entityBindingDescription?: string | undefined;
|
|
21683
21694
|
entityBindingSynonyms?: string | undefined;
|
|
21695
|
+
local?: boolean | undefined;
|
|
21684
21696
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
21685
21697
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
21686
21698
|
requiredFields?: {
|
|
@@ -21737,7 +21749,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21737
21749
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21738
21750
|
variant?: string | undefined;
|
|
21739
21751
|
dimension?: "2d" | "3d" | undefined;
|
|
21740
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21752
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21741
21753
|
} | undefined;
|
|
21742
21754
|
} | undefined;
|
|
21743
21755
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -21863,6 +21875,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21863
21875
|
}[] | undefined;
|
|
21864
21876
|
entityBindingDescription?: string | undefined;
|
|
21865
21877
|
entityBindingSynonyms?: string | undefined;
|
|
21878
|
+
local?: boolean | undefined;
|
|
21866
21879
|
entityRefIds?: Record<string, string> | undefined;
|
|
21867
21880
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
21868
21881
|
requiredFields?: {
|
|
@@ -21919,7 +21932,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
21919
21932
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
21920
21933
|
variant?: string | undefined;
|
|
21921
21934
|
dimension?: "2d" | "3d" | undefined;
|
|
21922
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
21935
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
21923
21936
|
} | undefined;
|
|
21924
21937
|
} | undefined;
|
|
21925
21938
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -22052,6 +22065,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22052
22065
|
}[] | undefined;
|
|
22053
22066
|
entityBindingDescription?: string | undefined;
|
|
22054
22067
|
entityBindingSynonyms?: string | undefined;
|
|
22068
|
+
local?: boolean | undefined;
|
|
22055
22069
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
22056
22070
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
22057
22071
|
requiredFields?: {
|
|
@@ -22108,7 +22122,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22108
22122
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
22109
22123
|
variant?: string | undefined;
|
|
22110
22124
|
dimension?: "2d" | "3d" | undefined;
|
|
22111
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
22125
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
22112
22126
|
} | undefined;
|
|
22113
22127
|
} | undefined;
|
|
22114
22128
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -22273,6 +22287,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22273
22287
|
}[] | undefined;
|
|
22274
22288
|
entityBindingDescription?: string | undefined;
|
|
22275
22289
|
entityBindingSynonyms?: string | undefined;
|
|
22290
|
+
local?: boolean | undefined;
|
|
22276
22291
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
22277
22292
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
22278
22293
|
requiredFields?: {
|
|
@@ -22329,7 +22344,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22329
22344
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
22330
22345
|
variant?: string | undefined;
|
|
22331
22346
|
dimension?: "2d" | "3d" | undefined;
|
|
22332
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
22347
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
22333
22348
|
} | undefined;
|
|
22334
22349
|
} | undefined;
|
|
22335
22350
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -22467,6 +22482,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22467
22482
|
}[] | undefined;
|
|
22468
22483
|
entityBindingDescription?: string | undefined;
|
|
22469
22484
|
entityBindingSynonyms?: string | undefined;
|
|
22485
|
+
local?: boolean | undefined;
|
|
22470
22486
|
entityRefIds?: Record<string, string> | undefined;
|
|
22471
22487
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
22472
22488
|
requiredFields?: {
|
|
@@ -22523,7 +22539,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22523
22539
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
22524
22540
|
variant?: string | undefined;
|
|
22525
22541
|
dimension?: "2d" | "3d" | undefined;
|
|
22526
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
22542
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
22527
22543
|
} | undefined;
|
|
22528
22544
|
} | undefined;
|
|
22529
22545
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -22688,6 +22704,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22688
22704
|
}[] | undefined;
|
|
22689
22705
|
entityBindingDescription?: string | undefined;
|
|
22690
22706
|
entityBindingSynonyms?: string | undefined;
|
|
22707
|
+
local?: boolean | undefined;
|
|
22691
22708
|
entityRefIds?: Record<string, string> | undefined;
|
|
22692
22709
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
22693
22710
|
requiredFields?: {
|
|
@@ -22744,7 +22761,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
22744
22761
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
22745
22762
|
variant?: string | undefined;
|
|
22746
22763
|
dimension?: "2d" | "3d" | undefined;
|
|
22747
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
22764
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
22748
22765
|
} | undefined;
|
|
22749
22766
|
} | undefined;
|
|
22750
22767
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -22873,6 +22890,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22873
22890
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
22874
22891
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
22875
22892
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
22893
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
22876
22894
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
22877
22895
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
22878
22896
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -23370,7 +23388,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23370
23388
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
23371
23389
|
variant: z.ZodOptional<z.ZodString>;
|
|
23372
23390
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
23373
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
23391
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
23374
23392
|
}, "strip", z.ZodTypeAny, {
|
|
23375
23393
|
role: string;
|
|
23376
23394
|
category: string;
|
|
@@ -23378,7 +23396,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23378
23396
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23379
23397
|
variant?: string | undefined;
|
|
23380
23398
|
dimension?: "2d" | "3d" | undefined;
|
|
23381
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23399
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23382
23400
|
}, {
|
|
23383
23401
|
role: string;
|
|
23384
23402
|
category: string;
|
|
@@ -23386,7 +23404,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23386
23404
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23387
23405
|
variant?: string | undefined;
|
|
23388
23406
|
dimension?: "2d" | "3d" | undefined;
|
|
23389
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23407
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23390
23408
|
}>>;
|
|
23391
23409
|
}, "strip", z.ZodTypeAny, {
|
|
23392
23410
|
name: string;
|
|
@@ -23418,7 +23436,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23418
23436
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23419
23437
|
variant?: string | undefined;
|
|
23420
23438
|
dimension?: "2d" | "3d" | undefined;
|
|
23421
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23439
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23422
23440
|
} | undefined;
|
|
23423
23441
|
}, {
|
|
23424
23442
|
name: string;
|
|
@@ -23450,7 +23468,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23450
23468
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23451
23469
|
variant?: string | undefined;
|
|
23452
23470
|
dimension?: "2d" | "3d" | undefined;
|
|
23453
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23471
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23454
23472
|
} | undefined;
|
|
23455
23473
|
}>>;
|
|
23456
23474
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -23576,6 +23594,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23576
23594
|
}[] | undefined;
|
|
23577
23595
|
entityBindingDescription?: string | undefined;
|
|
23578
23596
|
entityBindingSynonyms?: string | undefined;
|
|
23597
|
+
local?: boolean | undefined;
|
|
23579
23598
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
23580
23599
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
23581
23600
|
requiredFields?: {
|
|
@@ -23632,7 +23651,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23632
23651
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23633
23652
|
variant?: string | undefined;
|
|
23634
23653
|
dimension?: "2d" | "3d" | undefined;
|
|
23635
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23654
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23636
23655
|
} | undefined;
|
|
23637
23656
|
} | undefined;
|
|
23638
23657
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -23758,6 +23777,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23758
23777
|
}[] | undefined;
|
|
23759
23778
|
entityBindingDescription?: string | undefined;
|
|
23760
23779
|
entityBindingSynonyms?: string | undefined;
|
|
23780
|
+
local?: boolean | undefined;
|
|
23761
23781
|
entityRefIds?: Record<string, string> | undefined;
|
|
23762
23782
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
23763
23783
|
requiredFields?: {
|
|
@@ -23814,7 +23834,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23814
23834
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
23815
23835
|
variant?: string | undefined;
|
|
23816
23836
|
dimension?: "2d" | "3d" | undefined;
|
|
23817
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
23837
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
23818
23838
|
} | undefined;
|
|
23819
23839
|
} | undefined;
|
|
23820
23840
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -24083,6 +24103,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24083
24103
|
}[] | undefined;
|
|
24084
24104
|
entityBindingDescription?: string | undefined;
|
|
24085
24105
|
entityBindingSynonyms?: string | undefined;
|
|
24106
|
+
local?: boolean | undefined;
|
|
24086
24107
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
24087
24108
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
24088
24109
|
requiredFields?: {
|
|
@@ -24139,7 +24160,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24139
24160
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
24140
24161
|
variant?: string | undefined;
|
|
24141
24162
|
dimension?: "2d" | "3d" | undefined;
|
|
24142
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
24163
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
24143
24164
|
} | undefined;
|
|
24144
24165
|
} | undefined;
|
|
24145
24166
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -24307,6 +24328,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24307
24328
|
}[] | undefined;
|
|
24308
24329
|
entityBindingDescription?: string | undefined;
|
|
24309
24330
|
entityBindingSynonyms?: string | undefined;
|
|
24331
|
+
local?: boolean | undefined;
|
|
24310
24332
|
entityRefIds?: Record<string, string> | undefined;
|
|
24311
24333
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
24312
24334
|
requiredFields?: {
|
|
@@ -24363,7 +24385,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24363
24385
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
24364
24386
|
variant?: string | undefined;
|
|
24365
24387
|
dimension?: "2d" | "3d" | undefined;
|
|
24366
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
24388
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
24367
24389
|
} | undefined;
|
|
24368
24390
|
} | undefined;
|
|
24369
24391
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -24531,6 +24553,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24531
24553
|
}[] | undefined;
|
|
24532
24554
|
entityBindingDescription?: string | undefined;
|
|
24533
24555
|
entityBindingSynonyms?: string | undefined;
|
|
24556
|
+
local?: boolean | undefined;
|
|
24534
24557
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
24535
24558
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
24536
24559
|
requiredFields?: {
|
|
@@ -24587,7 +24610,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24587
24610
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
24588
24611
|
variant?: string | undefined;
|
|
24589
24612
|
dimension?: "2d" | "3d" | undefined;
|
|
24590
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
24613
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
24591
24614
|
} | undefined;
|
|
24592
24615
|
} | undefined;
|
|
24593
24616
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -24755,6 +24778,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24755
24778
|
}[] | undefined;
|
|
24756
24779
|
entityBindingDescription?: string | undefined;
|
|
24757
24780
|
entityBindingSynonyms?: string | undefined;
|
|
24781
|
+
local?: boolean | undefined;
|
|
24758
24782
|
entityRefIds?: Record<string, string> | undefined;
|
|
24759
24783
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
24760
24784
|
requiredFields?: {
|
|
@@ -24811,7 +24835,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24811
24835
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
24812
24836
|
variant?: string | undefined;
|
|
24813
24837
|
dimension?: "2d" | "3d" | undefined;
|
|
24814
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
24838
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
24815
24839
|
} | undefined;
|
|
24816
24840
|
} | undefined;
|
|
24817
24841
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -24855,6 +24879,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24855
24879
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
24856
24880
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24857
24881
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
24882
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
24858
24883
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
24859
24884
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
24860
24885
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -25352,7 +25377,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25352
25377
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
25353
25378
|
variant: z.ZodOptional<z.ZodString>;
|
|
25354
25379
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
25355
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
25380
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
25356
25381
|
}, "strip", z.ZodTypeAny, {
|
|
25357
25382
|
role: string;
|
|
25358
25383
|
category: string;
|
|
@@ -25360,7 +25385,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25360
25385
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25361
25386
|
variant?: string | undefined;
|
|
25362
25387
|
dimension?: "2d" | "3d" | undefined;
|
|
25363
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25388
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25364
25389
|
}, {
|
|
25365
25390
|
role: string;
|
|
25366
25391
|
category: string;
|
|
@@ -25368,7 +25393,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25368
25393
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25369
25394
|
variant?: string | undefined;
|
|
25370
25395
|
dimension?: "2d" | "3d" | undefined;
|
|
25371
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25396
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25372
25397
|
}>>;
|
|
25373
25398
|
}, "strip", z.ZodTypeAny, {
|
|
25374
25399
|
name: string;
|
|
@@ -25400,7 +25425,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25400
25425
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25401
25426
|
variant?: string | undefined;
|
|
25402
25427
|
dimension?: "2d" | "3d" | undefined;
|
|
25403
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25428
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25404
25429
|
} | undefined;
|
|
25405
25430
|
}, {
|
|
25406
25431
|
name: string;
|
|
@@ -25432,7 +25457,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25432
25457
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25433
25458
|
variant?: string | undefined;
|
|
25434
25459
|
dimension?: "2d" | "3d" | undefined;
|
|
25435
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25460
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25436
25461
|
} | undefined;
|
|
25437
25462
|
}>>;
|
|
25438
25463
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -25558,6 +25583,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25558
25583
|
}[] | undefined;
|
|
25559
25584
|
entityBindingDescription?: string | undefined;
|
|
25560
25585
|
entityBindingSynonyms?: string | undefined;
|
|
25586
|
+
local?: boolean | undefined;
|
|
25561
25587
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
25562
25588
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
25563
25589
|
requiredFields?: {
|
|
@@ -25614,7 +25640,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25614
25640
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25615
25641
|
variant?: string | undefined;
|
|
25616
25642
|
dimension?: "2d" | "3d" | undefined;
|
|
25617
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25643
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25618
25644
|
} | undefined;
|
|
25619
25645
|
} | undefined;
|
|
25620
25646
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -25740,6 +25766,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25740
25766
|
}[] | undefined;
|
|
25741
25767
|
entityBindingDescription?: string | undefined;
|
|
25742
25768
|
entityBindingSynonyms?: string | undefined;
|
|
25769
|
+
local?: boolean | undefined;
|
|
25743
25770
|
entityRefIds?: Record<string, string> | undefined;
|
|
25744
25771
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
25745
25772
|
requiredFields?: {
|
|
@@ -25796,7 +25823,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25796
25823
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25797
25824
|
variant?: string | undefined;
|
|
25798
25825
|
dimension?: "2d" | "3d" | undefined;
|
|
25799
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
25826
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25800
25827
|
} | undefined;
|
|
25801
25828
|
} | undefined;
|
|
25802
25829
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -25929,6 +25956,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25929
25956
|
}[] | undefined;
|
|
25930
25957
|
entityBindingDescription?: string | undefined;
|
|
25931
25958
|
entityBindingSynonyms?: string | undefined;
|
|
25959
|
+
local?: boolean | undefined;
|
|
25932
25960
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
25933
25961
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
25934
25962
|
requiredFields?: {
|
|
@@ -25985,7 +26013,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25985
26013
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
25986
26014
|
variant?: string | undefined;
|
|
25987
26015
|
dimension?: "2d" | "3d" | undefined;
|
|
25988
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26016
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
25989
26017
|
} | undefined;
|
|
25990
26018
|
} | undefined;
|
|
25991
26019
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -26150,6 +26178,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26150
26178
|
}[] | undefined;
|
|
26151
26179
|
entityBindingDescription?: string | undefined;
|
|
26152
26180
|
entityBindingSynonyms?: string | undefined;
|
|
26181
|
+
local?: boolean | undefined;
|
|
26153
26182
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
26154
26183
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
26155
26184
|
requiredFields?: {
|
|
@@ -26206,7 +26235,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26206
26235
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26207
26236
|
variant?: string | undefined;
|
|
26208
26237
|
dimension?: "2d" | "3d" | undefined;
|
|
26209
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26238
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
26210
26239
|
} | undefined;
|
|
26211
26240
|
} | undefined;
|
|
26212
26241
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -26344,6 +26373,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26344
26373
|
}[] | undefined;
|
|
26345
26374
|
entityBindingDescription?: string | undefined;
|
|
26346
26375
|
entityBindingSynonyms?: string | undefined;
|
|
26376
|
+
local?: boolean | undefined;
|
|
26347
26377
|
entityRefIds?: Record<string, string> | undefined;
|
|
26348
26378
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
26349
26379
|
requiredFields?: {
|
|
@@ -26400,7 +26430,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26400
26430
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26401
26431
|
variant?: string | undefined;
|
|
26402
26432
|
dimension?: "2d" | "3d" | undefined;
|
|
26403
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26433
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
26404
26434
|
} | undefined;
|
|
26405
26435
|
} | undefined;
|
|
26406
26436
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -26565,6 +26595,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26565
26595
|
}[] | undefined;
|
|
26566
26596
|
entityBindingDescription?: string | undefined;
|
|
26567
26597
|
entityBindingSynonyms?: string | undefined;
|
|
26598
|
+
local?: boolean | undefined;
|
|
26568
26599
|
entityRefIds?: Record<string, string> | undefined;
|
|
26569
26600
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
26570
26601
|
requiredFields?: {
|
|
@@ -26621,7 +26652,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26621
26652
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
26622
26653
|
variant?: string | undefined;
|
|
26623
26654
|
dimension?: "2d" | "3d" | undefined;
|
|
26624
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
26655
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
26625
26656
|
} | undefined;
|
|
26626
26657
|
} | undefined;
|
|
26627
26658
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -31289,7 +31320,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31289
31320
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
31290
31321
|
variant: z.ZodOptional<z.ZodString>;
|
|
31291
31322
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
31292
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
31323
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
31293
31324
|
}, "strip", z.ZodTypeAny, {
|
|
31294
31325
|
role: string;
|
|
31295
31326
|
category: string;
|
|
@@ -31297,7 +31328,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31297
31328
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31298
31329
|
variant?: string | undefined;
|
|
31299
31330
|
dimension?: "2d" | "3d" | undefined;
|
|
31300
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31331
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31301
31332
|
}, {
|
|
31302
31333
|
role: string;
|
|
31303
31334
|
category: string;
|
|
@@ -31305,7 +31336,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31305
31336
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31306
31337
|
variant?: string | undefined;
|
|
31307
31338
|
dimension?: "2d" | "3d" | undefined;
|
|
31308
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31339
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31309
31340
|
}>>;
|
|
31310
31341
|
}, "strip", z.ZodTypeAny, {
|
|
31311
31342
|
name: string;
|
|
@@ -31337,7 +31368,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31337
31368
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31338
31369
|
variant?: string | undefined;
|
|
31339
31370
|
dimension?: "2d" | "3d" | undefined;
|
|
31340
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31371
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31341
31372
|
} | undefined;
|
|
31342
31373
|
}, {
|
|
31343
31374
|
name: string;
|
|
@@ -31369,7 +31400,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31369
31400
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31370
31401
|
variant?: string | undefined;
|
|
31371
31402
|
dimension?: "2d" | "3d" | undefined;
|
|
31372
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31403
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31373
31404
|
} | undefined;
|
|
31374
31405
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
31375
31406
|
extends: z.ZodString;
|
|
@@ -31442,7 +31473,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31442
31473
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
31443
31474
|
variant: z.ZodOptional<z.ZodString>;
|
|
31444
31475
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
31445
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
31476
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
31446
31477
|
}, "strip", z.ZodTypeAny, {
|
|
31447
31478
|
role: string;
|
|
31448
31479
|
category: string;
|
|
@@ -31450,7 +31481,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31450
31481
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31451
31482
|
variant?: string | undefined;
|
|
31452
31483
|
dimension?: "2d" | "3d" | undefined;
|
|
31453
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31484
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31454
31485
|
}, {
|
|
31455
31486
|
role: string;
|
|
31456
31487
|
category: string;
|
|
@@ -31458,7 +31489,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31458
31489
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31459
31490
|
variant?: string | undefined;
|
|
31460
31491
|
dimension?: "2d" | "3d" | undefined;
|
|
31461
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31492
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31462
31493
|
}>>;
|
|
31463
31494
|
}, "strip", z.ZodTypeAny, {
|
|
31464
31495
|
name: string;
|
|
@@ -31490,7 +31521,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31490
31521
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31491
31522
|
variant?: string | undefined;
|
|
31492
31523
|
dimension?: "2d" | "3d" | undefined;
|
|
31493
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31524
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31494
31525
|
} | undefined;
|
|
31495
31526
|
}, {
|
|
31496
31527
|
name: string;
|
|
@@ -31522,7 +31553,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31522
31553
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
31523
31554
|
variant?: string | undefined;
|
|
31524
31555
|
dimension?: "2d" | "3d" | undefined;
|
|
31525
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
31556
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
31526
31557
|
} | undefined;
|
|
31527
31558
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
31528
31559
|
extends: z.ZodString;
|
|
@@ -31602,6 +31633,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31602
31633
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
31603
31634
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
31604
31635
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
31636
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
31605
31637
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
31606
31638
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
31607
31639
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -32099,7 +32131,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32099
32131
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
32100
32132
|
variant: z.ZodOptional<z.ZodString>;
|
|
32101
32133
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
32102
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
32134
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
32103
32135
|
}, "strip", z.ZodTypeAny, {
|
|
32104
32136
|
role: string;
|
|
32105
32137
|
category: string;
|
|
@@ -32107,7 +32139,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32107
32139
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32108
32140
|
variant?: string | undefined;
|
|
32109
32141
|
dimension?: "2d" | "3d" | undefined;
|
|
32110
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32142
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32111
32143
|
}, {
|
|
32112
32144
|
role: string;
|
|
32113
32145
|
category: string;
|
|
@@ -32115,7 +32147,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32115
32147
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32116
32148
|
variant?: string | undefined;
|
|
32117
32149
|
dimension?: "2d" | "3d" | undefined;
|
|
32118
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32150
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32119
32151
|
}>>;
|
|
32120
32152
|
}, "strip", z.ZodTypeAny, {
|
|
32121
32153
|
name: string;
|
|
@@ -32147,7 +32179,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32147
32179
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32148
32180
|
variant?: string | undefined;
|
|
32149
32181
|
dimension?: "2d" | "3d" | undefined;
|
|
32150
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32182
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32151
32183
|
} | undefined;
|
|
32152
32184
|
}, {
|
|
32153
32185
|
name: string;
|
|
@@ -32179,7 +32211,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32179
32211
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32180
32212
|
variant?: string | undefined;
|
|
32181
32213
|
dimension?: "2d" | "3d" | undefined;
|
|
32182
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32214
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32183
32215
|
} | undefined;
|
|
32184
32216
|
}>>;
|
|
32185
32217
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -32305,6 +32337,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32305
32337
|
}[] | undefined;
|
|
32306
32338
|
entityBindingDescription?: string | undefined;
|
|
32307
32339
|
entityBindingSynonyms?: string | undefined;
|
|
32340
|
+
local?: boolean | undefined;
|
|
32308
32341
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
32309
32342
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
32310
32343
|
requiredFields?: {
|
|
@@ -32361,7 +32394,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32361
32394
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32362
32395
|
variant?: string | undefined;
|
|
32363
32396
|
dimension?: "2d" | "3d" | undefined;
|
|
32364
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32397
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32365
32398
|
} | undefined;
|
|
32366
32399
|
} | undefined;
|
|
32367
32400
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -32487,6 +32520,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32487
32520
|
}[] | undefined;
|
|
32488
32521
|
entityBindingDescription?: string | undefined;
|
|
32489
32522
|
entityBindingSynonyms?: string | undefined;
|
|
32523
|
+
local?: boolean | undefined;
|
|
32490
32524
|
entityRefIds?: Record<string, string> | undefined;
|
|
32491
32525
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
32492
32526
|
requiredFields?: {
|
|
@@ -32543,7 +32577,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32543
32577
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32544
32578
|
variant?: string | undefined;
|
|
32545
32579
|
dimension?: "2d" | "3d" | undefined;
|
|
32546
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32580
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32547
32581
|
} | undefined;
|
|
32548
32582
|
} | undefined;
|
|
32549
32583
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -32812,6 +32846,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32812
32846
|
}[] | undefined;
|
|
32813
32847
|
entityBindingDescription?: string | undefined;
|
|
32814
32848
|
entityBindingSynonyms?: string | undefined;
|
|
32849
|
+
local?: boolean | undefined;
|
|
32815
32850
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
32816
32851
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
32817
32852
|
requiredFields?: {
|
|
@@ -32868,7 +32903,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32868
32903
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
32869
32904
|
variant?: string | undefined;
|
|
32870
32905
|
dimension?: "2d" | "3d" | undefined;
|
|
32871
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
32906
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
32872
32907
|
} | undefined;
|
|
32873
32908
|
} | undefined;
|
|
32874
32909
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -33036,6 +33071,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33036
33071
|
}[] | undefined;
|
|
33037
33072
|
entityBindingDescription?: string | undefined;
|
|
33038
33073
|
entityBindingSynonyms?: string | undefined;
|
|
33074
|
+
local?: boolean | undefined;
|
|
33039
33075
|
entityRefIds?: Record<string, string> | undefined;
|
|
33040
33076
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
33041
33077
|
requiredFields?: {
|
|
@@ -33092,7 +33128,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33092
33128
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33093
33129
|
variant?: string | undefined;
|
|
33094
33130
|
dimension?: "2d" | "3d" | undefined;
|
|
33095
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33131
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
33096
33132
|
} | undefined;
|
|
33097
33133
|
} | undefined;
|
|
33098
33134
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -33260,6 +33296,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33260
33296
|
}[] | undefined;
|
|
33261
33297
|
entityBindingDescription?: string | undefined;
|
|
33262
33298
|
entityBindingSynonyms?: string | undefined;
|
|
33299
|
+
local?: boolean | undefined;
|
|
33263
33300
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
33264
33301
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
33265
33302
|
requiredFields?: {
|
|
@@ -33316,7 +33353,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33316
33353
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33317
33354
|
variant?: string | undefined;
|
|
33318
33355
|
dimension?: "2d" | "3d" | undefined;
|
|
33319
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33356
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
33320
33357
|
} | undefined;
|
|
33321
33358
|
} | undefined;
|
|
33322
33359
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -33484,6 +33521,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33484
33521
|
}[] | undefined;
|
|
33485
33522
|
entityBindingDescription?: string | undefined;
|
|
33486
33523
|
entityBindingSynonyms?: string | undefined;
|
|
33524
|
+
local?: boolean | undefined;
|
|
33487
33525
|
entityRefIds?: Record<string, string> | undefined;
|
|
33488
33526
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
33489
33527
|
requiredFields?: {
|
|
@@ -33540,7 +33578,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33540
33578
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
33541
33579
|
variant?: string | undefined;
|
|
33542
33580
|
dimension?: "2d" | "3d" | undefined;
|
|
33543
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
33581
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
33544
33582
|
} | undefined;
|
|
33545
33583
|
} | undefined;
|
|
33546
33584
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -33584,6 +33622,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
33584
33622
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
33585
33623
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
33586
33624
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
33625
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
33587
33626
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
33588
33627
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
33589
33628
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -34081,7 +34120,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34081
34120
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
34082
34121
|
variant: z.ZodOptional<z.ZodString>;
|
|
34083
34122
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
34084
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
34123
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
34085
34124
|
}, "strip", z.ZodTypeAny, {
|
|
34086
34125
|
role: string;
|
|
34087
34126
|
category: string;
|
|
@@ -34089,7 +34128,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34089
34128
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34090
34129
|
variant?: string | undefined;
|
|
34091
34130
|
dimension?: "2d" | "3d" | undefined;
|
|
34092
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34131
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34093
34132
|
}, {
|
|
34094
34133
|
role: string;
|
|
34095
34134
|
category: string;
|
|
@@ -34097,7 +34136,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34097
34136
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34098
34137
|
variant?: string | undefined;
|
|
34099
34138
|
dimension?: "2d" | "3d" | undefined;
|
|
34100
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34139
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34101
34140
|
}>>;
|
|
34102
34141
|
}, "strip", z.ZodTypeAny, {
|
|
34103
34142
|
name: string;
|
|
@@ -34129,7 +34168,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34129
34168
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34130
34169
|
variant?: string | undefined;
|
|
34131
34170
|
dimension?: "2d" | "3d" | undefined;
|
|
34132
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34171
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34133
34172
|
} | undefined;
|
|
34134
34173
|
}, {
|
|
34135
34174
|
name: string;
|
|
@@ -34161,7 +34200,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34161
34200
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34162
34201
|
variant?: string | undefined;
|
|
34163
34202
|
dimension?: "2d" | "3d" | undefined;
|
|
34164
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34203
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34165
34204
|
} | undefined;
|
|
34166
34205
|
}>>;
|
|
34167
34206
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -34287,6 +34326,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34287
34326
|
}[] | undefined;
|
|
34288
34327
|
entityBindingDescription?: string | undefined;
|
|
34289
34328
|
entityBindingSynonyms?: string | undefined;
|
|
34329
|
+
local?: boolean | undefined;
|
|
34290
34330
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
34291
34331
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
34292
34332
|
requiredFields?: {
|
|
@@ -34343,7 +34383,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34343
34383
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34344
34384
|
variant?: string | undefined;
|
|
34345
34385
|
dimension?: "2d" | "3d" | undefined;
|
|
34346
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34386
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34347
34387
|
} | undefined;
|
|
34348
34388
|
} | undefined;
|
|
34349
34389
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -34469,6 +34509,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34469
34509
|
}[] | undefined;
|
|
34470
34510
|
entityBindingDescription?: string | undefined;
|
|
34471
34511
|
entityBindingSynonyms?: string | undefined;
|
|
34512
|
+
local?: boolean | undefined;
|
|
34472
34513
|
entityRefIds?: Record<string, string> | undefined;
|
|
34473
34514
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
34474
34515
|
requiredFields?: {
|
|
@@ -34525,7 +34566,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34525
34566
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
34526
34567
|
variant?: string | undefined;
|
|
34527
34568
|
dimension?: "2d" | "3d" | undefined;
|
|
34528
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
34569
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
34529
34570
|
} | undefined;
|
|
34530
34571
|
} | undefined;
|
|
34531
34572
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -34647,6 +34688,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
34647
34688
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
34648
34689
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34649
34690
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
34691
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
34650
34692
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
34651
34693
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
34652
34694
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -35144,7 +35186,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35144
35186
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
35145
35187
|
variant: z.ZodOptional<z.ZodString>;
|
|
35146
35188
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
35147
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
35189
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
35148
35190
|
}, "strip", z.ZodTypeAny, {
|
|
35149
35191
|
role: string;
|
|
35150
35192
|
category: string;
|
|
@@ -35152,7 +35194,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35152
35194
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35153
35195
|
variant?: string | undefined;
|
|
35154
35196
|
dimension?: "2d" | "3d" | undefined;
|
|
35155
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35197
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35156
35198
|
}, {
|
|
35157
35199
|
role: string;
|
|
35158
35200
|
category: string;
|
|
@@ -35160,7 +35202,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35160
35202
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35161
35203
|
variant?: string | undefined;
|
|
35162
35204
|
dimension?: "2d" | "3d" | undefined;
|
|
35163
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35205
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35164
35206
|
}>>;
|
|
35165
35207
|
}, "strip", z.ZodTypeAny, {
|
|
35166
35208
|
name: string;
|
|
@@ -35192,7 +35234,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35192
35234
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35193
35235
|
variant?: string | undefined;
|
|
35194
35236
|
dimension?: "2d" | "3d" | undefined;
|
|
35195
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35237
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35196
35238
|
} | undefined;
|
|
35197
35239
|
}, {
|
|
35198
35240
|
name: string;
|
|
@@ -35224,7 +35266,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35224
35266
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35225
35267
|
variant?: string | undefined;
|
|
35226
35268
|
dimension?: "2d" | "3d" | undefined;
|
|
35227
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35269
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35228
35270
|
} | undefined;
|
|
35229
35271
|
}>>;
|
|
35230
35272
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -35350,6 +35392,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35350
35392
|
}[] | undefined;
|
|
35351
35393
|
entityBindingDescription?: string | undefined;
|
|
35352
35394
|
entityBindingSynonyms?: string | undefined;
|
|
35395
|
+
local?: boolean | undefined;
|
|
35353
35396
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
35354
35397
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
35355
35398
|
requiredFields?: {
|
|
@@ -35406,7 +35449,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35406
35449
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35407
35450
|
variant?: string | undefined;
|
|
35408
35451
|
dimension?: "2d" | "3d" | undefined;
|
|
35409
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35452
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35410
35453
|
} | undefined;
|
|
35411
35454
|
} | undefined;
|
|
35412
35455
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -35532,6 +35575,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35532
35575
|
}[] | undefined;
|
|
35533
35576
|
entityBindingDescription?: string | undefined;
|
|
35534
35577
|
entityBindingSynonyms?: string | undefined;
|
|
35578
|
+
local?: boolean | undefined;
|
|
35535
35579
|
entityRefIds?: Record<string, string> | undefined;
|
|
35536
35580
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
35537
35581
|
requiredFields?: {
|
|
@@ -35588,7 +35632,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35588
35632
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35589
35633
|
variant?: string | undefined;
|
|
35590
35634
|
dimension?: "2d" | "3d" | undefined;
|
|
35591
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35635
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35592
35636
|
} | undefined;
|
|
35593
35637
|
} | undefined;
|
|
35594
35638
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -35857,6 +35901,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35857
35901
|
}[] | undefined;
|
|
35858
35902
|
entityBindingDescription?: string | undefined;
|
|
35859
35903
|
entityBindingSynonyms?: string | undefined;
|
|
35904
|
+
local?: boolean | undefined;
|
|
35860
35905
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
35861
35906
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
35862
35907
|
requiredFields?: {
|
|
@@ -35913,7 +35958,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
35913
35958
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
35914
35959
|
variant?: string | undefined;
|
|
35915
35960
|
dimension?: "2d" | "3d" | undefined;
|
|
35916
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
35961
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
35917
35962
|
} | undefined;
|
|
35918
35963
|
} | undefined;
|
|
35919
35964
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -36081,6 +36126,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36081
36126
|
}[] | undefined;
|
|
36082
36127
|
entityBindingDescription?: string | undefined;
|
|
36083
36128
|
entityBindingSynonyms?: string | undefined;
|
|
36129
|
+
local?: boolean | undefined;
|
|
36084
36130
|
entityRefIds?: Record<string, string> | undefined;
|
|
36085
36131
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
36086
36132
|
requiredFields?: {
|
|
@@ -36137,7 +36183,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36137
36183
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36138
36184
|
variant?: string | undefined;
|
|
36139
36185
|
dimension?: "2d" | "3d" | undefined;
|
|
36140
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36186
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
36141
36187
|
} | undefined;
|
|
36142
36188
|
} | undefined;
|
|
36143
36189
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -36305,6 +36351,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36305
36351
|
}[] | undefined;
|
|
36306
36352
|
entityBindingDescription?: string | undefined;
|
|
36307
36353
|
entityBindingSynonyms?: string | undefined;
|
|
36354
|
+
local?: boolean | undefined;
|
|
36308
36355
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
36309
36356
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
36310
36357
|
requiredFields?: {
|
|
@@ -36361,7 +36408,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36361
36408
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36362
36409
|
variant?: string | undefined;
|
|
36363
36410
|
dimension?: "2d" | "3d" | undefined;
|
|
36364
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36411
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
36365
36412
|
} | undefined;
|
|
36366
36413
|
} | undefined;
|
|
36367
36414
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -36529,6 +36576,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36529
36576
|
}[] | undefined;
|
|
36530
36577
|
entityBindingDescription?: string | undefined;
|
|
36531
36578
|
entityBindingSynonyms?: string | undefined;
|
|
36579
|
+
local?: boolean | undefined;
|
|
36532
36580
|
entityRefIds?: Record<string, string> | undefined;
|
|
36533
36581
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
36534
36582
|
requiredFields?: {
|
|
@@ -36585,7 +36633,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36585
36633
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
36586
36634
|
variant?: string | undefined;
|
|
36587
36635
|
dimension?: "2d" | "3d" | undefined;
|
|
36588
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
36636
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
36589
36637
|
} | undefined;
|
|
36590
36638
|
} | undefined;
|
|
36591
36639
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -36629,6 +36677,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
36629
36677
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
36630
36678
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
36631
36679
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
36680
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
36632
36681
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
36633
36682
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
36634
36683
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -37126,7 +37175,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37126
37175
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
37127
37176
|
variant: z.ZodOptional<z.ZodString>;
|
|
37128
37177
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
37129
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
37178
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
37130
37179
|
}, "strip", z.ZodTypeAny, {
|
|
37131
37180
|
role: string;
|
|
37132
37181
|
category: string;
|
|
@@ -37134,7 +37183,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37134
37183
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37135
37184
|
variant?: string | undefined;
|
|
37136
37185
|
dimension?: "2d" | "3d" | undefined;
|
|
37137
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37186
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37138
37187
|
}, {
|
|
37139
37188
|
role: string;
|
|
37140
37189
|
category: string;
|
|
@@ -37142,7 +37191,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37142
37191
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37143
37192
|
variant?: string | undefined;
|
|
37144
37193
|
dimension?: "2d" | "3d" | undefined;
|
|
37145
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37194
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37146
37195
|
}>>;
|
|
37147
37196
|
}, "strip", z.ZodTypeAny, {
|
|
37148
37197
|
name: string;
|
|
@@ -37174,7 +37223,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37174
37223
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37175
37224
|
variant?: string | undefined;
|
|
37176
37225
|
dimension?: "2d" | "3d" | undefined;
|
|
37177
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37226
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37178
37227
|
} | undefined;
|
|
37179
37228
|
}, {
|
|
37180
37229
|
name: string;
|
|
@@ -37206,7 +37255,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37206
37255
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37207
37256
|
variant?: string | undefined;
|
|
37208
37257
|
dimension?: "2d" | "3d" | undefined;
|
|
37209
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37258
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37210
37259
|
} | undefined;
|
|
37211
37260
|
}>>;
|
|
37212
37261
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -37332,6 +37381,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37332
37381
|
}[] | undefined;
|
|
37333
37382
|
entityBindingDescription?: string | undefined;
|
|
37334
37383
|
entityBindingSynonyms?: string | undefined;
|
|
37384
|
+
local?: boolean | undefined;
|
|
37335
37385
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
37336
37386
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
37337
37387
|
requiredFields?: {
|
|
@@ -37388,7 +37438,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37388
37438
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37389
37439
|
variant?: string | undefined;
|
|
37390
37440
|
dimension?: "2d" | "3d" | undefined;
|
|
37391
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37441
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37392
37442
|
} | undefined;
|
|
37393
37443
|
} | undefined;
|
|
37394
37444
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -37514,6 +37564,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37514
37564
|
}[] | undefined;
|
|
37515
37565
|
entityBindingDescription?: string | undefined;
|
|
37516
37566
|
entityBindingSynonyms?: string | undefined;
|
|
37567
|
+
local?: boolean | undefined;
|
|
37517
37568
|
entityRefIds?: Record<string, string> | undefined;
|
|
37518
37569
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
37519
37570
|
requiredFields?: {
|
|
@@ -37570,7 +37621,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37570
37621
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37571
37622
|
variant?: string | undefined;
|
|
37572
37623
|
dimension?: "2d" | "3d" | undefined;
|
|
37573
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37624
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37574
37625
|
} | undefined;
|
|
37575
37626
|
} | undefined;
|
|
37576
37627
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -37703,6 +37754,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37703
37754
|
}[] | undefined;
|
|
37704
37755
|
entityBindingDescription?: string | undefined;
|
|
37705
37756
|
entityBindingSynonyms?: string | undefined;
|
|
37757
|
+
local?: boolean | undefined;
|
|
37706
37758
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
37707
37759
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
37708
37760
|
requiredFields?: {
|
|
@@ -37759,7 +37811,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37759
37811
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37760
37812
|
variant?: string | undefined;
|
|
37761
37813
|
dimension?: "2d" | "3d" | undefined;
|
|
37762
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
37814
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37763
37815
|
} | undefined;
|
|
37764
37816
|
} | undefined;
|
|
37765
37817
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -37924,6 +37976,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37924
37976
|
}[] | undefined;
|
|
37925
37977
|
entityBindingDescription?: string | undefined;
|
|
37926
37978
|
entityBindingSynonyms?: string | undefined;
|
|
37979
|
+
local?: boolean | undefined;
|
|
37927
37980
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
37928
37981
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
37929
37982
|
requiredFields?: {
|
|
@@ -37980,7 +38033,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
37980
38033
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
37981
38034
|
variant?: string | undefined;
|
|
37982
38035
|
dimension?: "2d" | "3d" | undefined;
|
|
37983
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
38036
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
37984
38037
|
} | undefined;
|
|
37985
38038
|
} | undefined;
|
|
37986
38039
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -38118,6 +38171,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38118
38171
|
}[] | undefined;
|
|
38119
38172
|
entityBindingDescription?: string | undefined;
|
|
38120
38173
|
entityBindingSynonyms?: string | undefined;
|
|
38174
|
+
local?: boolean | undefined;
|
|
38121
38175
|
entityRefIds?: Record<string, string> | undefined;
|
|
38122
38176
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
38123
38177
|
requiredFields?: {
|
|
@@ -38174,7 +38228,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38174
38228
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
38175
38229
|
variant?: string | undefined;
|
|
38176
38230
|
dimension?: "2d" | "3d" | undefined;
|
|
38177
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
38231
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
38178
38232
|
} | undefined;
|
|
38179
38233
|
} | undefined;
|
|
38180
38234
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -38339,6 +38393,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38339
38393
|
}[] | undefined;
|
|
38340
38394
|
entityBindingDescription?: string | undefined;
|
|
38341
38395
|
entityBindingSynonyms?: string | undefined;
|
|
38396
|
+
local?: boolean | undefined;
|
|
38342
38397
|
entityRefIds?: Record<string, string> | undefined;
|
|
38343
38398
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
38344
38399
|
requiredFields?: {
|
|
@@ -38395,7 +38450,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38395
38450
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
38396
38451
|
variant?: string | undefined;
|
|
38397
38452
|
dimension?: "2d" | "3d" | undefined;
|
|
38398
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
38453
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
38399
38454
|
} | undefined;
|
|
38400
38455
|
} | undefined;
|
|
38401
38456
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -38694,7 +38749,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38694
38749
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
38695
38750
|
variant?: string | undefined;
|
|
38696
38751
|
dimension?: "2d" | "3d" | undefined;
|
|
38697
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
38752
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
38698
38753
|
} | undefined;
|
|
38699
38754
|
} | {
|
|
38700
38755
|
extends: string;
|
|
@@ -38848,6 +38903,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38848
38903
|
}[] | undefined;
|
|
38849
38904
|
entityBindingDescription?: string | undefined;
|
|
38850
38905
|
entityBindingSynonyms?: string | undefined;
|
|
38906
|
+
local?: boolean | undefined;
|
|
38851
38907
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
38852
38908
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
38853
38909
|
requiredFields?: {
|
|
@@ -38904,7 +38960,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
38904
38960
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
38905
38961
|
variant?: string | undefined;
|
|
38906
38962
|
dimension?: "2d" | "3d" | undefined;
|
|
38907
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
38963
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
38908
38964
|
} | undefined;
|
|
38909
38965
|
} | undefined;
|
|
38910
38966
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -39069,6 +39125,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39069
39125
|
}[] | undefined;
|
|
39070
39126
|
entityBindingDescription?: string | undefined;
|
|
39071
39127
|
entityBindingSynonyms?: string | undefined;
|
|
39128
|
+
local?: boolean | undefined;
|
|
39072
39129
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
39073
39130
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
39074
39131
|
requiredFields?: {
|
|
@@ -39125,7 +39182,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39125
39182
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
39126
39183
|
variant?: string | undefined;
|
|
39127
39184
|
dimension?: "2d" | "3d" | undefined;
|
|
39128
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
39185
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
39129
39186
|
} | undefined;
|
|
39130
39187
|
} | undefined;
|
|
39131
39188
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -39259,6 +39316,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39259
39316
|
}[] | undefined;
|
|
39260
39317
|
entityBindingDescription?: string | undefined;
|
|
39261
39318
|
entityBindingSynonyms?: string | undefined;
|
|
39319
|
+
local?: boolean | undefined;
|
|
39262
39320
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
39263
39321
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
39264
39322
|
requiredFields?: {
|
|
@@ -39315,7 +39373,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39315
39373
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
39316
39374
|
variant?: string | undefined;
|
|
39317
39375
|
dimension?: "2d" | "3d" | undefined;
|
|
39318
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
39376
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
39319
39377
|
} | undefined;
|
|
39320
39378
|
} | undefined;
|
|
39321
39379
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -39480,6 +39538,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39480
39538
|
}[] | undefined;
|
|
39481
39539
|
entityBindingDescription?: string | undefined;
|
|
39482
39540
|
entityBindingSynonyms?: string | undefined;
|
|
39541
|
+
local?: boolean | undefined;
|
|
39483
39542
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
39484
39543
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
39485
39544
|
requiredFields?: {
|
|
@@ -39536,7 +39595,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
39536
39595
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
39537
39596
|
variant?: string | undefined;
|
|
39538
39597
|
dimension?: "2d" | "3d" | undefined;
|
|
39539
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
39598
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
39540
39599
|
} | undefined;
|
|
39541
39600
|
} | undefined;
|
|
39542
39601
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -40128,7 +40187,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40128
40187
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
40129
40188
|
variant?: string | undefined;
|
|
40130
40189
|
dimension?: "2d" | "3d" | undefined;
|
|
40131
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
40190
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
40132
40191
|
} | undefined;
|
|
40133
40192
|
} | {
|
|
40134
40193
|
extends: string;
|
|
@@ -40203,7 +40262,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40203
40262
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
40204
40263
|
variant?: string | undefined;
|
|
40205
40264
|
dimension?: "2d" | "3d" | undefined;
|
|
40206
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
40265
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
40207
40266
|
} | undefined;
|
|
40208
40267
|
} | {
|
|
40209
40268
|
extends: string;
|
|
@@ -40357,6 +40416,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40357
40416
|
}[] | undefined;
|
|
40358
40417
|
entityBindingDescription?: string | undefined;
|
|
40359
40418
|
entityBindingSynonyms?: string | undefined;
|
|
40419
|
+
local?: boolean | undefined;
|
|
40360
40420
|
entityRefIds?: Record<string, string> | undefined;
|
|
40361
40421
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40362
40422
|
requiredFields?: {
|
|
@@ -40413,7 +40473,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40413
40473
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
40414
40474
|
variant?: string | undefined;
|
|
40415
40475
|
dimension?: "2d" | "3d" | undefined;
|
|
40416
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
40476
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
40417
40477
|
} | undefined;
|
|
40418
40478
|
} | undefined;
|
|
40419
40479
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -40578,6 +40638,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40578
40638
|
}[] | undefined;
|
|
40579
40639
|
entityBindingDescription?: string | undefined;
|
|
40580
40640
|
entityBindingSynonyms?: string | undefined;
|
|
40641
|
+
local?: boolean | undefined;
|
|
40581
40642
|
entityRefIds?: Record<string, string> | undefined;
|
|
40582
40643
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40583
40644
|
requiredFields?: {
|
|
@@ -40634,7 +40695,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40634
40695
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
40635
40696
|
variant?: string | undefined;
|
|
40636
40697
|
dimension?: "2d" | "3d" | undefined;
|
|
40637
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
40698
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
40638
40699
|
} | undefined;
|
|
40639
40700
|
} | undefined;
|
|
40640
40701
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -40768,6 +40829,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40768
40829
|
}[] | undefined;
|
|
40769
40830
|
entityBindingDescription?: string | undefined;
|
|
40770
40831
|
entityBindingSynonyms?: string | undefined;
|
|
40832
|
+
local?: boolean | undefined;
|
|
40771
40833
|
entityRefIds?: Record<string, string> | undefined;
|
|
40772
40834
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40773
40835
|
requiredFields?: {
|
|
@@ -40824,7 +40886,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40824
40886
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
40825
40887
|
variant?: string | undefined;
|
|
40826
40888
|
dimension?: "2d" | "3d" | undefined;
|
|
40827
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
40889
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
40828
40890
|
} | undefined;
|
|
40829
40891
|
} | undefined;
|
|
40830
40892
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -40989,6 +41051,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
40989
41051
|
}[] | undefined;
|
|
40990
41052
|
entityBindingDescription?: string | undefined;
|
|
40991
41053
|
entityBindingSynonyms?: string | undefined;
|
|
41054
|
+
local?: boolean | undefined;
|
|
40992
41055
|
entityRefIds?: Record<string, string> | undefined;
|
|
40993
41056
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40994
41057
|
requiredFields?: {
|
|
@@ -41045,7 +41108,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
41045
41108
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41046
41109
|
variant?: string | undefined;
|
|
41047
41110
|
dimension?: "2d" | "3d" | undefined;
|
|
41048
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41111
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
41049
41112
|
} | undefined;
|
|
41050
41113
|
} | undefined;
|
|
41051
41114
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -41637,7 +41700,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
41637
41700
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
41638
41701
|
variant?: string | undefined;
|
|
41639
41702
|
dimension?: "2d" | "3d" | undefined;
|
|
41640
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
41703
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
41641
41704
|
} | undefined;
|
|
41642
41705
|
} | {
|
|
41643
41706
|
extends: string;
|
|
@@ -45811,7 +45874,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45811
45874
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
45812
45875
|
variant: z.ZodOptional<z.ZodString>;
|
|
45813
45876
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
45814
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
45877
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
45815
45878
|
}, "strip", z.ZodTypeAny, {
|
|
45816
45879
|
role: string;
|
|
45817
45880
|
category: string;
|
|
@@ -45819,7 +45882,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45819
45882
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45820
45883
|
variant?: string | undefined;
|
|
45821
45884
|
dimension?: "2d" | "3d" | undefined;
|
|
45822
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45885
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45823
45886
|
}, {
|
|
45824
45887
|
role: string;
|
|
45825
45888
|
category: string;
|
|
@@ -45827,7 +45890,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45827
45890
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45828
45891
|
variant?: string | undefined;
|
|
45829
45892
|
dimension?: "2d" | "3d" | undefined;
|
|
45830
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45893
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45831
45894
|
}>>;
|
|
45832
45895
|
}, "strip", z.ZodTypeAny, {
|
|
45833
45896
|
name: string;
|
|
@@ -45859,7 +45922,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45859
45922
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45860
45923
|
variant?: string | undefined;
|
|
45861
45924
|
dimension?: "2d" | "3d" | undefined;
|
|
45862
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45925
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45863
45926
|
} | undefined;
|
|
45864
45927
|
}, {
|
|
45865
45928
|
name: string;
|
|
@@ -45891,7 +45954,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45891
45954
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45892
45955
|
variant?: string | undefined;
|
|
45893
45956
|
dimension?: "2d" | "3d" | undefined;
|
|
45894
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
45957
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45895
45958
|
} | undefined;
|
|
45896
45959
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
45897
45960
|
extends: z.ZodString;
|
|
@@ -45964,7 +46027,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45964
46027
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
45965
46028
|
variant: z.ZodOptional<z.ZodString>;
|
|
45966
46029
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
45967
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
46030
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
45968
46031
|
}, "strip", z.ZodTypeAny, {
|
|
45969
46032
|
role: string;
|
|
45970
46033
|
category: string;
|
|
@@ -45972,7 +46035,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45972
46035
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45973
46036
|
variant?: string | undefined;
|
|
45974
46037
|
dimension?: "2d" | "3d" | undefined;
|
|
45975
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46038
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45976
46039
|
}, {
|
|
45977
46040
|
role: string;
|
|
45978
46041
|
category: string;
|
|
@@ -45980,7 +46043,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
45980
46043
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
45981
46044
|
variant?: string | undefined;
|
|
45982
46045
|
dimension?: "2d" | "3d" | undefined;
|
|
45983
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46046
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
45984
46047
|
}>>;
|
|
45985
46048
|
}, "strip", z.ZodTypeAny, {
|
|
45986
46049
|
name: string;
|
|
@@ -46012,7 +46075,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46012
46075
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46013
46076
|
variant?: string | undefined;
|
|
46014
46077
|
dimension?: "2d" | "3d" | undefined;
|
|
46015
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46078
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46016
46079
|
} | undefined;
|
|
46017
46080
|
}, {
|
|
46018
46081
|
name: string;
|
|
@@ -46044,7 +46107,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46044
46107
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46045
46108
|
variant?: string | undefined;
|
|
46046
46109
|
dimension?: "2d" | "3d" | undefined;
|
|
46047
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46110
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46048
46111
|
} | undefined;
|
|
46049
46112
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
46050
46113
|
extends: z.ZodString;
|
|
@@ -46124,6 +46187,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46124
46187
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
46125
46188
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46126
46189
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
46190
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
46127
46191
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
46128
46192
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
46129
46193
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -46621,7 +46685,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46621
46685
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
46622
46686
|
variant: z.ZodOptional<z.ZodString>;
|
|
46623
46687
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
46624
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
46688
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
46625
46689
|
}, "strip", z.ZodTypeAny, {
|
|
46626
46690
|
role: string;
|
|
46627
46691
|
category: string;
|
|
@@ -46629,7 +46693,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46629
46693
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46630
46694
|
variant?: string | undefined;
|
|
46631
46695
|
dimension?: "2d" | "3d" | undefined;
|
|
46632
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46696
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46633
46697
|
}, {
|
|
46634
46698
|
role: string;
|
|
46635
46699
|
category: string;
|
|
@@ -46637,7 +46701,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46637
46701
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46638
46702
|
variant?: string | undefined;
|
|
46639
46703
|
dimension?: "2d" | "3d" | undefined;
|
|
46640
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46704
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46641
46705
|
}>>;
|
|
46642
46706
|
}, "strip", z.ZodTypeAny, {
|
|
46643
46707
|
name: string;
|
|
@@ -46669,7 +46733,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46669
46733
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46670
46734
|
variant?: string | undefined;
|
|
46671
46735
|
dimension?: "2d" | "3d" | undefined;
|
|
46672
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46736
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46673
46737
|
} | undefined;
|
|
46674
46738
|
}, {
|
|
46675
46739
|
name: string;
|
|
@@ -46701,7 +46765,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46701
46765
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46702
46766
|
variant?: string | undefined;
|
|
46703
46767
|
dimension?: "2d" | "3d" | undefined;
|
|
46704
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46768
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46705
46769
|
} | undefined;
|
|
46706
46770
|
}>>;
|
|
46707
46771
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -46827,6 +46891,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46827
46891
|
}[] | undefined;
|
|
46828
46892
|
entityBindingDescription?: string | undefined;
|
|
46829
46893
|
entityBindingSynonyms?: string | undefined;
|
|
46894
|
+
local?: boolean | undefined;
|
|
46830
46895
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
46831
46896
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
46832
46897
|
requiredFields?: {
|
|
@@ -46883,7 +46948,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
46883
46948
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
46884
46949
|
variant?: string | undefined;
|
|
46885
46950
|
dimension?: "2d" | "3d" | undefined;
|
|
46886
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
46951
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
46887
46952
|
} | undefined;
|
|
46888
46953
|
} | undefined;
|
|
46889
46954
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -47009,6 +47074,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47009
47074
|
}[] | undefined;
|
|
47010
47075
|
entityBindingDescription?: string | undefined;
|
|
47011
47076
|
entityBindingSynonyms?: string | undefined;
|
|
47077
|
+
local?: boolean | undefined;
|
|
47012
47078
|
entityRefIds?: Record<string, string> | undefined;
|
|
47013
47079
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
47014
47080
|
requiredFields?: {
|
|
@@ -47065,7 +47131,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47065
47131
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
47066
47132
|
variant?: string | undefined;
|
|
47067
47133
|
dimension?: "2d" | "3d" | undefined;
|
|
47068
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
47134
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
47069
47135
|
} | undefined;
|
|
47070
47136
|
} | undefined;
|
|
47071
47137
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -47334,6 +47400,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47334
47400
|
}[] | undefined;
|
|
47335
47401
|
entityBindingDescription?: string | undefined;
|
|
47336
47402
|
entityBindingSynonyms?: string | undefined;
|
|
47403
|
+
local?: boolean | undefined;
|
|
47337
47404
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
47338
47405
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
47339
47406
|
requiredFields?: {
|
|
@@ -47390,7 +47457,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47390
47457
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
47391
47458
|
variant?: string | undefined;
|
|
47392
47459
|
dimension?: "2d" | "3d" | undefined;
|
|
47393
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
47460
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
47394
47461
|
} | undefined;
|
|
47395
47462
|
} | undefined;
|
|
47396
47463
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -47558,6 +47625,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47558
47625
|
}[] | undefined;
|
|
47559
47626
|
entityBindingDescription?: string | undefined;
|
|
47560
47627
|
entityBindingSynonyms?: string | undefined;
|
|
47628
|
+
local?: boolean | undefined;
|
|
47561
47629
|
entityRefIds?: Record<string, string> | undefined;
|
|
47562
47630
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
47563
47631
|
requiredFields?: {
|
|
@@ -47614,7 +47682,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47614
47682
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
47615
47683
|
variant?: string | undefined;
|
|
47616
47684
|
dimension?: "2d" | "3d" | undefined;
|
|
47617
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
47685
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
47618
47686
|
} | undefined;
|
|
47619
47687
|
} | undefined;
|
|
47620
47688
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -47782,6 +47850,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47782
47850
|
}[] | undefined;
|
|
47783
47851
|
entityBindingDescription?: string | undefined;
|
|
47784
47852
|
entityBindingSynonyms?: string | undefined;
|
|
47853
|
+
local?: boolean | undefined;
|
|
47785
47854
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
47786
47855
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
47787
47856
|
requiredFields?: {
|
|
@@ -47838,7 +47907,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
47838
47907
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
47839
47908
|
variant?: string | undefined;
|
|
47840
47909
|
dimension?: "2d" | "3d" | undefined;
|
|
47841
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
47910
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
47842
47911
|
} | undefined;
|
|
47843
47912
|
} | undefined;
|
|
47844
47913
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -48006,6 +48075,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48006
48075
|
}[] | undefined;
|
|
48007
48076
|
entityBindingDescription?: string | undefined;
|
|
48008
48077
|
entityBindingSynonyms?: string | undefined;
|
|
48078
|
+
local?: boolean | undefined;
|
|
48009
48079
|
entityRefIds?: Record<string, string> | undefined;
|
|
48010
48080
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
48011
48081
|
requiredFields?: {
|
|
@@ -48062,7 +48132,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48062
48132
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48063
48133
|
variant?: string | undefined;
|
|
48064
48134
|
dimension?: "2d" | "3d" | undefined;
|
|
48065
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48135
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48066
48136
|
} | undefined;
|
|
48067
48137
|
} | undefined;
|
|
48068
48138
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -48106,6 +48176,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48106
48176
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
48107
48177
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
48108
48178
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
48179
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
48109
48180
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
48110
48181
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
48111
48182
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -48603,7 +48674,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48603
48674
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
48604
48675
|
variant: z.ZodOptional<z.ZodString>;
|
|
48605
48676
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
48606
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
48677
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
48607
48678
|
}, "strip", z.ZodTypeAny, {
|
|
48608
48679
|
role: string;
|
|
48609
48680
|
category: string;
|
|
@@ -48611,7 +48682,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48611
48682
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48612
48683
|
variant?: string | undefined;
|
|
48613
48684
|
dimension?: "2d" | "3d" | undefined;
|
|
48614
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48685
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48615
48686
|
}, {
|
|
48616
48687
|
role: string;
|
|
48617
48688
|
category: string;
|
|
@@ -48619,7 +48690,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48619
48690
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48620
48691
|
variant?: string | undefined;
|
|
48621
48692
|
dimension?: "2d" | "3d" | undefined;
|
|
48622
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48693
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48623
48694
|
}>>;
|
|
48624
48695
|
}, "strip", z.ZodTypeAny, {
|
|
48625
48696
|
name: string;
|
|
@@ -48651,7 +48722,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48651
48722
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48652
48723
|
variant?: string | undefined;
|
|
48653
48724
|
dimension?: "2d" | "3d" | undefined;
|
|
48654
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48725
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48655
48726
|
} | undefined;
|
|
48656
48727
|
}, {
|
|
48657
48728
|
name: string;
|
|
@@ -48683,7 +48754,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48683
48754
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48684
48755
|
variant?: string | undefined;
|
|
48685
48756
|
dimension?: "2d" | "3d" | undefined;
|
|
48686
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48757
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48687
48758
|
} | undefined;
|
|
48688
48759
|
}>>;
|
|
48689
48760
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -48809,6 +48880,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48809
48880
|
}[] | undefined;
|
|
48810
48881
|
entityBindingDescription?: string | undefined;
|
|
48811
48882
|
entityBindingSynonyms?: string | undefined;
|
|
48883
|
+
local?: boolean | undefined;
|
|
48812
48884
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
48813
48885
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
48814
48886
|
requiredFields?: {
|
|
@@ -48865,7 +48937,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48865
48937
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
48866
48938
|
variant?: string | undefined;
|
|
48867
48939
|
dimension?: "2d" | "3d" | undefined;
|
|
48868
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
48940
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
48869
48941
|
} | undefined;
|
|
48870
48942
|
} | undefined;
|
|
48871
48943
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -48991,6 +49063,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
48991
49063
|
}[] | undefined;
|
|
48992
49064
|
entityBindingDescription?: string | undefined;
|
|
48993
49065
|
entityBindingSynonyms?: string | undefined;
|
|
49066
|
+
local?: boolean | undefined;
|
|
48994
49067
|
entityRefIds?: Record<string, string> | undefined;
|
|
48995
49068
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
48996
49069
|
requiredFields?: {
|
|
@@ -49047,7 +49120,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49047
49120
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49048
49121
|
variant?: string | undefined;
|
|
49049
49122
|
dimension?: "2d" | "3d" | undefined;
|
|
49050
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
49123
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49051
49124
|
} | undefined;
|
|
49052
49125
|
} | undefined;
|
|
49053
49126
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -49169,6 +49242,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49169
49242
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
49170
49243
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
49171
49244
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
49245
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
49172
49246
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
49173
49247
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
49174
49248
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -49666,7 +49740,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49666
49740
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
49667
49741
|
variant: z.ZodOptional<z.ZodString>;
|
|
49668
49742
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
49669
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
49743
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
49670
49744
|
}, "strip", z.ZodTypeAny, {
|
|
49671
49745
|
role: string;
|
|
49672
49746
|
category: string;
|
|
@@ -49674,7 +49748,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49674
49748
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49675
49749
|
variant?: string | undefined;
|
|
49676
49750
|
dimension?: "2d" | "3d" | undefined;
|
|
49677
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
49751
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49678
49752
|
}, {
|
|
49679
49753
|
role: string;
|
|
49680
49754
|
category: string;
|
|
@@ -49682,7 +49756,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49682
49756
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49683
49757
|
variant?: string | undefined;
|
|
49684
49758
|
dimension?: "2d" | "3d" | undefined;
|
|
49685
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
49759
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49686
49760
|
}>>;
|
|
49687
49761
|
}, "strip", z.ZodTypeAny, {
|
|
49688
49762
|
name: string;
|
|
@@ -49714,7 +49788,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49714
49788
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49715
49789
|
variant?: string | undefined;
|
|
49716
49790
|
dimension?: "2d" | "3d" | undefined;
|
|
49717
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
49791
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49718
49792
|
} | undefined;
|
|
49719
49793
|
}, {
|
|
49720
49794
|
name: string;
|
|
@@ -49746,7 +49820,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49746
49820
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49747
49821
|
variant?: string | undefined;
|
|
49748
49822
|
dimension?: "2d" | "3d" | undefined;
|
|
49749
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
49823
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49750
49824
|
} | undefined;
|
|
49751
49825
|
}>>;
|
|
49752
49826
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -49872,6 +49946,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49872
49946
|
}[] | undefined;
|
|
49873
49947
|
entityBindingDescription?: string | undefined;
|
|
49874
49948
|
entityBindingSynonyms?: string | undefined;
|
|
49949
|
+
local?: boolean | undefined;
|
|
49875
49950
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
49876
49951
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
49877
49952
|
requiredFields?: {
|
|
@@ -49928,7 +50003,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
49928
50003
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
49929
50004
|
variant?: string | undefined;
|
|
49930
50005
|
dimension?: "2d" | "3d" | undefined;
|
|
49931
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50006
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
49932
50007
|
} | undefined;
|
|
49933
50008
|
} | undefined;
|
|
49934
50009
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -50054,6 +50129,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50054
50129
|
}[] | undefined;
|
|
50055
50130
|
entityBindingDescription?: string | undefined;
|
|
50056
50131
|
entityBindingSynonyms?: string | undefined;
|
|
50132
|
+
local?: boolean | undefined;
|
|
50057
50133
|
entityRefIds?: Record<string, string> | undefined;
|
|
50058
50134
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
50059
50135
|
requiredFields?: {
|
|
@@ -50110,7 +50186,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50110
50186
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50111
50187
|
variant?: string | undefined;
|
|
50112
50188
|
dimension?: "2d" | "3d" | undefined;
|
|
50113
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50189
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
50114
50190
|
} | undefined;
|
|
50115
50191
|
} | undefined;
|
|
50116
50192
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -50379,6 +50455,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50379
50455
|
}[] | undefined;
|
|
50380
50456
|
entityBindingDescription?: string | undefined;
|
|
50381
50457
|
entityBindingSynonyms?: string | undefined;
|
|
50458
|
+
local?: boolean | undefined;
|
|
50382
50459
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
50383
50460
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
50384
50461
|
requiredFields?: {
|
|
@@ -50435,7 +50512,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50435
50512
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50436
50513
|
variant?: string | undefined;
|
|
50437
50514
|
dimension?: "2d" | "3d" | undefined;
|
|
50438
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50515
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
50439
50516
|
} | undefined;
|
|
50440
50517
|
} | undefined;
|
|
50441
50518
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -50603,6 +50680,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50603
50680
|
}[] | undefined;
|
|
50604
50681
|
entityBindingDescription?: string | undefined;
|
|
50605
50682
|
entityBindingSynonyms?: string | undefined;
|
|
50683
|
+
local?: boolean | undefined;
|
|
50606
50684
|
entityRefIds?: Record<string, string> | undefined;
|
|
50607
50685
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
50608
50686
|
requiredFields?: {
|
|
@@ -50659,7 +50737,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50659
50737
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50660
50738
|
variant?: string | undefined;
|
|
50661
50739
|
dimension?: "2d" | "3d" | undefined;
|
|
50662
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50740
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
50663
50741
|
} | undefined;
|
|
50664
50742
|
} | undefined;
|
|
50665
50743
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -50827,6 +50905,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50827
50905
|
}[] | undefined;
|
|
50828
50906
|
entityBindingDescription?: string | undefined;
|
|
50829
50907
|
entityBindingSynonyms?: string | undefined;
|
|
50908
|
+
local?: boolean | undefined;
|
|
50830
50909
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
50831
50910
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
50832
50911
|
requiredFields?: {
|
|
@@ -50883,7 +50962,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
50883
50962
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
50884
50963
|
variant?: string | undefined;
|
|
50885
50964
|
dimension?: "2d" | "3d" | undefined;
|
|
50886
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
50965
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
50887
50966
|
} | undefined;
|
|
50888
50967
|
} | undefined;
|
|
50889
50968
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -51051,6 +51130,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51051
51130
|
}[] | undefined;
|
|
51052
51131
|
entityBindingDescription?: string | undefined;
|
|
51053
51132
|
entityBindingSynonyms?: string | undefined;
|
|
51133
|
+
local?: boolean | undefined;
|
|
51054
51134
|
entityRefIds?: Record<string, string> | undefined;
|
|
51055
51135
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
51056
51136
|
requiredFields?: {
|
|
@@ -51107,7 +51187,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51107
51187
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51108
51188
|
variant?: string | undefined;
|
|
51109
51189
|
dimension?: "2d" | "3d" | undefined;
|
|
51110
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51190
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51111
51191
|
} | undefined;
|
|
51112
51192
|
} | undefined;
|
|
51113
51193
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -51151,6 +51231,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51151
51231
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
51152
51232
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51153
51233
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
51234
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
51154
51235
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
51155
51236
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
51156
51237
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -51648,7 +51729,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51648
51729
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
51649
51730
|
variant: z.ZodOptional<z.ZodString>;
|
|
51650
51731
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
51651
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
51732
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
51652
51733
|
}, "strip", z.ZodTypeAny, {
|
|
51653
51734
|
role: string;
|
|
51654
51735
|
category: string;
|
|
@@ -51656,7 +51737,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51656
51737
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51657
51738
|
variant?: string | undefined;
|
|
51658
51739
|
dimension?: "2d" | "3d" | undefined;
|
|
51659
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51740
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51660
51741
|
}, {
|
|
51661
51742
|
role: string;
|
|
51662
51743
|
category: string;
|
|
@@ -51664,7 +51745,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51664
51745
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51665
51746
|
variant?: string | undefined;
|
|
51666
51747
|
dimension?: "2d" | "3d" | undefined;
|
|
51667
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51748
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51668
51749
|
}>>;
|
|
51669
51750
|
}, "strip", z.ZodTypeAny, {
|
|
51670
51751
|
name: string;
|
|
@@ -51696,7 +51777,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51696
51777
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51697
51778
|
variant?: string | undefined;
|
|
51698
51779
|
dimension?: "2d" | "3d" | undefined;
|
|
51699
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51780
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51700
51781
|
} | undefined;
|
|
51701
51782
|
}, {
|
|
51702
51783
|
name: string;
|
|
@@ -51728,7 +51809,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51728
51809
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51729
51810
|
variant?: string | undefined;
|
|
51730
51811
|
dimension?: "2d" | "3d" | undefined;
|
|
51731
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51812
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51732
51813
|
} | undefined;
|
|
51733
51814
|
}>>;
|
|
51734
51815
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -51854,6 +51935,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51854
51935
|
}[] | undefined;
|
|
51855
51936
|
entityBindingDescription?: string | undefined;
|
|
51856
51937
|
entityBindingSynonyms?: string | undefined;
|
|
51938
|
+
local?: boolean | undefined;
|
|
51857
51939
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
51858
51940
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
51859
51941
|
requiredFields?: {
|
|
@@ -51910,7 +51992,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
51910
51992
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
51911
51993
|
variant?: string | undefined;
|
|
51912
51994
|
dimension?: "2d" | "3d" | undefined;
|
|
51913
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
51995
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
51914
51996
|
} | undefined;
|
|
51915
51997
|
} | undefined;
|
|
51916
51998
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -52036,6 +52118,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52036
52118
|
}[] | undefined;
|
|
52037
52119
|
entityBindingDescription?: string | undefined;
|
|
52038
52120
|
entityBindingSynonyms?: string | undefined;
|
|
52121
|
+
local?: boolean | undefined;
|
|
52039
52122
|
entityRefIds?: Record<string, string> | undefined;
|
|
52040
52123
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
52041
52124
|
requiredFields?: {
|
|
@@ -52092,7 +52175,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52092
52175
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52093
52176
|
variant?: string | undefined;
|
|
52094
52177
|
dimension?: "2d" | "3d" | undefined;
|
|
52095
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52178
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
52096
52179
|
} | undefined;
|
|
52097
52180
|
} | undefined;
|
|
52098
52181
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -52225,6 +52308,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52225
52308
|
}[] | undefined;
|
|
52226
52309
|
entityBindingDescription?: string | undefined;
|
|
52227
52310
|
entityBindingSynonyms?: string | undefined;
|
|
52311
|
+
local?: boolean | undefined;
|
|
52228
52312
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
52229
52313
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
52230
52314
|
requiredFields?: {
|
|
@@ -52281,7 +52365,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52281
52365
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52282
52366
|
variant?: string | undefined;
|
|
52283
52367
|
dimension?: "2d" | "3d" | undefined;
|
|
52284
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52368
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
52285
52369
|
} | undefined;
|
|
52286
52370
|
} | undefined;
|
|
52287
52371
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -52446,6 +52530,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52446
52530
|
}[] | undefined;
|
|
52447
52531
|
entityBindingDescription?: string | undefined;
|
|
52448
52532
|
entityBindingSynonyms?: string | undefined;
|
|
52533
|
+
local?: boolean | undefined;
|
|
52449
52534
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
52450
52535
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
52451
52536
|
requiredFields?: {
|
|
@@ -52502,7 +52587,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52502
52587
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52503
52588
|
variant?: string | undefined;
|
|
52504
52589
|
dimension?: "2d" | "3d" | undefined;
|
|
52505
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52590
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
52506
52591
|
} | undefined;
|
|
52507
52592
|
} | undefined;
|
|
52508
52593
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -52640,6 +52725,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52640
52725
|
}[] | undefined;
|
|
52641
52726
|
entityBindingDescription?: string | undefined;
|
|
52642
52727
|
entityBindingSynonyms?: string | undefined;
|
|
52728
|
+
local?: boolean | undefined;
|
|
52643
52729
|
entityRefIds?: Record<string, string> | undefined;
|
|
52644
52730
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
52645
52731
|
requiredFields?: {
|
|
@@ -52696,7 +52782,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52696
52782
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52697
52783
|
variant?: string | undefined;
|
|
52698
52784
|
dimension?: "2d" | "3d" | undefined;
|
|
52699
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
52785
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
52700
52786
|
} | undefined;
|
|
52701
52787
|
} | undefined;
|
|
52702
52788
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -52861,6 +52947,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52861
52947
|
}[] | undefined;
|
|
52862
52948
|
entityBindingDescription?: string | undefined;
|
|
52863
52949
|
entityBindingSynonyms?: string | undefined;
|
|
52950
|
+
local?: boolean | undefined;
|
|
52864
52951
|
entityRefIds?: Record<string, string> | undefined;
|
|
52865
52952
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
52866
52953
|
requiredFields?: {
|
|
@@ -52917,7 +53004,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
52917
53004
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
52918
53005
|
variant?: string | undefined;
|
|
52919
53006
|
dimension?: "2d" | "3d" | undefined;
|
|
52920
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53007
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
52921
53008
|
} | undefined;
|
|
52922
53009
|
} | undefined;
|
|
52923
53010
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -53216,7 +53303,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53216
53303
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53217
53304
|
variant?: string | undefined;
|
|
53218
53305
|
dimension?: "2d" | "3d" | undefined;
|
|
53219
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53306
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
53220
53307
|
} | undefined;
|
|
53221
53308
|
} | {
|
|
53222
53309
|
extends: string;
|
|
@@ -53370,6 +53457,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53370
53457
|
}[] | undefined;
|
|
53371
53458
|
entityBindingDescription?: string | undefined;
|
|
53372
53459
|
entityBindingSynonyms?: string | undefined;
|
|
53460
|
+
local?: boolean | undefined;
|
|
53373
53461
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
53374
53462
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
53375
53463
|
requiredFields?: {
|
|
@@ -53426,7 +53514,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53426
53514
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53427
53515
|
variant?: string | undefined;
|
|
53428
53516
|
dimension?: "2d" | "3d" | undefined;
|
|
53429
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53517
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
53430
53518
|
} | undefined;
|
|
53431
53519
|
} | undefined;
|
|
53432
53520
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -53591,6 +53679,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53591
53679
|
}[] | undefined;
|
|
53592
53680
|
entityBindingDescription?: string | undefined;
|
|
53593
53681
|
entityBindingSynonyms?: string | undefined;
|
|
53682
|
+
local?: boolean | undefined;
|
|
53594
53683
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
53595
53684
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
53596
53685
|
requiredFields?: {
|
|
@@ -53647,7 +53736,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53647
53736
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53648
53737
|
variant?: string | undefined;
|
|
53649
53738
|
dimension?: "2d" | "3d" | undefined;
|
|
53650
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53739
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
53651
53740
|
} | undefined;
|
|
53652
53741
|
} | undefined;
|
|
53653
53742
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -53781,6 +53870,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53781
53870
|
}[] | undefined;
|
|
53782
53871
|
entityBindingDescription?: string | undefined;
|
|
53783
53872
|
entityBindingSynonyms?: string | undefined;
|
|
53873
|
+
local?: boolean | undefined;
|
|
53784
53874
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
53785
53875
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
53786
53876
|
requiredFields?: {
|
|
@@ -53837,7 +53927,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
53837
53927
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
53838
53928
|
variant?: string | undefined;
|
|
53839
53929
|
dimension?: "2d" | "3d" | undefined;
|
|
53840
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
53930
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
53841
53931
|
} | undefined;
|
|
53842
53932
|
} | undefined;
|
|
53843
53933
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -54002,6 +54092,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54002
54092
|
}[] | undefined;
|
|
54003
54093
|
entityBindingDescription?: string | undefined;
|
|
54004
54094
|
entityBindingSynonyms?: string | undefined;
|
|
54095
|
+
local?: boolean | undefined;
|
|
54005
54096
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
54006
54097
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
54007
54098
|
requiredFields?: {
|
|
@@ -54058,7 +54149,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54058
54149
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54059
54150
|
variant?: string | undefined;
|
|
54060
54151
|
dimension?: "2d" | "3d" | undefined;
|
|
54061
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
54152
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
54062
54153
|
} | undefined;
|
|
54063
54154
|
} | undefined;
|
|
54064
54155
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -54650,7 +54741,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54650
54741
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54651
54742
|
variant?: string | undefined;
|
|
54652
54743
|
dimension?: "2d" | "3d" | undefined;
|
|
54653
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
54744
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
54654
54745
|
} | undefined;
|
|
54655
54746
|
} | {
|
|
54656
54747
|
extends: string;
|
|
@@ -54725,7 +54816,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54725
54816
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54726
54817
|
variant?: string | undefined;
|
|
54727
54818
|
dimension?: "2d" | "3d" | undefined;
|
|
54728
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
54819
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
54729
54820
|
} | undefined;
|
|
54730
54821
|
} | {
|
|
54731
54822
|
extends: string;
|
|
@@ -54879,6 +54970,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54879
54970
|
}[] | undefined;
|
|
54880
54971
|
entityBindingDescription?: string | undefined;
|
|
54881
54972
|
entityBindingSynonyms?: string | undefined;
|
|
54973
|
+
local?: boolean | undefined;
|
|
54882
54974
|
entityRefIds?: Record<string, string> | undefined;
|
|
54883
54975
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
54884
54976
|
requiredFields?: {
|
|
@@ -54935,7 +55027,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
54935
55027
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
54936
55028
|
variant?: string | undefined;
|
|
54937
55029
|
dimension?: "2d" | "3d" | undefined;
|
|
54938
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55030
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
54939
55031
|
} | undefined;
|
|
54940
55032
|
} | undefined;
|
|
54941
55033
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -55100,6 +55192,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55100
55192
|
}[] | undefined;
|
|
55101
55193
|
entityBindingDescription?: string | undefined;
|
|
55102
55194
|
entityBindingSynonyms?: string | undefined;
|
|
55195
|
+
local?: boolean | undefined;
|
|
55103
55196
|
entityRefIds?: Record<string, string> | undefined;
|
|
55104
55197
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
55105
55198
|
requiredFields?: {
|
|
@@ -55156,7 +55249,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55156
55249
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55157
55250
|
variant?: string | undefined;
|
|
55158
55251
|
dimension?: "2d" | "3d" | undefined;
|
|
55159
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55252
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
55160
55253
|
} | undefined;
|
|
55161
55254
|
} | undefined;
|
|
55162
55255
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -55290,6 +55383,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55290
55383
|
}[] | undefined;
|
|
55291
55384
|
entityBindingDescription?: string | undefined;
|
|
55292
55385
|
entityBindingSynonyms?: string | undefined;
|
|
55386
|
+
local?: boolean | undefined;
|
|
55293
55387
|
entityRefIds?: Record<string, string> | undefined;
|
|
55294
55388
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
55295
55389
|
requiredFields?: {
|
|
@@ -55346,7 +55440,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55346
55440
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55347
55441
|
variant?: string | undefined;
|
|
55348
55442
|
dimension?: "2d" | "3d" | undefined;
|
|
55349
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55443
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
55350
55444
|
} | undefined;
|
|
55351
55445
|
} | undefined;
|
|
55352
55446
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -55511,6 +55605,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55511
55605
|
}[] | undefined;
|
|
55512
55606
|
entityBindingDescription?: string | undefined;
|
|
55513
55607
|
entityBindingSynonyms?: string | undefined;
|
|
55608
|
+
local?: boolean | undefined;
|
|
55514
55609
|
entityRefIds?: Record<string, string> | undefined;
|
|
55515
55610
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
55516
55611
|
requiredFields?: {
|
|
@@ -55567,7 +55662,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
55567
55662
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
55568
55663
|
variant?: string | undefined;
|
|
55569
55664
|
dimension?: "2d" | "3d" | undefined;
|
|
55570
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
55665
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
55571
55666
|
} | undefined;
|
|
55572
55667
|
} | undefined;
|
|
55573
55668
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -56159,7 +56254,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
56159
56254
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
56160
56255
|
variant?: string | undefined;
|
|
56161
56256
|
dimension?: "2d" | "3d" | undefined;
|
|
56162
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
56257
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
56163
56258
|
} | undefined;
|
|
56164
56259
|
} | {
|
|
56165
56260
|
extends: string;
|
|
@@ -60340,7 +60435,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60340
60435
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
60341
60436
|
variant: z.ZodOptional<z.ZodString>;
|
|
60342
60437
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
60343
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
60438
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
60344
60439
|
}, "strip", z.ZodTypeAny, {
|
|
60345
60440
|
role: string;
|
|
60346
60441
|
category: string;
|
|
@@ -60348,7 +60443,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60348
60443
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60349
60444
|
variant?: string | undefined;
|
|
60350
60445
|
dimension?: "2d" | "3d" | undefined;
|
|
60351
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60446
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60352
60447
|
}, {
|
|
60353
60448
|
role: string;
|
|
60354
60449
|
category: string;
|
|
@@ -60356,7 +60451,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60356
60451
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60357
60452
|
variant?: string | undefined;
|
|
60358
60453
|
dimension?: "2d" | "3d" | undefined;
|
|
60359
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60454
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60360
60455
|
}>>;
|
|
60361
60456
|
}, "strip", z.ZodTypeAny, {
|
|
60362
60457
|
name: string;
|
|
@@ -60388,7 +60483,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60388
60483
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60389
60484
|
variant?: string | undefined;
|
|
60390
60485
|
dimension?: "2d" | "3d" | undefined;
|
|
60391
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60486
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60392
60487
|
} | undefined;
|
|
60393
60488
|
}, {
|
|
60394
60489
|
name: string;
|
|
@@ -60420,7 +60515,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60420
60515
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60421
60516
|
variant?: string | undefined;
|
|
60422
60517
|
dimension?: "2d" | "3d" | undefined;
|
|
60423
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60518
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60424
60519
|
} | undefined;
|
|
60425
60520
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
60426
60521
|
extends: z.ZodString;
|
|
@@ -60493,7 +60588,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60493
60588
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
60494
60589
|
variant: z.ZodOptional<z.ZodString>;
|
|
60495
60590
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
60496
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
60591
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
60497
60592
|
}, "strip", z.ZodTypeAny, {
|
|
60498
60593
|
role: string;
|
|
60499
60594
|
category: string;
|
|
@@ -60501,7 +60596,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60501
60596
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60502
60597
|
variant?: string | undefined;
|
|
60503
60598
|
dimension?: "2d" | "3d" | undefined;
|
|
60504
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60599
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60505
60600
|
}, {
|
|
60506
60601
|
role: string;
|
|
60507
60602
|
category: string;
|
|
@@ -60509,7 +60604,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60509
60604
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60510
60605
|
variant?: string | undefined;
|
|
60511
60606
|
dimension?: "2d" | "3d" | undefined;
|
|
60512
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60607
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60513
60608
|
}>>;
|
|
60514
60609
|
}, "strip", z.ZodTypeAny, {
|
|
60515
60610
|
name: string;
|
|
@@ -60541,7 +60636,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60541
60636
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60542
60637
|
variant?: string | undefined;
|
|
60543
60638
|
dimension?: "2d" | "3d" | undefined;
|
|
60544
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60639
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60545
60640
|
} | undefined;
|
|
60546
60641
|
}, {
|
|
60547
60642
|
name: string;
|
|
@@ -60573,7 +60668,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60573
60668
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
60574
60669
|
variant?: string | undefined;
|
|
60575
60670
|
dimension?: "2d" | "3d" | undefined;
|
|
60576
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
60671
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
60577
60672
|
} | undefined;
|
|
60578
60673
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
60579
60674
|
extends: z.ZodString;
|
|
@@ -60653,6 +60748,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
60653
60748
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
60654
60749
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
60655
60750
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
60751
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
60656
60752
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
60657
60753
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
60658
60754
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -61150,7 +61246,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61150
61246
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
61151
61247
|
variant: z.ZodOptional<z.ZodString>;
|
|
61152
61248
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
61153
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
61249
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
61154
61250
|
}, "strip", z.ZodTypeAny, {
|
|
61155
61251
|
role: string;
|
|
61156
61252
|
category: string;
|
|
@@ -61158,7 +61254,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61158
61254
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61159
61255
|
variant?: string | undefined;
|
|
61160
61256
|
dimension?: "2d" | "3d" | undefined;
|
|
61161
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61257
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61162
61258
|
}, {
|
|
61163
61259
|
role: string;
|
|
61164
61260
|
category: string;
|
|
@@ -61166,7 +61262,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61166
61262
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61167
61263
|
variant?: string | undefined;
|
|
61168
61264
|
dimension?: "2d" | "3d" | undefined;
|
|
61169
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61265
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61170
61266
|
}>>;
|
|
61171
61267
|
}, "strip", z.ZodTypeAny, {
|
|
61172
61268
|
name: string;
|
|
@@ -61198,7 +61294,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61198
61294
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61199
61295
|
variant?: string | undefined;
|
|
61200
61296
|
dimension?: "2d" | "3d" | undefined;
|
|
61201
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61297
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61202
61298
|
} | undefined;
|
|
61203
61299
|
}, {
|
|
61204
61300
|
name: string;
|
|
@@ -61230,7 +61326,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61230
61326
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61231
61327
|
variant?: string | undefined;
|
|
61232
61328
|
dimension?: "2d" | "3d" | undefined;
|
|
61233
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61329
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61234
61330
|
} | undefined;
|
|
61235
61331
|
}>>;
|
|
61236
61332
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -61356,6 +61452,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61356
61452
|
}[] | undefined;
|
|
61357
61453
|
entityBindingDescription?: string | undefined;
|
|
61358
61454
|
entityBindingSynonyms?: string | undefined;
|
|
61455
|
+
local?: boolean | undefined;
|
|
61359
61456
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
61360
61457
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
61361
61458
|
requiredFields?: {
|
|
@@ -61412,7 +61509,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61412
61509
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61413
61510
|
variant?: string | undefined;
|
|
61414
61511
|
dimension?: "2d" | "3d" | undefined;
|
|
61415
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61512
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61416
61513
|
} | undefined;
|
|
61417
61514
|
} | undefined;
|
|
61418
61515
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -61538,6 +61635,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61538
61635
|
}[] | undefined;
|
|
61539
61636
|
entityBindingDescription?: string | undefined;
|
|
61540
61637
|
entityBindingSynonyms?: string | undefined;
|
|
61638
|
+
local?: boolean | undefined;
|
|
61541
61639
|
entityRefIds?: Record<string, string> | undefined;
|
|
61542
61640
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
61543
61641
|
requiredFields?: {
|
|
@@ -61594,7 +61692,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61594
61692
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61595
61693
|
variant?: string | undefined;
|
|
61596
61694
|
dimension?: "2d" | "3d" | undefined;
|
|
61597
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
61695
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61598
61696
|
} | undefined;
|
|
61599
61697
|
} | undefined;
|
|
61600
61698
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -61863,6 +61961,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61863
61961
|
}[] | undefined;
|
|
61864
61962
|
entityBindingDescription?: string | undefined;
|
|
61865
61963
|
entityBindingSynonyms?: string | undefined;
|
|
61964
|
+
local?: boolean | undefined;
|
|
61866
61965
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
61867
61966
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
61868
61967
|
requiredFields?: {
|
|
@@ -61919,7 +62018,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
61919
62018
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
61920
62019
|
variant?: string | undefined;
|
|
61921
62020
|
dimension?: "2d" | "3d" | undefined;
|
|
61922
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
62021
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
61923
62022
|
} | undefined;
|
|
61924
62023
|
} | undefined;
|
|
61925
62024
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -62087,6 +62186,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62087
62186
|
}[] | undefined;
|
|
62088
62187
|
entityBindingDescription?: string | undefined;
|
|
62089
62188
|
entityBindingSynonyms?: string | undefined;
|
|
62189
|
+
local?: boolean | undefined;
|
|
62090
62190
|
entityRefIds?: Record<string, string> | undefined;
|
|
62091
62191
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
62092
62192
|
requiredFields?: {
|
|
@@ -62143,7 +62243,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62143
62243
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
62144
62244
|
variant?: string | undefined;
|
|
62145
62245
|
dimension?: "2d" | "3d" | undefined;
|
|
62146
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
62246
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
62147
62247
|
} | undefined;
|
|
62148
62248
|
} | undefined;
|
|
62149
62249
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -62311,6 +62411,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62311
62411
|
}[] | undefined;
|
|
62312
62412
|
entityBindingDescription?: string | undefined;
|
|
62313
62413
|
entityBindingSynonyms?: string | undefined;
|
|
62414
|
+
local?: boolean | undefined;
|
|
62314
62415
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
62315
62416
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
62316
62417
|
requiredFields?: {
|
|
@@ -62367,7 +62468,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62367
62468
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
62368
62469
|
variant?: string | undefined;
|
|
62369
62470
|
dimension?: "2d" | "3d" | undefined;
|
|
62370
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
62471
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
62371
62472
|
} | undefined;
|
|
62372
62473
|
} | undefined;
|
|
62373
62474
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -62535,6 +62636,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62535
62636
|
}[] | undefined;
|
|
62536
62637
|
entityBindingDescription?: string | undefined;
|
|
62537
62638
|
entityBindingSynonyms?: string | undefined;
|
|
62639
|
+
local?: boolean | undefined;
|
|
62538
62640
|
entityRefIds?: Record<string, string> | undefined;
|
|
62539
62641
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
62540
62642
|
requiredFields?: {
|
|
@@ -62591,7 +62693,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62591
62693
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
62592
62694
|
variant?: string | undefined;
|
|
62593
62695
|
dimension?: "2d" | "3d" | undefined;
|
|
62594
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
62696
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
62595
62697
|
} | undefined;
|
|
62596
62698
|
} | undefined;
|
|
62597
62699
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -62635,6 +62737,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
62635
62737
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
62636
62738
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
62637
62739
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
62740
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
62638
62741
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
62639
62742
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
62640
62743
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -63132,7 +63235,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63132
63235
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
63133
63236
|
variant: z.ZodOptional<z.ZodString>;
|
|
63134
63237
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
63135
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
63238
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
63136
63239
|
}, "strip", z.ZodTypeAny, {
|
|
63137
63240
|
role: string;
|
|
63138
63241
|
category: string;
|
|
@@ -63140,7 +63243,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63140
63243
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63141
63244
|
variant?: string | undefined;
|
|
63142
63245
|
dimension?: "2d" | "3d" | undefined;
|
|
63143
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63246
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63144
63247
|
}, {
|
|
63145
63248
|
role: string;
|
|
63146
63249
|
category: string;
|
|
@@ -63148,7 +63251,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63148
63251
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63149
63252
|
variant?: string | undefined;
|
|
63150
63253
|
dimension?: "2d" | "3d" | undefined;
|
|
63151
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63254
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63152
63255
|
}>>;
|
|
63153
63256
|
}, "strip", z.ZodTypeAny, {
|
|
63154
63257
|
name: string;
|
|
@@ -63180,7 +63283,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63180
63283
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63181
63284
|
variant?: string | undefined;
|
|
63182
63285
|
dimension?: "2d" | "3d" | undefined;
|
|
63183
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63286
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63184
63287
|
} | undefined;
|
|
63185
63288
|
}, {
|
|
63186
63289
|
name: string;
|
|
@@ -63212,7 +63315,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63212
63315
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63213
63316
|
variant?: string | undefined;
|
|
63214
63317
|
dimension?: "2d" | "3d" | undefined;
|
|
63215
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63318
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63216
63319
|
} | undefined;
|
|
63217
63320
|
}>>;
|
|
63218
63321
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -63338,6 +63441,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63338
63441
|
}[] | undefined;
|
|
63339
63442
|
entityBindingDescription?: string | undefined;
|
|
63340
63443
|
entityBindingSynonyms?: string | undefined;
|
|
63444
|
+
local?: boolean | undefined;
|
|
63341
63445
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
63342
63446
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
63343
63447
|
requiredFields?: {
|
|
@@ -63394,7 +63498,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63394
63498
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63395
63499
|
variant?: string | undefined;
|
|
63396
63500
|
dimension?: "2d" | "3d" | undefined;
|
|
63397
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63501
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63398
63502
|
} | undefined;
|
|
63399
63503
|
} | undefined;
|
|
63400
63504
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -63520,6 +63624,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63520
63624
|
}[] | undefined;
|
|
63521
63625
|
entityBindingDescription?: string | undefined;
|
|
63522
63626
|
entityBindingSynonyms?: string | undefined;
|
|
63627
|
+
local?: boolean | undefined;
|
|
63523
63628
|
entityRefIds?: Record<string, string> | undefined;
|
|
63524
63629
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
63525
63630
|
requiredFields?: {
|
|
@@ -63576,7 +63681,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63576
63681
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
63577
63682
|
variant?: string | undefined;
|
|
63578
63683
|
dimension?: "2d" | "3d" | undefined;
|
|
63579
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
63684
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
63580
63685
|
} | undefined;
|
|
63581
63686
|
} | undefined;
|
|
63582
63687
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -63698,6 +63803,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
63698
63803
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
63699
63804
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
63700
63805
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
63806
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
63701
63807
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
63702
63808
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
63703
63809
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -64195,7 +64301,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64195
64301
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
64196
64302
|
variant: z.ZodOptional<z.ZodString>;
|
|
64197
64303
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
64198
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
64304
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
64199
64305
|
}, "strip", z.ZodTypeAny, {
|
|
64200
64306
|
role: string;
|
|
64201
64307
|
category: string;
|
|
@@ -64203,7 +64309,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64203
64309
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64204
64310
|
variant?: string | undefined;
|
|
64205
64311
|
dimension?: "2d" | "3d" | undefined;
|
|
64206
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64312
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64207
64313
|
}, {
|
|
64208
64314
|
role: string;
|
|
64209
64315
|
category: string;
|
|
@@ -64211,7 +64317,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64211
64317
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64212
64318
|
variant?: string | undefined;
|
|
64213
64319
|
dimension?: "2d" | "3d" | undefined;
|
|
64214
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64320
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64215
64321
|
}>>;
|
|
64216
64322
|
}, "strip", z.ZodTypeAny, {
|
|
64217
64323
|
name: string;
|
|
@@ -64243,7 +64349,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64243
64349
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64244
64350
|
variant?: string | undefined;
|
|
64245
64351
|
dimension?: "2d" | "3d" | undefined;
|
|
64246
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64352
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64247
64353
|
} | undefined;
|
|
64248
64354
|
}, {
|
|
64249
64355
|
name: string;
|
|
@@ -64275,7 +64381,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64275
64381
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64276
64382
|
variant?: string | undefined;
|
|
64277
64383
|
dimension?: "2d" | "3d" | undefined;
|
|
64278
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64384
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64279
64385
|
} | undefined;
|
|
64280
64386
|
}>>;
|
|
64281
64387
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -64401,6 +64507,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64401
64507
|
}[] | undefined;
|
|
64402
64508
|
entityBindingDescription?: string | undefined;
|
|
64403
64509
|
entityBindingSynonyms?: string | undefined;
|
|
64510
|
+
local?: boolean | undefined;
|
|
64404
64511
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
64405
64512
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
64406
64513
|
requiredFields?: {
|
|
@@ -64457,7 +64564,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64457
64564
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64458
64565
|
variant?: string | undefined;
|
|
64459
64566
|
dimension?: "2d" | "3d" | undefined;
|
|
64460
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64567
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64461
64568
|
} | undefined;
|
|
64462
64569
|
} | undefined;
|
|
64463
64570
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -64583,6 +64690,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64583
64690
|
}[] | undefined;
|
|
64584
64691
|
entityBindingDescription?: string | undefined;
|
|
64585
64692
|
entityBindingSynonyms?: string | undefined;
|
|
64693
|
+
local?: boolean | undefined;
|
|
64586
64694
|
entityRefIds?: Record<string, string> | undefined;
|
|
64587
64695
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
64588
64696
|
requiredFields?: {
|
|
@@ -64639,7 +64747,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64639
64747
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64640
64748
|
variant?: string | undefined;
|
|
64641
64749
|
dimension?: "2d" | "3d" | undefined;
|
|
64642
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
64750
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64643
64751
|
} | undefined;
|
|
64644
64752
|
} | undefined;
|
|
64645
64753
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -64908,6 +65016,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64908
65016
|
}[] | undefined;
|
|
64909
65017
|
entityBindingDescription?: string | undefined;
|
|
64910
65018
|
entityBindingSynonyms?: string | undefined;
|
|
65019
|
+
local?: boolean | undefined;
|
|
64911
65020
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
64912
65021
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
64913
65022
|
requiredFields?: {
|
|
@@ -64964,7 +65073,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
64964
65073
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
64965
65074
|
variant?: string | undefined;
|
|
64966
65075
|
dimension?: "2d" | "3d" | undefined;
|
|
64967
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
65076
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
64968
65077
|
} | undefined;
|
|
64969
65078
|
} | undefined;
|
|
64970
65079
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -65132,6 +65241,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65132
65241
|
}[] | undefined;
|
|
65133
65242
|
entityBindingDescription?: string | undefined;
|
|
65134
65243
|
entityBindingSynonyms?: string | undefined;
|
|
65244
|
+
local?: boolean | undefined;
|
|
65135
65245
|
entityRefIds?: Record<string, string> | undefined;
|
|
65136
65246
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
65137
65247
|
requiredFields?: {
|
|
@@ -65188,7 +65298,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65188
65298
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
65189
65299
|
variant?: string | undefined;
|
|
65190
65300
|
dimension?: "2d" | "3d" | undefined;
|
|
65191
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
65301
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
65192
65302
|
} | undefined;
|
|
65193
65303
|
} | undefined;
|
|
65194
65304
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -65356,6 +65466,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65356
65466
|
}[] | undefined;
|
|
65357
65467
|
entityBindingDescription?: string | undefined;
|
|
65358
65468
|
entityBindingSynonyms?: string | undefined;
|
|
65469
|
+
local?: boolean | undefined;
|
|
65359
65470
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
65360
65471
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
65361
65472
|
requiredFields?: {
|
|
@@ -65412,7 +65523,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65412
65523
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
65413
65524
|
variant?: string | undefined;
|
|
65414
65525
|
dimension?: "2d" | "3d" | undefined;
|
|
65415
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
65526
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
65416
65527
|
} | undefined;
|
|
65417
65528
|
} | undefined;
|
|
65418
65529
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -65580,6 +65691,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65580
65691
|
}[] | undefined;
|
|
65581
65692
|
entityBindingDescription?: string | undefined;
|
|
65582
65693
|
entityBindingSynonyms?: string | undefined;
|
|
65694
|
+
local?: boolean | undefined;
|
|
65583
65695
|
entityRefIds?: Record<string, string> | undefined;
|
|
65584
65696
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
65585
65697
|
requiredFields?: {
|
|
@@ -65636,7 +65748,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65636
65748
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
65637
65749
|
variant?: string | undefined;
|
|
65638
65750
|
dimension?: "2d" | "3d" | undefined;
|
|
65639
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
65751
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
65640
65752
|
} | undefined;
|
|
65641
65753
|
} | undefined;
|
|
65642
65754
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -65680,6 +65792,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
65680
65792
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
65681
65793
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
65682
65794
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
65795
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
65683
65796
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
65684
65797
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
65685
65798
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -66177,7 +66290,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66177
66290
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
66178
66291
|
variant: z.ZodOptional<z.ZodString>;
|
|
66179
66292
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
66180
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
66293
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
66181
66294
|
}, "strip", z.ZodTypeAny, {
|
|
66182
66295
|
role: string;
|
|
66183
66296
|
category: string;
|
|
@@ -66185,7 +66298,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66185
66298
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66186
66299
|
variant?: string | undefined;
|
|
66187
66300
|
dimension?: "2d" | "3d" | undefined;
|
|
66188
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66301
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66189
66302
|
}, {
|
|
66190
66303
|
role: string;
|
|
66191
66304
|
category: string;
|
|
@@ -66193,7 +66306,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66193
66306
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66194
66307
|
variant?: string | undefined;
|
|
66195
66308
|
dimension?: "2d" | "3d" | undefined;
|
|
66196
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66309
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66197
66310
|
}>>;
|
|
66198
66311
|
}, "strip", z.ZodTypeAny, {
|
|
66199
66312
|
name: string;
|
|
@@ -66225,7 +66338,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66225
66338
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66226
66339
|
variant?: string | undefined;
|
|
66227
66340
|
dimension?: "2d" | "3d" | undefined;
|
|
66228
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66341
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66229
66342
|
} | undefined;
|
|
66230
66343
|
}, {
|
|
66231
66344
|
name: string;
|
|
@@ -66257,7 +66370,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66257
66370
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66258
66371
|
variant?: string | undefined;
|
|
66259
66372
|
dimension?: "2d" | "3d" | undefined;
|
|
66260
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66373
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66261
66374
|
} | undefined;
|
|
66262
66375
|
}>>;
|
|
66263
66376
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -66383,6 +66496,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66383
66496
|
}[] | undefined;
|
|
66384
66497
|
entityBindingDescription?: string | undefined;
|
|
66385
66498
|
entityBindingSynonyms?: string | undefined;
|
|
66499
|
+
local?: boolean | undefined;
|
|
66386
66500
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
66387
66501
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
66388
66502
|
requiredFields?: {
|
|
@@ -66439,7 +66553,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66439
66553
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66440
66554
|
variant?: string | undefined;
|
|
66441
66555
|
dimension?: "2d" | "3d" | undefined;
|
|
66442
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66556
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66443
66557
|
} | undefined;
|
|
66444
66558
|
} | undefined;
|
|
66445
66559
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -66565,6 +66679,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66565
66679
|
}[] | undefined;
|
|
66566
66680
|
entityBindingDescription?: string | undefined;
|
|
66567
66681
|
entityBindingSynonyms?: string | undefined;
|
|
66682
|
+
local?: boolean | undefined;
|
|
66568
66683
|
entityRefIds?: Record<string, string> | undefined;
|
|
66569
66684
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
66570
66685
|
requiredFields?: {
|
|
@@ -66621,7 +66736,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66621
66736
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66622
66737
|
variant?: string | undefined;
|
|
66623
66738
|
dimension?: "2d" | "3d" | undefined;
|
|
66624
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66739
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66625
66740
|
} | undefined;
|
|
66626
66741
|
} | undefined;
|
|
66627
66742
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -66754,6 +66869,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66754
66869
|
}[] | undefined;
|
|
66755
66870
|
entityBindingDescription?: string | undefined;
|
|
66756
66871
|
entityBindingSynonyms?: string | undefined;
|
|
66872
|
+
local?: boolean | undefined;
|
|
66757
66873
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
66758
66874
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
66759
66875
|
requiredFields?: {
|
|
@@ -66810,7 +66926,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66810
66926
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
66811
66927
|
variant?: string | undefined;
|
|
66812
66928
|
dimension?: "2d" | "3d" | undefined;
|
|
66813
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
66929
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
66814
66930
|
} | undefined;
|
|
66815
66931
|
} | undefined;
|
|
66816
66932
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -66975,6 +67091,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
66975
67091
|
}[] | undefined;
|
|
66976
67092
|
entityBindingDescription?: string | undefined;
|
|
66977
67093
|
entityBindingSynonyms?: string | undefined;
|
|
67094
|
+
local?: boolean | undefined;
|
|
66978
67095
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
66979
67096
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
66980
67097
|
requiredFields?: {
|
|
@@ -67031,7 +67148,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67031
67148
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
67032
67149
|
variant?: string | undefined;
|
|
67033
67150
|
dimension?: "2d" | "3d" | undefined;
|
|
67034
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
67151
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
67035
67152
|
} | undefined;
|
|
67036
67153
|
} | undefined;
|
|
67037
67154
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -67169,6 +67286,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67169
67286
|
}[] | undefined;
|
|
67170
67287
|
entityBindingDescription?: string | undefined;
|
|
67171
67288
|
entityBindingSynonyms?: string | undefined;
|
|
67289
|
+
local?: boolean | undefined;
|
|
67172
67290
|
entityRefIds?: Record<string, string> | undefined;
|
|
67173
67291
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
67174
67292
|
requiredFields?: {
|
|
@@ -67225,7 +67343,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67225
67343
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
67226
67344
|
variant?: string | undefined;
|
|
67227
67345
|
dimension?: "2d" | "3d" | undefined;
|
|
67228
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
67346
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
67229
67347
|
} | undefined;
|
|
67230
67348
|
} | undefined;
|
|
67231
67349
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -67390,6 +67508,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67390
67508
|
}[] | undefined;
|
|
67391
67509
|
entityBindingDescription?: string | undefined;
|
|
67392
67510
|
entityBindingSynonyms?: string | undefined;
|
|
67511
|
+
local?: boolean | undefined;
|
|
67393
67512
|
entityRefIds?: Record<string, string> | undefined;
|
|
67394
67513
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
67395
67514
|
requiredFields?: {
|
|
@@ -67446,7 +67565,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67446
67565
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
67447
67566
|
variant?: string | undefined;
|
|
67448
67567
|
dimension?: "2d" | "3d" | undefined;
|
|
67449
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
67568
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
67450
67569
|
} | undefined;
|
|
67451
67570
|
} | undefined;
|
|
67452
67571
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -67745,7 +67864,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67745
67864
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
67746
67865
|
variant?: string | undefined;
|
|
67747
67866
|
dimension?: "2d" | "3d" | undefined;
|
|
67748
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
67867
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
67749
67868
|
} | undefined;
|
|
67750
67869
|
} | {
|
|
67751
67870
|
extends: string;
|
|
@@ -67899,6 +68018,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67899
68018
|
}[] | undefined;
|
|
67900
68019
|
entityBindingDescription?: string | undefined;
|
|
67901
68020
|
entityBindingSynonyms?: string | undefined;
|
|
68021
|
+
local?: boolean | undefined;
|
|
67902
68022
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
67903
68023
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
67904
68024
|
requiredFields?: {
|
|
@@ -67955,7 +68075,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
67955
68075
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
67956
68076
|
variant?: string | undefined;
|
|
67957
68077
|
dimension?: "2d" | "3d" | undefined;
|
|
67958
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
68078
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
67959
68079
|
} | undefined;
|
|
67960
68080
|
} | undefined;
|
|
67961
68081
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -68120,6 +68240,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68120
68240
|
}[] | undefined;
|
|
68121
68241
|
entityBindingDescription?: string | undefined;
|
|
68122
68242
|
entityBindingSynonyms?: string | undefined;
|
|
68243
|
+
local?: boolean | undefined;
|
|
68123
68244
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
68124
68245
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
68125
68246
|
requiredFields?: {
|
|
@@ -68176,7 +68297,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68176
68297
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
68177
68298
|
variant?: string | undefined;
|
|
68178
68299
|
dimension?: "2d" | "3d" | undefined;
|
|
68179
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
68300
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
68180
68301
|
} | undefined;
|
|
68181
68302
|
} | undefined;
|
|
68182
68303
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -68310,6 +68431,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68310
68431
|
}[] | undefined;
|
|
68311
68432
|
entityBindingDescription?: string | undefined;
|
|
68312
68433
|
entityBindingSynonyms?: string | undefined;
|
|
68434
|
+
local?: boolean | undefined;
|
|
68313
68435
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
68314
68436
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
68315
68437
|
requiredFields?: {
|
|
@@ -68366,7 +68488,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68366
68488
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
68367
68489
|
variant?: string | undefined;
|
|
68368
68490
|
dimension?: "2d" | "3d" | undefined;
|
|
68369
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
68491
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
68370
68492
|
} | undefined;
|
|
68371
68493
|
} | undefined;
|
|
68372
68494
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -68531,6 +68653,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68531
68653
|
}[] | undefined;
|
|
68532
68654
|
entityBindingDescription?: string | undefined;
|
|
68533
68655
|
entityBindingSynonyms?: string | undefined;
|
|
68656
|
+
local?: boolean | undefined;
|
|
68534
68657
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
68535
68658
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
68536
68659
|
requiredFields?: {
|
|
@@ -68587,7 +68710,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
68587
68710
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
68588
68711
|
variant?: string | undefined;
|
|
68589
68712
|
dimension?: "2d" | "3d" | undefined;
|
|
68590
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
68713
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
68591
68714
|
} | undefined;
|
|
68592
68715
|
} | undefined;
|
|
68593
68716
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -69179,7 +69302,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69179
69302
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
69180
69303
|
variant?: string | undefined;
|
|
69181
69304
|
dimension?: "2d" | "3d" | undefined;
|
|
69182
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
69305
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
69183
69306
|
} | undefined;
|
|
69184
69307
|
} | {
|
|
69185
69308
|
extends: string;
|
|
@@ -69254,7 +69377,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69254
69377
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
69255
69378
|
variant?: string | undefined;
|
|
69256
69379
|
dimension?: "2d" | "3d" | undefined;
|
|
69257
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
69380
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
69258
69381
|
} | undefined;
|
|
69259
69382
|
} | {
|
|
69260
69383
|
extends: string;
|
|
@@ -69408,6 +69531,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69408
69531
|
}[] | undefined;
|
|
69409
69532
|
entityBindingDescription?: string | undefined;
|
|
69410
69533
|
entityBindingSynonyms?: string | undefined;
|
|
69534
|
+
local?: boolean | undefined;
|
|
69411
69535
|
entityRefIds?: Record<string, string> | undefined;
|
|
69412
69536
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
69413
69537
|
requiredFields?: {
|
|
@@ -69464,7 +69588,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69464
69588
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
69465
69589
|
variant?: string | undefined;
|
|
69466
69590
|
dimension?: "2d" | "3d" | undefined;
|
|
69467
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
69591
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
69468
69592
|
} | undefined;
|
|
69469
69593
|
} | undefined;
|
|
69470
69594
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -69629,6 +69753,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69629
69753
|
}[] | undefined;
|
|
69630
69754
|
entityBindingDescription?: string | undefined;
|
|
69631
69755
|
entityBindingSynonyms?: string | undefined;
|
|
69756
|
+
local?: boolean | undefined;
|
|
69632
69757
|
entityRefIds?: Record<string, string> | undefined;
|
|
69633
69758
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
69634
69759
|
requiredFields?: {
|
|
@@ -69685,7 +69810,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69685
69810
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
69686
69811
|
variant?: string | undefined;
|
|
69687
69812
|
dimension?: "2d" | "3d" | undefined;
|
|
69688
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
69813
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
69689
69814
|
} | undefined;
|
|
69690
69815
|
} | undefined;
|
|
69691
69816
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -69819,6 +69944,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69819
69944
|
}[] | undefined;
|
|
69820
69945
|
entityBindingDescription?: string | undefined;
|
|
69821
69946
|
entityBindingSynonyms?: string | undefined;
|
|
69947
|
+
local?: boolean | undefined;
|
|
69822
69948
|
entityRefIds?: Record<string, string> | undefined;
|
|
69823
69949
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
69824
69950
|
requiredFields?: {
|
|
@@ -69875,7 +70001,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
69875
70001
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
69876
70002
|
variant?: string | undefined;
|
|
69877
70003
|
dimension?: "2d" | "3d" | undefined;
|
|
69878
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
70004
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
69879
70005
|
} | undefined;
|
|
69880
70006
|
} | undefined;
|
|
69881
70007
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -70040,6 +70166,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
70040
70166
|
}[] | undefined;
|
|
70041
70167
|
entityBindingDescription?: string | undefined;
|
|
70042
70168
|
entityBindingSynonyms?: string | undefined;
|
|
70169
|
+
local?: boolean | undefined;
|
|
70043
70170
|
entityRefIds?: Record<string, string> | undefined;
|
|
70044
70171
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
70045
70172
|
requiredFields?: {
|
|
@@ -70096,7 +70223,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
70096
70223
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
70097
70224
|
variant?: string | undefined;
|
|
70098
70225
|
dimension?: "2d" | "3d" | undefined;
|
|
70099
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
70226
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
70100
70227
|
} | undefined;
|
|
70101
70228
|
} | undefined;
|
|
70102
70229
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -70688,7 +70815,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
70688
70815
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
70689
70816
|
variant?: string | undefined;
|
|
70690
70817
|
dimension?: "2d" | "3d" | undefined;
|
|
70691
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
70818
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
70692
70819
|
} | undefined;
|
|
70693
70820
|
} | {
|
|
70694
70821
|
extends: string;
|
|
@@ -79040,7 +79167,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79040
79167
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
79041
79168
|
variant: z.ZodOptional<z.ZodString>;
|
|
79042
79169
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
79043
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
79170
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
79044
79171
|
}, "strip", z.ZodTypeAny, {
|
|
79045
79172
|
role: string;
|
|
79046
79173
|
category: string;
|
|
@@ -79048,7 +79175,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79048
79175
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79049
79176
|
variant?: string | undefined;
|
|
79050
79177
|
dimension?: "2d" | "3d" | undefined;
|
|
79051
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79178
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79052
79179
|
}, {
|
|
79053
79180
|
role: string;
|
|
79054
79181
|
category: string;
|
|
@@ -79056,7 +79183,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79056
79183
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79057
79184
|
variant?: string | undefined;
|
|
79058
79185
|
dimension?: "2d" | "3d" | undefined;
|
|
79059
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79186
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79060
79187
|
}>>;
|
|
79061
79188
|
}, "strip", z.ZodTypeAny, {
|
|
79062
79189
|
name: string;
|
|
@@ -79088,7 +79215,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79088
79215
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79089
79216
|
variant?: string | undefined;
|
|
79090
79217
|
dimension?: "2d" | "3d" | undefined;
|
|
79091
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79218
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79092
79219
|
} | undefined;
|
|
79093
79220
|
}, {
|
|
79094
79221
|
name: string;
|
|
@@ -79120,7 +79247,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79120
79247
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79121
79248
|
variant?: string | undefined;
|
|
79122
79249
|
dimension?: "2d" | "3d" | undefined;
|
|
79123
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79250
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79124
79251
|
} | undefined;
|
|
79125
79252
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
79126
79253
|
extends: z.ZodString;
|
|
@@ -79193,7 +79320,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79193
79320
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
79194
79321
|
variant: z.ZodOptional<z.ZodString>;
|
|
79195
79322
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
79196
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
79323
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
79197
79324
|
}, "strip", z.ZodTypeAny, {
|
|
79198
79325
|
role: string;
|
|
79199
79326
|
category: string;
|
|
@@ -79201,7 +79328,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79201
79328
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79202
79329
|
variant?: string | undefined;
|
|
79203
79330
|
dimension?: "2d" | "3d" | undefined;
|
|
79204
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79331
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79205
79332
|
}, {
|
|
79206
79333
|
role: string;
|
|
79207
79334
|
category: string;
|
|
@@ -79209,7 +79336,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79209
79336
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79210
79337
|
variant?: string | undefined;
|
|
79211
79338
|
dimension?: "2d" | "3d" | undefined;
|
|
79212
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79339
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79213
79340
|
}>>;
|
|
79214
79341
|
}, "strip", z.ZodTypeAny, {
|
|
79215
79342
|
name: string;
|
|
@@ -79241,7 +79368,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79241
79368
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79242
79369
|
variant?: string | undefined;
|
|
79243
79370
|
dimension?: "2d" | "3d" | undefined;
|
|
79244
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79371
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79245
79372
|
} | undefined;
|
|
79246
79373
|
}, {
|
|
79247
79374
|
name: string;
|
|
@@ -79273,7 +79400,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79273
79400
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79274
79401
|
variant?: string | undefined;
|
|
79275
79402
|
dimension?: "2d" | "3d" | undefined;
|
|
79276
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79403
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79277
79404
|
} | undefined;
|
|
79278
79405
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
79279
79406
|
extends: z.ZodString;
|
|
@@ -79353,6 +79480,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79353
79480
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
79354
79481
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
79355
79482
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
79483
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
79356
79484
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
79357
79485
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
79358
79486
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -79850,7 +79978,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79850
79978
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
79851
79979
|
variant: z.ZodOptional<z.ZodString>;
|
|
79852
79980
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
79853
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
79981
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
79854
79982
|
}, "strip", z.ZodTypeAny, {
|
|
79855
79983
|
role: string;
|
|
79856
79984
|
category: string;
|
|
@@ -79858,7 +79986,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79858
79986
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79859
79987
|
variant?: string | undefined;
|
|
79860
79988
|
dimension?: "2d" | "3d" | undefined;
|
|
79861
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79989
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79862
79990
|
}, {
|
|
79863
79991
|
role: string;
|
|
79864
79992
|
category: string;
|
|
@@ -79866,7 +79994,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79866
79994
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79867
79995
|
variant?: string | undefined;
|
|
79868
79996
|
dimension?: "2d" | "3d" | undefined;
|
|
79869
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
79997
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79870
79998
|
}>>;
|
|
79871
79999
|
}, "strip", z.ZodTypeAny, {
|
|
79872
80000
|
name: string;
|
|
@@ -79898,7 +80026,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79898
80026
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79899
80027
|
variant?: string | undefined;
|
|
79900
80028
|
dimension?: "2d" | "3d" | undefined;
|
|
79901
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80029
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79902
80030
|
} | undefined;
|
|
79903
80031
|
}, {
|
|
79904
80032
|
name: string;
|
|
@@ -79930,7 +80058,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
79930
80058
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
79931
80059
|
variant?: string | undefined;
|
|
79932
80060
|
dimension?: "2d" | "3d" | undefined;
|
|
79933
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80061
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
79934
80062
|
} | undefined;
|
|
79935
80063
|
}>>;
|
|
79936
80064
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -80056,6 +80184,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80056
80184
|
}[] | undefined;
|
|
80057
80185
|
entityBindingDescription?: string | undefined;
|
|
80058
80186
|
entityBindingSynonyms?: string | undefined;
|
|
80187
|
+
local?: boolean | undefined;
|
|
80059
80188
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
80060
80189
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
80061
80190
|
requiredFields?: {
|
|
@@ -80112,7 +80241,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80112
80241
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
80113
80242
|
variant?: string | undefined;
|
|
80114
80243
|
dimension?: "2d" | "3d" | undefined;
|
|
80115
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80244
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
80116
80245
|
} | undefined;
|
|
80117
80246
|
} | undefined;
|
|
80118
80247
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -80238,6 +80367,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80238
80367
|
}[] | undefined;
|
|
80239
80368
|
entityBindingDescription?: string | undefined;
|
|
80240
80369
|
entityBindingSynonyms?: string | undefined;
|
|
80370
|
+
local?: boolean | undefined;
|
|
80241
80371
|
entityRefIds?: Record<string, string> | undefined;
|
|
80242
80372
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
80243
80373
|
requiredFields?: {
|
|
@@ -80294,7 +80424,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80294
80424
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
80295
80425
|
variant?: string | undefined;
|
|
80296
80426
|
dimension?: "2d" | "3d" | undefined;
|
|
80297
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80427
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
80298
80428
|
} | undefined;
|
|
80299
80429
|
} | undefined;
|
|
80300
80430
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -80563,6 +80693,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80563
80693
|
}[] | undefined;
|
|
80564
80694
|
entityBindingDescription?: string | undefined;
|
|
80565
80695
|
entityBindingSynonyms?: string | undefined;
|
|
80696
|
+
local?: boolean | undefined;
|
|
80566
80697
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
80567
80698
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
80568
80699
|
requiredFields?: {
|
|
@@ -80619,7 +80750,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80619
80750
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
80620
80751
|
variant?: string | undefined;
|
|
80621
80752
|
dimension?: "2d" | "3d" | undefined;
|
|
80622
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80753
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
80623
80754
|
} | undefined;
|
|
80624
80755
|
} | undefined;
|
|
80625
80756
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -80787,6 +80918,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80787
80918
|
}[] | undefined;
|
|
80788
80919
|
entityBindingDescription?: string | undefined;
|
|
80789
80920
|
entityBindingSynonyms?: string | undefined;
|
|
80921
|
+
local?: boolean | undefined;
|
|
80790
80922
|
entityRefIds?: Record<string, string> | undefined;
|
|
80791
80923
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
80792
80924
|
requiredFields?: {
|
|
@@ -80843,7 +80975,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
80843
80975
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
80844
80976
|
variant?: string | undefined;
|
|
80845
80977
|
dimension?: "2d" | "3d" | undefined;
|
|
80846
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
80978
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
80847
80979
|
} | undefined;
|
|
80848
80980
|
} | undefined;
|
|
80849
80981
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -81011,6 +81143,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81011
81143
|
}[] | undefined;
|
|
81012
81144
|
entityBindingDescription?: string | undefined;
|
|
81013
81145
|
entityBindingSynonyms?: string | undefined;
|
|
81146
|
+
local?: boolean | undefined;
|
|
81014
81147
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
81015
81148
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
81016
81149
|
requiredFields?: {
|
|
@@ -81067,7 +81200,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81067
81200
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81068
81201
|
variant?: string | undefined;
|
|
81069
81202
|
dimension?: "2d" | "3d" | undefined;
|
|
81070
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
81203
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81071
81204
|
} | undefined;
|
|
81072
81205
|
} | undefined;
|
|
81073
81206
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -81235,6 +81368,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81235
81368
|
}[] | undefined;
|
|
81236
81369
|
entityBindingDescription?: string | undefined;
|
|
81237
81370
|
entityBindingSynonyms?: string | undefined;
|
|
81371
|
+
local?: boolean | undefined;
|
|
81238
81372
|
entityRefIds?: Record<string, string> | undefined;
|
|
81239
81373
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
81240
81374
|
requiredFields?: {
|
|
@@ -81291,7 +81425,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81291
81425
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81292
81426
|
variant?: string | undefined;
|
|
81293
81427
|
dimension?: "2d" | "3d" | undefined;
|
|
81294
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
81428
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81295
81429
|
} | undefined;
|
|
81296
81430
|
} | undefined;
|
|
81297
81431
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -81335,6 +81469,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81335
81469
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
81336
81470
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
81337
81471
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
81472
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
81338
81473
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
81339
81474
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
81340
81475
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -81832,7 +81967,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81832
81967
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
81833
81968
|
variant: z.ZodOptional<z.ZodString>;
|
|
81834
81969
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
81835
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
81970
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
81836
81971
|
}, "strip", z.ZodTypeAny, {
|
|
81837
81972
|
role: string;
|
|
81838
81973
|
category: string;
|
|
@@ -81840,7 +81975,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81840
81975
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81841
81976
|
variant?: string | undefined;
|
|
81842
81977
|
dimension?: "2d" | "3d" | undefined;
|
|
81843
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
81978
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81844
81979
|
}, {
|
|
81845
81980
|
role: string;
|
|
81846
81981
|
category: string;
|
|
@@ -81848,7 +81983,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81848
81983
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81849
81984
|
variant?: string | undefined;
|
|
81850
81985
|
dimension?: "2d" | "3d" | undefined;
|
|
81851
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
81986
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81852
81987
|
}>>;
|
|
81853
81988
|
}, "strip", z.ZodTypeAny, {
|
|
81854
81989
|
name: string;
|
|
@@ -81880,7 +82015,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81880
82015
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81881
82016
|
variant?: string | undefined;
|
|
81882
82017
|
dimension?: "2d" | "3d" | undefined;
|
|
81883
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
82018
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81884
82019
|
} | undefined;
|
|
81885
82020
|
}, {
|
|
81886
82021
|
name: string;
|
|
@@ -81912,7 +82047,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
81912
82047
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
81913
82048
|
variant?: string | undefined;
|
|
81914
82049
|
dimension?: "2d" | "3d" | undefined;
|
|
81915
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
82050
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
81916
82051
|
} | undefined;
|
|
81917
82052
|
}>>;
|
|
81918
82053
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -82038,6 +82173,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82038
82173
|
}[] | undefined;
|
|
82039
82174
|
entityBindingDescription?: string | undefined;
|
|
82040
82175
|
entityBindingSynonyms?: string | undefined;
|
|
82176
|
+
local?: boolean | undefined;
|
|
82041
82177
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
82042
82178
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
82043
82179
|
requiredFields?: {
|
|
@@ -82094,7 +82230,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82094
82230
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82095
82231
|
variant?: string | undefined;
|
|
82096
82232
|
dimension?: "2d" | "3d" | undefined;
|
|
82097
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
82233
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82098
82234
|
} | undefined;
|
|
82099
82235
|
} | undefined;
|
|
82100
82236
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -82220,6 +82356,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82220
82356
|
}[] | undefined;
|
|
82221
82357
|
entityBindingDescription?: string | undefined;
|
|
82222
82358
|
entityBindingSynonyms?: string | undefined;
|
|
82359
|
+
local?: boolean | undefined;
|
|
82223
82360
|
entityRefIds?: Record<string, string> | undefined;
|
|
82224
82361
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
82225
82362
|
requiredFields?: {
|
|
@@ -82276,7 +82413,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82276
82413
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82277
82414
|
variant?: string | undefined;
|
|
82278
82415
|
dimension?: "2d" | "3d" | undefined;
|
|
82279
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
82416
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82280
82417
|
} | undefined;
|
|
82281
82418
|
} | undefined;
|
|
82282
82419
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -82398,6 +82535,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82398
82535
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
82399
82536
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
82400
82537
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
82538
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
82401
82539
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
82402
82540
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
82403
82541
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -82895,7 +83033,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82895
83033
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
82896
83034
|
variant: z.ZodOptional<z.ZodString>;
|
|
82897
83035
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
82898
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
83036
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
82899
83037
|
}, "strip", z.ZodTypeAny, {
|
|
82900
83038
|
role: string;
|
|
82901
83039
|
category: string;
|
|
@@ -82903,7 +83041,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82903
83041
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82904
83042
|
variant?: string | undefined;
|
|
82905
83043
|
dimension?: "2d" | "3d" | undefined;
|
|
82906
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83044
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82907
83045
|
}, {
|
|
82908
83046
|
role: string;
|
|
82909
83047
|
category: string;
|
|
@@ -82911,7 +83049,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82911
83049
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82912
83050
|
variant?: string | undefined;
|
|
82913
83051
|
dimension?: "2d" | "3d" | undefined;
|
|
82914
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83052
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82915
83053
|
}>>;
|
|
82916
83054
|
}, "strip", z.ZodTypeAny, {
|
|
82917
83055
|
name: string;
|
|
@@ -82943,7 +83081,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82943
83081
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82944
83082
|
variant?: string | undefined;
|
|
82945
83083
|
dimension?: "2d" | "3d" | undefined;
|
|
82946
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83084
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82947
83085
|
} | undefined;
|
|
82948
83086
|
}, {
|
|
82949
83087
|
name: string;
|
|
@@ -82975,7 +83113,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
82975
83113
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
82976
83114
|
variant?: string | undefined;
|
|
82977
83115
|
dimension?: "2d" | "3d" | undefined;
|
|
82978
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83116
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
82979
83117
|
} | undefined;
|
|
82980
83118
|
}>>;
|
|
82981
83119
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -83101,6 +83239,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83101
83239
|
}[] | undefined;
|
|
83102
83240
|
entityBindingDescription?: string | undefined;
|
|
83103
83241
|
entityBindingSynonyms?: string | undefined;
|
|
83242
|
+
local?: boolean | undefined;
|
|
83104
83243
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
83105
83244
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
83106
83245
|
requiredFields?: {
|
|
@@ -83157,7 +83296,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83157
83296
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
83158
83297
|
variant?: string | undefined;
|
|
83159
83298
|
dimension?: "2d" | "3d" | undefined;
|
|
83160
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83299
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
83161
83300
|
} | undefined;
|
|
83162
83301
|
} | undefined;
|
|
83163
83302
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -83283,6 +83422,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83283
83422
|
}[] | undefined;
|
|
83284
83423
|
entityBindingDescription?: string | undefined;
|
|
83285
83424
|
entityBindingSynonyms?: string | undefined;
|
|
83425
|
+
local?: boolean | undefined;
|
|
83286
83426
|
entityRefIds?: Record<string, string> | undefined;
|
|
83287
83427
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
83288
83428
|
requiredFields?: {
|
|
@@ -83339,7 +83479,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83339
83479
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
83340
83480
|
variant?: string | undefined;
|
|
83341
83481
|
dimension?: "2d" | "3d" | undefined;
|
|
83342
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83482
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
83343
83483
|
} | undefined;
|
|
83344
83484
|
} | undefined;
|
|
83345
83485
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -83608,6 +83748,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83608
83748
|
}[] | undefined;
|
|
83609
83749
|
entityBindingDescription?: string | undefined;
|
|
83610
83750
|
entityBindingSynonyms?: string | undefined;
|
|
83751
|
+
local?: boolean | undefined;
|
|
83611
83752
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
83612
83753
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
83613
83754
|
requiredFields?: {
|
|
@@ -83664,7 +83805,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83664
83805
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
83665
83806
|
variant?: string | undefined;
|
|
83666
83807
|
dimension?: "2d" | "3d" | undefined;
|
|
83667
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
83808
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
83668
83809
|
} | undefined;
|
|
83669
83810
|
} | undefined;
|
|
83670
83811
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -83832,6 +83973,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83832
83973
|
}[] | undefined;
|
|
83833
83974
|
entityBindingDescription?: string | undefined;
|
|
83834
83975
|
entityBindingSynonyms?: string | undefined;
|
|
83976
|
+
local?: boolean | undefined;
|
|
83835
83977
|
entityRefIds?: Record<string, string> | undefined;
|
|
83836
83978
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
83837
83979
|
requiredFields?: {
|
|
@@ -83888,7 +84030,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
83888
84030
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
83889
84031
|
variant?: string | undefined;
|
|
83890
84032
|
dimension?: "2d" | "3d" | undefined;
|
|
83891
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
84033
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
83892
84034
|
} | undefined;
|
|
83893
84035
|
} | undefined;
|
|
83894
84036
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -84056,6 +84198,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84056
84198
|
}[] | undefined;
|
|
84057
84199
|
entityBindingDescription?: string | undefined;
|
|
84058
84200
|
entityBindingSynonyms?: string | undefined;
|
|
84201
|
+
local?: boolean | undefined;
|
|
84059
84202
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
84060
84203
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
84061
84204
|
requiredFields?: {
|
|
@@ -84112,7 +84255,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84112
84255
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84113
84256
|
variant?: string | undefined;
|
|
84114
84257
|
dimension?: "2d" | "3d" | undefined;
|
|
84115
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
84258
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84116
84259
|
} | undefined;
|
|
84117
84260
|
} | undefined;
|
|
84118
84261
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -84280,6 +84423,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84280
84423
|
}[] | undefined;
|
|
84281
84424
|
entityBindingDescription?: string | undefined;
|
|
84282
84425
|
entityBindingSynonyms?: string | undefined;
|
|
84426
|
+
local?: boolean | undefined;
|
|
84283
84427
|
entityRefIds?: Record<string, string> | undefined;
|
|
84284
84428
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
84285
84429
|
requiredFields?: {
|
|
@@ -84336,7 +84480,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84336
84480
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84337
84481
|
variant?: string | undefined;
|
|
84338
84482
|
dimension?: "2d" | "3d" | undefined;
|
|
84339
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
84483
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84340
84484
|
} | undefined;
|
|
84341
84485
|
} | undefined;
|
|
84342
84486
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -84380,6 +84524,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84380
84524
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
84381
84525
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
84382
84526
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
84527
|
+
local: z.ZodOptional<z.ZodBoolean>;
|
|
84383
84528
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
84384
84529
|
linkedEntityId: z.ZodOptional<z.ZodEffects<z.ZodString, EntityId, string>>;
|
|
84385
84530
|
entityRefIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EntityId, string>>>;
|
|
@@ -84877,7 +85022,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84877
85022
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
84878
85023
|
variant: z.ZodOptional<z.ZodString>;
|
|
84879
85024
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
84880
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
85025
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
84881
85026
|
}, "strip", z.ZodTypeAny, {
|
|
84882
85027
|
role: string;
|
|
84883
85028
|
category: string;
|
|
@@ -84885,7 +85030,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84885
85030
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84886
85031
|
variant?: string | undefined;
|
|
84887
85032
|
dimension?: "2d" | "3d" | undefined;
|
|
84888
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85033
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84889
85034
|
}, {
|
|
84890
85035
|
role: string;
|
|
84891
85036
|
category: string;
|
|
@@ -84893,7 +85038,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84893
85038
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84894
85039
|
variant?: string | undefined;
|
|
84895
85040
|
dimension?: "2d" | "3d" | undefined;
|
|
84896
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85041
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84897
85042
|
}>>;
|
|
84898
85043
|
}, "strip", z.ZodTypeAny, {
|
|
84899
85044
|
name: string;
|
|
@@ -84925,7 +85070,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84925
85070
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84926
85071
|
variant?: string | undefined;
|
|
84927
85072
|
dimension?: "2d" | "3d" | undefined;
|
|
84928
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85073
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84929
85074
|
} | undefined;
|
|
84930
85075
|
}, {
|
|
84931
85076
|
name: string;
|
|
@@ -84957,7 +85102,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
84957
85102
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
84958
85103
|
variant?: string | undefined;
|
|
84959
85104
|
dimension?: "2d" | "3d" | undefined;
|
|
84960
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85105
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
84961
85106
|
} | undefined;
|
|
84962
85107
|
}>>;
|
|
84963
85108
|
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
@@ -85083,6 +85228,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85083
85228
|
}[] | undefined;
|
|
85084
85229
|
entityBindingDescription?: string | undefined;
|
|
85085
85230
|
entityBindingSynonyms?: string | undefined;
|
|
85231
|
+
local?: boolean | undefined;
|
|
85086
85232
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
85087
85233
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
85088
85234
|
requiredFields?: {
|
|
@@ -85139,7 +85285,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85139
85285
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
85140
85286
|
variant?: string | undefined;
|
|
85141
85287
|
dimension?: "2d" | "3d" | undefined;
|
|
85142
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85288
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
85143
85289
|
} | undefined;
|
|
85144
85290
|
} | undefined;
|
|
85145
85291
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -85265,6 +85411,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85265
85411
|
}[] | undefined;
|
|
85266
85412
|
entityBindingDescription?: string | undefined;
|
|
85267
85413
|
entityBindingSynonyms?: string | undefined;
|
|
85414
|
+
local?: boolean | undefined;
|
|
85268
85415
|
entityRefIds?: Record<string, string> | undefined;
|
|
85269
85416
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
85270
85417
|
requiredFields?: {
|
|
@@ -85321,7 +85468,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85321
85468
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
85322
85469
|
variant?: string | undefined;
|
|
85323
85470
|
dimension?: "2d" | "3d" | undefined;
|
|
85324
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85471
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
85325
85472
|
} | undefined;
|
|
85326
85473
|
} | undefined;
|
|
85327
85474
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -85454,6 +85601,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85454
85601
|
}[] | undefined;
|
|
85455
85602
|
entityBindingDescription?: string | undefined;
|
|
85456
85603
|
entityBindingSynonyms?: string | undefined;
|
|
85604
|
+
local?: boolean | undefined;
|
|
85457
85605
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
85458
85606
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
85459
85607
|
requiredFields?: {
|
|
@@ -85510,7 +85658,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85510
85658
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
85511
85659
|
variant?: string | undefined;
|
|
85512
85660
|
dimension?: "2d" | "3d" | undefined;
|
|
85513
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85661
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
85514
85662
|
} | undefined;
|
|
85515
85663
|
} | undefined;
|
|
85516
85664
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -85675,6 +85823,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85675
85823
|
}[] | undefined;
|
|
85676
85824
|
entityBindingDescription?: string | undefined;
|
|
85677
85825
|
entityBindingSynonyms?: string | undefined;
|
|
85826
|
+
local?: boolean | undefined;
|
|
85678
85827
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
85679
85828
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
85680
85829
|
requiredFields?: {
|
|
@@ -85731,7 +85880,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85731
85880
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
85732
85881
|
variant?: string | undefined;
|
|
85733
85882
|
dimension?: "2d" | "3d" | undefined;
|
|
85734
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
85883
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
85735
85884
|
} | undefined;
|
|
85736
85885
|
} | undefined;
|
|
85737
85886
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -85869,6 +86018,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85869
86018
|
}[] | undefined;
|
|
85870
86019
|
entityBindingDescription?: string | undefined;
|
|
85871
86020
|
entityBindingSynonyms?: string | undefined;
|
|
86021
|
+
local?: boolean | undefined;
|
|
85872
86022
|
entityRefIds?: Record<string, string> | undefined;
|
|
85873
86023
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
85874
86024
|
requiredFields?: {
|
|
@@ -85925,7 +86075,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
85925
86075
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
85926
86076
|
variant?: string | undefined;
|
|
85927
86077
|
dimension?: "2d" | "3d" | undefined;
|
|
85928
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
86078
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
85929
86079
|
} | undefined;
|
|
85930
86080
|
} | undefined;
|
|
85931
86081
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -86090,6 +86240,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86090
86240
|
}[] | undefined;
|
|
86091
86241
|
entityBindingDescription?: string | undefined;
|
|
86092
86242
|
entityBindingSynonyms?: string | undefined;
|
|
86243
|
+
local?: boolean | undefined;
|
|
86093
86244
|
entityRefIds?: Record<string, string> | undefined;
|
|
86094
86245
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
86095
86246
|
requiredFields?: {
|
|
@@ -86146,7 +86297,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86146
86297
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
86147
86298
|
variant?: string | undefined;
|
|
86148
86299
|
dimension?: "2d" | "3d" | undefined;
|
|
86149
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
86300
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
86150
86301
|
} | undefined;
|
|
86151
86302
|
} | undefined;
|
|
86152
86303
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -86445,7 +86596,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86445
86596
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
86446
86597
|
variant?: string | undefined;
|
|
86447
86598
|
dimension?: "2d" | "3d" | undefined;
|
|
86448
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
86599
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
86449
86600
|
} | undefined;
|
|
86450
86601
|
} | {
|
|
86451
86602
|
extends: string;
|
|
@@ -86599,6 +86750,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86599
86750
|
}[] | undefined;
|
|
86600
86751
|
entityBindingDescription?: string | undefined;
|
|
86601
86752
|
entityBindingSynonyms?: string | undefined;
|
|
86753
|
+
local?: boolean | undefined;
|
|
86602
86754
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
86603
86755
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
86604
86756
|
requiredFields?: {
|
|
@@ -86655,7 +86807,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86655
86807
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
86656
86808
|
variant?: string | undefined;
|
|
86657
86809
|
dimension?: "2d" | "3d" | undefined;
|
|
86658
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
86810
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
86659
86811
|
} | undefined;
|
|
86660
86812
|
} | undefined;
|
|
86661
86813
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -86820,6 +86972,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86820
86972
|
}[] | undefined;
|
|
86821
86973
|
entityBindingDescription?: string | undefined;
|
|
86822
86974
|
entityBindingSynonyms?: string | undefined;
|
|
86975
|
+
local?: boolean | undefined;
|
|
86823
86976
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
86824
86977
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
86825
86978
|
requiredFields?: {
|
|
@@ -86876,7 +87029,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
86876
87029
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
86877
87030
|
variant?: string | undefined;
|
|
86878
87031
|
dimension?: "2d" | "3d" | undefined;
|
|
86879
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
87032
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
86880
87033
|
} | undefined;
|
|
86881
87034
|
} | undefined;
|
|
86882
87035
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -87010,6 +87163,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87010
87163
|
}[] | undefined;
|
|
87011
87164
|
entityBindingDescription?: string | undefined;
|
|
87012
87165
|
entityBindingSynonyms?: string | undefined;
|
|
87166
|
+
local?: boolean | undefined;
|
|
87013
87167
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
87014
87168
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
87015
87169
|
requiredFields?: {
|
|
@@ -87066,7 +87220,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87066
87220
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
87067
87221
|
variant?: string | undefined;
|
|
87068
87222
|
dimension?: "2d" | "3d" | undefined;
|
|
87069
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
87223
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
87070
87224
|
} | undefined;
|
|
87071
87225
|
} | undefined;
|
|
87072
87226
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -87231,6 +87385,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87231
87385
|
}[] | undefined;
|
|
87232
87386
|
entityBindingDescription?: string | undefined;
|
|
87233
87387
|
entityBindingSynonyms?: string | undefined;
|
|
87388
|
+
local?: boolean | undefined;
|
|
87234
87389
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
87235
87390
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
87236
87391
|
requiredFields?: {
|
|
@@ -87287,7 +87442,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87287
87442
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
87288
87443
|
variant?: string | undefined;
|
|
87289
87444
|
dimension?: "2d" | "3d" | undefined;
|
|
87290
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
87445
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
87291
87446
|
} | undefined;
|
|
87292
87447
|
} | undefined;
|
|
87293
87448
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -87879,7 +88034,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87879
88034
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
87880
88035
|
variant?: string | undefined;
|
|
87881
88036
|
dimension?: "2d" | "3d" | undefined;
|
|
87882
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88037
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
87883
88038
|
} | undefined;
|
|
87884
88039
|
} | {
|
|
87885
88040
|
extends: string;
|
|
@@ -87954,7 +88109,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
87954
88109
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
87955
88110
|
variant?: string | undefined;
|
|
87956
88111
|
dimension?: "2d" | "3d" | undefined;
|
|
87957
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88112
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
87958
88113
|
} | undefined;
|
|
87959
88114
|
} | {
|
|
87960
88115
|
extends: string;
|
|
@@ -88108,6 +88263,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88108
88263
|
}[] | undefined;
|
|
88109
88264
|
entityBindingDescription?: string | undefined;
|
|
88110
88265
|
entityBindingSynonyms?: string | undefined;
|
|
88266
|
+
local?: boolean | undefined;
|
|
88111
88267
|
entityRefIds?: Record<string, string> | undefined;
|
|
88112
88268
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
88113
88269
|
requiredFields?: {
|
|
@@ -88164,7 +88320,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88164
88320
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
88165
88321
|
variant?: string | undefined;
|
|
88166
88322
|
dimension?: "2d" | "3d" | undefined;
|
|
88167
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88323
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
88168
88324
|
} | undefined;
|
|
88169
88325
|
} | undefined;
|
|
88170
88326
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -88329,6 +88485,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88329
88485
|
}[] | undefined;
|
|
88330
88486
|
entityBindingDescription?: string | undefined;
|
|
88331
88487
|
entityBindingSynonyms?: string | undefined;
|
|
88488
|
+
local?: boolean | undefined;
|
|
88332
88489
|
entityRefIds?: Record<string, string> | undefined;
|
|
88333
88490
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
88334
88491
|
requiredFields?: {
|
|
@@ -88385,7 +88542,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88385
88542
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
88386
88543
|
variant?: string | undefined;
|
|
88387
88544
|
dimension?: "2d" | "3d" | undefined;
|
|
88388
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88545
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
88389
88546
|
} | undefined;
|
|
88390
88547
|
} | undefined;
|
|
88391
88548
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -88519,6 +88676,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88519
88676
|
}[] | undefined;
|
|
88520
88677
|
entityBindingDescription?: string | undefined;
|
|
88521
88678
|
entityBindingSynonyms?: string | undefined;
|
|
88679
|
+
local?: boolean | undefined;
|
|
88522
88680
|
entityRefIds?: Record<string, string> | undefined;
|
|
88523
88681
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
88524
88682
|
requiredFields?: {
|
|
@@ -88575,7 +88733,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88575
88733
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
88576
88734
|
variant?: string | undefined;
|
|
88577
88735
|
dimension?: "2d" | "3d" | undefined;
|
|
88578
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88736
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
88579
88737
|
} | undefined;
|
|
88580
88738
|
} | undefined;
|
|
88581
88739
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -88740,6 +88898,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88740
88898
|
}[] | undefined;
|
|
88741
88899
|
entityBindingDescription?: string | undefined;
|
|
88742
88900
|
entityBindingSynonyms?: string | undefined;
|
|
88901
|
+
local?: boolean | undefined;
|
|
88743
88902
|
entityRefIds?: Record<string, string> | undefined;
|
|
88744
88903
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
88745
88904
|
requiredFields?: {
|
|
@@ -88796,7 +88955,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
88796
88955
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
88797
88956
|
variant?: string | undefined;
|
|
88798
88957
|
dimension?: "2d" | "3d" | undefined;
|
|
88799
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
88958
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
88800
88959
|
} | undefined;
|
|
88801
88960
|
} | undefined;
|
|
88802
88961
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -89388,7 +89547,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
89388
89547
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
89389
89548
|
variant?: string | undefined;
|
|
89390
89549
|
dimension?: "2d" | "3d" | undefined;
|
|
89391
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
89550
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
89392
89551
|
} | undefined;
|
|
89393
89552
|
} | {
|
|
89394
89553
|
extends: string;
|
|
@@ -89717,7 +89876,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
89717
89876
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
89718
89877
|
variant?: string | undefined;
|
|
89719
89878
|
dimension?: "2d" | "3d" | undefined;
|
|
89720
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
89879
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
89721
89880
|
} | undefined;
|
|
89722
89881
|
} | {
|
|
89723
89882
|
extends: string;
|
|
@@ -89871,6 +90030,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
89871
90030
|
}[] | undefined;
|
|
89872
90031
|
entityBindingDescription?: string | undefined;
|
|
89873
90032
|
entityBindingSynonyms?: string | undefined;
|
|
90033
|
+
local?: boolean | undefined;
|
|
89874
90034
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
89875
90035
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
89876
90036
|
requiredFields?: {
|
|
@@ -89927,7 +90087,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
89927
90087
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
89928
90088
|
variant?: string | undefined;
|
|
89929
90089
|
dimension?: "2d" | "3d" | undefined;
|
|
89930
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
90090
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
89931
90091
|
} | undefined;
|
|
89932
90092
|
} | undefined;
|
|
89933
90093
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -90092,6 +90252,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90092
90252
|
}[] | undefined;
|
|
90093
90253
|
entityBindingDescription?: string | undefined;
|
|
90094
90254
|
entityBindingSynonyms?: string | undefined;
|
|
90255
|
+
local?: boolean | undefined;
|
|
90095
90256
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
90096
90257
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
90097
90258
|
requiredFields?: {
|
|
@@ -90148,7 +90309,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90148
90309
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
90149
90310
|
variant?: string | undefined;
|
|
90150
90311
|
dimension?: "2d" | "3d" | undefined;
|
|
90151
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
90312
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
90152
90313
|
} | undefined;
|
|
90153
90314
|
} | undefined;
|
|
90154
90315
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -90282,6 +90443,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90282
90443
|
}[] | undefined;
|
|
90283
90444
|
entityBindingDescription?: string | undefined;
|
|
90284
90445
|
entityBindingSynonyms?: string | undefined;
|
|
90446
|
+
local?: boolean | undefined;
|
|
90285
90447
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
90286
90448
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
90287
90449
|
requiredFields?: {
|
|
@@ -90338,7 +90500,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90338
90500
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
90339
90501
|
variant?: string | undefined;
|
|
90340
90502
|
dimension?: "2d" | "3d" | undefined;
|
|
90341
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
90503
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
90342
90504
|
} | undefined;
|
|
90343
90505
|
} | undefined;
|
|
90344
90506
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -90503,6 +90665,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90503
90665
|
}[] | undefined;
|
|
90504
90666
|
entityBindingDescription?: string | undefined;
|
|
90505
90667
|
entityBindingSynonyms?: string | undefined;
|
|
90668
|
+
local?: boolean | undefined;
|
|
90506
90669
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
90507
90670
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
90508
90671
|
requiredFields?: {
|
|
@@ -90559,7 +90722,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
90559
90722
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
90560
90723
|
variant?: string | undefined;
|
|
90561
90724
|
dimension?: "2d" | "3d" | undefined;
|
|
90562
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
90725
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
90563
90726
|
} | undefined;
|
|
90564
90727
|
} | undefined;
|
|
90565
90728
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -91151,7 +91314,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
91151
91314
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
91152
91315
|
variant?: string | undefined;
|
|
91153
91316
|
dimension?: "2d" | "3d" | undefined;
|
|
91154
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
91317
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
91155
91318
|
} | undefined;
|
|
91156
91319
|
} | {
|
|
91157
91320
|
extends: string;
|
|
@@ -91783,7 +91946,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
91783
91946
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
91784
91947
|
variant?: string | undefined;
|
|
91785
91948
|
dimension?: "2d" | "3d" | undefined;
|
|
91786
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
91949
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
91787
91950
|
} | undefined;
|
|
91788
91951
|
} | {
|
|
91789
91952
|
extends: string;
|
|
@@ -91937,6 +92100,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
91937
92100
|
}[] | undefined;
|
|
91938
92101
|
entityBindingDescription?: string | undefined;
|
|
91939
92102
|
entityBindingSynonyms?: string | undefined;
|
|
92103
|
+
local?: boolean | undefined;
|
|
91940
92104
|
entityRefIds?: Record<string, string> | undefined;
|
|
91941
92105
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
91942
92106
|
requiredFields?: {
|
|
@@ -91993,7 +92157,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
91993
92157
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
91994
92158
|
variant?: string | undefined;
|
|
91995
92159
|
dimension?: "2d" | "3d" | undefined;
|
|
91996
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
92160
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
91997
92161
|
} | undefined;
|
|
91998
92162
|
} | undefined;
|
|
91999
92163
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -92158,6 +92322,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92158
92322
|
}[] | undefined;
|
|
92159
92323
|
entityBindingDescription?: string | undefined;
|
|
92160
92324
|
entityBindingSynonyms?: string | undefined;
|
|
92325
|
+
local?: boolean | undefined;
|
|
92161
92326
|
entityRefIds?: Record<string, string> | undefined;
|
|
92162
92327
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
92163
92328
|
requiredFields?: {
|
|
@@ -92214,7 +92379,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92214
92379
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
92215
92380
|
variant?: string | undefined;
|
|
92216
92381
|
dimension?: "2d" | "3d" | undefined;
|
|
92217
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
92382
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
92218
92383
|
} | undefined;
|
|
92219
92384
|
} | undefined;
|
|
92220
92385
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -92348,6 +92513,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92348
92513
|
}[] | undefined;
|
|
92349
92514
|
entityBindingDescription?: string | undefined;
|
|
92350
92515
|
entityBindingSynonyms?: string | undefined;
|
|
92516
|
+
local?: boolean | undefined;
|
|
92351
92517
|
entityRefIds?: Record<string, string> | undefined;
|
|
92352
92518
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
92353
92519
|
requiredFields?: {
|
|
@@ -92404,7 +92570,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92404
92570
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
92405
92571
|
variant?: string | undefined;
|
|
92406
92572
|
dimension?: "2d" | "3d" | undefined;
|
|
92407
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
92573
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
92408
92574
|
} | undefined;
|
|
92409
92575
|
} | undefined;
|
|
92410
92576
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -92569,6 +92735,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92569
92735
|
}[] | undefined;
|
|
92570
92736
|
entityBindingDescription?: string | undefined;
|
|
92571
92737
|
entityBindingSynonyms?: string | undefined;
|
|
92738
|
+
local?: boolean | undefined;
|
|
92572
92739
|
entityRefIds?: Record<string, string> | undefined;
|
|
92573
92740
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
92574
92741
|
requiredFields?: {
|
|
@@ -92625,7 +92792,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
92625
92792
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
92626
92793
|
variant?: string | undefined;
|
|
92627
92794
|
dimension?: "2d" | "3d" | undefined;
|
|
92628
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
92795
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
92629
92796
|
} | undefined;
|
|
92630
92797
|
} | undefined;
|
|
92631
92798
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -93217,7 +93384,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
93217
93384
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
93218
93385
|
variant?: string | undefined;
|
|
93219
93386
|
dimension?: "2d" | "3d" | undefined;
|
|
93220
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
93387
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
93221
93388
|
} | undefined;
|
|
93222
93389
|
} | {
|
|
93223
93390
|
extends: string;
|
|
@@ -93914,7 +94081,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
93914
94081
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
93915
94082
|
variant?: string | undefined;
|
|
93916
94083
|
dimension?: "2d" | "3d" | undefined;
|
|
93917
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
94084
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
93918
94085
|
} | undefined;
|
|
93919
94086
|
} | {
|
|
93920
94087
|
extends: string;
|
|
@@ -94068,6 +94235,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94068
94235
|
}[] | undefined;
|
|
94069
94236
|
entityBindingDescription?: string | undefined;
|
|
94070
94237
|
entityBindingSynonyms?: string | undefined;
|
|
94238
|
+
local?: boolean | undefined;
|
|
94071
94239
|
entityRefIds?: Record<string, string> | undefined;
|
|
94072
94240
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
94073
94241
|
requiredFields?: {
|
|
@@ -94124,7 +94292,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94124
94292
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
94125
94293
|
variant?: string | undefined;
|
|
94126
94294
|
dimension?: "2d" | "3d" | undefined;
|
|
94127
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
94295
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
94128
94296
|
} | undefined;
|
|
94129
94297
|
} | undefined;
|
|
94130
94298
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -94289,6 +94457,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94289
94457
|
}[] | undefined;
|
|
94290
94458
|
entityBindingDescription?: string | undefined;
|
|
94291
94459
|
entityBindingSynonyms?: string | undefined;
|
|
94460
|
+
local?: boolean | undefined;
|
|
94292
94461
|
entityRefIds?: Record<string, string> | undefined;
|
|
94293
94462
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
94294
94463
|
requiredFields?: {
|
|
@@ -94345,7 +94514,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94345
94514
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
94346
94515
|
variant?: string | undefined;
|
|
94347
94516
|
dimension?: "2d" | "3d" | undefined;
|
|
94348
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
94517
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
94349
94518
|
} | undefined;
|
|
94350
94519
|
} | undefined;
|
|
94351
94520
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -94479,6 +94648,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94479
94648
|
}[] | undefined;
|
|
94480
94649
|
entityBindingDescription?: string | undefined;
|
|
94481
94650
|
entityBindingSynonyms?: string | undefined;
|
|
94651
|
+
local?: boolean | undefined;
|
|
94482
94652
|
entityRefIds?: Record<string, string> | undefined;
|
|
94483
94653
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
94484
94654
|
requiredFields?: {
|
|
@@ -94535,7 +94705,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94535
94705
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
94536
94706
|
variant?: string | undefined;
|
|
94537
94707
|
dimension?: "2d" | "3d" | undefined;
|
|
94538
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
94708
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
94539
94709
|
} | undefined;
|
|
94540
94710
|
} | undefined;
|
|
94541
94711
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -94700,6 +94870,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94700
94870
|
}[] | undefined;
|
|
94701
94871
|
entityBindingDescription?: string | undefined;
|
|
94702
94872
|
entityBindingSynonyms?: string | undefined;
|
|
94873
|
+
local?: boolean | undefined;
|
|
94703
94874
|
entityRefIds?: Record<string, string> | undefined;
|
|
94704
94875
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
94705
94876
|
requiredFields?: {
|
|
@@ -94756,7 +94927,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
94756
94927
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
94757
94928
|
variant?: string | undefined;
|
|
94758
94929
|
dimension?: "2d" | "3d" | undefined;
|
|
94759
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
94930
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
94760
94931
|
} | undefined;
|
|
94761
94932
|
} | undefined;
|
|
94762
94933
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -95348,7 +95519,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
95348
95519
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
95349
95520
|
variant?: string | undefined;
|
|
95350
95521
|
dimension?: "2d" | "3d" | undefined;
|
|
95351
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
95522
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
95352
95523
|
} | undefined;
|
|
95353
95524
|
} | {
|
|
95354
95525
|
extends: string;
|
|
@@ -95980,7 +96151,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
95980
96151
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
95981
96152
|
variant?: string | undefined;
|
|
95982
96153
|
dimension?: "2d" | "3d" | undefined;
|
|
95983
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
96154
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
95984
96155
|
} | undefined;
|
|
95985
96156
|
} | {
|
|
95986
96157
|
extends: string;
|
|
@@ -96134,6 +96305,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96134
96305
|
}[] | undefined;
|
|
96135
96306
|
entityBindingDescription?: string | undefined;
|
|
96136
96307
|
entityBindingSynonyms?: string | undefined;
|
|
96308
|
+
local?: boolean | undefined;
|
|
96137
96309
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
96138
96310
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
96139
96311
|
requiredFields?: {
|
|
@@ -96190,7 +96362,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96190
96362
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
96191
96363
|
variant?: string | undefined;
|
|
96192
96364
|
dimension?: "2d" | "3d" | undefined;
|
|
96193
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
96365
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
96194
96366
|
} | undefined;
|
|
96195
96367
|
} | undefined;
|
|
96196
96368
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -96355,6 +96527,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96355
96527
|
}[] | undefined;
|
|
96356
96528
|
entityBindingDescription?: string | undefined;
|
|
96357
96529
|
entityBindingSynonyms?: string | undefined;
|
|
96530
|
+
local?: boolean | undefined;
|
|
96358
96531
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
96359
96532
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
96360
96533
|
requiredFields?: {
|
|
@@ -96411,7 +96584,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96411
96584
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
96412
96585
|
variant?: string | undefined;
|
|
96413
96586
|
dimension?: "2d" | "3d" | undefined;
|
|
96414
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
96587
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
96415
96588
|
} | undefined;
|
|
96416
96589
|
} | undefined;
|
|
96417
96590
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -96545,6 +96718,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96545
96718
|
}[] | undefined;
|
|
96546
96719
|
entityBindingDescription?: string | undefined;
|
|
96547
96720
|
entityBindingSynonyms?: string | undefined;
|
|
96721
|
+
local?: boolean | undefined;
|
|
96548
96722
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
96549
96723
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
96550
96724
|
requiredFields?: {
|
|
@@ -96601,7 +96775,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96601
96775
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
96602
96776
|
variant?: string | undefined;
|
|
96603
96777
|
dimension?: "2d" | "3d" | undefined;
|
|
96604
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
96778
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
96605
96779
|
} | undefined;
|
|
96606
96780
|
} | undefined;
|
|
96607
96781
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -96766,6 +96940,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96766
96940
|
}[] | undefined;
|
|
96767
96941
|
entityBindingDescription?: string | undefined;
|
|
96768
96942
|
entityBindingSynonyms?: string | undefined;
|
|
96943
|
+
local?: boolean | undefined;
|
|
96769
96944
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
96770
96945
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
96771
96946
|
requiredFields?: {
|
|
@@ -96822,7 +96997,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
96822
96997
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
96823
96998
|
variant?: string | undefined;
|
|
96824
96999
|
dimension?: "2d" | "3d" | undefined;
|
|
96825
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
97000
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
96826
97001
|
} | undefined;
|
|
96827
97002
|
} | undefined;
|
|
96828
97003
|
typeParams?: TraitTypeParamDef[] | undefined;
|
|
@@ -97414,7 +97589,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
97414
97589
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
97415
97590
|
variant?: string | undefined;
|
|
97416
97591
|
dimension?: "2d" | "3d" | undefined;
|
|
97417
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
97592
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
97418
97593
|
} | undefined;
|
|
97419
97594
|
} | {
|
|
97420
97595
|
extends: string;
|