@almadar/core 10.74.0 → 10.76.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.
@@ -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-D1zKrxnf.js';
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-B9VCCiUM.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, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-C0MRXCwF.js';
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-wTKhHDhB.js';
4
4
  import { z } from 'zod';
5
5
 
6
6
  /**
@@ -18451,7 +18451,29 @@ type ExpectDeclaration = {
18451
18451
  kind: "event";
18452
18452
  traitName: string;
18453
18453
  event: string;
18454
+ } | {
18455
+ /**
18456
+ * `expects page "/articles/:slug"` — a route a sibling orbital declares
18457
+ * and this one navigates to. The one cross-boundary edge a `navigate`
18458
+ * effect cannot state for itself: the effect carries a static prefix
18459
+ * (`/articles/`), the provider a pattern (`/articles/:slug`), and the
18460
+ * parameterisation is information the usage does not hold. Derived, not
18461
+ * hand-authored — see `deriveExpectations`.
18462
+ */
18463
+ kind: "page";
18464
+ path: string;
18454
18465
  };
18466
+ /**
18467
+ * The entity name an expectation is ABOUT, or undefined when it is not about
18468
+ * an entity at all (`event` names a trait's event, `page` a route, and a bare
18469
+ * `expects identity` defers to whoever is tagged `[identity]`).
18470
+ *
18471
+ * TS counterpart of the compiler's `expectations::expected_entity_names` and
18472
+ * L1's `types::expected_entity_names`. Exists so callers stop reaching for
18473
+ * `kind !== "event"` as a stand-in for "has a name" — a proxy that silently
18474
+ * became wrong the moment a second nameless kind was added.
18475
+ */
18476
+ declare function expectedEntityName(decl: ExpectDeclaration): string | undefined;
18455
18477
  declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
18456
18478
  kind: z.ZodLiteral<"identity">;
18457
18479
  name: z.ZodOptional<z.ZodString>;
@@ -18488,6 +18510,15 @@ declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
18488
18510
  event: string;
18489
18511
  kind: "event";
18490
18512
  traitName: string;
18513
+ }>, z.ZodObject<{
18514
+ kind: z.ZodLiteral<"page">;
18515
+ path: z.ZodString;
18516
+ }, "strip", z.ZodTypeAny, {
18517
+ path: string;
18518
+ kind: "page";
18519
+ }, {
18520
+ path: string;
18521
+ kind: "page";
18491
18522
  }>]>;
