@almadar/core 10.55.0 → 10.57.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 +15 -3
- package/dist/builders.js +27 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DxD-XTI8.d.ts → effect-D-_fm4No.d.ts} +35 -6
- package/dist/{entityAccess-JTWGFDja.d.ts → entityAccess-kTNoti84.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +68 -15
- package/dist/factory-runtime/index.js +133 -10
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +49 -10
- package/dist/index.js +352 -13
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +1 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +187 -13
- package/dist/patterns/index.js +104 -11
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +22 -1
- package/dist/patterns/patterns-registry.json +75 -8
- package/dist/patterns/registry.json +75 -8
- package/dist/patterns/services-registry.json +21 -0
- package/dist/{schema-0C1bXRFm.d.ts → schema-CrUFqWXN.d.ts} +468 -89
- package/dist/{trait-WnYkvPdZ.d.ts → trait-A4_OlY_l.d.ts} +20 -20
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +26 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-C4YztU2N.d.ts → types-AHD31Gn-.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-A4_OlY_l.js';
|
|
2
2
|
import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
|
|
3
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId,
|
|
3
|
+
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, g as ServiceDefinition, I as IdentityLedger } from './effect-D-_fm4No.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -18406,6 +18406,71 @@ declare const UseDeclarationSchema: z.ZodObject<{
|
|
|
18406
18406
|
from: string;
|
|
18407
18407
|
as: string;
|
|
18408
18408
|
}>;
|
|
18409
|
+
/**
|
|
18410
|
+
* ExpectDeclaration - a consumer-side requirement: "some sibling orbital
|
|
18411
|
+
* provides this, and here is the minimal typed slice of it I rely on."
|
|
18412
|
+
*
|
|
18413
|
+
* The dual of a provider: the entity `[identity]` tag declares "I am the
|
|
18414
|
+
* roster"; `expects identity` declares "I read the roster". Standalone
|
|
18415
|
+
* validation trusts the declaration and uses its shape as the local type
|
|
18416
|
+
* environment; composed-program validation link-checks it against the real
|
|
18417
|
+
* provider. The shape reuses the canonical `EntityField` so all type
|
|
18418
|
+
* compatibility flows through the one compat owner. Compile-time only.
|
|
18419
|
+
* See docs/Almadar_LOLO_Expects_Proposal.md.
|
|
18420
|
+
*/
|
|
18421
|
+
type ExpectDeclaration = {
|
|
18422
|
+
/** `expects identity Customer { role : "admin" | "member" }` — the `@user` fields this orbital reads, typed. */
|
|
18423
|
+
kind: "identity";
|
|
18424
|
+
name?: string;
|
|
18425
|
+
shape?: EntityField[];
|
|
18426
|
+
} | {
|
|
18427
|
+
/** `expects entity OrderRecord { totalAmount : number }` — a sibling entity this orbital touches. Shape omitted = opaque reference. */
|
|
18428
|
+
kind: "entity";
|
|
18429
|
+
name: string;
|
|
18430
|
+
shape?: EntityField[];
|
|
18431
|
+
} | {
|
|
18432
|
+
/** `expects event Checkout.ORDER_PLACED` — a sibling trait produces this event (Phase 2). */
|
|
18433
|
+
kind: "event";
|
|
18434
|
+
traitName: string;
|
|
18435
|
+
event: string;
|
|
18436
|
+
};
|
|
18437
|
+
declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
18438
|
+
kind: z.ZodLiteral<"identity">;
|
|
18439
|
+
name: z.ZodOptional<z.ZodString>;
|
|
18440
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
18441
|
+
}, "strip", z.ZodTypeAny, {
|
|
18442
|
+
kind: "identity";
|
|
18443
|
+
name?: string | undefined;
|
|
18444
|
+
shape?: EntityField[] | undefined;
|
|
18445
|
+
}, {
|
|
18446
|
+
kind: "identity";
|
|
18447
|
+
name?: string | undefined;
|
|
18448
|
+
shape?: unknown[] | undefined;
|
|
18449
|
+
}>, z.ZodObject<{
|
|
18450
|
+
kind: z.ZodLiteral<"entity">;
|
|
18451
|
+
name: z.ZodString;
|
|
18452
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
18453
|
+
}, "strip", z.ZodTypeAny, {
|
|
18454
|
+
kind: "entity";
|
|
18455
|
+
name: string;
|
|
18456
|
+
shape?: EntityField[] | undefined;
|
|
18457
|
+
}, {
|
|
18458
|
+
kind: "entity";
|
|
18459
|
+
name: string;
|
|
18460
|
+
shape?: unknown[] | undefined;
|
|
18461
|
+
}>, z.ZodObject<{
|
|
18462
|
+
kind: z.ZodLiteral<"event">;
|
|
18463
|
+
traitName: z.ZodString;
|
|
18464
|
+
event: z.ZodString;
|
|
18465
|
+
}, "strip", z.ZodTypeAny, {
|
|
18466
|
+
event: string;
|
|
18467
|
+
kind: "event";
|
|
18468
|
+
traitName: string;
|
|
18469
|
+
}, {
|
|
18470
|
+
event: string;
|
|
18471
|
+
kind: "event";
|
|
18472
|
+
traitName: string;
|
|
18473
|
+
}>]>;
|
|
18409
18474
|
/**
|
|
18410
18475
|
* EntityCall - Reference to an imported entity with optional override arguments.
|
|
18411
18476
|
*
|
|
@@ -19125,14 +19190,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19125
19190
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
19126
19191
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19127
19192
|
name: z.ZodString;
|
|
19128
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
19193
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
19129
19194
|
description: z.ZodOptional<z.ZodString>;
|
|
19130
19195
|
}, "strip", z.ZodTypeAny, {
|
|
19131
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
19196
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
19132
19197
|
name: string;
|
|
19133
19198
|
description?: string | undefined;
|
|
19134
19199
|
}, {
|
|
19135
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
19200
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
19136
19201
|
name: string;
|
|
19137
19202
|
description?: string | undefined;
|
|
19138
19203
|
}>, "many">>;
|
|
@@ -19797,7 +19862,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19797
19862
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
19798
19863
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
19799
19864
|
requiredFields?: {
|
|
19800
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
19865
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
19801
19866
|
name: string;
|
|
19802
19867
|
description?: string | undefined;
|
|
19803
19868
|
}[] | undefined;
|
|
@@ -19967,7 +20032,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19967
20032
|
entityRefIds?: Record<string, string> | undefined;
|
|
19968
20033
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
19969
20034
|
requiredFields?: {
|
|
19970
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
20035
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
19971
20036
|
name: string;
|
|
19972
20037
|
description?: string | undefined;
|
|
19973
20038
|
}[] | undefined;
|
|
@@ -20183,7 +20248,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20183
20248
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
20184
20249
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
20185
20250
|
requiredFields?: {
|
|
20186
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
20251
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
20187
20252
|
name: string;
|
|
20188
20253
|
description?: string | undefined;
|
|
20189
20254
|
}[] | undefined;
|
|
@@ -20402,7 +20467,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20402
20467
|
entityRefIds?: Record<string, string> | undefined;
|
|
20403
20468
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
20404
20469
|
requiredFields?: {
|
|
20405
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
20470
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
20406
20471
|
name: string;
|
|
20407
20472
|
description?: string | undefined;
|
|
20408
20473
|
}[] | undefined;
|
|
@@ -20832,14 +20897,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20832
20897
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
20833
20898
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20834
20899
|
name: z.ZodString;
|
|
20835
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
20900
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
20836
20901
|
description: z.ZodOptional<z.ZodString>;
|
|
20837
20902
|
}, "strip", z.ZodTypeAny, {
|
|
20838
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
20903
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
20839
20904
|
name: string;
|
|
20840
20905
|
description?: string | undefined;
|
|
20841
20906
|
}, {
|
|
20842
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
20907
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
20843
20908
|
name: string;
|
|
20844
20909
|
description?: string | undefined;
|
|
20845
20910
|
}>, "many">>;
|
|
@@ -21504,7 +21569,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21504
21569
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
21505
21570
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
21506
21571
|
requiredFields?: {
|
|
21507
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
21572
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
21508
21573
|
name: string;
|
|
21509
21574
|
description?: string | undefined;
|
|
21510
21575
|
}[] | undefined;
|
|
@@ -21674,7 +21739,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21674
21739
|
entityRefIds?: Record<string, string> | undefined;
|
|
21675
21740
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
21676
21741
|
requiredFields?: {
|
|
21677
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
21742
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
21678
21743
|
name: string;
|
|
21679
21744
|
description?: string | undefined;
|
|
21680
21745
|
}[] | undefined;
|
|
@@ -21890,7 +21955,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21890
21955
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
21891
21956
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
21892
21957
|
requiredFields?: {
|
|
21893
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
21958
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
21894
21959
|
name: string;
|
|
21895
21960
|
description?: string | undefined;
|
|
21896
21961
|
}[] | undefined;
|
|
@@ -22109,7 +22174,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22109
22174
|
entityRefIds?: Record<string, string> | undefined;
|
|
22110
22175
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
22111
22176
|
requiredFields?: {
|
|
22112
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
22177
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
22113
22178
|
name: string;
|
|
22114
22179
|
description?: string | undefined;
|
|
22115
22180
|
}[] | undefined;
|
|
@@ -22434,6 +22499,16 @@ type OrbitalDefinition = {
|
|
|
22434
22499
|
* ```
|
|
22435
22500
|
*/
|
|
22436
22501
|
uses?: UseDeclaration[];
|
|
22502
|
+
/**
|
|
22503
|
+
* Consumer-side requirement declarations (`.lolo` `expects ...`).
|
|
22504
|
+
*
|
|
22505
|
+
* Promises about sibling orbitals this unit relies on: trusted as the
|
|
22506
|
+
* local type environment when the orbital is validated standalone,
|
|
22507
|
+
* link-checked against real providers at compose. Compile-time only —
|
|
22508
|
+
* runtime semantics are unchanged.
|
|
22509
|
+
* See docs/Almadar_LOLO_Expects_Proposal.md.
|
|
22510
|
+
*/
|
|
22511
|
+
expects?: ExpectDeclaration[];
|
|
22437
22512
|
/**
|
|
22438
22513
|
* Theme definition (inline OR reference via "Alias.theme").
|
|
22439
22514
|
*
|
|
@@ -22549,6 +22624,43 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22549
22624
|
from: string;
|
|
22550
22625
|
as: string;
|
|
22551
22626
|
}>, "many">>;
|
|
22627
|
+
expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
22628
|
+
kind: z.ZodLiteral<"identity">;
|
|
22629
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22630
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
22631
|
+
}, "strip", z.ZodTypeAny, {
|
|
22632
|
+
kind: "identity";
|
|
22633
|
+
name?: string | undefined;
|
|
22634
|
+
shape?: EntityField[] | undefined;
|
|
22635
|
+
}, {
|
|
22636
|
+
kind: "identity";
|
|
22637
|
+
name?: string | undefined;
|
|
22638
|
+
shape?: unknown[] | undefined;
|
|
22639
|
+
}>, z.ZodObject<{
|
|
22640
|
+
kind: z.ZodLiteral<"entity">;
|
|
22641
|
+
name: z.ZodString;
|
|
22642
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
22643
|
+
}, "strip", z.ZodTypeAny, {
|
|
22644
|
+
kind: "entity";
|
|
22645
|
+
name: string;
|
|
22646
|
+
shape?: EntityField[] | undefined;
|
|
22647
|
+
}, {
|
|
22648
|
+
kind: "entity";
|
|
22649
|
+
name: string;
|
|
22650
|
+
shape?: unknown[] | undefined;
|
|
22651
|
+
}>, z.ZodObject<{
|
|
22652
|
+
kind: z.ZodLiteral<"event">;
|
|
22653
|
+
traitName: z.ZodString;
|
|
22654
|
+
event: z.ZodString;
|
|
22655
|
+
}, "strip", z.ZodTypeAny, {
|
|
22656
|
+
event: string;
|
|
22657
|
+
kind: "event";
|
|
22658
|
+
traitName: string;
|
|
22659
|
+
}, {
|
|
22660
|
+
event: string;
|
|
22661
|
+
kind: "event";
|
|
22662
|
+
traitName: string;
|
|
22663
|
+
}>]>, "many">>;
|
|
22552
22664
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
22553
22665
|
name: z.ZodString;
|
|
22554
22666
|
tokens: z.ZodObject<{
|
|
@@ -27023,14 +27135,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27023
27135
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
27024
27136
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27025
27137
|
name: z.ZodString;
|
|
27026
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
27138
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
27027
27139
|
description: z.ZodOptional<z.ZodString>;
|
|
27028
27140
|
}, "strip", z.ZodTypeAny, {
|
|
27029
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
27141
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
27030
27142
|
name: string;
|
|
27031
27143
|
description?: string | undefined;
|
|
27032
27144
|
}, {
|
|
27033
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
27145
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
27034
27146
|
name: string;
|
|
27035
27147
|
description?: string | undefined;
|
|
27036
27148
|
}>, "many">>;
|
|
@@ -27695,7 +27807,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27695
27807
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
27696
27808
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
27697
27809
|
requiredFields?: {
|
|
27698
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
27810
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
27699
27811
|
name: string;
|
|
27700
27812
|
description?: string | undefined;
|
|
27701
27813
|
}[] | undefined;
|
|
@@ -27865,7 +27977,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27865
27977
|
entityRefIds?: Record<string, string> | undefined;
|
|
27866
27978
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
27867
27979
|
requiredFields?: {
|
|
27868
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
27980
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
27869
27981
|
name: string;
|
|
27870
27982
|
description?: string | undefined;
|
|
27871
27983
|
}[] | undefined;
|
|
@@ -28290,14 +28402,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28290
28402
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
28291
28403
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28292
28404
|
name: z.ZodString;
|
|
28293
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
28405
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
28294
28406
|
description: z.ZodOptional<z.ZodString>;
|
|
28295
28407
|
}, "strip", z.ZodTypeAny, {
|
|
28296
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
28408
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
28297
28409
|
name: string;
|
|
28298
28410
|
description?: string | undefined;
|
|
28299
28411
|
}, {
|
|
28300
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
28412
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
28301
28413
|
name: string;
|
|
28302
28414
|
description?: string | undefined;
|
|
28303
28415
|
}>, "many">>;
|
|
@@ -28962,7 +29074,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28962
29074
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
28963
29075
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
28964
29076
|
requiredFields?: {
|
|
28965
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
29077
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
28966
29078
|
name: string;
|
|
28967
29079
|
description?: string | undefined;
|
|
28968
29080
|
}[] | undefined;
|
|
@@ -29132,7 +29244,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29132
29244
|
entityRefIds?: Record<string, string> | undefined;
|
|
29133
29245
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
29134
29246
|
requiredFields?: {
|
|
29135
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
29247
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
29136
29248
|
name: string;
|
|
29137
29249
|
description?: string | undefined;
|
|
29138
29250
|
}[] | undefined;
|
|
@@ -29348,7 +29460,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29348
29460
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
29349
29461
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
29350
29462
|
requiredFields?: {
|
|
29351
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
29463
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
29352
29464
|
name: string;
|
|
29353
29465
|
description?: string | undefined;
|
|
29354
29466
|
}[] | undefined;
|
|
@@ -29567,7 +29679,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29567
29679
|
entityRefIds?: Record<string, string> | undefined;
|
|
29568
29680
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
29569
29681
|
requiredFields?: {
|
|
29570
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
29682
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
29571
29683
|
name: string;
|
|
29572
29684
|
description?: string | undefined;
|
|
29573
29685
|
}[] | undefined;
|
|
@@ -30055,7 +30167,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30055
30167
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
30056
30168
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
30057
30169
|
requiredFields?: {
|
|
30058
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
30170
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
30059
30171
|
name: string;
|
|
30060
30172
|
description?: string | undefined;
|
|
30061
30173
|
}[] | undefined;
|
|
@@ -30271,7 +30383,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30271
30383
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
30272
30384
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
30273
30385
|
requiredFields?: {
|
|
30274
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
30386
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
30275
30387
|
name: string;
|
|
30276
30388
|
description?: string | undefined;
|
|
30277
30389
|
}[] | undefined;
|
|
@@ -30847,6 +30959,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30847
30959
|
from: string;
|
|
30848
30960
|
as: string;
|
|
30849
30961
|
}[] | undefined;
|
|
30962
|
+
expects?: ({
|
|
30963
|
+
kind: "identity";
|
|
30964
|
+
name?: string | undefined;
|
|
30965
|
+
shape?: EntityField[] | undefined;
|
|
30966
|
+
} | {
|
|
30967
|
+
kind: "entity";
|
|
30968
|
+
name: string;
|
|
30969
|
+
shape?: EntityField[] | undefined;
|
|
30970
|
+
} | {
|
|
30971
|
+
event: string;
|
|
30972
|
+
kind: "event";
|
|
30973
|
+
traitName: string;
|
|
30974
|
+
})[] | undefined;
|
|
30850
30975
|
exposes?: string[] | undefined;
|
|
30851
30976
|
domainContext?: {
|
|
30852
30977
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -31098,7 +31223,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31098
31223
|
entityRefIds?: Record<string, string> | undefined;
|
|
31099
31224
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
31100
31225
|
requiredFields?: {
|
|
31101
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
31226
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
31102
31227
|
name: string;
|
|
31103
31228
|
description?: string | undefined;
|
|
31104
31229
|
}[] | undefined;
|
|
@@ -31314,7 +31439,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31314
31439
|
entityRefIds?: Record<string, string> | undefined;
|
|
31315
31440
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
31316
31441
|
requiredFields?: {
|
|
31317
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
31442
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
31318
31443
|
name: string;
|
|
31319
31444
|
description?: string | undefined;
|
|
31320
31445
|
}[] | undefined;
|
|
@@ -31890,6 +32015,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31890
32015
|
from: string;
|
|
31891
32016
|
as: string;
|
|
31892
32017
|
}[] | undefined;
|
|
32018
|
+
expects?: ({
|
|
32019
|
+
kind: "identity";
|
|
32020
|
+
name?: string | undefined;
|
|
32021
|
+
shape?: unknown[] | undefined;
|
|
32022
|
+
} | {
|
|
32023
|
+
kind: "entity";
|
|
32024
|
+
name: string;
|
|
32025
|
+
shape?: unknown[] | undefined;
|
|
32026
|
+
} | {
|
|
32027
|
+
event: string;
|
|
32028
|
+
kind: "event";
|
|
32029
|
+
traitName: string;
|
|
32030
|
+
})[] | undefined;
|
|
31893
32031
|
exposes?: string[] | undefined;
|
|
31894
32032
|
domainContext?: {
|
|
31895
32033
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -31941,6 +32079,43 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
31941
32079
|
from: string;
|
|
31942
32080
|
as: string;
|
|
31943
32081
|
}>, "many">>;
|
|
32082
|
+
expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
32083
|
+
kind: z.ZodLiteral<"identity">;
|
|
32084
|
+
name: z.ZodOptional<z.ZodString>;
|
|
32085
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
32086
|
+
}, "strip", z.ZodTypeAny, {
|
|
32087
|
+
kind: "identity";
|
|
32088
|
+
name?: string | undefined;
|
|
32089
|
+
shape?: EntityField[] | undefined;
|
|
32090
|
+
}, {
|
|
32091
|
+
kind: "identity";
|
|
32092
|
+
name?: string | undefined;
|
|
32093
|
+
shape?: unknown[] | undefined;
|
|
32094
|
+
}>, z.ZodObject<{
|
|
32095
|
+
kind: z.ZodLiteral<"entity">;
|
|
32096
|
+
name: z.ZodString;
|
|
32097
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
32098
|
+
}, "strip", z.ZodTypeAny, {
|
|
32099
|
+
kind: "entity";
|
|
32100
|
+
name: string;
|
|
32101
|
+
shape?: EntityField[] | undefined;
|
|
32102
|
+
}, {
|
|
32103
|
+
kind: "entity";
|
|
32104
|
+
name: string;
|
|
32105
|
+
shape?: unknown[] | undefined;
|
|
32106
|
+
}>, z.ZodObject<{
|
|
32107
|
+
kind: z.ZodLiteral<"event">;
|
|
32108
|
+
traitName: z.ZodString;
|
|
32109
|
+
event: z.ZodString;
|
|
32110
|
+
}, "strip", z.ZodTypeAny, {
|
|
32111
|
+
event: string;
|
|
32112
|
+
kind: "event";
|
|
32113
|
+
traitName: string;
|
|
32114
|
+
}, {
|
|
32115
|
+
event: string;
|
|
32116
|
+
kind: "event";
|
|
32117
|
+
traitName: string;
|
|
32118
|
+
}>]>, "many">>;
|
|
31944
32119
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
31945
32120
|
name: z.ZodString;
|
|
31946
32121
|
tokens: z.ZodObject<{
|
|
@@ -36415,14 +36590,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36415
36590
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
36416
36591
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
36417
36592
|
name: z.ZodString;
|
|
36418
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
36593
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
36419
36594
|
description: z.ZodOptional<z.ZodString>;
|
|
36420
36595
|
}, "strip", z.ZodTypeAny, {
|
|
36421
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
36596
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
36422
36597
|
name: string;
|
|
36423
36598
|
description?: string | undefined;
|
|
36424
36599
|
}, {
|
|
36425
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
36600
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
36426
36601
|
name: string;
|
|
36427
36602
|
description?: string | undefined;
|
|
36428
36603
|
}>, "many">>;
|
|
@@ -37087,7 +37262,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37087
37262
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
37088
37263
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
37089
37264
|
requiredFields?: {
|
|
37090
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
37265
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
37091
37266
|
name: string;
|
|
37092
37267
|
description?: string | undefined;
|
|
37093
37268
|
}[] | undefined;
|
|
@@ -37257,7 +37432,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37257
37432
|
entityRefIds?: Record<string, string> | undefined;
|
|
37258
37433
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
37259
37434
|
requiredFields?: {
|
|
37260
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
37435
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
37261
37436
|
name: string;
|
|
37262
37437
|
description?: string | undefined;
|
|
37263
37438
|
}[] | undefined;
|
|
@@ -37682,14 +37857,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37682
37857
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
37683
37858
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37684
37859
|
name: z.ZodString;
|
|
37685
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
37860
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
37686
37861
|
description: z.ZodOptional<z.ZodString>;
|
|
37687
37862
|
}, "strip", z.ZodTypeAny, {
|
|
37688
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
37863
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
37689
37864
|
name: string;
|
|
37690
37865
|
description?: string | undefined;
|
|
37691
37866
|
}, {
|
|
37692
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
37867
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
37693
37868
|
name: string;
|
|
37694
37869
|
description?: string | undefined;
|
|
37695
37870
|
}>, "many">>;
|
|
@@ -38354,7 +38529,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38354
38529
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
38355
38530
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
38356
38531
|
requiredFields?: {
|
|
38357
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
38532
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
38358
38533
|
name: string;
|
|
38359
38534
|
description?: string | undefined;
|
|
38360
38535
|
}[] | undefined;
|
|
@@ -38524,7 +38699,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38524
38699
|
entityRefIds?: Record<string, string> | undefined;
|
|
38525
38700
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
38526
38701
|
requiredFields?: {
|
|
38527
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
38702
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
38528
38703
|
name: string;
|
|
38529
38704
|
description?: string | undefined;
|
|
38530
38705
|
}[] | undefined;
|
|
@@ -38740,7 +38915,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38740
38915
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
38741
38916
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
38742
38917
|
requiredFields?: {
|
|
38743
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
38918
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
38744
38919
|
name: string;
|
|
38745
38920
|
description?: string | undefined;
|
|
38746
38921
|
}[] | undefined;
|
|
@@ -38959,7 +39134,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38959
39134
|
entityRefIds?: Record<string, string> | undefined;
|
|
38960
39135
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
38961
39136
|
requiredFields?: {
|
|
38962
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
39137
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
38963
39138
|
name: string;
|
|
38964
39139
|
description?: string | undefined;
|
|
38965
39140
|
}[] | undefined;
|
|
@@ -39447,7 +39622,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39447
39622
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
39448
39623
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
39449
39624
|
requiredFields?: {
|
|
39450
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
39625
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
39451
39626
|
name: string;
|
|
39452
39627
|
description?: string | undefined;
|
|
39453
39628
|
}[] | undefined;
|
|
@@ -39663,7 +39838,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39663
39838
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
39664
39839
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
39665
39840
|
requiredFields?: {
|
|
39666
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
39841
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
39667
39842
|
name: string;
|
|
39668
39843
|
description?: string | undefined;
|
|
39669
39844
|
}[] | undefined;
|
|
@@ -40239,6 +40414,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40239
40414
|
from: string;
|
|
40240
40415
|
as: string;
|
|
40241
40416
|
}[] | undefined;
|
|
40417
|
+
expects?: ({
|
|
40418
|
+
kind: "identity";
|
|
40419
|
+
name?: string | undefined;
|
|
40420
|
+
shape?: EntityField[] | undefined;
|
|
40421
|
+
} | {
|
|
40422
|
+
kind: "entity";
|
|
40423
|
+
name: string;
|
|
40424
|
+
shape?: EntityField[] | undefined;
|
|
40425
|
+
} | {
|
|
40426
|
+
event: string;
|
|
40427
|
+
kind: "event";
|
|
40428
|
+
traitName: string;
|
|
40429
|
+
})[] | undefined;
|
|
40242
40430
|
exposes?: string[] | undefined;
|
|
40243
40431
|
domainContext?: {
|
|
40244
40432
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -40490,7 +40678,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40490
40678
|
entityRefIds?: Record<string, string> | undefined;
|
|
40491
40679
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40492
40680
|
requiredFields?: {
|
|
40493
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
40681
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
40494
40682
|
name: string;
|
|
40495
40683
|
description?: string | undefined;
|
|
40496
40684
|
}[] | undefined;
|
|
@@ -40706,7 +40894,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40706
40894
|
entityRefIds?: Record<string, string> | undefined;
|
|
40707
40895
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
40708
40896
|
requiredFields?: {
|
|
40709
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
40897
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
40710
40898
|
name: string;
|
|
40711
40899
|
description?: string | undefined;
|
|
40712
40900
|
}[] | undefined;
|
|
@@ -41282,6 +41470,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
41282
41470
|
from: string;
|
|
41283
41471
|
as: string;
|
|
41284
41472
|
}[] | undefined;
|
|
41473
|
+
expects?: ({
|
|
41474
|
+
kind: "identity";
|
|
41475
|
+
name?: string | undefined;
|
|
41476
|
+
shape?: unknown[] | undefined;
|
|
41477
|
+
} | {
|
|
41478
|
+
kind: "entity";
|
|
41479
|
+
name: string;
|
|
41480
|
+
shape?: unknown[] | undefined;
|
|
41481
|
+
} | {
|
|
41482
|
+
event: string;
|
|
41483
|
+
kind: "event";
|
|
41484
|
+
traitName: string;
|
|
41485
|
+
})[] | undefined;
|
|
41285
41486
|
exposes?: string[] | undefined;
|
|
41286
41487
|
domainContext?: {
|
|
41287
41488
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -41340,6 +41541,43 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41340
41541
|
from: string;
|
|
41341
41542
|
as: string;
|
|
41342
41543
|
}>, "many">>;
|
|
41544
|
+
expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
41545
|
+
kind: z.ZodLiteral<"identity">;
|
|
41546
|
+
name: z.ZodOptional<z.ZodString>;
|
|
41547
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
41548
|
+
}, "strip", z.ZodTypeAny, {
|
|
41549
|
+
kind: "identity";
|
|
41550
|
+
name?: string | undefined;
|
|
41551
|
+
shape?: EntityField[] | undefined;
|
|
41552
|
+
}, {
|
|
41553
|
+
kind: "identity";
|
|
41554
|
+
name?: string | undefined;
|
|
41555
|
+
shape?: unknown[] | undefined;
|
|
41556
|
+
}>, z.ZodObject<{
|
|
41557
|
+
kind: z.ZodLiteral<"entity">;
|
|
41558
|
+
name: z.ZodString;
|
|
41559
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
41560
|
+
}, "strip", z.ZodTypeAny, {
|
|
41561
|
+
kind: "entity";
|
|
41562
|
+
name: string;
|
|
41563
|
+
shape?: EntityField[] | undefined;
|
|
41564
|
+
}, {
|
|
41565
|
+
kind: "entity";
|
|
41566
|
+
name: string;
|
|
41567
|
+
shape?: unknown[] | undefined;
|
|
41568
|
+
}>, z.ZodObject<{
|
|
41569
|
+
kind: z.ZodLiteral<"event">;
|
|
41570
|
+
traitName: z.ZodString;
|
|
41571
|
+
event: z.ZodString;
|
|
41572
|
+
}, "strip", z.ZodTypeAny, {
|
|
41573
|
+
event: string;
|
|
41574
|
+
kind: "event";
|
|
41575
|
+
traitName: string;
|
|
41576
|
+
}, {
|
|
41577
|
+
event: string;
|
|
41578
|
+
kind: "event";
|
|
41579
|
+
traitName: string;
|
|
41580
|
+
}>]>, "many">>;
|
|
41343
41581
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
41344
41582
|
name: z.ZodString;
|
|
41345
41583
|
tokens: z.ZodObject<{
|
|
@@ -45814,14 +46052,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45814
46052
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
45815
46053
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45816
46054
|
name: z.ZodString;
|
|
45817
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
46055
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
45818
46056
|
description: z.ZodOptional<z.ZodString>;
|
|
45819
46057
|
}, "strip", z.ZodTypeAny, {
|
|
45820
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
46058
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
45821
46059
|
name: string;
|
|
45822
46060
|
description?: string | undefined;
|
|
45823
46061
|
}, {
|
|
45824
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
46062
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
45825
46063
|
name: string;
|
|
45826
46064
|
description?: string | undefined;
|
|
45827
46065
|
}>, "many">>;
|
|
@@ -46486,7 +46724,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46486
46724
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
46487
46725
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
46488
46726
|
requiredFields?: {
|
|
46489
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
46727
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
46490
46728
|
name: string;
|
|
46491
46729
|
description?: string | undefined;
|
|
46492
46730
|
}[] | undefined;
|
|
@@ -46656,7 +46894,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46656
46894
|
entityRefIds?: Record<string, string> | undefined;
|
|
46657
46895
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
46658
46896
|
requiredFields?: {
|
|
46659
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
46897
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
46660
46898
|
name: string;
|
|
46661
46899
|
description?: string | undefined;
|
|
46662
46900
|
}[] | undefined;
|
|
@@ -47081,14 +47319,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47081
47319
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
47082
47320
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
47083
47321
|
name: z.ZodString;
|
|
47084
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
47322
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
47085
47323
|
description: z.ZodOptional<z.ZodString>;
|
|
47086
47324
|
}, "strip", z.ZodTypeAny, {
|
|
47087
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
47325
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
47088
47326
|
name: string;
|
|
47089
47327
|
description?: string | undefined;
|
|
47090
47328
|
}, {
|
|
47091
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
47329
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
47092
47330
|
name: string;
|
|
47093
47331
|
description?: string | undefined;
|
|
47094
47332
|
}>, "many">>;
|
|
@@ -47753,7 +47991,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47753
47991
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
47754
47992
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
47755
47993
|
requiredFields?: {
|
|
47756
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
47994
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
47757
47995
|
name: string;
|
|
47758
47996
|
description?: string | undefined;
|
|
47759
47997
|
}[] | undefined;
|
|
@@ -47923,7 +48161,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47923
48161
|
entityRefIds?: Record<string, string> | undefined;
|
|
47924
48162
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
47925
48163
|
requiredFields?: {
|
|
47926
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
48164
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
47927
48165
|
name: string;
|
|
47928
48166
|
description?: string | undefined;
|
|
47929
48167
|
}[] | undefined;
|
|
@@ -48139,7 +48377,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48139
48377
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
48140
48378
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
48141
48379
|
requiredFields?: {
|
|
48142
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
48380
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
48143
48381
|
name: string;
|
|
48144
48382
|
description?: string | undefined;
|
|
48145
48383
|
}[] | undefined;
|
|
@@ -48358,7 +48596,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48358
48596
|
entityRefIds?: Record<string, string> | undefined;
|
|
48359
48597
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
48360
48598
|
requiredFields?: {
|
|
48361
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
48599
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
48362
48600
|
name: string;
|
|
48363
48601
|
description?: string | undefined;
|
|
48364
48602
|
}[] | undefined;
|
|
@@ -48846,7 +49084,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48846
49084
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
48847
49085
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
48848
49086
|
requiredFields?: {
|
|
48849
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
49087
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
48850
49088
|
name: string;
|
|
48851
49089
|
description?: string | undefined;
|
|
48852
49090
|
}[] | undefined;
|
|
@@ -49062,7 +49300,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49062
49300
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
49063
49301
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
49064
49302
|
requiredFields?: {
|
|
49065
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
49303
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
49066
49304
|
name: string;
|
|
49067
49305
|
description?: string | undefined;
|
|
49068
49306
|
}[] | undefined;
|
|
@@ -49638,6 +49876,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49638
49876
|
from: string;
|
|
49639
49877
|
as: string;
|
|
49640
49878
|
}[] | undefined;
|
|
49879
|
+
expects?: ({
|
|
49880
|
+
kind: "identity";
|
|
49881
|
+
name?: string | undefined;
|
|
49882
|
+
shape?: EntityField[] | undefined;
|
|
49883
|
+
} | {
|
|
49884
|
+
kind: "entity";
|
|
49885
|
+
name: string;
|
|
49886
|
+
shape?: EntityField[] | undefined;
|
|
49887
|
+
} | {
|
|
49888
|
+
event: string;
|
|
49889
|
+
kind: "event";
|
|
49890
|
+
traitName: string;
|
|
49891
|
+
})[] | undefined;
|
|
49641
49892
|
exposes?: string[] | undefined;
|
|
49642
49893
|
domainContext?: {
|
|
49643
49894
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -49889,7 +50140,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49889
50140
|
entityRefIds?: Record<string, string> | undefined;
|
|
49890
50141
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
49891
50142
|
requiredFields?: {
|
|
49892
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
50143
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
49893
50144
|
name: string;
|
|
49894
50145
|
description?: string | undefined;
|
|
49895
50146
|
}[] | undefined;
|
|
@@ -50105,7 +50356,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
50105
50356
|
entityRefIds?: Record<string, string> | undefined;
|
|
50106
50357
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
50107
50358
|
requiredFields?: {
|
|
50108
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
50359
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
50109
50360
|
name: string;
|
|
50110
50361
|
description?: string | undefined;
|
|
50111
50362
|
}[] | undefined;
|
|
@@ -50681,6 +50932,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
50681
50932
|
from: string;
|
|
50682
50933
|
as: string;
|
|
50683
50934
|
}[] | undefined;
|
|
50935
|
+
expects?: ({
|
|
50936
|
+
kind: "identity";
|
|
50937
|
+
name?: string | undefined;
|
|
50938
|
+
shape?: unknown[] | undefined;
|
|
50939
|
+
} | {
|
|
50940
|
+
kind: "entity";
|
|
50941
|
+
name: string;
|
|
50942
|
+
shape?: unknown[] | undefined;
|
|
50943
|
+
} | {
|
|
50944
|
+
event: string;
|
|
50945
|
+
kind: "event";
|
|
50946
|
+
traitName: string;
|
|
50947
|
+
})[] | undefined;
|
|
50684
50948
|
exposes?: string[] | undefined;
|
|
50685
50949
|
domainContext?: {
|
|
50686
50950
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -51086,6 +51350,43 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51086
51350
|
from: string;
|
|
51087
51351
|
as: string;
|
|
51088
51352
|
}>, "many">>;
|
|
51353
|
+
expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
51354
|
+
kind: z.ZodLiteral<"identity">;
|
|
51355
|
+
name: z.ZodOptional<z.ZodString>;
|
|
51356
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
51357
|
+
}, "strip", z.ZodTypeAny, {
|
|
51358
|
+
kind: "identity";
|
|
51359
|
+
name?: string | undefined;
|
|
51360
|
+
shape?: EntityField[] | undefined;
|
|
51361
|
+
}, {
|
|
51362
|
+
kind: "identity";
|
|
51363
|
+
name?: string | undefined;
|
|
51364
|
+
shape?: unknown[] | undefined;
|
|
51365
|
+
}>, z.ZodObject<{
|
|
51366
|
+
kind: z.ZodLiteral<"entity">;
|
|
51367
|
+
name: z.ZodString;
|
|
51368
|
+
shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
51369
|
+
}, "strip", z.ZodTypeAny, {
|
|
51370
|
+
kind: "entity";
|
|
51371
|
+
name: string;
|
|
51372
|
+
shape?: EntityField[] | undefined;
|
|
51373
|
+
}, {
|
|
51374
|
+
kind: "entity";
|
|
51375
|
+
name: string;
|
|
51376
|
+
shape?: unknown[] | undefined;
|
|
51377
|
+
}>, z.ZodObject<{
|
|
51378
|
+
kind: z.ZodLiteral<"event">;
|
|
51379
|
+
traitName: z.ZodString;
|
|
51380
|
+
event: z.ZodString;
|
|
51381
|
+
}, "strip", z.ZodTypeAny, {
|
|
51382
|
+
event: string;
|
|
51383
|
+
kind: "event";
|
|
51384
|
+
traitName: string;
|
|
51385
|
+
}, {
|
|
51386
|
+
event: string;
|
|
51387
|
+
kind: "event";
|
|
51388
|
+
traitName: string;
|
|
51389
|
+
}>]>, "many">>;
|
|
51089
51390
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
51090
51391
|
name: z.ZodString;
|
|
51091
51392
|
tokens: z.ZodObject<{
|
|
@@ -55560,14 +55861,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55560
55861
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
55561
55862
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
55562
55863
|
name: z.ZodString;
|
|
55563
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
55864
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
55564
55865
|
description: z.ZodOptional<z.ZodString>;
|
|
55565
55866
|
}, "strip", z.ZodTypeAny, {
|
|
55566
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
55867
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
55567
55868
|
name: string;
|
|
55568
55869
|
description?: string | undefined;
|
|
55569
55870
|
}, {
|
|
55570
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
55871
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
55571
55872
|
name: string;
|
|
55572
55873
|
description?: string | undefined;
|
|
55573
55874
|
}>, "many">>;
|
|
@@ -56232,7 +56533,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56232
56533
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
56233
56534
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
56234
56535
|
requiredFields?: {
|
|
56235
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
56536
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
56236
56537
|
name: string;
|
|
56237
56538
|
description?: string | undefined;
|
|
56238
56539
|
}[] | undefined;
|
|
@@ -56402,7 +56703,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56402
56703
|
entityRefIds?: Record<string, string> | undefined;
|
|
56403
56704
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
56404
56705
|
requiredFields?: {
|
|
56405
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
56706
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
56406
56707
|
name: string;
|
|
56407
56708
|
description?: string | undefined;
|
|
56408
56709
|
}[] | undefined;
|
|
@@ -56827,14 +57128,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56827
57128
|
traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
|
|
56828
57129
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56829
57130
|
name: z.ZodString;
|
|
56830
|
-
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image"]>;
|
|
57131
|
+
type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
|
|
56831
57132
|
description: z.ZodOptional<z.ZodString>;
|
|
56832
57133
|
}, "strip", z.ZodTypeAny, {
|
|
56833
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
57134
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
56834
57135
|
name: string;
|
|
56835
57136
|
description?: string | undefined;
|
|
56836
57137
|
}, {
|
|
56837
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
57138
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
56838
57139
|
name: string;
|
|
56839
57140
|
description?: string | undefined;
|
|
56840
57141
|
}>, "many">>;
|
|
@@ -57499,7 +57800,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57499
57800
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
57500
57801
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
57501
57802
|
requiredFields?: {
|
|
57502
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
57803
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
57503
57804
|
name: string;
|
|
57504
57805
|
description?: string | undefined;
|
|
57505
57806
|
}[] | undefined;
|
|
@@ -57669,7 +57970,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57669
57970
|
entityRefIds?: Record<string, string> | undefined;
|
|
57670
57971
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
57671
57972
|
requiredFields?: {
|
|
57672
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
57973
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
57673
57974
|
name: string;
|
|
57674
57975
|
description?: string | undefined;
|
|
57675
57976
|
}[] | undefined;
|
|
@@ -57885,7 +58186,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57885
58186
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
57886
58187
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
57887
58188
|
requiredFields?: {
|
|
57888
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
58189
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
57889
58190
|
name: string;
|
|
57890
58191
|
description?: string | undefined;
|
|
57891
58192
|
}[] | undefined;
|
|
@@ -58104,7 +58405,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58104
58405
|
entityRefIds?: Record<string, string> | undefined;
|
|
58105
58406
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
58106
58407
|
requiredFields?: {
|
|
58107
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
58408
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
58108
58409
|
name: string;
|
|
58109
58410
|
description?: string | undefined;
|
|
58110
58411
|
}[] | undefined;
|
|
@@ -58592,7 +58893,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58592
58893
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
58593
58894
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
58594
58895
|
requiredFields?: {
|
|
58595
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
58896
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
58596
58897
|
name: string;
|
|
58597
58898
|
description?: string | undefined;
|
|
58598
58899
|
}[] | undefined;
|
|
@@ -58808,7 +59109,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58808
59109
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
58809
59110
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
58810
59111
|
requiredFields?: {
|
|
58811
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
59112
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
58812
59113
|
name: string;
|
|
58813
59114
|
description?: string | undefined;
|
|
58814
59115
|
}[] | undefined;
|
|
@@ -59384,6 +59685,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59384
59685
|
from: string;
|
|
59385
59686
|
as: string;
|
|
59386
59687
|
}[] | undefined;
|
|
59688
|
+
expects?: ({
|
|
59689
|
+
kind: "identity";
|
|
59690
|
+
name?: string | undefined;
|
|
59691
|
+
shape?: EntityField[] | undefined;
|
|
59692
|
+
} | {
|
|
59693
|
+
kind: "entity";
|
|
59694
|
+
name: string;
|
|
59695
|
+
shape?: EntityField[] | undefined;
|
|
59696
|
+
} | {
|
|
59697
|
+
event: string;
|
|
59698
|
+
kind: "event";
|
|
59699
|
+
traitName: string;
|
|
59700
|
+
})[] | undefined;
|
|
59387
59701
|
exposes?: string[] | undefined;
|
|
59388
59702
|
domainContext?: {
|
|
59389
59703
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -59635,7 +59949,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59635
59949
|
entityRefIds?: Record<string, string> | undefined;
|
|
59636
59950
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
59637
59951
|
requiredFields?: {
|
|
59638
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
59952
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
59639
59953
|
name: string;
|
|
59640
59954
|
description?: string | undefined;
|
|
59641
59955
|
}[] | undefined;
|
|
@@ -59851,7 +60165,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59851
60165
|
entityRefIds?: Record<string, string> | undefined;
|
|
59852
60166
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
59853
60167
|
requiredFields?: {
|
|
59854
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
60168
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
59855
60169
|
name: string;
|
|
59856
60170
|
description?: string | undefined;
|
|
59857
60171
|
}[] | undefined;
|
|
@@ -60427,6 +60741,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60427
60741
|
from: string;
|
|
60428
60742
|
as: string;
|
|
60429
60743
|
}[] | undefined;
|
|
60744
|
+
expects?: ({
|
|
60745
|
+
kind: "identity";
|
|
60746
|
+
name?: string | undefined;
|
|
60747
|
+
shape?: unknown[] | undefined;
|
|
60748
|
+
} | {
|
|
60749
|
+
kind: "entity";
|
|
60750
|
+
name: string;
|
|
60751
|
+
shape?: unknown[] | undefined;
|
|
60752
|
+
} | {
|
|
60753
|
+
event: string;
|
|
60754
|
+
kind: "event";
|
|
60755
|
+
traitName: string;
|
|
60756
|
+
})[] | undefined;
|
|
60430
60757
|
exposes?: string[] | undefined;
|
|
60431
60758
|
domainContext?: {
|
|
60432
60759
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -60979,7 +61306,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60979
61306
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
60980
61307
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
60981
61308
|
requiredFields?: {
|
|
60982
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
61309
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
60983
61310
|
name: string;
|
|
60984
61311
|
description?: string | undefined;
|
|
60985
61312
|
}[] | undefined;
|
|
@@ -61195,7 +61522,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61195
61522
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
61196
61523
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
61197
61524
|
requiredFields?: {
|
|
61198
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
61525
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
61199
61526
|
name: string;
|
|
61200
61527
|
description?: string | undefined;
|
|
61201
61528
|
}[] | undefined;
|
|
@@ -61771,6 +62098,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61771
62098
|
from: string;
|
|
61772
62099
|
as: string;
|
|
61773
62100
|
}[] | undefined;
|
|
62101
|
+
expects?: ({
|
|
62102
|
+
kind: "identity";
|
|
62103
|
+
name?: string | undefined;
|
|
62104
|
+
shape?: EntityField[] | undefined;
|
|
62105
|
+
} | {
|
|
62106
|
+
kind: "entity";
|
|
62107
|
+
name: string;
|
|
62108
|
+
shape?: EntityField[] | undefined;
|
|
62109
|
+
} | {
|
|
62110
|
+
event: string;
|
|
62111
|
+
kind: "event";
|
|
62112
|
+
traitName: string;
|
|
62113
|
+
})[] | undefined;
|
|
61774
62114
|
exposes?: string[] | undefined;
|
|
61775
62115
|
domainContext?: {
|
|
61776
62116
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -62141,7 +62481,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
62141
62481
|
entityRefIds?: Record<string, string> | undefined;
|
|
62142
62482
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
62143
62483
|
requiredFields?: {
|
|
62144
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
62484
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
62145
62485
|
name: string;
|
|
62146
62486
|
description?: string | undefined;
|
|
62147
62487
|
}[] | undefined;
|
|
@@ -62357,7 +62697,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
62357
62697
|
entityRefIds?: Record<string, string> | undefined;
|
|
62358
62698
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
62359
62699
|
requiredFields?: {
|
|
62360
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
62700
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
62361
62701
|
name: string;
|
|
62362
62702
|
description?: string | undefined;
|
|
62363
62703
|
}[] | undefined;
|
|
@@ -62933,6 +63273,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
62933
63273
|
from: string;
|
|
62934
63274
|
as: string;
|
|
62935
63275
|
}[] | undefined;
|
|
63276
|
+
expects?: ({
|
|
63277
|
+
kind: "identity";
|
|
63278
|
+
name?: string | undefined;
|
|
63279
|
+
shape?: unknown[] | undefined;
|
|
63280
|
+
} | {
|
|
63281
|
+
kind: "entity";
|
|
63282
|
+
name: string;
|
|
63283
|
+
shape?: unknown[] | undefined;
|
|
63284
|
+
} | {
|
|
63285
|
+
event: string;
|
|
63286
|
+
kind: "event";
|
|
63287
|
+
traitName: string;
|
|
63288
|
+
})[] | undefined;
|
|
62936
63289
|
exposes?: string[] | undefined;
|
|
62937
63290
|
domainContext?: {
|
|
62938
63291
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -63368,7 +63721,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63368
63721
|
entityRefIds?: Record<string, string> | undefined;
|
|
63369
63722
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
63370
63723
|
requiredFields?: {
|
|
63371
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
63724
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
63372
63725
|
name: string;
|
|
63373
63726
|
description?: string | undefined;
|
|
63374
63727
|
}[] | undefined;
|
|
@@ -63584,7 +63937,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63584
63937
|
entityRefIds?: Record<string, string> | undefined;
|
|
63585
63938
|
traitEmbedIds?: Record<string, string> | undefined;
|
|
63586
63939
|
requiredFields?: {
|
|
63587
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
63940
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
63588
63941
|
name: string;
|
|
63589
63942
|
description?: string | undefined;
|
|
63590
63943
|
}[] | undefined;
|
|
@@ -64160,6 +64513,19 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64160
64513
|
from: string;
|
|
64161
64514
|
as: string;
|
|
64162
64515
|
}[] | undefined;
|
|
64516
|
+
expects?: ({
|
|
64517
|
+
kind: "identity";
|
|
64518
|
+
name?: string | undefined;
|
|
64519
|
+
shape?: unknown[] | undefined;
|
|
64520
|
+
} | {
|
|
64521
|
+
kind: "entity";
|
|
64522
|
+
name: string;
|
|
64523
|
+
shape?: unknown[] | undefined;
|
|
64524
|
+
} | {
|
|
64525
|
+
event: string;
|
|
64526
|
+
kind: "event";
|
|
64527
|
+
traitName: string;
|
|
64528
|
+
})[] | undefined;
|
|
64163
64529
|
exposes?: string[] | undefined;
|
|
64164
64530
|
domainContext?: {
|
|
64165
64531
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -64530,7 +64896,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64530
64896
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
64531
64897
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
64532
64898
|
requiredFields?: {
|
|
64533
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
64899
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
64534
64900
|
name: string;
|
|
64535
64901
|
description?: string | undefined;
|
|
64536
64902
|
}[] | undefined;
|
|
@@ -64746,7 +65112,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64746
65112
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
64747
65113
|
traitEmbedIds?: Record<string, TraitId> | undefined;
|
|
64748
65114
|
requiredFields?: {
|
|
64749
|
-
type: "string" | "number" | "boolean" | "object" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum";
|
|
65115
|
+
type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
|
|
64750
65116
|
name: string;
|
|
64751
65117
|
description?: string | undefined;
|
|
64752
65118
|
}[] | undefined;
|
|
@@ -65322,6 +65688,19 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
65322
65688
|
from: string;
|
|
65323
65689
|
as: string;
|
|
65324
65690
|
}[] | undefined;
|
|
65691
|
+
expects?: ({
|
|
65692
|
+
kind: "identity";
|
|
65693
|
+
name?: string | undefined;
|
|
65694
|
+
shape?: EntityField[] | undefined;
|
|
65695
|
+
} | {
|
|
65696
|
+
kind: "entity";
|
|
65697
|
+
name: string;
|
|
65698
|
+
shape?: EntityField[] | undefined;
|
|
65699
|
+
} | {
|
|
65700
|
+
event: string;
|
|
65701
|
+
kind: "event";
|
|
65702
|
+
traitName: string;
|
|
65703
|
+
})[] | undefined;
|
|
65325
65704
|
exposes?: string[] | undefined;
|
|
65326
65705
|
domainContext?: {
|
|
65327
65706
|
category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
|
|
@@ -65478,4 +65857,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
65478
65857
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
65479
65858
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
65480
65859
|
|
|
65481
|
-
export {
|
|
65860
|
+
export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a, PageRefObjectSchema as a$, EntityRefStringSchema as a0, type EntitySemanticRole as a1, EntitySemanticRoleSchema as a2, type EventListener as a3, EventListenerSchema as a4, type EventSemanticRole as a5, EventSemanticRoleSchema as a6, type EventSource as a7, EventSourceSchema as a8, ExpectDeclarationSchema as a9, MotionEasingPaletteSchema as aA, type MotionIntent as aB, type MotionIntentMap as aC, MotionIntentMapSchema as aD, MotionIntentSchema as aE, type MotionSlice as aF, MotionSliceSchema as aG, type MotionTokens as aH, MotionTokensSchema as aI, type NavItem as aJ, type NodeClassification as aK, NodeClassificationSchema as aL, type OrbitalConfig as aM, type OrbitalConfigInput as aN, OrbitalConfigSchema as aO, OrbitalDefinitionSchema as aP, type OrbitalInput as aQ, type OrbitalPageInput as aR, OrbitalPageSchema as aS, type OrbitalPageStrictInput as aT, OrbitalPageStrictSchema as aU, type OrbitalSchemaInput as aV, OrbitalSchemaSchema as aW, type OrbitalSchemaWithTraits as aX, type OrbitalUnit as aY, OrbitalUnitSchema as aZ, OrbitalSchema$1 as a_, type Orbital as aa, type GameSubCategory as ab, GameSubCategorySchema as ac, type GeometrySlice as ad, GeometrySliceSchema as ae, type GeometryTokens as af, GeometryTokensSchema as ag, type IconFamily as ah, IconFamilySchema as ai, type IconographySlice as aj, IconographySliceSchema as ak, type IconographyTokens as al, IconographyTokensSchema as am, type IllustrationSlice as an, IllustrationSliceSchema as ao, type IllustrationStyle as ap, IllustrationStyleSchema as aq, type IllustrationTokens as ar, IllustrationTokensSchema as as, type MotionDurationKey as at, MotionDurationKeySchema as au, type MotionDurationPalette as av, MotionDurationPaletteSchema as aw, type MotionEasingKey as ax, MotionEasingKeySchema as ay, type MotionEasingPalette as az, type ExpectDeclaration as b, parseOrbitalSchema as b$, PageRefSchema as b0, PageRefStringSchema as b1, PageSchema as b2, type PageTraitRef as b3, PageTraitRefSchema as b4, type RelatedLink as b5, RelatedLinkSchema as b6, type SchemaMetadata as b7, SchemaMetadataSchema as b8, type SkinSpec as b9, type TypeSizeKey as bA, TypeSizeKeySchema as bB, type TypeSlice as bC, TypeSliceSchema as bD, type TypeSlot as bE, TypeSlotSchema as bF, type TypeWeight as bG, TypeWeightSchema as bH, type UXHints as bI, UXHintsSchema as bJ, UseDeclarationSchema as bK, type UserPersona as bL, type UserPersonaInput as bM, UserPersonaSchema as bN, type ViewType as bO, ViewTypeSchema as bP, isEntityCall as bQ, isEntityReference as bR, isEntityReferenceAny as bS, isImportedTraitRef as bT, isOrbitalDefinition as bU, isPageReference as bV, isPageReferenceObject as bW, isPageReferenceString as bX, isThemeReference as bY, parseEntityRef as bZ, parseImportedTraitRef as b_, SkinSpecSchema as ba, type SpacingScale as bb, SpacingScaleSchema as bc, type StateSemanticRole as bd, StateSemanticRoleSchema as be, type SuggestedGuard as bf, SuggestedGuardSchema as bg, type ThemeDefinition as bh, ThemeDefinitionSchema as bi, type ThemeRef as bj, ThemeRefSchema as bk, ThemeRefStringSchema as bl, type ThemeTokens as bm, ThemeTokensSchema as bn, type ThemeVariant as bo, ThemeVariantSchema as bp, type TypeIntent as bq, type TypeIntentMap as br, TypeIntentMapSchema as bs, TypeIntentSchema as bt, type TypeScale as bu, type TypeScaleEntry as bv, TypeScaleEntrySchema as bw, TypeScaleSchema as bx, type TypeScaleTokens as by, TypeScaleTokensSchema as bz, type Page as c, parsePageRef as c0, safeParseOrbitalSchema as c1, type PageRefObject as d, type OrbitalPage as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AllowedCustomComponent as i, ColorSliceSchema as j, type ColorTokens as k, ColorTokensSchema as l, type ComputedEventContract as m, ComputedEventContractSchema as n, type ComputedEventListener as o, ComputedEventListenerSchema as p, type ConfigProvenanceRecord as q, ConfigProvenanceRecordSchema as r, type CustomPatternDefinition as s, type CustomPatternDefinitionInput as t, CustomPatternDefinitionSchema as u, type CustomPatternMap as v, type CustomPatternMapInput as w, CustomPatternMapSchema as x, DensitySliceSchema as y, type DensityTokens as z };
|