@almadar/core 10.87.0 → 10.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +2 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DMA97JxX.d.ts → effect-CdLBg9zL.d.ts} +1 -1
- package/dist/{entityAccess-DNDEF75i.d.ts → entityAccess-BmZHpQUv.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +2 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.d.ts +14 -2
- package/dist/i18n/index.js +192 -375
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-xZP_Ajx3.d.ts → index-CV_iM5Cm.d.ts} +4 -4
- package/dist/index.d.ts +11 -11
- package/dist/index.js +197 -378
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +5 -5
- package/dist/patterns/index.js +3 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1 -1
- package/dist/patterns/registry.json +1 -1
- package/dist/{schema-_SPrm5Ic.d.ts → schema-DYC_RnBX.d.ts} +471 -4
- package/dist/{trait-9tfq2tQb.d.ts → trait-DmWdtKlP.d.ts} +130 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CjRjhiaO.d.ts → types-DdK77hq2.d.ts} +2 -2
- package/package.json +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-
|
|
1
|
+
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-CdLBg9zL.js';
|
|
2
2
|
import { J as JsonValue } from './json-D8gmyK3l.js';
|
|
3
3
|
import { E as Expression, S as SExpr } from './expression-WfTp2arD.js';
|
|
4
4
|
import { z } from 'zod';
|
|
@@ -114,6 +114,21 @@ type Event = {
|
|
|
114
114
|
tier?: string;
|
|
115
115
|
/** Expected payload structure */
|
|
116
116
|
payloadSchema?: PayloadField[];
|
|
117
|
+
/**
|
|
118
|
+
* The entity this WHOLE payload was declared as (`type X = Event
|
|
119
|
+
* <EntityName>`, the bare/concrete form) — mirrors Rust
|
|
120
|
+
* `EventDefinition.payload_entity` (G4, `Almadar_Compiler_Gaps.md` §82).
|
|
121
|
+
* Distinct from `PayloadField.entity` (a single NESTED field's value is
|
|
122
|
+
* an entity instance): this marks the payload schema ITSELF as a 1:1
|
|
123
|
+
* mirror of that entity's CURRENT fields. Consumed by
|
|
124
|
+
* `resolveTraitTypeParamSentinels` (`resolver/sentinel-resolution.ts`)
|
|
125
|
+
* to re-derive `payloadSchema` from the entity's post-`fields{}`/
|
|
126
|
+
* `extend{}` shape once an orbital-import or trait-reference override
|
|
127
|
+
* has materialized; kept in sync across entity renames the same one
|
|
128
|
+
* owner `PayloadField.entity` already uses
|
|
129
|
+
* (`renamePayloadEntityMarkers`, `reference-resolver.ts`).
|
|
130
|
+
*/
|
|
131
|
+
payloadEntity?: string;
|
|
117
132
|
/** Domain vs System classification (optional, for analysis) */
|
|
118
133
|
classification?: "domain" | "system";
|
|
119
134
|
/** Semantic role of this event (optional, for analysis) */
|
|
@@ -127,6 +142,7 @@ declare const EventSchema: z.ZodObject<{
|
|
|
127
142
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
128
143
|
tier: z.ZodOptional<z.ZodString>;
|
|
129
144
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
145
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
130
146
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
131
147
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
132
148
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -137,6 +153,7 @@ declare const EventSchema: z.ZodObject<{
|
|
|
137
153
|
synonyms?: string | undefined;
|
|
138
154
|
tier?: string | undefined;
|
|
139
155
|
payloadSchema?: PayloadField[] | undefined;
|
|
156
|
+
payloadEntity?: string | undefined;
|
|
140
157
|
classification?: "domain" | "system" | undefined;
|
|
141
158
|
semanticRole?: string | undefined;
|
|
142
159
|
}, {
|
|
@@ -147,6 +164,7 @@ declare const EventSchema: z.ZodObject<{
|
|
|
147
164
|
synonyms?: string | undefined;
|
|
148
165
|
tier?: string | undefined;
|
|
149
166
|
payloadSchema?: PayloadField[] | undefined;
|
|
167
|
+
payloadEntity?: string | undefined;
|
|
150
168
|
classification?: "domain" | "system" | undefined;
|
|
151
169
|
semanticRole?: string | undefined;
|
|
152
170
|
}>;
|
|
@@ -284,6 +302,7 @@ declare const StateMachineSchema: z.ZodObject<{
|
|
|
284
302
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
285
303
|
tier: z.ZodOptional<z.ZodString>;
|
|
286
304
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
305
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
287
306
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
288
307
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
289
308
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -294,6 +313,7 @@ declare const StateMachineSchema: z.ZodObject<{
|
|
|
294
313
|
synonyms?: string | undefined;
|
|
295
314
|
tier?: string | undefined;
|
|
296
315
|
payloadSchema?: PayloadField[] | undefined;
|
|
316
|
+
payloadEntity?: string | undefined;
|
|
297
317
|
classification?: "domain" | "system" | undefined;
|
|
298
318
|
semanticRole?: string | undefined;
|
|
299
319
|
}, {
|
|
@@ -304,6 +324,7 @@ declare const StateMachineSchema: z.ZodObject<{
|
|
|
304
324
|
synonyms?: string | undefined;
|
|
305
325
|
tier?: string | undefined;
|
|
306
326
|
payloadSchema?: PayloadField[] | undefined;
|
|
327
|
+
payloadEntity?: string | undefined;
|
|
307
328
|
classification?: "domain" | "system" | undefined;
|
|
308
329
|
semanticRole?: string | undefined;
|
|
309
330
|
}>, "many">;
|
|
@@ -372,6 +393,7 @@ declare const StateMachineSchema: z.ZodObject<{
|
|
|
372
393
|
synonyms?: string | undefined;
|
|
373
394
|
tier?: string | undefined;
|
|
374
395
|
payloadSchema?: PayloadField[] | undefined;
|
|
396
|
+
payloadEntity?: string | undefined;
|
|
375
397
|
classification?: "domain" | "system" | undefined;
|
|
376
398
|
semanticRole?: string | undefined;
|
|
377
399
|
}[];
|
|
@@ -407,6 +429,7 @@ declare const StateMachineSchema: z.ZodObject<{
|
|
|
407
429
|
synonyms?: string | undefined;
|
|
408
430
|
tier?: string | undefined;
|
|
409
431
|
payloadSchema?: PayloadField[] | undefined;
|
|
432
|
+
payloadEntity?: string | undefined;
|
|
410
433
|
classification?: "domain" | "system" | undefined;
|
|
411
434
|
semanticRole?: string | undefined;
|
|
412
435
|
}[];
|
|
@@ -847,6 +870,13 @@ type TraitEventContract = {
|
|
|
847
870
|
* Distinct from the runtime payload value (`@payload.X` bindings,
|
|
848
871
|
* `EventPayload`) which is a separate concept. */
|
|
849
872
|
payloadSchema?: EventPayloadField[];
|
|
873
|
+
/**
|
|
874
|
+
* Same marker as `Event.payloadEntity` (`state-machine.ts`) — this
|
|
875
|
+
* emit's payload was declared `type X = Event <EntityName>` and is a
|
|
876
|
+
* flat mirror of that entity's fields. See that field's doc for the
|
|
877
|
+
* full contract (G4, `Almadar_Compiler_Gaps.md` §82).
|
|
878
|
+
*/
|
|
879
|
+
payloadEntity?: string;
|
|
850
880
|
/**
|
|
851
881
|
* Event scope:
|
|
852
882
|
* - 'internal': Trait-to-trait within same orbital (default)
|
|
@@ -900,6 +930,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
900
930
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
901
931
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
902
932
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
933
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
903
934
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
904
935
|
}, "strip", z.ZodTypeAny, {
|
|
905
936
|
event: string;
|
|
@@ -909,6 +940,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
909
940
|
scope?: "internal" | "external" | undefined;
|
|
910
941
|
tier?: string | undefined;
|
|
911
942
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
943
|
+
payloadEntity?: string | undefined;
|
|
912
944
|
definerKnob?: string | undefined;
|
|
913
945
|
scopeOverridden?: boolean | undefined;
|
|
914
946
|
}, {
|
|
@@ -919,6 +951,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
919
951
|
scope?: "internal" | "external" | undefined;
|
|
920
952
|
tier?: string | undefined;
|
|
921
953
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
954
|
+
payloadEntity?: string | undefined;
|
|
922
955
|
definerKnob?: string | undefined;
|
|
923
956
|
scopeOverridden?: boolean | undefined;
|
|
924
957
|
}>;
|
|
@@ -1383,6 +1416,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1383
1416
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
1384
1417
|
tier: z.ZodOptional<z.ZodString>;
|
|
1385
1418
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
1419
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
1386
1420
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
1387
1421
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
1388
1422
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1393,6 +1427,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1393
1427
|
synonyms?: string | undefined;
|
|
1394
1428
|
tier?: string | undefined;
|
|
1395
1429
|
payloadSchema?: PayloadField[] | undefined;
|
|
1430
|
+
payloadEntity?: string | undefined;
|
|
1396
1431
|
classification?: "domain" | "system" | undefined;
|
|
1397
1432
|
semanticRole?: string | undefined;
|
|
1398
1433
|
}, {
|
|
@@ -1403,6 +1438,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1403
1438
|
synonyms?: string | undefined;
|
|
1404
1439
|
tier?: string | undefined;
|
|
1405
1440
|
payloadSchema?: PayloadField[] | undefined;
|
|
1441
|
+
payloadEntity?: string | undefined;
|
|
1406
1442
|
classification?: "domain" | "system" | undefined;
|
|
1407
1443
|
semanticRole?: string | undefined;
|
|
1408
1444
|
}>, "many">;
|
|
@@ -1471,6 +1507,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1471
1507
|
synonyms?: string | undefined;
|
|
1472
1508
|
tier?: string | undefined;
|
|
1473
1509
|
payloadSchema?: PayloadField[] | undefined;
|
|
1510
|
+
payloadEntity?: string | undefined;
|
|
1474
1511
|
classification?: "domain" | "system" | undefined;
|
|
1475
1512
|
semanticRole?: string | undefined;
|
|
1476
1513
|
}[];
|
|
@@ -1506,6 +1543,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1506
1543
|
synonyms?: string | undefined;
|
|
1507
1544
|
tier?: string | undefined;
|
|
1508
1545
|
payloadSchema?: PayloadField[] | undefined;
|
|
1546
|
+
payloadEntity?: string | undefined;
|
|
1509
1547
|
classification?: "domain" | "system" | undefined;
|
|
1510
1548
|
semanticRole?: string | undefined;
|
|
1511
1549
|
}[];
|
|
@@ -1571,6 +1609,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1571
1609
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
1572
1610
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
1573
1611
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
1612
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
1574
1613
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
1575
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1576
1615
|
event: string;
|
|
@@ -1580,6 +1619,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1580
1619
|
scope?: "internal" | "external" | undefined;
|
|
1581
1620
|
tier?: string | undefined;
|
|
1582
1621
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
1622
|
+
payloadEntity?: string | undefined;
|
|
1583
1623
|
definerKnob?: string | undefined;
|
|
1584
1624
|
scopeOverridden?: boolean | undefined;
|
|
1585
1625
|
}, {
|
|
@@ -1590,6 +1630,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1590
1630
|
scope?: "internal" | "external" | undefined;
|
|
1591
1631
|
tier?: string | undefined;
|
|
1592
1632
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
1633
|
+
payloadEntity?: string | undefined;
|
|
1593
1634
|
definerKnob?: string | undefined;
|
|
1594
1635
|
scopeOverridden?: boolean | undefined;
|
|
1595
1636
|
}>, "many">>;
|
|
@@ -1915,6 +1956,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1915
1956
|
scope?: "internal" | "external" | undefined;
|
|
1916
1957
|
tier?: string | undefined;
|
|
1917
1958
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
1959
|
+
payloadEntity?: string | undefined;
|
|
1918
1960
|
definerKnob?: string | undefined;
|
|
1919
1961
|
scopeOverridden?: boolean | undefined;
|
|
1920
1962
|
}[] | undefined;
|
|
@@ -1982,6 +2024,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1982
2024
|
synonyms?: string | undefined;
|
|
1983
2025
|
tier?: string | undefined;
|
|
1984
2026
|
payloadSchema?: PayloadField[] | undefined;
|
|
2027
|
+
payloadEntity?: string | undefined;
|
|
1985
2028
|
classification?: "domain" | "system" | undefined;
|
|
1986
2029
|
semanticRole?: string | undefined;
|
|
1987
2030
|
}[];
|
|
@@ -2095,6 +2138,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2095
2138
|
scope?: "internal" | "external" | undefined;
|
|
2096
2139
|
tier?: string | undefined;
|
|
2097
2140
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2141
|
+
payloadEntity?: string | undefined;
|
|
2098
2142
|
definerKnob?: string | undefined;
|
|
2099
2143
|
scopeOverridden?: boolean | undefined;
|
|
2100
2144
|
}[] | undefined;
|
|
@@ -2162,6 +2206,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2162
2206
|
synonyms?: string | undefined;
|
|
2163
2207
|
tier?: string | undefined;
|
|
2164
2208
|
payloadSchema?: PayloadField[] | undefined;
|
|
2209
|
+
payloadEntity?: string | undefined;
|
|
2165
2210
|
classification?: "domain" | "system" | undefined;
|
|
2166
2211
|
semanticRole?: string | undefined;
|
|
2167
2212
|
}[];
|
|
@@ -2418,6 +2463,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2418
2463
|
scope?: "internal" | "external" | undefined;
|
|
2419
2464
|
tier?: string | undefined;
|
|
2420
2465
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2466
|
+
payloadEntity?: string | undefined;
|
|
2421
2467
|
definerKnob?: string | undefined;
|
|
2422
2468
|
scopeOverridden?: boolean | undefined;
|
|
2423
2469
|
}[] | undefined;
|
|
@@ -2485,6 +2531,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2485
2531
|
synonyms?: string | undefined;
|
|
2486
2532
|
tier?: string | undefined;
|
|
2487
2533
|
payloadSchema?: PayloadField[] | undefined;
|
|
2534
|
+
payloadEntity?: string | undefined;
|
|
2488
2535
|
classification?: "domain" | "system" | undefined;
|
|
2489
2536
|
semanticRole?: string | undefined;
|
|
2490
2537
|
}[];
|
|
@@ -2640,6 +2687,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2640
2687
|
scope?: "internal" | "external" | undefined;
|
|
2641
2688
|
tier?: string | undefined;
|
|
2642
2689
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2690
|
+
payloadEntity?: string | undefined;
|
|
2643
2691
|
definerKnob?: string | undefined;
|
|
2644
2692
|
scopeOverridden?: boolean | undefined;
|
|
2645
2693
|
}[] | undefined;
|
|
@@ -2707,6 +2755,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2707
2755
|
synonyms?: string | undefined;
|
|
2708
2756
|
tier?: string | undefined;
|
|
2709
2757
|
payloadSchema?: PayloadField[] | undefined;
|
|
2758
|
+
payloadEntity?: string | undefined;
|
|
2710
2759
|
classification?: "domain" | "system" | undefined;
|
|
2711
2760
|
semanticRole?: string | undefined;
|
|
2712
2761
|
}[];
|
|
@@ -2862,6 +2911,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2862
2911
|
scope?: "internal" | "external" | undefined;
|
|
2863
2912
|
tier?: string | undefined;
|
|
2864
2913
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2914
|
+
payloadEntity?: string | undefined;
|
|
2865
2915
|
definerKnob?: string | undefined;
|
|
2866
2916
|
scopeOverridden?: boolean | undefined;
|
|
2867
2917
|
}[] | undefined;
|
|
@@ -2929,6 +2979,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2929
2979
|
synonyms?: string | undefined;
|
|
2930
2980
|
tier?: string | undefined;
|
|
2931
2981
|
payloadSchema?: PayloadField[] | undefined;
|
|
2982
|
+
payloadEntity?: string | undefined;
|
|
2932
2983
|
classification?: "domain" | "system" | undefined;
|
|
2933
2984
|
semanticRole?: string | undefined;
|
|
2934
2985
|
}[];
|
|
@@ -3084,6 +3135,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3084
3135
|
scope?: "internal" | "external" | undefined;
|
|
3085
3136
|
tier?: string | undefined;
|
|
3086
3137
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3138
|
+
payloadEntity?: string | undefined;
|
|
3087
3139
|
definerKnob?: string | undefined;
|
|
3088
3140
|
scopeOverridden?: boolean | undefined;
|
|
3089
3141
|
}[] | undefined;
|
|
@@ -3151,6 +3203,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3151
3203
|
synonyms?: string | undefined;
|
|
3152
3204
|
tier?: string | undefined;
|
|
3153
3205
|
payloadSchema?: PayloadField[] | undefined;
|
|
3206
|
+
payloadEntity?: string | undefined;
|
|
3154
3207
|
classification?: "domain" | "system" | undefined;
|
|
3155
3208
|
semanticRole?: string | undefined;
|
|
3156
3209
|
}[];
|
|
@@ -3694,6 +3747,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3694
3747
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
3695
3748
|
tier: z.ZodOptional<z.ZodString>;
|
|
3696
3749
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
3750
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
3697
3751
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
3698
3752
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
3699
3753
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3704,6 +3758,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3704
3758
|
synonyms?: string | undefined;
|
|
3705
3759
|
tier?: string | undefined;
|
|
3706
3760
|
payloadSchema?: PayloadField[] | undefined;
|
|
3761
|
+
payloadEntity?: string | undefined;
|
|
3707
3762
|
classification?: "domain" | "system" | undefined;
|
|
3708
3763
|
semanticRole?: string | undefined;
|
|
3709
3764
|
}, {
|
|
@@ -3714,6 +3769,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3714
3769
|
synonyms?: string | undefined;
|
|
3715
3770
|
tier?: string | undefined;
|
|
3716
3771
|
payloadSchema?: PayloadField[] | undefined;
|
|
3772
|
+
payloadEntity?: string | undefined;
|
|
3717
3773
|
classification?: "domain" | "system" | undefined;
|
|
3718
3774
|
semanticRole?: string | undefined;
|
|
3719
3775
|
}>, "many">;
|
|
@@ -3782,6 +3838,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3782
3838
|
synonyms?: string | undefined;
|
|
3783
3839
|
tier?: string | undefined;
|
|
3784
3840
|
payloadSchema?: PayloadField[] | undefined;
|
|
3841
|
+
payloadEntity?: string | undefined;
|
|
3785
3842
|
classification?: "domain" | "system" | undefined;
|
|
3786
3843
|
semanticRole?: string | undefined;
|
|
3787
3844
|
}[];
|
|
@@ -3817,6 +3874,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3817
3874
|
synonyms?: string | undefined;
|
|
3818
3875
|
tier?: string | undefined;
|
|
3819
3876
|
payloadSchema?: PayloadField[] | undefined;
|
|
3877
|
+
payloadEntity?: string | undefined;
|
|
3820
3878
|
classification?: "domain" | "system" | undefined;
|
|
3821
3879
|
semanticRole?: string | undefined;
|
|
3822
3880
|
}[];
|
|
@@ -3882,6 +3940,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3882
3940
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
3883
3941
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
3884
3942
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
3943
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
3885
3944
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
3886
3945
|
}, "strip", z.ZodTypeAny, {
|
|
3887
3946
|
event: string;
|
|
@@ -3891,6 +3950,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3891
3950
|
scope?: "internal" | "external" | undefined;
|
|
3892
3951
|
tier?: string | undefined;
|
|
3893
3952
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3953
|
+
payloadEntity?: string | undefined;
|
|
3894
3954
|
definerKnob?: string | undefined;
|
|
3895
3955
|
scopeOverridden?: boolean | undefined;
|
|
3896
3956
|
}, {
|
|
@@ -3901,6 +3961,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3901
3961
|
scope?: "internal" | "external" | undefined;
|
|
3902
3962
|
tier?: string | undefined;
|
|
3903
3963
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3964
|
+
payloadEntity?: string | undefined;
|
|
3904
3965
|
definerKnob?: string | undefined;
|
|
3905
3966
|
scopeOverridden?: boolean | undefined;
|
|
3906
3967
|
}>, "many">>;
|
|
@@ -4226,6 +4287,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4226
4287
|
scope?: "internal" | "external" | undefined;
|
|
4227
4288
|
tier?: string | undefined;
|
|
4228
4289
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4290
|
+
payloadEntity?: string | undefined;
|
|
4229
4291
|
definerKnob?: string | undefined;
|
|
4230
4292
|
scopeOverridden?: boolean | undefined;
|
|
4231
4293
|
}[] | undefined;
|
|
@@ -4293,6 +4355,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4293
4355
|
synonyms?: string | undefined;
|
|
4294
4356
|
tier?: string | undefined;
|
|
4295
4357
|
payloadSchema?: PayloadField[] | undefined;
|
|
4358
|
+
payloadEntity?: string | undefined;
|
|
4296
4359
|
classification?: "domain" | "system" | undefined;
|
|
4297
4360
|
semanticRole?: string | undefined;
|
|
4298
4361
|
}[];
|
|
@@ -4406,6 +4469,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4406
4469
|
scope?: "internal" | "external" | undefined;
|
|
4407
4470
|
tier?: string | undefined;
|
|
4408
4471
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4472
|
+
payloadEntity?: string | undefined;
|
|
4409
4473
|
definerKnob?: string | undefined;
|
|
4410
4474
|
scopeOverridden?: boolean | undefined;
|
|
4411
4475
|
}[] | undefined;
|
|
@@ -4473,6 +4537,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4473
4537
|
synonyms?: string | undefined;
|
|
4474
4538
|
tier?: string | undefined;
|
|
4475
4539
|
payloadSchema?: PayloadField[] | undefined;
|
|
4540
|
+
payloadEntity?: string | undefined;
|
|
4476
4541
|
classification?: "domain" | "system" | undefined;
|
|
4477
4542
|
semanticRole?: string | undefined;
|
|
4478
4543
|
}[];
|
|
@@ -4684,6 +4749,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4684
4749
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
4685
4750
|
tier: z.ZodOptional<z.ZodString>;
|
|
4686
4751
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
4752
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
4687
4753
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
4688
4754
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
4689
4755
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4694,6 +4760,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4694
4760
|
synonyms?: string | undefined;
|
|
4695
4761
|
tier?: string | undefined;
|
|
4696
4762
|
payloadSchema?: PayloadField[] | undefined;
|
|
4763
|
+
payloadEntity?: string | undefined;
|
|
4697
4764
|
classification?: "domain" | "system" | undefined;
|
|
4698
4765
|
semanticRole?: string | undefined;
|
|
4699
4766
|
}, {
|
|
@@ -4704,6 +4771,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4704
4771
|
synonyms?: string | undefined;
|
|
4705
4772
|
tier?: string | undefined;
|
|
4706
4773
|
payloadSchema?: PayloadField[] | undefined;
|
|
4774
|
+
payloadEntity?: string | undefined;
|
|
4707
4775
|
classification?: "domain" | "system" | undefined;
|
|
4708
4776
|
semanticRole?: string | undefined;
|
|
4709
4777
|
}>, "many">;
|
|
@@ -4772,6 +4840,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4772
4840
|
synonyms?: string | undefined;
|
|
4773
4841
|
tier?: string | undefined;
|
|
4774
4842
|
payloadSchema?: PayloadField[] | undefined;
|
|
4843
|
+
payloadEntity?: string | undefined;
|
|
4775
4844
|
classification?: "domain" | "system" | undefined;
|
|
4776
4845
|
semanticRole?: string | undefined;
|
|
4777
4846
|
}[];
|
|
@@ -4807,6 +4876,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4807
4876
|
synonyms?: string | undefined;
|
|
4808
4877
|
tier?: string | undefined;
|
|
4809
4878
|
payloadSchema?: PayloadField[] | undefined;
|
|
4879
|
+
payloadEntity?: string | undefined;
|
|
4810
4880
|
classification?: "domain" | "system" | undefined;
|
|
4811
4881
|
semanticRole?: string | undefined;
|
|
4812
4882
|
}[];
|
|
@@ -4872,6 +4942,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4872
4942
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
4873
4943
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
4874
4944
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
4945
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
4875
4946
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
4876
4947
|
}, "strip", z.ZodTypeAny, {
|
|
4877
4948
|
event: string;
|
|
@@ -4881,6 +4952,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4881
4952
|
scope?: "internal" | "external" | undefined;
|
|
4882
4953
|
tier?: string | undefined;
|
|
4883
4954
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4955
|
+
payloadEntity?: string | undefined;
|
|
4884
4956
|
definerKnob?: string | undefined;
|
|
4885
4957
|
scopeOverridden?: boolean | undefined;
|
|
4886
4958
|
}, {
|
|
@@ -4891,6 +4963,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
4891
4963
|
scope?: "internal" | "external" | undefined;
|
|
4892
4964
|
tier?: string | undefined;
|
|
4893
4965
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4966
|
+
payloadEntity?: string | undefined;
|
|
4894
4967
|
definerKnob?: string | undefined;
|
|
4895
4968
|
scopeOverridden?: boolean | undefined;
|
|
4896
4969
|
}>, "many">>;
|
|
@@ -5216,6 +5289,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5216
5289
|
scope?: "internal" | "external" | undefined;
|
|
5217
5290
|
tier?: string | undefined;
|
|
5218
5291
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
5292
|
+
payloadEntity?: string | undefined;
|
|
5219
5293
|
definerKnob?: string | undefined;
|
|
5220
5294
|
scopeOverridden?: boolean | undefined;
|
|
5221
5295
|
}[] | undefined;
|
|
@@ -5283,6 +5357,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5283
5357
|
synonyms?: string | undefined;
|
|
5284
5358
|
tier?: string | undefined;
|
|
5285
5359
|
payloadSchema?: PayloadField[] | undefined;
|
|
5360
|
+
payloadEntity?: string | undefined;
|
|
5286
5361
|
classification?: "domain" | "system" | undefined;
|
|
5287
5362
|
semanticRole?: string | undefined;
|
|
5288
5363
|
}[];
|
|
@@ -5396,6 +5471,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5396
5471
|
scope?: "internal" | "external" | undefined;
|
|
5397
5472
|
tier?: string | undefined;
|
|
5398
5473
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
5474
|
+
payloadEntity?: string | undefined;
|
|
5399
5475
|
definerKnob?: string | undefined;
|
|
5400
5476
|
scopeOverridden?: boolean | undefined;
|
|
5401
5477
|
}[] | undefined;
|
|
@@ -5463,6 +5539,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5463
5539
|
synonyms?: string | undefined;
|
|
5464
5540
|
tier?: string | undefined;
|
|
5465
5541
|
payloadSchema?: PayloadField[] | undefined;
|
|
5542
|
+
payloadEntity?: string | undefined;
|
|
5466
5543
|
classification?: "domain" | "system" | undefined;
|
|
5467
5544
|
semanticRole?: string | undefined;
|
|
5468
5545
|
}[];
|
|
@@ -5719,6 +5796,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5719
5796
|
scope?: "internal" | "external" | undefined;
|
|
5720
5797
|
tier?: string | undefined;
|
|
5721
5798
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
5799
|
+
payloadEntity?: string | undefined;
|
|
5722
5800
|
definerKnob?: string | undefined;
|
|
5723
5801
|
scopeOverridden?: boolean | undefined;
|
|
5724
5802
|
}[] | undefined;
|
|
@@ -5786,6 +5864,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5786
5864
|
synonyms?: string | undefined;
|
|
5787
5865
|
tier?: string | undefined;
|
|
5788
5866
|
payloadSchema?: PayloadField[] | undefined;
|
|
5867
|
+
payloadEntity?: string | undefined;
|
|
5789
5868
|
classification?: "domain" | "system" | undefined;
|
|
5790
5869
|
semanticRole?: string | undefined;
|
|
5791
5870
|
}[];
|
|
@@ -5941,6 +6020,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
5941
6020
|
scope?: "internal" | "external" | undefined;
|
|
5942
6021
|
tier?: string | undefined;
|
|
5943
6022
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
6023
|
+
payloadEntity?: string | undefined;
|
|
5944
6024
|
definerKnob?: string | undefined;
|
|
5945
6025
|
scopeOverridden?: boolean | undefined;
|
|
5946
6026
|
}[] | undefined;
|
|
@@ -6008,6 +6088,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6008
6088
|
synonyms?: string | undefined;
|
|
6009
6089
|
tier?: string | undefined;
|
|
6010
6090
|
payloadSchema?: PayloadField[] | undefined;
|
|
6091
|
+
payloadEntity?: string | undefined;
|
|
6011
6092
|
classification?: "domain" | "system" | undefined;
|
|
6012
6093
|
semanticRole?: string | undefined;
|
|
6013
6094
|
}[];
|
|
@@ -6163,6 +6244,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6163
6244
|
scope?: "internal" | "external" | undefined;
|
|
6164
6245
|
tier?: string | undefined;
|
|
6165
6246
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
6247
|
+
payloadEntity?: string | undefined;
|
|
6166
6248
|
definerKnob?: string | undefined;
|
|
6167
6249
|
scopeOverridden?: boolean | undefined;
|
|
6168
6250
|
}[] | undefined;
|
|
@@ -6230,6 +6312,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6230
6312
|
synonyms?: string | undefined;
|
|
6231
6313
|
tier?: string | undefined;
|
|
6232
6314
|
payloadSchema?: PayloadField[] | undefined;
|
|
6315
|
+
payloadEntity?: string | undefined;
|
|
6233
6316
|
classification?: "domain" | "system" | undefined;
|
|
6234
6317
|
semanticRole?: string | undefined;
|
|
6235
6318
|
}[];
|
|
@@ -6385,6 +6468,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6385
6468
|
scope?: "internal" | "external" | undefined;
|
|
6386
6469
|
tier?: string | undefined;
|
|
6387
6470
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
6471
|
+
payloadEntity?: string | undefined;
|
|
6388
6472
|
definerKnob?: string | undefined;
|
|
6389
6473
|
scopeOverridden?: boolean | undefined;
|
|
6390
6474
|
}[] | undefined;
|
|
@@ -6452,6 +6536,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6452
6536
|
synonyms?: string | undefined;
|
|
6453
6537
|
tier?: string | undefined;
|
|
6454
6538
|
payloadSchema?: PayloadField[] | undefined;
|
|
6539
|
+
payloadEntity?: string | undefined;
|
|
6455
6540
|
classification?: "domain" | "system" | undefined;
|
|
6456
6541
|
semanticRole?: string | undefined;
|
|
6457
6542
|
}[];
|
|
@@ -6655,6 +6740,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6655
6740
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
6656
6741
|
tier: z.ZodOptional<z.ZodString>;
|
|
6657
6742
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
6743
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
6658
6744
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
6659
6745
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
6660
6746
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6665,6 +6751,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6665
6751
|
synonyms?: string | undefined;
|
|
6666
6752
|
tier?: string | undefined;
|
|
6667
6753
|
payloadSchema?: PayloadField[] | undefined;
|
|
6754
|
+
payloadEntity?: string | undefined;
|
|
6668
6755
|
classification?: "domain" | "system" | undefined;
|
|
6669
6756
|
semanticRole?: string | undefined;
|
|
6670
6757
|
}, {
|
|
@@ -6675,6 +6762,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6675
6762
|
synonyms?: string | undefined;
|
|
6676
6763
|
tier?: string | undefined;
|
|
6677
6764
|
payloadSchema?: PayloadField[] | undefined;
|
|
6765
|
+
payloadEntity?: string | undefined;
|
|
6678
6766
|
classification?: "domain" | "system" | undefined;
|
|
6679
6767
|
semanticRole?: string | undefined;
|
|
6680
6768
|
}>, "many">;
|
|
@@ -6743,6 +6831,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6743
6831
|
synonyms?: string | undefined;
|
|
6744
6832
|
tier?: string | undefined;
|
|
6745
6833
|
payloadSchema?: PayloadField[] | undefined;
|
|
6834
|
+
payloadEntity?: string | undefined;
|
|
6746
6835
|
classification?: "domain" | "system" | undefined;
|
|
6747
6836
|
semanticRole?: string | undefined;
|
|
6748
6837
|
}[];
|
|
@@ -6778,6 +6867,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6778
6867
|
synonyms?: string | undefined;
|
|
6779
6868
|
tier?: string | undefined;
|
|
6780
6869
|
payloadSchema?: PayloadField[] | undefined;
|
|
6870
|
+
payloadEntity?: string | undefined;
|
|
6781
6871
|
classification?: "domain" | "system" | undefined;
|
|
6782
6872
|
semanticRole?: string | undefined;
|
|
6783
6873
|
}[];
|
|
@@ -6843,6 +6933,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6843
6933
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
6844
6934
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
6845
6935
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
6936
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
6846
6937
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
6847
6938
|
}, "strip", z.ZodTypeAny, {
|
|
6848
6939
|
event: string;
|
|
@@ -6852,6 +6943,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6852
6943
|
scope?: "internal" | "external" | undefined;
|
|
6853
6944
|
tier?: string | undefined;
|
|
6854
6945
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
6946
|
+
payloadEntity?: string | undefined;
|
|
6855
6947
|
definerKnob?: string | undefined;
|
|
6856
6948
|
scopeOverridden?: boolean | undefined;
|
|
6857
6949
|
}, {
|
|
@@ -6862,6 +6954,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
6862
6954
|
scope?: "internal" | "external" | undefined;
|
|
6863
6955
|
tier?: string | undefined;
|
|
6864
6956
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
6957
|
+
payloadEntity?: string | undefined;
|
|
6865
6958
|
definerKnob?: string | undefined;
|
|
6866
6959
|
scopeOverridden?: boolean | undefined;
|
|
6867
6960
|
}>, "many">>;
|
|
@@ -7187,6 +7280,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
7187
7280
|
scope?: "internal" | "external" | undefined;
|
|
7188
7281
|
tier?: string | undefined;
|
|
7189
7282
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
7283
|
+
payloadEntity?: string | undefined;
|
|
7190
7284
|
definerKnob?: string | undefined;
|
|
7191
7285
|
scopeOverridden?: boolean | undefined;
|
|
7192
7286
|
}[] | undefined;
|
|
@@ -7254,6 +7348,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
7254
7348
|
synonyms?: string | undefined;
|
|
7255
7349
|
tier?: string | undefined;
|
|
7256
7350
|
payloadSchema?: PayloadField[] | undefined;
|
|
7351
|
+
payloadEntity?: string | undefined;
|
|
7257
7352
|
classification?: "domain" | "system" | undefined;
|
|
7258
7353
|
semanticRole?: string | undefined;
|
|
7259
7354
|
}[];
|
|
@@ -7367,6 +7462,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
7367
7462
|
scope?: "internal" | "external" | undefined;
|
|
7368
7463
|
tier?: string | undefined;
|
|
7369
7464
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
7465
|
+
payloadEntity?: string | undefined;
|
|
7370
7466
|
definerKnob?: string | undefined;
|
|
7371
7467
|
scopeOverridden?: boolean | undefined;
|
|
7372
7468
|
}[] | undefined;
|
|
@@ -7434,6 +7530,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
7434
7530
|
synonyms?: string | undefined;
|
|
7435
7531
|
tier?: string | undefined;
|
|
7436
7532
|
payloadSchema?: PayloadField[] | undefined;
|
|
7533
|
+
payloadEntity?: string | undefined;
|
|
7437
7534
|
classification?: "domain" | "system" | undefined;
|
|
7438
7535
|
semanticRole?: string | undefined;
|
|
7439
7536
|
}[];
|
|
@@ -7715,6 +7812,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7715
7812
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
7716
7813
|
tier: z.ZodOptional<z.ZodString>;
|
|
7717
7814
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
7815
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
7718
7816
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
7719
7817
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
7720
7818
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7725,6 +7823,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7725
7823
|
synonyms?: string | undefined;
|
|
7726
7824
|
tier?: string | undefined;
|
|
7727
7825
|
payloadSchema?: PayloadField[] | undefined;
|
|
7826
|
+
payloadEntity?: string | undefined;
|
|
7728
7827
|
classification?: "domain" | "system" | undefined;
|
|
7729
7828
|
semanticRole?: string | undefined;
|
|
7730
7829
|
}, {
|
|
@@ -7735,6 +7834,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7735
7834
|
synonyms?: string | undefined;
|
|
7736
7835
|
tier?: string | undefined;
|
|
7737
7836
|
payloadSchema?: PayloadField[] | undefined;
|
|
7837
|
+
payloadEntity?: string | undefined;
|
|
7738
7838
|
classification?: "domain" | "system" | undefined;
|
|
7739
7839
|
semanticRole?: string | undefined;
|
|
7740
7840
|
}>, "many">;
|
|
@@ -7803,6 +7903,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7803
7903
|
synonyms?: string | undefined;
|
|
7804
7904
|
tier?: string | undefined;
|
|
7805
7905
|
payloadSchema?: PayloadField[] | undefined;
|
|
7906
|
+
payloadEntity?: string | undefined;
|
|
7806
7907
|
classification?: "domain" | "system" | undefined;
|
|
7807
7908
|
semanticRole?: string | undefined;
|
|
7808
7909
|
}[];
|
|
@@ -7838,6 +7939,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7838
7939
|
synonyms?: string | undefined;
|
|
7839
7940
|
tier?: string | undefined;
|
|
7840
7941
|
payloadSchema?: PayloadField[] | undefined;
|
|
7942
|
+
payloadEntity?: string | undefined;
|
|
7841
7943
|
classification?: "domain" | "system" | undefined;
|
|
7842
7944
|
semanticRole?: string | undefined;
|
|
7843
7945
|
}[];
|
|
@@ -7903,6 +8005,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7903
8005
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
7904
8006
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
7905
8007
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
8008
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
7906
8009
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
7907
8010
|
}, "strip", z.ZodTypeAny, {
|
|
7908
8011
|
event: string;
|
|
@@ -7912,6 +8015,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7912
8015
|
scope?: "internal" | "external" | undefined;
|
|
7913
8016
|
tier?: string | undefined;
|
|
7914
8017
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
8018
|
+
payloadEntity?: string | undefined;
|
|
7915
8019
|
definerKnob?: string | undefined;
|
|
7916
8020
|
scopeOverridden?: boolean | undefined;
|
|
7917
8021
|
}, {
|
|
@@ -7922,6 +8026,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
7922
8026
|
scope?: "internal" | "external" | undefined;
|
|
7923
8027
|
tier?: string | undefined;
|
|
7924
8028
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
8029
|
+
payloadEntity?: string | undefined;
|
|
7925
8030
|
definerKnob?: string | undefined;
|
|
7926
8031
|
scopeOverridden?: boolean | undefined;
|
|
7927
8032
|
}>, "many">>;
|
|
@@ -8247,6 +8352,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8247
8352
|
scope?: "internal" | "external" | undefined;
|
|
8248
8353
|
tier?: string | undefined;
|
|
8249
8354
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
8355
|
+
payloadEntity?: string | undefined;
|
|
8250
8356
|
definerKnob?: string | undefined;
|
|
8251
8357
|
scopeOverridden?: boolean | undefined;
|
|
8252
8358
|
}[] | undefined;
|
|
@@ -8314,6 +8420,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8314
8420
|
synonyms?: string | undefined;
|
|
8315
8421
|
tier?: string | undefined;
|
|
8316
8422
|
payloadSchema?: PayloadField[] | undefined;
|
|
8423
|
+
payloadEntity?: string | undefined;
|
|
8317
8424
|
classification?: "domain" | "system" | undefined;
|
|
8318
8425
|
semanticRole?: string | undefined;
|
|
8319
8426
|
}[];
|
|
@@ -8427,6 +8534,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8427
8534
|
scope?: "internal" | "external" | undefined;
|
|
8428
8535
|
tier?: string | undefined;
|
|
8429
8536
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
8537
|
+
payloadEntity?: string | undefined;
|
|
8430
8538
|
definerKnob?: string | undefined;
|
|
8431
8539
|
scopeOverridden?: boolean | undefined;
|
|
8432
8540
|
}[] | undefined;
|
|
@@ -8494,6 +8602,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8494
8602
|
synonyms?: string | undefined;
|
|
8495
8603
|
tier?: string | undefined;
|
|
8496
8604
|
payloadSchema?: PayloadField[] | undefined;
|
|
8605
|
+
payloadEntity?: string | undefined;
|
|
8497
8606
|
classification?: "domain" | "system" | undefined;
|
|
8498
8607
|
semanticRole?: string | undefined;
|
|
8499
8608
|
}[];
|
|
@@ -8750,6 +8859,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8750
8859
|
scope?: "internal" | "external" | undefined;
|
|
8751
8860
|
tier?: string | undefined;
|
|
8752
8861
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
8862
|
+
payloadEntity?: string | undefined;
|
|
8753
8863
|
definerKnob?: string | undefined;
|
|
8754
8864
|
scopeOverridden?: boolean | undefined;
|
|
8755
8865
|
}[] | undefined;
|
|
@@ -8817,6 +8927,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8817
8927
|
synonyms?: string | undefined;
|
|
8818
8928
|
tier?: string | undefined;
|
|
8819
8929
|
payloadSchema?: PayloadField[] | undefined;
|
|
8930
|
+
payloadEntity?: string | undefined;
|
|
8820
8931
|
classification?: "domain" | "system" | undefined;
|
|
8821
8932
|
semanticRole?: string | undefined;
|
|
8822
8933
|
}[];
|
|
@@ -8972,6 +9083,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
8972
9083
|
scope?: "internal" | "external" | undefined;
|
|
8973
9084
|
tier?: string | undefined;
|
|
8974
9085
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
9086
|
+
payloadEntity?: string | undefined;
|
|
8975
9087
|
definerKnob?: string | undefined;
|
|
8976
9088
|
scopeOverridden?: boolean | undefined;
|
|
8977
9089
|
}[] | undefined;
|
|
@@ -9039,6 +9151,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9039
9151
|
synonyms?: string | undefined;
|
|
9040
9152
|
tier?: string | undefined;
|
|
9041
9153
|
payloadSchema?: PayloadField[] | undefined;
|
|
9154
|
+
payloadEntity?: string | undefined;
|
|
9042
9155
|
classification?: "domain" | "system" | undefined;
|
|
9043
9156
|
semanticRole?: string | undefined;
|
|
9044
9157
|
}[];
|
|
@@ -9194,6 +9307,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9194
9307
|
scope?: "internal" | "external" | undefined;
|
|
9195
9308
|
tier?: string | undefined;
|
|
9196
9309
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
9310
|
+
payloadEntity?: string | undefined;
|
|
9197
9311
|
definerKnob?: string | undefined;
|
|
9198
9312
|
scopeOverridden?: boolean | undefined;
|
|
9199
9313
|
}[] | undefined;
|
|
@@ -9261,6 +9375,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9261
9375
|
synonyms?: string | undefined;
|
|
9262
9376
|
tier?: string | undefined;
|
|
9263
9377
|
payloadSchema?: PayloadField[] | undefined;
|
|
9378
|
+
payloadEntity?: string | undefined;
|
|
9264
9379
|
classification?: "domain" | "system" | undefined;
|
|
9265
9380
|
semanticRole?: string | undefined;
|
|
9266
9381
|
}[];
|
|
@@ -9416,6 +9531,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9416
9531
|
scope?: "internal" | "external" | undefined;
|
|
9417
9532
|
tier?: string | undefined;
|
|
9418
9533
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
9534
|
+
payloadEntity?: string | undefined;
|
|
9419
9535
|
definerKnob?: string | undefined;
|
|
9420
9536
|
scopeOverridden?: boolean | undefined;
|
|
9421
9537
|
}[] | undefined;
|
|
@@ -9483,6 +9599,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9483
9599
|
synonyms?: string | undefined;
|
|
9484
9600
|
tier?: string | undefined;
|
|
9485
9601
|
payloadSchema?: PayloadField[] | undefined;
|
|
9602
|
+
payloadEntity?: string | undefined;
|
|
9486
9603
|
classification?: "domain" | "system" | undefined;
|
|
9487
9604
|
semanticRole?: string | undefined;
|
|
9488
9605
|
}[];
|
|
@@ -9686,6 +9803,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9686
9803
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
9687
9804
|
tier: z.ZodOptional<z.ZodString>;
|
|
9688
9805
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<PayloadField, z.ZodTypeDef, PayloadField>, "many">>;
|
|
9806
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
9689
9807
|
classification: z.ZodOptional<z.ZodEnum<["domain", "system"]>>;
|
|
9690
9808
|
semanticRole: z.ZodOptional<z.ZodString>;
|
|
9691
9809
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9696,6 +9814,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9696
9814
|
synonyms?: string | undefined;
|
|
9697
9815
|
tier?: string | undefined;
|
|
9698
9816
|
payloadSchema?: PayloadField[] | undefined;
|
|
9817
|
+
payloadEntity?: string | undefined;
|
|
9699
9818
|
classification?: "domain" | "system" | undefined;
|
|
9700
9819
|
semanticRole?: string | undefined;
|
|
9701
9820
|
}, {
|
|
@@ -9706,6 +9825,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9706
9825
|
synonyms?: string | undefined;
|
|
9707
9826
|
tier?: string | undefined;
|
|
9708
9827
|
payloadSchema?: PayloadField[] | undefined;
|
|
9828
|
+
payloadEntity?: string | undefined;
|
|
9709
9829
|
classification?: "domain" | "system" | undefined;
|
|
9710
9830
|
semanticRole?: string | undefined;
|
|
9711
9831
|
}>, "many">;
|
|
@@ -9774,6 +9894,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9774
9894
|
synonyms?: string | undefined;
|
|
9775
9895
|
tier?: string | undefined;
|
|
9776
9896
|
payloadSchema?: PayloadField[] | undefined;
|
|
9897
|
+
payloadEntity?: string | undefined;
|
|
9777
9898
|
classification?: "domain" | "system" | undefined;
|
|
9778
9899
|
semanticRole?: string | undefined;
|
|
9779
9900
|
}[];
|
|
@@ -9809,6 +9930,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9809
9930
|
synonyms?: string | undefined;
|
|
9810
9931
|
tier?: string | undefined;
|
|
9811
9932
|
payloadSchema?: PayloadField[] | undefined;
|
|
9933
|
+
payloadEntity?: string | undefined;
|
|
9812
9934
|
classification?: "domain" | "system" | undefined;
|
|
9813
9935
|
semanticRole?: string | undefined;
|
|
9814
9936
|
}[];
|
|
@@ -9874,6 +9996,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9874
9996
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
9875
9997
|
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
9876
9998
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
9999
|
+
payloadEntity: z.ZodOptional<z.ZodString>;
|
|
9877
10000
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
9878
10001
|
}, "strip", z.ZodTypeAny, {
|
|
9879
10002
|
event: string;
|
|
@@ -9883,6 +10006,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9883
10006
|
scope?: "internal" | "external" | undefined;
|
|
9884
10007
|
tier?: string | undefined;
|
|
9885
10008
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
10009
|
+
payloadEntity?: string | undefined;
|
|
9886
10010
|
definerKnob?: string | undefined;
|
|
9887
10011
|
scopeOverridden?: boolean | undefined;
|
|
9888
10012
|
}, {
|
|
@@ -9893,6 +10017,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
9893
10017
|
scope?: "internal" | "external" | undefined;
|
|
9894
10018
|
tier?: string | undefined;
|
|
9895
10019
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
10020
|
+
payloadEntity?: string | undefined;
|
|
9896
10021
|
definerKnob?: string | undefined;
|
|
9897
10022
|
scopeOverridden?: boolean | undefined;
|
|
9898
10023
|
}>, "many">>;
|
|
@@ -10218,6 +10343,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
10218
10343
|
scope?: "internal" | "external" | undefined;
|
|
10219
10344
|
tier?: string | undefined;
|
|
10220
10345
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
10346
|
+
payloadEntity?: string | undefined;
|
|
10221
10347
|
definerKnob?: string | undefined;
|
|
10222
10348
|
scopeOverridden?: boolean | undefined;
|
|
10223
10349
|
}[] | undefined;
|
|
@@ -10285,6 +10411,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
10285
10411
|
synonyms?: string | undefined;
|
|
10286
10412
|
tier?: string | undefined;
|
|
10287
10413
|
payloadSchema?: PayloadField[] | undefined;
|
|
10414
|
+
payloadEntity?: string | undefined;
|
|
10288
10415
|
classification?: "domain" | "system" | undefined;
|
|
10289
10416
|
semanticRole?: string | undefined;
|
|
10290
10417
|
}[];
|
|
@@ -10398,6 +10525,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
10398
10525
|
scope?: "internal" | "external" | undefined;
|
|
10399
10526
|
tier?: string | undefined;
|
|
10400
10527
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
10528
|
+
payloadEntity?: string | undefined;
|
|
10401
10529
|
definerKnob?: string | undefined;
|
|
10402
10530
|
scopeOverridden?: boolean | undefined;
|
|
10403
10531
|
}[] | undefined;
|
|
@@ -10465,6 +10593,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
10465
10593
|
synonyms?: string | undefined;
|
|
10466
10594
|
tier?: string | undefined;
|
|
10467
10595
|
payloadSchema?: PayloadField[] | undefined;
|
|
10596
|
+
payloadEntity?: string | undefined;
|
|
10468
10597
|
classification?: "domain" | "system" | undefined;
|
|
10469
10598
|
semanticRole?: string | undefined;
|
|
10470
10599
|
}[];
|