18492
18523
  /**
18493
18524
  * EntityCall - Reference to an imported entity with optional override arguments.
@@ -19208,14 +19239,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
19208
19239
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
19209
19240
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
19210
19241
  name: z.ZodString;
19211
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
19242
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
19212
19243
  description: z.ZodOptional<z.ZodString>;
19213
19244
  }, "strip", z.ZodTypeAny, {
19214
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
19245
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
19215
19246
  name: string;
19216
19247
  description?: string | undefined;
19217
19248
  }, {
19218
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
19249
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
19219
19250
  name: string;
19220
19251
  description?: string | undefined;
19221
19252
  }>, "many">>;
@@ -19880,7 +19911,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
19880
19911
  entityRefIds?: Record<string, EntityId> | undefined;
19881
19912
  traitEmbedIds?: Record<string, TraitId> | undefined;
19882
19913
  requiredFields?: {
19883
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
19914
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
19884
19915
  name: string;
19885
19916
  description?: string | undefined;
19886
19917
  }[] | undefined;
@@ -20050,7 +20081,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
20050
20081
  entityRefIds?: Record<string, string> | undefined;
20051
20082
  traitEmbedIds?: Record<string, string> | undefined;
20052
20083
  requiredFields?: {
20053
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
20084
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
20054
20085
  name: string;
20055
20086
  description?: string | undefined;
20056
20087
  }[] | undefined;
@@ -20266,7 +20297,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
20266
20297
  entityRefIds?: Record<string, EntityId> | undefined;
20267
20298
  traitEmbedIds?: Record<string, TraitId> | undefined;
20268
20299
  requiredFields?: {
20269
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
20300
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
20270
20301
  name: string;
20271
20302
  description?: string | undefined;
20272
20303
  }[] | undefined;
@@ -20485,7 +20516,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
20485
20516
  entityRefIds?: Record<string, string> | undefined;
20486
20517
  traitEmbedIds?: Record<string, string> | undefined;
20487
20518
  requiredFields?: {
20488
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
20519
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
20489
20520
  name: string;
20490
20521
  description?: string | undefined;
20491
20522
  }[] | undefined;
@@ -20915,14 +20946,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
20915
20946
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
20916
20947
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
20917
20948
  name: z.ZodString;
20918
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
20949
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
20919
20950
  description: z.ZodOptional<z.ZodString>;
20920
20951
  }, "strip", z.ZodTypeAny, {
20921
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
20952
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
20922
20953
  name: string;
20923
20954
  description?: string | undefined;
20924
20955
  }, {
20925
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
20956
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
20926
20957
  name: string;
20927
20958
  description?: string | undefined;
20928
20959
  }>, "many">>;
@@ -21587,7 +21618,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
21587
21618
  entityRefIds?: Record<string, EntityId> | undefined;
21588
21619
  traitEmbedIds?: Record<string, TraitId> | undefined;
21589
21620
  requiredFields?: {
21590
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
21621
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
21591
21622
  name: string;
21592
21623
  description?: string | undefined;
21593
21624
  }[] | undefined;
@@ -21757,7 +21788,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
21757
21788
  entityRefIds?: Record<string, string> | undefined;
21758
21789
  traitEmbedIds?: Record<string, string> | undefined;
21759
21790
  requiredFields?: {
21760
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
21791
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
21761
21792
  name: string;
21762
21793
  description?: string | undefined;
21763
21794
  }[] | undefined;
@@ -21973,7 +22004,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
21973
22004
  entityRefIds?: Record<string, EntityId> | undefined;
21974
22005
  traitEmbedIds?: Record<string, TraitId> | undefined;
21975
22006
  requiredFields?: {
21976
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
22007
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
21977
22008
  name: string;
21978
22009
  description?: string | undefined;
21979
22010
  }[] | undefined;
@@ -22192,7 +22223,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
22192
22223
  entityRefIds?: Record<string, string> | undefined;
22193
22224
  traitEmbedIds?: Record<string, string> | undefined;
22194
22225
  requiredFields?: {
22195
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
22226
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
22196
22227
  name: string;
22197
22228
  description?: string | undefined;
22198
22229
  }[] | undefined;
@@ -22678,6 +22709,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22678
22709
  event: string;
22679
22710
  kind: "event";
22680
22711
  traitName: string;
22712
+ }>, z.ZodObject<{
22713
+ kind: z.ZodLiteral<"page">;
22714
+ path: z.ZodString;
22715
+ }, "strip", z.ZodTypeAny, {
22716
+ path: string;
22717
+ kind: "page";
22718
+ }, {
22719
+ path: string;
22720
+ kind: "page";
22681
22721
  }>]>, "many">>;
22682
22722
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
22683
22723
  name: z.ZodString;
@@ -27153,14 +27193,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
27153
27193
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
27154
27194
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
27155
27195
  name: z.ZodString;
27156
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
27196
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
27157
27197
  description: z.ZodOptional<z.ZodString>;
27158
27198
  }, "strip", z.ZodTypeAny, {
27159
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
27199
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
27160
27200
  name: string;
27161
27201
  description?: string | undefined;
27162
27202
  }, {
27163
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
27203
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
27164
27204
  name: string;
27165
27205
  description?: string | undefined;
27166
27206
  }>, "many">>;
@@ -27825,7 +27865,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
27825
27865
  entityRefIds?: Record<string, EntityId> | undefined;
27826
27866
  traitEmbedIds?: Record<string, TraitId> | undefined;
27827
27867
  requiredFields?: {
27828
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
27868
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
27829
27869
  name: string;
27830
27870
  description?: string | undefined;
27831
27871
  }[] | undefined;
@@ -27995,7 +28035,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
27995
28035
  entityRefIds?: Record<string, string> | undefined;
27996
28036
  traitEmbedIds?: Record<string, string> | undefined;
27997
28037
  requiredFields?: {
27998
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
28038
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
27999
28039
  name: string;
28000
28040
  description?: string | undefined;
28001
28041
  }[] | undefined;
@@ -28420,14 +28460,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
28420
28460
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
28421
28461
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
28422
28462
  name: z.ZodString;
28423
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
28463
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
28424
28464
  description: z.ZodOptional<z.ZodString>;
28425
28465
  }, "strip", z.ZodTypeAny, {
28426
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
28466
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
28427
28467
  name: string;
28428
28468
  description?: string | undefined;
28429
28469
  }, {
28430
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
28470
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
28431
28471
  name: string;
28432
28472
  description?: string | undefined;
28433
28473
  }>, "many">>;
@@ -29092,7 +29132,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29092
29132
  entityRefIds?: Record<string, EntityId> | undefined;
29093
29133
  traitEmbedIds?: Record<string, TraitId> | undefined;
29094
29134
  requiredFields?: {
29095
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
29135
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
29096
29136
  name: string;
29097
29137
  description?: string | undefined;
29098
29138
  }[] | undefined;
@@ -29262,7 +29302,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29262
29302
  entityRefIds?: Record<string, string> | undefined;
29263
29303
  traitEmbedIds?: Record<string, string> | undefined;
29264
29304
  requiredFields?: {
29265
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
29305
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
29266
29306
  name: string;
29267
29307
  description?: string | undefined;
29268
29308
  }[] | undefined;
@@ -29478,7 +29518,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29478
29518
  entityRefIds?: Record<string, EntityId> | undefined;
29479
29519
  traitEmbedIds?: Record<string, TraitId> | undefined;
29480
29520
  requiredFields?: {
29481
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
29521
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
29482
29522
  name: string;
29483
29523
  description?: string | undefined;
29484
29524
  }[] | undefined;
@@ -29697,7 +29737,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29697
29737
  entityRefIds?: Record<string, string> | undefined;
29698
29738
  traitEmbedIds?: Record<string, string> | undefined;
29699
29739
  requiredFields?: {
29700
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
29740
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
29701
29741
  name: string;
29702
29742
  description?: string | undefined;
29703
29743
  }[] | undefined;
@@ -30185,7 +30225,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
30185
30225
  entityRefIds?: Record<string, EntityId> | undefined;
30186
30226
  traitEmbedIds?: Record<string, TraitId> | undefined;
30187
30227
  requiredFields?: {
30188
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
30228
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
30189
30229
  name: string;
30190
30230
  description?: string | undefined;
30191
30231
  }[] | undefined;
@@ -30401,7 +30441,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
30401
30441
  entityRefIds?: Record<string, EntityId> | undefined;
30402
30442
  traitEmbedIds?: Record<string, TraitId> | undefined;
30403
30443
  requiredFields?: {
30404
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
30444
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
30405
30445
  name: string;
30406
30446
  description?: string | undefined;
30407
30447
  }[] | undefined;
@@ -30989,6 +31029,9 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
30989
31029
  event: string;
30990
31030
  kind: "event";
30991
31031
  traitName: string;
31032
+ } | {
31033
+ path: string;
31034
+ kind: "page";
30992
31035
  })[] | undefined;
30993
31036
  exposes?: string[] | undefined;
30994
31037
  domainContext?: {
@@ -31241,7 +31284,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
31241
31284
  entityRefIds?: Record<string, string> | undefined;
31242
31285
  traitEmbedIds?: Record<string, string> | undefined;
31243
31286
  requiredFields?: {
31244
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
31287
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
31245
31288
  name: string;
31246
31289
  description?: string | undefined;
31247
31290
  }[] | undefined;
@@ -31457,7 +31500,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
31457
31500
  entityRefIds?: Record<string, string> | undefined;
31458
31501
  traitEmbedIds?: Record<string, string> | undefined;
31459
31502
  requiredFields?: {
31460
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
31503
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
31461
31504
  name: string;
31462
31505
  description?: string | undefined;
31463
31506
  }[] | undefined;
@@ -32045,6 +32088,9 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
32045
32088
  event: string;
32046
32089
  kind: "event";
32047
32090
  traitName: string;
32091
+ } | {
32092
+ path: string;
32093
+ kind: "page";
32048
32094
  })[] | undefined;
32049
32095
  exposes?: string[] | undefined;
32050
32096
  domainContext?: {
@@ -32133,6 +32179,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
32133
32179
  event: string;
32134
32180
  kind: "event";
32135
32181
  traitName: string;
32182
+ }>, z.ZodObject<{
32183
+ kind: z.ZodLiteral<"page">;
32184
+ path: z.ZodString;
32185
+ }, "strip", z.ZodTypeAny, {
32186
+ path: string;
32187
+ kind: "page";
32188
+ }, {
32189
+ path: string;
32190
+ kind: "page";
32136
32191
  }>]>, "many">>;
32137
32192
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
32138
32193
  name: z.ZodString;
@@ -36608,14 +36663,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
36608
36663
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
36609
36664
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
36610
36665
  name: z.ZodString;
36611
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
36666
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
36612
36667
  description: z.ZodOptional<z.ZodString>;
36613
36668
  }, "strip", z.ZodTypeAny, {
36614
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
36669
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
36615
36670
  name: string;
36616
36671
  description?: string | undefined;
36617
36672
  }, {
36618
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
36673
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
36619
36674
  name: string;
36620
36675
  description?: string | undefined;
36621
36676
  }>, "many">>;
@@ -37280,7 +37335,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
37280
37335
  entityRefIds?: Record<string, EntityId> | undefined;
37281
37336
  traitEmbedIds?: Record<string, TraitId> | undefined;
37282
37337
  requiredFields?: {
37283
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
37338
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
37284
37339
  name: string;
37285
37340
  description?: string | undefined;
37286
37341
  }[] | undefined;
@@ -37450,7 +37505,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
37450
37505
  entityRefIds?: Record<string, string> | undefined;
37451
37506
  traitEmbedIds?: Record<string, string> | undefined;
37452
37507
  requiredFields?: {
37453
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
37508
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
37454
37509
  name: string;
37455
37510
  description?: string | undefined;
37456
37511
  }[] | undefined;
@@ -37875,14 +37930,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
37875
37930
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
37876
37931
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
37877
37932
  name: z.ZodString;
37878
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
37933
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
37879
37934
  description: z.ZodOptional<z.ZodString>;
37880
37935
  }, "strip", z.ZodTypeAny, {
37881
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
37936
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
37882
37937
  name: string;
37883
37938
  description?: string | undefined;
37884
37939
  }, {
37885
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
37940
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
37886
37941
  name: string;
37887
37942
  description?: string | undefined;
37888
37943
  }>, "many">>;
@@ -38547,7 +38602,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
38547
38602
  entityRefIds?: Record<string, EntityId> | undefined;
38548
38603
  traitEmbedIds?: Record<string, TraitId> | undefined;
38549
38604
  requiredFields?: {
38550
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
38605
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
38551
38606
  name: string;
38552
38607
  description?: string | undefined;
38553
38608
  }[] | undefined;
@@ -38717,7 +38772,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
38717
38772
  entityRefIds?: Record<string, string> | undefined;
38718
38773
  traitEmbedIds?: Record<string, string> | undefined;
38719
38774
  requiredFields?: {
38720
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
38775
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
38721
38776
  name: string;
38722
38777
  description?: string | undefined;
38723
38778
  }[] | undefined;
@@ -38933,7 +38988,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
38933
38988
  entityRefIds?: Record<string, EntityId> | undefined;
38934
38989
  traitEmbedIds?: Record<string, TraitId> | undefined;
38935
38990
  requiredFields?: {
38936
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
38991
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
38937
38992
  name: string;
38938
38993
  description?: string | undefined;
38939
38994
  }[] | undefined;
@@ -39152,7 +39207,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
39152
39207
  entityRefIds?: Record<string, string> | undefined;
39153
39208
  traitEmbedIds?: Record<string, string> | undefined;
39154
39209
  requiredFields?: {
39155
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
39210
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
39156
39211
  name: string;
39157
39212
  description?: string | undefined;
39158
39213
  }[] | undefined;
@@ -39640,7 +39695,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
39640
39695
  entityRefIds?: Record<string, EntityId> | undefined;
39641
39696
  traitEmbedIds?: Record<string, TraitId> | undefined;
39642
39697
  requiredFields?: {
39643
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
39698
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
39644
39699
  name: string;
39645
39700
  description?: string | undefined;
39646
39701
  }[] | undefined;
@@ -39856,7 +39911,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
39856
39911
  entityRefIds?: Record<string, EntityId> | undefined;
39857
39912
  traitEmbedIds?: Record<string, TraitId> | undefined;
39858
39913
  requiredFields?: {
39859
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
39914
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
39860
39915
  name: string;
39861
39916
  description?: string | undefined;
39862
39917
  }[] | undefined;
@@ -40444,6 +40499,9 @@ declare const OrbitalSchema$1: z.ZodObject<{
40444
40499
  event: string;
40445
40500
  kind: "event";
40446
40501
  traitName: string;
40502
+ } | {
40503
+ path: string;
40504
+ kind: "page";
40447
40505
  })[] | undefined;
40448
40506
  exposes?: string[] | undefined;
40449
40507
  domainContext?: {
@@ -40696,7 +40754,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
40696
40754
  entityRefIds?: Record<string, string> | undefined;
40697
40755
  traitEmbedIds?: Record<string, string> | undefined;
40698
40756
  requiredFields?: {
40699
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
40757
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
40700
40758
  name: string;
40701
40759
  description?: string | undefined;
40702
40760
  }[] | undefined;
@@ -40912,7 +40970,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
40912
40970
  entityRefIds?: Record<string, string> | undefined;
40913
40971
  traitEmbedIds?: Record<string, string> | undefined;
40914
40972
  requiredFields?: {
40915
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
40973
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
40916
40974
  name: string;
40917
40975
  description?: string | undefined;
40918
40976
  }[] | undefined;
@@ -41500,6 +41558,9 @@ declare const OrbitalSchema$1: z.ZodObject<{
41500
41558
  event: string;
41501
41559
  kind: "event";
41502
41560
  traitName: string;
41561
+ } | {
41562
+ path: string;
41563
+ kind: "page";
41503
41564
  })[] | undefined;
41504
41565
  exposes?: string[] | undefined;
41505
41566
  domainContext?: {
@@ -41595,6 +41656,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41595
41656
  event: string;
41596
41657
  kind: "event";
41597
41658
  traitName: string;
41659
+ }>, z.ZodObject<{
41660
+ kind: z.ZodLiteral<"page">;
41661
+ path: z.ZodString;
41662
+ }, "strip", z.ZodTypeAny, {
41663
+ path: string;
41664
+ kind: "page";
41665
+ }, {
41666
+ path: string;
41667
+ kind: "page";
41598
41668
  }>]>, "many">>;
41599
41669
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
41600
41670
  name: z.ZodString;
@@ -46070,14 +46140,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
46070
46140
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
46071
46141
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
46072
46142
  name: z.ZodString;
46073
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
46143
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
46074
46144
  description: z.ZodOptional<z.ZodString>;
46075
46145
  }, "strip", z.ZodTypeAny, {
46076
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
46146
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
46077
46147
  name: string;
46078
46148
  description?: string | undefined;
46079
46149
  }, {
46080
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
46150
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
46081
46151
  name: string;
46082
46152
  description?: string | undefined;
46083
46153
  }>, "many">>;
@@ -46742,7 +46812,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
46742
46812
  entityRefIds?: Record<string, EntityId> | undefined;
46743
46813
  traitEmbedIds?: Record<string, TraitId> | undefined;
46744
46814
  requiredFields?: {
46745
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
46815
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
46746
46816
  name: string;
46747
46817
  description?: string | undefined;
46748
46818
  }[] | undefined;
@@ -46912,7 +46982,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
46912
46982
  entityRefIds?: Record<string, string> | undefined;
46913
46983
  traitEmbedIds?: Record<string, string> | undefined;
46914
46984
  requiredFields?: {
46915
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
46985
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
46916
46986
  name: string;
46917
46987
  description?: string | undefined;
46918
46988
  }[] | undefined;
@@ -47337,14 +47407,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
47337
47407
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
47338
47408
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
47339
47409
  name: z.ZodString;
47340
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
47410
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
47341
47411
  description: z.ZodOptional<z.ZodString>;
47342
47412
  }, "strip", z.ZodTypeAny, {
47343
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
47413
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
47344
47414
  name: string;
47345
47415
  description?: string | undefined;
47346
47416
  }, {
47347
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
47417
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
47348
47418
  name: string;
47349
47419
  description?: string | undefined;
47350
47420
  }>, "many">>;
@@ -48009,7 +48079,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
48009
48079
  entityRefIds?: Record<string, EntityId> | undefined;
48010
48080
  traitEmbedIds?: Record<string, TraitId> | undefined;
48011
48081
  requiredFields?: {
48012
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
48082
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
48013
48083
  name: string;
48014
48084
  description?: string | undefined;
48015
48085
  }[] | undefined;
@@ -48179,7 +48249,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
48179
48249
  entityRefIds?: Record<string, string> | undefined;
48180
48250
  traitEmbedIds?: Record<string, string> | undefined;
48181
48251
  requiredFields?: {
48182
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
48252
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
48183
48253
  name: string;
48184
48254
  description?: string | undefined;
48185
48255
  }[] | undefined;
@@ -48395,7 +48465,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
48395
48465
  entityRefIds?: Record<string, EntityId> | undefined;
48396
48466
  traitEmbedIds?: Record<string, TraitId> | undefined;
48397
48467
  requiredFields?: {
48398
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
48468
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
48399
48469
  name: string;
48400
48470
  description?: string | undefined;
48401
48471
  }[] | undefined;
@@ -48614,7 +48684,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
48614
48684
  entityRefIds?: Record<string, string> | undefined;
48615
48685
  traitEmbedIds?: Record<string, string> | undefined;
48616
48686
  requiredFields?: {
48617
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
48687
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
48618
48688
  name: string;
48619
48689
  description?: string | undefined;
48620
48690
  }[] | undefined;
@@ -49102,7 +49172,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
49102
49172
  entityRefIds?: Record<string, EntityId> | undefined;
49103
49173
  traitEmbedIds?: Record<string, TraitId> | undefined;
49104
49174
  requiredFields?: {
49105
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
49175
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
49106
49176
  name: string;
49107
49177
  description?: string | undefined;
49108
49178
  }[] | undefined;
@@ -49318,7 +49388,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
49318
49388
  entityRefIds?: Record<string, EntityId> | undefined;
49319
49389
  traitEmbedIds?: Record<string, TraitId> | undefined;
49320
49390
  requiredFields?: {
49321
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
49391
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
49322
49392
  name: string;
49323
49393
  description?: string | undefined;
49324
49394
  }[] | undefined;
@@ -49906,6 +49976,9 @@ declare const OrbitalUnitSchema: z.ZodObject<{
49906
49976
  event: string;
49907
49977
  kind: "event";
49908
49978
  traitName: string;
49979
+ } | {
49980
+ path: string;
49981
+ kind: "page";
49909
49982
  })[] | undefined;
49910
49983
  exposes?: string[] | undefined;
49911
49984
  domainContext?: {
@@ -50158,7 +50231,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
50158
50231
  entityRefIds?: Record<string, string> | undefined;
50159
50232
  traitEmbedIds?: Record<string, string> | undefined;
50160
50233
  requiredFields?: {
50161
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
50234
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
50162
50235
  name: string;
50163
50236
  description?: string | undefined;
50164
50237
  }[] | undefined;
@@ -50374,7 +50447,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
50374
50447
  entityRefIds?: Record<string, string> | undefined;
50375
50448
  traitEmbedIds?: Record<string, string> | undefined;
50376
50449
  requiredFields?: {
50377
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
50450
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
50378
50451
  name: string;
50379
50452
  description?: string | undefined;
50380
50453
  }[] | undefined;
@@ -50962,6 +51035,9 @@ declare const OrbitalUnitSchema: z.ZodObject<{
50962
51035
  event: string;
50963
51036
  kind: "event";
50964
51037
  traitName: string;
51038
+ } | {
51039
+ path: string;
51040
+ kind: "page";
50965
51041
  })[] | undefined;
50966
51042
  exposes?: string[] | undefined;
50967
51043
  domainContext?: {
@@ -55291,6 +55367,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
55291
55367
  event: string;
55292
55368
  kind: "event";
55293
55369
  traitName: string;
55370
+ }>, z.ZodObject<{
55371
+ kind: z.ZodLiteral<"page">;
55372
+ path: z.ZodString;
55373
+ }, "strip", z.ZodTypeAny, {
55374
+ path: string;
55375
+ kind: "page";
55376
+ }, {
55377
+ path: string;
55378
+ kind: "page";
55294
55379
  }>]>, "many">>;
55295
55380
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
55296
55381
  name: z.ZodString;
@@ -59766,14 +59851,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
59766
59851
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
59767
59852
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
59768
59853
  name: z.ZodString;
59769
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
59854
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
59770
59855
  description: z.ZodOptional<z.ZodString>;
59771
59856
  }, "strip", z.ZodTypeAny, {
59772
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
59857
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
59773
59858
  name: string;
59774
59859
  description?: string | undefined;
59775
59860
  }, {
59776
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
59861
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
59777
59862
  name: string;
59778
59863
  description?: string | undefined;
59779
59864
  }>, "many">>;
@@ -60438,7 +60523,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
60438
60523
  entityRefIds?: Record<string, EntityId> | undefined;
60439
60524
  traitEmbedIds?: Record<string, TraitId> | undefined;
60440
60525
  requiredFields?: {
60441
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
60526
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
60442
60527
  name: string;
60443
60528
  description?: string | undefined;
60444
60529
  }[] | undefined;
@@ -60608,7 +60693,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
60608
60693
  entityRefIds?: Record<string, string> | undefined;
60609
60694
  traitEmbedIds?: Record<string, string> | undefined;
60610
60695
  requiredFields?: {
60611
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
60696
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
60612
60697
  name: string;
60613
60698
  description?: string | undefined;
60614
60699
  }[] | undefined;
@@ -61033,14 +61118,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
61033
61118
  traitEmbedIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, TraitId, string>>>;
61034
61119
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
61035
61120
  name: z.ZodString;
61036
- type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern"]>;
61121
+ type: z.ZodEnum<["string", "number", "boolean", "date", "array", "object", "timestamp", "datetime", "enum", "email", "url", "phone", "uuid", "image", "trait", "slot", "pattern", "node", "event"]>;
61037
61122
  description: z.ZodOptional<z.ZodString>;
61038
61123
  }, "strip", z.ZodTypeAny, {
61039
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
61124
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
61040
61125
  name: string;
61041
61126
  description?: string | undefined;
61042
61127
  }, {
61043
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
61128
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
61044
61129
  name: string;
61045
61130
  description?: string | undefined;
61046
61131
  }>, "many">>;
@@ -61705,7 +61790,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
61705
61790
  entityRefIds?: Record<string, EntityId> | undefined;
61706
61791
  traitEmbedIds?: Record<string, TraitId> | undefined;
61707
61792
  requiredFields?: {
61708
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
61793
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
61709
61794
  name: string;
61710
61795
  description?: string | undefined;
61711
61796
  }[] | undefined;
@@ -61875,7 +61960,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
61875
61960
  entityRefIds?: Record<string, string> | undefined;
61876
61961
  traitEmbedIds?: Record<string, string> | undefined;
61877
61962
  requiredFields?: {
61878
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
61963
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
61879
61964
  name: string;
61880
61965
  description?: string | undefined;
61881
61966
  }[] | undefined;
@@ -62091,7 +62176,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
62091
62176
  entityRefIds?: Record<string, EntityId> | undefined;
62092
62177
  traitEmbedIds?: Record<string, TraitId> | undefined;
62093
62178
  requiredFields?: {
62094
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
62179
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
62095
62180
  name: string;
62096
62181
  description?: string | undefined;
62097
62182
  }[] | undefined;
@@ -62310,7 +62395,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
62310
62395
  entityRefIds?: Record<string, string> | undefined;
62311
62396
  traitEmbedIds?: Record<string, string> | undefined;
62312
62397
  requiredFields?: {
62313
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
62398
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
62314
62399
  name: string;
62315
62400
  description?: string | undefined;
62316
62401
  }[] | undefined;
@@ -62798,7 +62883,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
62798
62883
  entityRefIds?: Record<string, EntityId> | undefined;
62799
62884
  traitEmbedIds?: Record<string, TraitId> | undefined;
62800
62885
  requiredFields?: {
62801
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
62886
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
62802
62887
  name: string;
62803
62888
  description?: string | undefined;
62804
62889
  }[] | undefined;
@@ -63014,7 +63099,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
63014
63099
  entityRefIds?: Record<string, EntityId> | undefined;
63015
63100
  traitEmbedIds?: Record<string, TraitId> | undefined;
63016
63101
  requiredFields?: {
63017
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
63102
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
63018
63103
  name: string;
63019
63104
  description?: string | undefined;
63020
63105
  }[] | undefined;
@@ -63602,6 +63687,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
63602
63687
  event: string;
63603
63688
  kind: "event";
63604
63689
  traitName: string;
63690
+ } | {
63691
+ path: string;
63692
+ kind: "page";
63605
63693
  })[] | undefined;
63606
63694
  exposes?: string[] | undefined;
63607
63695
  domainContext?: {
@@ -63854,7 +63942,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
63854
63942
  entityRefIds?: Record<string, string> | undefined;
63855
63943
  traitEmbedIds?: Record<string, string> | undefined;
63856
63944
  requiredFields?: {
63857
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
63945
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
63858
63946
  name: string;
63859
63947
  description?: string | undefined;
63860
63948
  }[] | undefined;
@@ -64070,7 +64158,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
64070
64158
  entityRefIds?: Record<string, string> | undefined;
64071
64159
  traitEmbedIds?: Record<string, string> | undefined;
64072
64160
  requiredFields?: {
64073
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
64161
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
64074
64162
  name: string;
64075
64163
  description?: string | undefined;
64076
64164
  }[] | undefined;
@@ -64658,6 +64746,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
64658
64746
  event: string;
64659
64747
  kind: "event";
64660
64748
  traitName: string;
64749
+ } | {
64750
+ path: string;
64751
+ kind: "page";
64661
64752
  })[] | undefined;
64662
64753
  exposes?: string[] | undefined;
64663
64754
  domainContext?: {
@@ -65211,7 +65302,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
65211
65302
  entityRefIds?: Record<string, EntityId> | undefined;
65212
65303
  traitEmbedIds?: Record<string, TraitId> | undefined;
65213
65304
  requiredFields?: {
65214
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
65305
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
65215
65306
  name: string;
65216
65307
  description?: string | undefined;
65217
65308
  }[] | undefined;
@@ -65427,7 +65518,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
65427
65518
  entityRefIds?: Record<string, EntityId> | undefined;
65428
65519
  traitEmbedIds?: Record<string, TraitId> | undefined;
65429
65520
  requiredFields?: {
65430
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
65521
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
65431
65522
  name: string;
65432
65523
  description?: string | undefined;
65433
65524
  }[] | undefined;
@@ -66015,6 +66106,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
66015
66106
  event: string;
66016
66107
  kind: "event";
66017
66108
  traitName: string;
66109
+ } | {
66110
+ path: string;
66111
+ kind: "page";
66018
66112
  })[] | undefined;
66019
66113
  exposes?: string[] | undefined;
66020
66114
  domainContext?: {
@@ -66835,7 +66929,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
66835
66929
  entityRefIds?: Record<string, string> | undefined;
66836
66930
  traitEmbedIds?: Record<string, string> | undefined;
66837
66931
  requiredFields?: {
66838
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
66932
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
66839
66933
  name: string;
66840
66934
  description?: string | undefined;
66841
66935
  }[] | undefined;
@@ -67051,7 +67145,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
67051
67145
  entityRefIds?: Record<string, string> | undefined;
67052
67146
  traitEmbedIds?: Record<string, string> | undefined;
67053
67147
  requiredFields?: {
67054
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
67148
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
67055
67149
  name: string;
67056
67150
  description?: string | undefined;
67057
67151
  }[] | undefined;
@@ -67639,6 +67733,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
67639
67733
  event: string;
67640
67734
  kind: "event";
67641
67735
  traitName: string;
67736
+ } | {
67737
+ path: string;
67738
+ kind: "page";
67642
67739
  })[] | undefined;
67643
67740
  exposes?: string[] | undefined;
67644
67741
  domainContext?: {
@@ -68524,7 +68621,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
68524
68621
  entityRefIds?: Record<string, string> | undefined;
68525
68622
  traitEmbedIds?: Record<string, string> | undefined;
68526
68623
  requiredFields?: {
68527
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
68624
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
68528
68625
  name: string;
68529
68626
  description?: string | undefined;
68530
68627
  }[] | undefined;
@@ -68740,7 +68837,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
68740
68837
  entityRefIds?: Record<string, string> | undefined;
68741
68838
  traitEmbedIds?: Record<string, string> | undefined;
68742
68839
  requiredFields?: {
68743
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
68840
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
68744
68841
  name: string;
68745
68842
  description?: string | undefined;
68746
68843
  }[] | undefined;
@@ -69328,6 +69425,9 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
69328
69425
  event: string;
69329
69426
  kind: "event";
69330
69427
  traitName: string;
69428
+ } | {
69429
+ path: string;
69430
+ kind: "page";
69331
69431
  })[] | undefined;
69332
69432
  exposes?: string[] | undefined;
69333
69433
  domainContext?: {
@@ -70148,7 +70248,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
70148
70248
  entityRefIds?: Record<string, EntityId> | undefined;
70149
70249
  traitEmbedIds?: Record<string, TraitId> | undefined;
70150
70250
  requiredFields?: {
70151
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
70251
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
70152
70252
  name: string;
70153
70253
  description?: string | undefined;
70154
70254
  }[] | undefined;
@@ -70364,7 +70464,7 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
70364
70464
  entityRefIds?: Record<string, EntityId> | undefined;
70365
70465
  traitEmbedIds?: Record<string, TraitId> | undefined;
70366
70466
  requiredFields?: {
70367
- type: "string" | "number" | "boolean" | "object" | "trait" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern";
70467
+ type: "string" | "number" | "boolean" | "object" | "trait" | "event" | "date" | "array" | "timestamp" | "datetime" | "email" | "url" | "phone" | "uuid" | "image" | "enum" | "slot" | "pattern" | "node";
70368
70468
  name: string;
70369
70469
  description?: string | undefined;
70370
70470
  }[] | undefined;
@@ -70952,6 +71052,9 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
70952
71052
  event: string;
70953
71053
  kind: "event";
70954
71054
  traitName: string;
71055
+ } | {
71056
+ path: string;
71057
+ kind: "page";
70955
71058
  })[] | undefined;
70956
71059
  exposes?: string[] | undefined;
70957
71060
  domainContext?: {
@@ -71558,4 +71661,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
71558
71661
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
71559
71662
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
71560
71663
 
71561
- 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, OrbitalSchema$1 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 NavStackEntry as aK, type NodeClassification as aL, NodeClassificationSchema as aM, type OrbitalConfig as aN, type OrbitalConfigInput as aO, OrbitalConfigSchema as aP, OrbitalDefinitionSchema as aQ, type OrbitalInput as aR, type OrbitalPageInput as aS, OrbitalPageSchema as aT, type OrbitalPageStrictInput as aU, OrbitalPageStrictSchema as aV, type OrbitalSchemaInput as aW, OrbitalSchemaSchema as aX, type OrbitalSchemaWithTraits as aY, type OrbitalUnit as aZ, OrbitalUnitSchema 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, parseImportedTraitRef as b$, PageRefObjectSchema as b0, PageRefSchema as b1, PageRefStringSchema as b2, PageSchema as b3, type PageTraitRef as b4, PageTraitRefSchema as b5, type RelatedLink as b6, RelatedLinkSchema as b7, type SchemaMetadata as b8, SchemaMetadataSchema as b9, TypeScaleTokensSchema as bA, type TypeSizeKey as bB, TypeSizeKeySchema as bC, type TypeSlice as bD, TypeSliceSchema as bE, type TypeSlot as bF, TypeSlotSchema as bG, type TypeWeight as bH, TypeWeightSchema as bI, type UXHints as bJ, UXHintsSchema as bK, UseDeclarationSchema as bL, type UserPersona as bM, type UserPersonaInput as bN, UserPersonaSchema as bO, type ViewType as bP, ViewTypeSchema as bQ, isEntityCall as bR, isEntityReference as bS, isEntityReferenceAny as bT, isImportedTraitRef as bU, isOrbitalDefinition as bV, isPageReference as bW, isPageReferenceObject as bX, isPageReferenceString as bY, isThemeReference as bZ, parseEntityRef as b_, type SkinSpec as ba, SkinSpecSchema as bb, type SpacingScale as bc, SpacingScaleSchema as bd, type StateSemanticRole as be, StateSemanticRoleSchema as bf, type SuggestedGuard as bg, SuggestedGuardSchema as bh, type ThemeDefinition as bi, ThemeDefinitionSchema as bj, type ThemeRef as bk, ThemeRefSchema as bl, ThemeRefStringSchema as bm, type ThemeTokens as bn, ThemeTokensSchema as bo, type ThemeVariant as bp, ThemeVariantSchema as bq, type TypeIntent as br, type TypeIntentMap as bs, TypeIntentMapSchema as bt, TypeIntentSchema as bu, type TypeScale as bv, type TypeScaleEntry as bw, TypeScaleEntrySchema as bx, TypeScaleSchema as by, type TypeScaleTokens as bz, type Page as c, parseOrbitalSchema as c0, parsePageRef as c1, safeParseOrbitalSchema as c2, 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 };
71664
+ 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, OrbitalSchema$1 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 NavStackEntry as aK, type NodeClassification as aL, NodeClassificationSchema as aM, type OrbitalConfig as aN, type OrbitalConfigInput as aO, OrbitalConfigSchema as aP, OrbitalDefinitionSchema as aQ, type OrbitalInput as aR, type OrbitalPageInput as aS, OrbitalPageSchema as aT, type OrbitalPageStrictInput as aU, OrbitalPageStrictSchema as aV, type OrbitalSchemaInput as aW, OrbitalSchemaSchema as aX, type OrbitalSchemaWithTraits as aY, type OrbitalUnit as aZ, OrbitalUnitSchema 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, parseEntityRef as b$, PageRefObjectSchema as b0, PageRefSchema as b1, PageRefStringSchema as b2, PageSchema as b3, type PageTraitRef as b4, PageTraitRefSchema as b5, type RelatedLink as b6, RelatedLinkSchema as b7, type SchemaMetadata as b8, SchemaMetadataSchema as b9, TypeScaleTokensSchema as bA, type TypeSizeKey as bB, TypeSizeKeySchema as bC, type TypeSlice as bD, TypeSliceSchema as bE, type TypeSlot as bF, TypeSlotSchema as bG, type TypeWeight as bH, TypeWeightSchema as bI, type UXHints as bJ, UXHintsSchema as bK, UseDeclarationSchema as bL, type UserPersona as bM, type UserPersonaInput as bN, UserPersonaSchema as bO, type ViewType as bP, ViewTypeSchema as bQ, expectedEntityName as bR, isEntityCall as bS, isEntityReference as bT, isEntityReferenceAny as bU, isImportedTraitRef as bV, isOrbitalDefinition as bW, isPageReference as bX, isPageReferenceObject as bY, isPageReferenceString as bZ, isThemeReference as b_, type SkinSpec as ba, SkinSpecSchema as bb, type SpacingScale as bc, SpacingScaleSchema as bd, type StateSemanticRole as be, StateSemanticRoleSchema as bf, type SuggestedGuard as bg, SuggestedGuardSchema as bh, type ThemeDefinition as bi, ThemeDefinitionSchema as bj, type ThemeRef as bk, ThemeRefSchema as bl, ThemeRefStringSchema as bm, type ThemeTokens as bn, ThemeTokensSchema as bo, type ThemeVariant as bp, ThemeVariantSchema as bq, type TypeIntent as br, type TypeIntentMap as bs, TypeIntentMapSchema as bt, TypeIntentSchema as bu, type TypeScale as bv, type TypeScaleEntry as bw, TypeScaleEntrySchema as bx, TypeScaleSchema as by, type TypeScaleTokens as bz, type Page as c, parseImportedTraitRef as c0, parseOrbitalSchema as c1, parsePageRef as c2, safeParseOrbitalSchema as c3, 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 };