@almadar/core 9.5.0 → 9.6.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.
@@ -2299,8 +2299,13 @@ interface Event {
2299
2299
  key: string;
2300
2300
  /** Human-readable name */
2301
2301
  name: string;
2302
- /** Description */
2302
+ /** Description (authored `@description` on the emit/listen). */
2303
2303
  description?: string;
2304
+ /** User-vocabulary synonyms (comma-separated) — per-event analogue of a
2305
+ * field/config `@synonyms`. Feeds the curation event matcher. */
2306
+ synonyms?: string;
2307
+ /** Authoring tier (`essential`/`customization`/`advanced`/`internal`). */
2308
+ tier?: string;
2304
2309
  /** Expected payload structure */
2305
2310
  payloadSchema?: PayloadField[];
2306
2311
  /** Domain vs System classification (optional, for analysis) */
@@ -2312,6 +2317,8 @@ declare const EventSchema: z.ZodObject<{
2312
2317
  key: z.ZodString;
2313
2318
  name: z.ZodString;
2314
2319
  description: z.ZodOptional<z.ZodString>;
2320
+ synonyms: z.ZodOptional<z.ZodString>;
2321
+ tier: z.ZodOptional<z.ZodString>;
2315
2322
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2316
2323
  name: z.ZodString;
2317
2324
  type: z.ZodString;
@@ -2331,6 +2338,8 @@ declare const EventSchema: z.ZodObject<{
2331
2338
  name: string;
2332
2339
  key: string;
2333
2340
  description?: string | undefined;
2341
+ synonyms?: string | undefined;
2342
+ tier?: string | undefined;
2334
2343
  payloadSchema?: {
2335
2344
  type: string;
2336
2345
  name: string;
@@ -2342,6 +2351,8 @@ declare const EventSchema: z.ZodObject<{
2342
2351
  name: string;
2343
2352
  key: string;
2344
2353
  description?: string | undefined;
2354
+ synonyms?: string | undefined;
2355
+ tier?: string | undefined;
2345
2356
  payloadSchema?: {
2346
2357
  type: string;
2347
2358
  name: string;
@@ -2475,6 +2486,8 @@ declare const StateMachineSchema: z.ZodObject<{
2475
2486
  key: z.ZodString;
2476
2487
  name: z.ZodString;
2477
2488
  description: z.ZodOptional<z.ZodString>;
2489
+ synonyms: z.ZodOptional<z.ZodString>;
2490
+ tier: z.ZodOptional<z.ZodString>;
2478
2491
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2479
2492
  name: z.ZodString;
2480
2493
  type: z.ZodString;
@@ -2494,6 +2507,8 @@ declare const StateMachineSchema: z.ZodObject<{
2494
2507
  name: string;
2495
2508
  key: string;
2496
2509
  description?: string | undefined;
2510
+ synonyms?: string | undefined;
2511
+ tier?: string | undefined;
2497
2512
  payloadSchema?: {
2498
2513
  type: string;
2499
2514
  name: string;
@@ -2505,6 +2520,8 @@ declare const StateMachineSchema: z.ZodObject<{
2505
2520
  name: string;
2506
2521
  key: string;
2507
2522
  description?: string | undefined;
2523
+ synonyms?: string | undefined;
2524
+ tier?: string | undefined;
2508
2525
  payloadSchema?: {
2509
2526
  type: string;
2510
2527
  name: string;
@@ -2553,6 +2570,8 @@ declare const StateMachineSchema: z.ZodObject<{
2553
2570
  name: string;
2554
2571
  key: string;
2555
2572
  description?: string | undefined;
2573
+ synonyms?: string | undefined;
2574
+ tier?: string | undefined;
2556
2575
  payloadSchema?: {
2557
2576
  type: string;
2558
2577
  name: string;
@@ -2588,6 +2607,8 @@ declare const StateMachineSchema: z.ZodObject<{
2588
2607
  name: string;
2589
2608
  key: string;
2590
2609
  description?: string | undefined;
2610
+ synonyms?: string | undefined;
2611
+ tier?: string | undefined;
2591
2612
  payloadSchema?: {
2592
2613
  type: string;
2593
2614
  name: string;
@@ -2911,6 +2932,11 @@ interface TraitEventContract {
2911
2932
  event: string;
2912
2933
  /** Human-readable description */
2913
2934
  description?: string;
2935
+ /** User-vocabulary synonyms (comma-separated) — the per-event analogue of a
2936
+ * field/config `@synonyms`. Feeds the curation event matcher. */
2937
+ synonyms?: string;
2938
+ /** Authoring tier (`essential`/`customization`/`advanced`/`internal`). */
2939
+ tier?: string;
2914
2940
  /** Payload schema — declarative type info for the event's payload.
2915
2941
  * Distinct from the runtime payload value (`@payload.X` bindings,
2916
2942
  * `EventPayload`) which is a separate concept. */
@@ -2932,6 +2958,8 @@ declare const TraitEventContractSchema: z.ZodObject<{
2932
2958
  */
2933
2959
  event: z.ZodString;
2934
2960
  description: z.ZodOptional<z.ZodString>;
2961
+ synonyms: z.ZodOptional<z.ZodString>;
2962
+ tier: z.ZodOptional<z.ZodString>;
2935
2963
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2936
2964
  name: z.ZodString;
2937
2965
  /**
@@ -2965,6 +2993,8 @@ declare const TraitEventContractSchema: z.ZodObject<{
2965
2993
  }, "strip", z.ZodTypeAny, {
2966
2994
  event: string;
2967
2995
  description?: string | undefined;
2996
+ synonyms?: string | undefined;
2997
+ tier?: string | undefined;
2968
2998
  payloadSchema?: {
2969
2999
  type: string;
2970
3000
  name: string;
@@ -2976,6 +3006,8 @@ declare const TraitEventContractSchema: z.ZodObject<{
2976
3006
  }, {
2977
3007
  event: string;
2978
3008
  description?: string | undefined;
3009
+ synonyms?: string | undefined;
3010
+ tier?: string | undefined;
2979
3011
  payloadSchema?: {
2980
3012
  type: string;
2981
3013
  name: string;
@@ -3046,6 +3078,12 @@ interface TraitEventListener {
3046
3078
  event: string;
3047
3079
  /** State machine event to trigger */
3048
3080
  triggers: string;
3081
+ /** Human-readable description (authored `@description` on the listen). */
3082
+ description?: string;
3083
+ /** User-vocabulary synonyms (comma-separated). */
3084
+ synonyms?: string;
3085
+ /** Authoring tier (`essential`/`customization`/`advanced`/`internal`). */
3086
+ tier?: string;
3049
3087
  /** Guard expression - string (legacy) or S-expression array */
3050
3088
  guard?: Expression;
3051
3089
  /**
@@ -3065,6 +3103,9 @@ interface TraitEventListener {
3065
3103
  declare const TraitEventListenerSchema: z.ZodObject<{
3066
3104
  event: z.ZodString;
3067
3105
  triggers: z.ZodString;
3106
+ description: z.ZodOptional<z.ZodString>;
3107
+ synonyms: z.ZodOptional<z.ZodString>;
3108
+ tier: z.ZodOptional<z.ZodString>;
3068
3109
  guard: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
3069
3110
  scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
3070
3111
  payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -3099,6 +3140,9 @@ declare const TraitEventListenerSchema: z.ZodObject<{
3099
3140
  }, "strip", z.ZodTypeAny, {
3100
3141
  event: string;
3101
3142
  triggers: string;
3143
+ description?: string | undefined;
3144
+ synonyms?: string | undefined;
3145
+ tier?: string | undefined;
3102
3146
  guard?: SExpr | undefined;
3103
3147
  source?: {
3104
3148
  kind: "any";
@@ -3115,6 +3159,9 @@ declare const TraitEventListenerSchema: z.ZodObject<{
3115
3159
  }, {
3116
3160
  event: string;
3117
3161
  triggers: string;
3162
+ description?: string | undefined;
3163
+ synonyms?: string | undefined;
3164
+ tier?: string | undefined;
3118
3165
  guard?: SExpr | undefined;
3119
3166
  source?: {
3120
3167
  kind: "any";
@@ -3588,6 +3635,8 @@ declare const TraitSchema: z.ZodObject<{
3588
3635
  key: z.ZodString;
3589
3636
  name: z.ZodString;
3590
3637
  description: z.ZodOptional<z.ZodString>;
3638
+ synonyms: z.ZodOptional<z.ZodString>;
3639
+ tier: z.ZodOptional<z.ZodString>;
3591
3640
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3592
3641
  name: z.ZodString;
3593
3642
  type: z.ZodString;
@@ -3607,6 +3656,8 @@ declare const TraitSchema: z.ZodObject<{
3607
3656
  name: string;
3608
3657
  key: string;
3609
3658
  description?: string | undefined;
3659
+ synonyms?: string | undefined;
3660
+ tier?: string | undefined;
3610
3661
  payloadSchema?: {
3611
3662
  type: string;
3612
3663
  name: string;
@@ -3618,6 +3669,8 @@ declare const TraitSchema: z.ZodObject<{
3618
3669
  name: string;
3619
3670
  key: string;
3620
3671
  description?: string | undefined;
3672
+ synonyms?: string | undefined;
3673
+ tier?: string | undefined;
3621
3674
  payloadSchema?: {
3622
3675
  type: string;
3623
3676
  name: string;
@@ -3666,6 +3719,8 @@ declare const TraitSchema: z.ZodObject<{
3666
3719
  name: string;
3667
3720
  key: string;
3668
3721
  description?: string | undefined;
3722
+ synonyms?: string | undefined;
3723
+ tier?: string | undefined;
3669
3724
  payloadSchema?: {
3670
3725
  type: string;
3671
3726
  name: string;
@@ -3701,6 +3756,8 @@ declare const TraitSchema: z.ZodObject<{
3701
3756
  name: string;
3702
3757
  key: string;
3703
3758
  description?: string | undefined;
3759
+ synonyms?: string | undefined;
3760
+ tier?: string | undefined;
3704
3761
  payloadSchema?: {
3705
3762
  type: string;
3706
3763
  name: string;
@@ -3774,6 +3831,8 @@ declare const TraitSchema: z.ZodObject<{
3774
3831
  */
3775
3832
  event: z.ZodString;
3776
3833
  description: z.ZodOptional<z.ZodString>;
3834
+ synonyms: z.ZodOptional<z.ZodString>;
3835
+ tier: z.ZodOptional<z.ZodString>;
3777
3836
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3778
3837
  name: z.ZodString;
3779
3838
  /**
@@ -3807,6 +3866,8 @@ declare const TraitSchema: z.ZodObject<{
3807
3866
  }, "strip", z.ZodTypeAny, {
3808
3867
  event: string;
3809
3868
  description?: string | undefined;
3869
+ synonyms?: string | undefined;
3870
+ tier?: string | undefined;
3810
3871
  payloadSchema?: {
3811
3872
  type: string;
3812
3873
  name: string;
@@ -3818,6 +3879,8 @@ declare const TraitSchema: z.ZodObject<{
3818
3879
  }, {
3819
3880
  event: string;
3820
3881
  description?: string | undefined;
3882
+ synonyms?: string | undefined;
3883
+ tier?: string | undefined;
3821
3884
  payloadSchema?: {
3822
3885
  type: string;
3823
3886
  name: string;
@@ -3830,6 +3893,9 @@ declare const TraitSchema: z.ZodObject<{
3830
3893
  listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
3831
3894
  event: z.ZodString;
3832
3895
  triggers: z.ZodString;
3896
+ description: z.ZodOptional<z.ZodString>;
3897
+ synonyms: z.ZodOptional<z.ZodString>;
3898
+ tier: z.ZodOptional<z.ZodString>;
3833
3899
  guard: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
3834
3900
  scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
3835
3901
  payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -3864,6 +3930,9 @@ declare const TraitSchema: z.ZodObject<{
3864
3930
  }, "strip", z.ZodTypeAny, {
3865
3931
  event: string;
3866
3932
  triggers: string;
3933
+ description?: string | undefined;
3934
+ synonyms?: string | undefined;
3935
+ tier?: string | undefined;
3867
3936
  guard?: SExpr | undefined;
3868
3937
  source?: {
3869
3938
  kind: "any";
@@ -3880,6 +3949,9 @@ declare const TraitSchema: z.ZodObject<{
3880
3949
  }, {
3881
3950
  event: string;
3882
3951
  triggers: string;
3952
+ description?: string | undefined;
3953
+ synonyms?: string | undefined;
3954
+ tier?: string | undefined;
3883
3955
  guard?: SExpr | undefined;
3884
3956
  source?: {
3885
3957
  kind: "any";
@@ -3984,6 +4056,8 @@ declare const TraitSchema: z.ZodObject<{
3984
4056
  emits?: {
3985
4057
  event: string;
3986
4058
  description?: string | undefined;
4059
+ synonyms?: string | undefined;
4060
+ tier?: string | undefined;
3987
4061
  payloadSchema?: {
3988
4062
  type: string;
3989
4063
  name: string;
@@ -3996,6 +4070,9 @@ declare const TraitSchema: z.ZodObject<{
3996
4070
  listens?: {
3997
4071
  event: string;
3998
4072
  triggers: string;
4073
+ description?: string | undefined;
4074
+ synonyms?: string | undefined;
4075
+ tier?: string | undefined;
3999
4076
  guard?: SExpr | undefined;
4000
4077
  source?: {
4001
4078
  kind: "any";
@@ -4045,6 +4122,8 @@ declare const TraitSchema: z.ZodObject<{
4045
4122
  name: string;
4046
4123
  key: string;
4047
4124
  description?: string | undefined;
4125
+ synonyms?: string | undefined;
4126
+ tier?: string | undefined;
4048
4127
  payloadSchema?: {
4049
4128
  type: string;
4050
4129
  name: string;
@@ -4122,6 +4201,8 @@ declare const TraitSchema: z.ZodObject<{
4122
4201
  emits?: {
4123
4202
  event: string;
4124
4203
  description?: string | undefined;
4204
+ synonyms?: string | undefined;
4205
+ tier?: string | undefined;
4125
4206
  payloadSchema?: {
4126
4207
  type: string;
4127
4208
  name: string;
@@ -4134,6 +4215,9 @@ declare const TraitSchema: z.ZodObject<{
4134
4215
  listens?: {
4135
4216
  event: string;
4136
4217
  triggers: string;
4218
+ description?: string | undefined;
4219
+ synonyms?: string | undefined;
4220
+ tier?: string | undefined;
4137
4221
  guard?: SExpr | undefined;
4138
4222
  source?: {
4139
4223
  kind: "any";
@@ -4183,6 +4267,8 @@ declare const TraitSchema: z.ZodObject<{
4183
4267
  name: string;
4184
4268
  key: string;
4185
4269
  description?: string | undefined;
4270
+ synonyms?: string | undefined;
4271
+ tier?: string | undefined;
4186
4272
  payloadSchema?: {
4187
4273
  type: string;
4188
4274
  name: string;
@@ -4390,6 +4476,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4390
4476
  key: z.ZodString;
4391
4477
  name: z.ZodString;
4392
4478
  description: z.ZodOptional<z.ZodString>;
4479
+ synonyms: z.ZodOptional<z.ZodString>;
4480
+ tier: z.ZodOptional<z.ZodString>;
4393
4481
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4394
4482
  name: z.ZodString;
4395
4483
  type: z.ZodString;
@@ -4409,6 +4497,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4409
4497
  name: string;
4410
4498
  key: string;
4411
4499
  description?: string | undefined;
4500
+ synonyms?: string | undefined;
4501
+ tier?: string | undefined;
4412
4502
  payloadSchema?: {
4413
4503
  type: string;
4414
4504
  name: string;
@@ -4420,6 +4510,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4420
4510
  name: string;
4421
4511
  key: string;
4422
4512
  description?: string | undefined;
4513
+ synonyms?: string | undefined;
4514
+ tier?: string | undefined;
4423
4515
  payloadSchema?: {
4424
4516
  type: string;
4425
4517
  name: string;
@@ -4468,6 +4560,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4468
4560
  name: string;
4469
4561
  key: string;
4470
4562
  description?: string | undefined;
4563
+ synonyms?: string | undefined;
4564
+ tier?: string | undefined;
4471
4565
  payloadSchema?: {
4472
4566
  type: string;
4473
4567
  name: string;
@@ -4503,6 +4597,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4503
4597
  name: string;
4504
4598
  key: string;
4505
4599
  description?: string | undefined;
4600
+ synonyms?: string | undefined;
4601
+ tier?: string | undefined;
4506
4602
  payloadSchema?: {
4507
4603
  type: string;
4508
4604
  name: string;
@@ -4576,6 +4672,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4576
4672
  */
4577
4673
  event: z.ZodString;
4578
4674
  description: z.ZodOptional<z.ZodString>;
4675
+ synonyms: z.ZodOptional<z.ZodString>;
4676
+ tier: z.ZodOptional<z.ZodString>;
4579
4677
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4580
4678
  name: z.ZodString;
4581
4679
  /**
@@ -4609,6 +4707,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4609
4707
  }, "strip", z.ZodTypeAny, {
4610
4708
  event: string;
4611
4709
  description?: string | undefined;
4710
+ synonyms?: string | undefined;
4711
+ tier?: string | undefined;
4612
4712
  payloadSchema?: {
4613
4713
  type: string;
4614
4714
  name: string;
@@ -4620,6 +4720,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4620
4720
  }, {
4621
4721
  event: string;
4622
4722
  description?: string | undefined;
4723
+ synonyms?: string | undefined;
4724
+ tier?: string | undefined;
4623
4725
  payloadSchema?: {
4624
4726
  type: string;
4625
4727
  name: string;
@@ -4632,6 +4734,9 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4632
4734
  listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
4633
4735
  event: z.ZodString;
4634
4736
  triggers: z.ZodString;
4737
+ description: z.ZodOptional<z.ZodString>;
4738
+ synonyms: z.ZodOptional<z.ZodString>;
4739
+ tier: z.ZodOptional<z.ZodString>;
4635
4740
  guard: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
4636
4741
  scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
4637
4742
  payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -4666,6 +4771,9 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4666
4771
  }, "strip", z.ZodTypeAny, {
4667
4772
  event: string;
4668
4773
  triggers: string;
4774
+ description?: string | undefined;
4775
+ synonyms?: string | undefined;
4776
+ tier?: string | undefined;
4669
4777
  guard?: SExpr | undefined;
4670
4778
  source?: {
4671
4779
  kind: "any";
@@ -4682,6 +4790,9 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4682
4790
  }, {
4683
4791
  event: string;
4684
4792
  triggers: string;
4793
+ description?: string | undefined;
4794
+ synonyms?: string | undefined;
4795
+ tier?: string | undefined;
4685
4796
  guard?: SExpr | undefined;
4686
4797
  source?: {
4687
4798
  kind: "any";
@@ -4786,6 +4897,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4786
4897
  emits?: {
4787
4898
  event: string;
4788
4899
  description?: string | undefined;
4900
+ synonyms?: string | undefined;
4901
+ tier?: string | undefined;
4789
4902
  payloadSchema?: {
4790
4903
  type: string;
4791
4904
  name: string;
@@ -4798,6 +4911,9 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4798
4911
  listens?: {
4799
4912
  event: string;
4800
4913
  triggers: string;
4914
+ description?: string | undefined;
4915
+ synonyms?: string | undefined;
4916
+ tier?: string | undefined;
4801
4917
  guard?: SExpr | undefined;
4802
4918
  source?: {
4803
4919
  kind: "any";
@@ -4847,6 +4963,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4847
4963
  name: string;
4848
4964
  key: string;
4849
4965
  description?: string | undefined;
4966
+ synonyms?: string | undefined;
4967
+ tier?: string | undefined;
4850
4968
  payloadSchema?: {
4851
4969
  type: string;
4852
4970
  name: string;
@@ -4924,6 +5042,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4924
5042
  emits?: {
4925
5043
  event: string;
4926
5044
  description?: string | undefined;
5045
+ synonyms?: string | undefined;
5046
+ tier?: string | undefined;
4927
5047
  payloadSchema?: {
4928
5048
  type: string;
4929
5049
  name: string;
@@ -4936,6 +5056,9 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4936
5056
  listens?: {
4937
5057
  event: string;
4938
5058
  triggers: string;
5059
+ description?: string | undefined;
5060
+ synonyms?: string | undefined;
5061
+ tier?: string | undefined;
4939
5062
  guard?: SExpr | undefined;
4940
5063
  source?: {
4941
5064
  kind: "any";
@@ -4985,6 +5108,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4985
5108
  name: string;
4986
5109
  key: string;
4987
5110
  description?: string | undefined;
5111
+ synonyms?: string | undefined;
5112
+ tier?: string | undefined;
4988
5113
  payloadSchema?: {
4989
5114
  type: string;
4990
5115
  name: string;
@@ -5262,6 +5387,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5262
5387
  key: z.ZodString;
5263
5388
  name: z.ZodString;
5264
5389
  description: z.ZodOptional<z.ZodString>;
5390
+ synonyms: z.ZodOptional<z.ZodString>;
5391
+ tier: z.ZodOptional<z.ZodString>;
5265
5392
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
5266
5393
  name: z.ZodString;
5267
5394
  type: z.ZodString;
@@ -5281,6 +5408,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5281
5408
  name: string;
5282
5409
  key: string;
5283
5410
  description?: string | undefined;
5411
+ synonyms?: string | undefined;
5412
+ tier?: string | undefined;
5284
5413
  payloadSchema?: {
5285
5414
  type: string;
5286
5415
  name: string;
@@ -5292,6 +5421,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5292
5421
  name: string;
5293
5422
  key: string;
5294
5423
  description?: string | undefined;
5424
+ synonyms?: string | undefined;
5425
+ tier?: string | undefined;
5295
5426
  payloadSchema?: {
5296
5427
  type: string;
5297
5428
  name: string;
@@ -5340,6 +5471,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5340
5471
  name: string;
5341
5472
  key: string;
5342
5473
  description?: string | undefined;
5474
+ synonyms?: string | undefined;
5475
+ tier?: string | undefined;
5343
5476
  payloadSchema?: {
5344
5477
  type: string;
5345
5478
  name: string;
@@ -5375,6 +5508,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5375
5508
  name: string;
5376
5509
  key: string;
5377
5510
  description?: string | undefined;
5511
+ synonyms?: string | undefined;
5512
+ tier?: string | undefined;
5378
5513
  payloadSchema?: {
5379
5514
  type: string;
5380
5515
  name: string;
@@ -5448,6 +5583,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5448
5583
  */
5449
5584
  event: z.ZodString;
5450
5585
  description: z.ZodOptional<z.ZodString>;
5586
+ synonyms: z.ZodOptional<z.ZodString>;
5587
+ tier: z.ZodOptional<z.ZodString>;
5451
5588
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
5452
5589
  name: z.ZodString;
5453
5590
  /**
@@ -5481,6 +5618,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5481
5618
  }, "strip", z.ZodTypeAny, {
5482
5619
  event: string;
5483
5620
  description?: string | undefined;
5621
+ synonyms?: string | undefined;
5622
+ tier?: string | undefined;
5484
5623
  payloadSchema?: {
5485
5624
  type: string;
5486
5625
  name: string;
@@ -5492,6 +5631,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5492
5631
  }, {
5493
5632
  event: string;
5494
5633
  description?: string | undefined;
5634
+ synonyms?: string | undefined;
5635
+ tier?: string | undefined;
5495
5636
  payloadSchema?: {
5496
5637
  type: string;
5497
5638
  name: string;
@@ -5504,6 +5645,9 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5504
5645
  listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
5505
5646
  event: z.ZodString;
5506
5647
  triggers: z.ZodString;
5648
+ description: z.ZodOptional<z.ZodString>;
5649
+ synonyms: z.ZodOptional<z.ZodString>;
5650
+ tier: z.ZodOptional<z.ZodString>;
5507
5651
  guard: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
5508
5652
  scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
5509
5653
  payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -5538,6 +5682,9 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5538
5682
  }, "strip", z.ZodTypeAny, {
5539
5683
  event: string;
5540
5684
  triggers: string;
5685
+ description?: string | undefined;
5686
+ synonyms?: string | undefined;
5687
+ tier?: string | undefined;
5541
5688
  guard?: SExpr | undefined;
5542
5689
  source?: {
5543
5690
  kind: "any";
@@ -5554,6 +5701,9 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5554
5701
  }, {
5555
5702
  event: string;
5556
5703
  triggers: string;
5704
+ description?: string | undefined;
5705
+ synonyms?: string | undefined;
5706
+ tier?: string | undefined;
5557
5707
  guard?: SExpr | undefined;
5558
5708
  source?: {
5559
5709
  kind: "any";
@@ -5658,6 +5808,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5658
5808
  emits?: {
5659
5809
  event: string;
5660
5810
  description?: string | undefined;
5811
+ synonyms?: string | undefined;
5812
+ tier?: string | undefined;
5661
5813
  payloadSchema?: {
5662
5814
  type: string;
5663
5815
  name: string;
@@ -5670,6 +5822,9 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5670
5822
  listens?: {
5671
5823
  event: string;
5672
5824
  triggers: string;
5825
+ description?: string | undefined;
5826
+ synonyms?: string | undefined;
5827
+ tier?: string | undefined;
5673
5828
  guard?: SExpr | undefined;
5674
5829
  source?: {
5675
5830
  kind: "any";
@@ -5719,6 +5874,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5719
5874
  name: string;
5720
5875
  key: string;
5721
5876
  description?: string | undefined;
5877
+ synonyms?: string | undefined;
5878
+ tier?: string | undefined;
5722
5879
  payloadSchema?: {
5723
5880
  type: string;
5724
5881
  name: string;
@@ -5796,6 +5953,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5796
5953
  emits?: {
5797
5954
  event: string;
5798
5955
  description?: string | undefined;
5956
+ synonyms?: string | undefined;
5957
+ tier?: string | undefined;
5799
5958
  payloadSchema?: {
5800
5959
  type: string;
5801
5960
  name: string;
@@ -5808,6 +5967,9 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5808
5967
  listens?: {
5809
5968
  event: string;
5810
5969
  triggers: string;
5970
+ description?: string | undefined;
5971
+ synonyms?: string | undefined;
5972
+ tier?: string | undefined;
5811
5973
  guard?: SExpr | undefined;
5812
5974
  source?: {
5813
5975
  kind: "any";
@@ -5857,6 +6019,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5857
6019
  name: string;
5858
6020
  key: string;
5859
6021
  description?: string | undefined;
6022
+ synonyms?: string | undefined;
6023
+ tier?: string | undefined;
5860
6024
  payloadSchema?: {
5861
6025
  type: string;
5862
6026
  name: string;
@@ -1,7 +1,7 @@
1
- import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-B5-kHxVf.js';
2
- export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-B5-kHxVf.js';
3
- import { a_ as ServiceParams, bm as Trait, z as Entity, O as EntityRow, a7 as FieldValue, D as DeclaredTraitConfig, bp as TraitConfig, F as EntityField, K as EntityPersistence, bn as TraitCategory, bJ as TraitScope } from '../trait-Bzv2COpe.js';
4
- export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as EntityFieldContract, H as EntityFieldContractSchema, I as EntityFieldInput, J as EntityFieldSchema, L as EntityPersistenceSchema, M as EntityRole, N as EntityRoleSchema, P as EntitySchema, Q as EnumEntityField, R as EvaluateConfig, S as EvaluateEffect, T as Event, U as EventInput, V as EventPayloadField, W as EventPayloadFieldSchema, X as EventSchema, Y as EventScope, Z as EventScopeSchema, _ as FetchEffect, $ as FetchOptions, a0 as FetchResult, a1 as Field, a2 as FieldFormat, a3 as FieldFormatSchema, a4 as FieldSchema, a5 as FieldType, a6 as FieldTypeSchema, a8 as ForwardConfig, a9 as ForwardEffect, aa as GAME_TYPES, ab as GameType, ac as GameTypeSchema, ad as Guard, ae as GuardInput, af as GuardSchema, ag as ListenSource, ah as ListenSourceSchema, ai as LogEffect, aj as McpServiceDef, ak as McpServiceDefSchema, al as NavigateEffect, am as NnConfig, an as NnLayer, ao as NotifyEffect, ap as OrbitalEntity, aq as OrbitalEntityInput, ar as OrbitalEntitySchema, as as OrbitalTraitRef, at as OrbitalTraitRefSchema, au as OsEffect, av as PayloadField, aw as PayloadFieldSchema, ax as PersistData, ay as PersistEffect, az as PersistEmitConfig, aA as PresentationType, aB as RefEffect, aC as RelationConfig, aD as RelationConfigSchema, aE as RelationEntityField, aF as RenderItemLambda, aG as RenderUIConfig, aH as RenderUIEffect, aI as RenderUINode, aJ as RequiredField, aK as RequiredFieldSchema, aL as ResolvedAsset, aM as ResolvedAssetInput, aN as ResolvedAssetSchema, aO as ResolvedPatternProps, aP as RestAuthConfig, aQ as RestAuthConfigSchema, aR as RestServiceDef, aS as RestServiceDefSchema, aT as SERVICE_TYPES, aU as ScalarEntityField, aV as SemanticAssetRef, aW as SemanticAssetRefInput, aX as SemanticAssetRefSchema, aY as ServiceDefinition, aZ as ServiceDefinitionSchema, a$ as ServiceParamsValue, b0 as ServiceRef, b1 as ServiceRefObject, b2 as ServiceRefObjectSchema, b3 as ServiceRefSchema, b4 as ServiceRefStringSchema, b5 as ServiceType, b6 as ServiceTypeSchema, b7 as SetEffect, b8 as SocketEvents, b9 as SocketEventsSchema, ba as SocketServiceDef, bb as SocketServiceDefSchema, bc as SpawnEffect, bd as State, be as StateInput, bf as StateMachine, bg as StateMachineInput, bh as StateMachineSchema, bi as StateSchema, bj as SwapEffect, bk as TrainConfig, bl as TrainEffect, bo as TraitCategorySchema, bq as TraitConfigObject, br as TraitConfigSchema, bs as TraitConfigValue, bt as TraitConfigValueSchema, bu as TraitDataEntity, bv as TraitDataEntitySchema, bw as TraitEntityField, bx as TraitEntityFieldSchema, by as TraitEventContract, bz as TraitEventContractSchema, bA as TraitEventListener, bB as TraitEventListenerSchema, bC as TraitInput, bD as TraitRef, bE as TraitRefSchema, bF as TraitReference, bG as TraitReferenceInput, bH as TraitReferenceSchema, bI as TraitSchema, bK as TraitTick, bL as TraitTickSchema, bM as TraitUIBinding, bN as Transition, bO as TransitionInput, bP as TransitionSchema, bQ as TypedEffect, bR as UISlot, bS as UISlotSchema, bT as UI_SLOTS, bU as VISUAL_STYLES, bV as VisualStyle, bW as VisualStyleSchema, bX as WatchEffect, bY as WatchOptions, bZ as atomic, b_ as callService, b$ as createAssetKey, c0 as deref, c1 as deriveCollection, c2 as despawn, c3 as doEffects, c4 as emit, c5 as findService, c6 as getDefaultAnimationsForRole, c7 as getServiceNames, c8 as getTraitConfig, c9 as getTraitName, ca as hasService, cb as isCircuitEvent, cc as isEffect, cd as isInlineTrait, ce as isMcpService, cf as isRestService, cg as isRuntimeEntity, ch as isSExprEffect, ci as isServiceReference, cj as isServiceReferenceObject, ck as isSingletonEntity, cl as isSocketService, cm as navigate, cn as normalizeTraitRef, co as notify, cp as parseAssetKey, cq as parseServiceRef, cr as persist, cs as ref, ct as renderUI, cu as set, cv as spawn, cw as swap, cx as validateAssetAnimations, cy as watch } from '../trait-Bzv2COpe.js';
1
+ import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-Dx404jRG.js';
2
+ export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-Dx404jRG.js';
3
+ import { a_ as ServiceParams, bm as Trait, z as Entity, O as EntityRow, a7 as FieldValue, D as DeclaredTraitConfig, bp as TraitConfig, F as EntityField, K as EntityPersistence, bn as TraitCategory, bJ as TraitScope } from '../trait-BjSJtFXv.js';
4
+ export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as EntityFieldContract, H as EntityFieldContractSchema, I as EntityFieldInput, J as EntityFieldSchema, L as EntityPersistenceSchema, M as EntityRole, N as EntityRoleSchema, P as EntitySchema, Q as EnumEntityField, R as EvaluateConfig, S as EvaluateEffect, T as Event, U as EventInput, V as EventPayloadField, W as EventPayloadFieldSchema, X as EventSchema, Y as EventScope, Z as EventScopeSchema, _ as FetchEffect, $ as FetchOptions, a0 as FetchResult, a1 as Field, a2 as FieldFormat, a3 as FieldFormatSchema, a4 as FieldSchema, a5 as FieldType, a6 as FieldTypeSchema, a8 as ForwardConfig, a9 as ForwardEffect, aa as GAME_TYPES, ab as GameType, ac as GameTypeSchema, ad as Guard, ae as GuardInput, af as GuardSchema, ag as ListenSource, ah as ListenSourceSchema, ai as LogEffect, aj as McpServiceDef, ak as McpServiceDefSchema, al as NavigateEffect, am as NnConfig, an as NnLayer, ao as NotifyEffect, ap as OrbitalEntity, aq as OrbitalEntityInput, ar as OrbitalEntitySchema, as as OrbitalTraitRef, at as OrbitalTraitRefSchema, au as OsEffect, av as PayloadField, aw as PayloadFieldSchema, ax as PersistData, ay as PersistEffect, az as PersistEmitConfig, aA as PresentationType, aB as RefEffect, aC as RelationConfig, aD as RelationConfigSchema, aE as RelationEntityField, aF as RenderItemLambda, aG as RenderUIConfig, aH as RenderUIEffect, aI as RenderUINode, aJ as RequiredField, aK as RequiredFieldSchema, aL as ResolvedAsset, aM as ResolvedAssetInput, aN as ResolvedAssetSchema, aO as ResolvedPatternProps, aP as RestAuthConfig, aQ as RestAuthConfigSchema, aR as RestServiceDef, aS as RestServiceDefSchema, aT as SERVICE_TYPES, aU as ScalarEntityField, aV as SemanticAssetRef, aW as SemanticAssetRefInput, aX as SemanticAssetRefSchema, aY as ServiceDefinition, aZ as ServiceDefinitionSchema, a$ as ServiceParamsValue, b0 as ServiceRef, b1 as ServiceRefObject, b2 as ServiceRefObjectSchema, b3 as ServiceRefSchema, b4 as ServiceRefStringSchema, b5 as ServiceType, b6 as ServiceTypeSchema, b7 as SetEffect, b8 as SocketEvents, b9 as SocketEventsSchema, ba as SocketServiceDef, bb as SocketServiceDefSchema, bc as SpawnEffect, bd as State, be as StateInput, bf as StateMachine, bg as StateMachineInput, bh as StateMachineSchema, bi as StateSchema, bj as SwapEffect, bk as TrainConfig, bl as TrainEffect, bo as TraitCategorySchema, bq as TraitConfigObject, br as TraitConfigSchema, bs as TraitConfigValue, bt as TraitConfigValueSchema, bu as TraitDataEntity, bv as TraitDataEntitySchema, bw as TraitEntityField, bx as TraitEntityFieldSchema, by as TraitEventContract, bz as TraitEventContractSchema, bA as TraitEventListener, bB as TraitEventListenerSchema, bC as TraitInput, bD as TraitRef, bE as TraitRefSchema, bF as TraitReference, bG as TraitReferenceInput, bH as TraitReferenceSchema, bI as TraitSchema, bK as TraitTick, bL as TraitTickSchema, bM as TraitUIBinding, bN as Transition, bO as TransitionInput, bP as TransitionSchema, bQ as TypedEffect, bR as UISlot, bS as UISlotSchema, bT as UI_SLOTS, bU as VISUAL_STYLES, bV as VisualStyle, bW as VisualStyleSchema, bX as WatchEffect, bY as WatchOptions, bZ as atomic, b_ as callService, b$ as createAssetKey, c0 as deref, c1 as deriveCollection, c2 as despawn, c3 as doEffects, c4 as emit, c5 as findService, c6 as getDefaultAnimationsForRole, c7 as getServiceNames, c8 as getTraitConfig, c9 as getTraitName, ca as hasService, cb as isCircuitEvent, cc as isEffect, cd as isInlineTrait, ce as isMcpService, cf as isRestService, cg as isRuntimeEntity, ch as isSExprEffect, ci as isServiceReference, cj as isServiceReferenceObject, ck as isSingletonEntity, cl as isSocketService, cm as navigate, cn as normalizeTraitRef, co as notify, cp as parseAssetKey, cq as parseServiceRef, cr as persist, cs as ref, ct as renderUI, cu as set, cv as spawn, cw as swap, cx as validateAssetAnimations, cy as watch } from '../trait-BjSJtFXv.js';
5
5
  import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr } from '../expression-BVRFm0sV.js';
6
6
  export { C as CORE_BINDINGS, a as CoreBinding, E as EvalContext, d as Expression, e as ExpressionInput, f as ExpressionSchema, P as ParsedBinding, g as SExprAtom, h as SExprAtomSchema, i as SExprInput, j as SExprSchema, k as collectBindings, l as getArgs, m as getOperator, n as isBinding, o as isSExpr, p as isSExprAtom, q as isSExprCall, r as isValidBinding, s as parseBinding, t as sexpr, w as walkSExpr } from '../expression-BVRFm0sV.js';
7
7
  import { z } from 'zod';