@nextera.one/axis-server-sdk 2.2.6 → 2.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-GBEI3Fab.mjs';
2
- import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-B-zUBHo3.mjs';
1
+ import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-DMW4rfRg.mjs';
2
+ import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-CBt56guN.mjs';
3
3
  import { AxisFrame } from '@nextera.one/axis-protocol';
4
4
  import * as z from 'zod';
5
5
 
@@ -143,10 +143,15 @@ declare const FALLBACK_CONTRACT: ExecutionContract;
143
143
 
144
144
  declare const ProofKindZ: z.ZodEnum<{
145
145
  NONE: "NONE";
146
- CAPSULE: "CAPSULE";
146
+ ANONYMOUS: "ANONYMOUS";
147
147
  PASSPORT: "PASSPORT";
148
- MTLS: "MTLS";
148
+ CAPSULE: "CAPSULE";
149
149
  JWT: "JWT";
150
+ CONTRACT: "CONTRACT";
151
+ WITNESS: "WITNESS";
152
+ MTLS: "MTLS";
153
+ DEVICE: "DEVICE";
154
+ AUTHORIZED: "AUTHORIZED";
150
155
  }>;
151
156
  type ProofKind = z.infer<typeof ProofKindZ>;
152
157
  declare const ProofPresenceInputZ: z.ZodObject<{
@@ -162,15 +167,20 @@ declare const ProofPresenceInputZ: z.ZodObject<{
162
167
  }>;
163
168
  requiredProof: z.ZodArray<z.ZodEnum<{
164
169
  NONE: "NONE";
165
- CAPSULE: "CAPSULE";
170
+ ANONYMOUS: "ANONYMOUS";
166
171
  PASSPORT: "PASSPORT";
167
- MTLS: "MTLS";
172
+ CAPSULE: "CAPSULE";
168
173
  JWT: "JWT";
174
+ CONTRACT: "CONTRACT";
175
+ WITNESS: "WITNESS";
176
+ MTLS: "MTLS";
177
+ DEVICE: "DEVICE";
178
+ AUTHORIZED: "AUTHORIZED";
169
179
  }>>;
170
180
  hasCapsule: z.ZodBoolean;
171
181
  hasPassportSignature: z.ZodBoolean;
172
182
  intent: z.ZodString;
173
- }, z.z.core.$strip>;
183
+ }, z.core.$strip>;
174
184
  type ProofPresenceInput = z.infer<typeof ProofPresenceInputZ>;
175
185
  declare const SensitivityLevelZ: z.ZodEnum<{
176
186
  LOW: "LOW";
@@ -203,9 +213,9 @@ declare const AxisContextZ: z.ZodObject<{
203
213
  allowIntents: z.ZodArray<z.ZodString>;
204
214
  limits: z.ZodOptional<z.ZodObject<{
205
215
  maxBodyBytes: z.ZodOptional<z.ZodNumber>;
206
- }, z.z.core.$strip>>;
216
+ }, z.core.$strip>>;
207
217
  scopes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
208
- }, z.z.core.$strip>;
218
+ }, z.core.$strip>;
209
219
  issuedAt: z.ZodNumber;
210
220
  expiresAt: z.ZodNumber;
211
221
  tier: z.ZodEnum<{
@@ -213,7 +223,7 @@ declare const AxisContextZ: z.ZodObject<{
213
223
  STANDARD: "STANDARD";
214
224
  PREMIUM: "PREMIUM";
215
225
  }>;
216
- }, z.z.core.$strip>>;
226
+ }, z.core.$strip>>;
217
227
  passport: z.ZodOptional<z.ZodObject<{
218
228
  id: z.ZodString;
219
229
  public_key: z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>;
@@ -225,9 +235,9 @@ declare const AxisContextZ: z.ZodObject<{
225
235
  }>;
226
236
  issuedAt: z.ZodNumber;
227
237
  expiresAt: z.ZodOptional<z.ZodNumber>;
228
- }, z.z.core.$strip>>;
238
+ }, z.core.$strip>>;
229
239
  meter: z.ZodOptional<z.ZodAny>;
230
- }, z.z.core.$strip>;
240
+ }, z.core.$strip>;
231
241
  type AxisContext = z.infer<typeof AxisContextZ>;
232
242
 
233
243
  declare const AXIS_META_KEY = "axis:axis";
@@ -602,14 +612,14 @@ interface RiskEvaluation {
602
612
  declare class AccessProfileResolverSensor implements AxisSensor {
603
613
  readonly name = "AccessProfileResolverSensor";
604
614
  readonly order: number;
605
- supports(): boolean;
615
+ supports(input: SensorInput): Promise<SensorDecision>;
606
616
  run(input: SensorInput): Promise<SensorDecision>;
607
617
  }
608
618
 
609
619
  declare class BodyBudgetSensor implements AxisSensor {
610
620
  readonly name = "BodyBudgetSensor";
611
621
  readonly order: number;
612
- supports(input: SensorInput): boolean;
622
+ supports(input: SensorInput): Promise<SensorDecision>;
613
623
  run(input: SensorInput): Promise<SensorDecision>;
614
624
  }
615
625
 
@@ -617,7 +627,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
617
627
  private readonly logger;
618
628
  readonly name = "CapabilityEnforcementSensor";
619
629
  readonly order: number;
620
- supports(input: SensorInput): boolean;
630
+ supports(input: SensorInput): Promise<SensorDecision>;
621
631
  run(input: SensorInput): Promise<SensorDecision>;
622
632
  private getRequiredCapabilities;
623
633
  }
@@ -625,7 +635,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
625
635
  declare class ChunkHashSensor implements AxisSensor {
626
636
  readonly name = "ChunkHashSensor";
627
637
  readonly order: number;
628
- supports(input: SensorInput): boolean;
638
+ supports(input: SensorInput): Promise<SensorDecision>;
629
639
  run(input: SensorInput): Promise<SensorDecision>;
630
640
  }
631
641
 
@@ -645,7 +655,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
645
655
  private readonly logger;
646
656
  readonly name = "ExecutionTimeoutSensor";
647
657
  readonly order: number;
648
- supports(input: SensorInput): boolean;
658
+ supports(): Promise<SensorDecision>;
649
659
  run(input: SensorInput): Promise<SensorDecision>;
650
660
  static isExpired(ctx: {
651
661
  deadline?: number;
@@ -658,14 +668,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
658
668
  declare class FrameBudgetSensor implements AxisSensor {
659
669
  readonly name = "FrameBudgetSensor";
660
670
  readonly order: number;
661
- supports(input: SensorInput): boolean;
671
+ supports(input: SensorInput): Promise<SensorDecision>;
662
672
  run(input: SensorInput): Promise<SensorDecision>;
663
673
  }
664
674
 
665
675
  declare class FrameHeaderSanitySensor implements AxisSensor {
666
676
  readonly name = "FrameHeaderSanitySensor";
667
677
  readonly order: number;
668
- supports(input: SensorInput): boolean;
678
+ supports(input: SensorInput): Promise<SensorDecision>;
669
679
  run(input: SensorInput): Promise<SensorDecision>;
670
680
  private bufferEqual;
671
681
  }
@@ -674,14 +684,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
674
684
  readonly name = "HeaderTLVLimitSensor";
675
685
  readonly order: number;
676
686
  private readonly MAX_TLVS;
677
- supports(input: SensorInput): boolean;
687
+ supports(input: SensorInput): Promise<SensorDecision>;
678
688
  run(input: SensorInput): Promise<SensorDecision>;
679
689
  }
680
690
 
681
691
  declare class IntentAllowlistSensor implements AxisSensor {
682
692
  readonly name = "IntentAllowlistSensor";
683
693
  readonly order: number;
684
- supports(input: SensorInput): boolean;
694
+ supports(input: SensorInput): Promise<SensorDecision>;
685
695
  run(input: SensorInput): Promise<SensorDecision>;
686
696
  }
687
697
 
@@ -690,7 +700,7 @@ declare class IntentRegistrySensor implements AxisSensor {
690
700
  readonly name = "IntentRegistrySensor";
691
701
  readonly order: number;
692
702
  constructor(router: IntentRouter);
693
- supports(input: SensorInput): boolean;
703
+ supports(): Promise<SensorDecision>;
694
704
  run(input: SensorInput): Promise<SensorDecision>;
695
705
  }
696
706
 
@@ -700,14 +710,14 @@ declare class LawEvaluationSensor implements AxisSensor {
700
710
  readonly name = "LawEvaluationSensor";
701
711
  readonly order: number;
702
712
  constructor(options?: LawEvaluationSensorOptions);
703
- supports(input: SensorInput): boolean;
713
+ supports(input: SensorInput): Promise<SensorDecision>;
704
714
  run(input: SensorInput): Promise<SensorDecision>;
705
715
  }
706
716
 
707
717
  declare class ProofPresenceSensor implements AxisSensor {
708
718
  readonly name = "ProofPresenceSensor";
709
719
  readonly order: number;
710
- supports(input: ProofPresenceInput): boolean;
720
+ supports(input: ProofPresenceInput): Promise<SensorDecision>;
711
721
  run(input: ProofPresenceInput): Promise<SensorDecision>;
712
722
  }
713
723
 
@@ -735,7 +745,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
735
745
  declare class ReceiptPolicySensor implements AxisSensor {
736
746
  readonly name = "ReceiptPolicySensor";
737
747
  readonly order: number;
738
- supports(): boolean;
748
+ supports(): Promise<SensorDecision>;
739
749
  run(): Promise<SensorDecision>;
740
750
  }
741
751
 
@@ -759,7 +769,7 @@ declare class RiskGateSensor implements AxisSensor {
759
769
  declare class SchemaValidationSensor implements AxisSensor {
760
770
  readonly name = "SchemaValidationSensor";
761
771
  readonly order: number;
762
- supports(input: any): boolean;
772
+ supports(input: any): Promise<SensorDecision>;
763
773
  run(input: any): Promise<{
764
774
  action: 'ALLOW';
765
775
  } | {
@@ -772,7 +782,7 @@ declare class SchemaValidationSensor implements AxisSensor {
772
782
  declare class StreamScopeSensor implements AxisSensor {
773
783
  readonly name = "StreamScopeSensor";
774
784
  readonly order: number;
775
- supports(): boolean;
785
+ supports(): Promise<SensorDecision>;
776
786
  run(): Promise<SensorDecision>;
777
787
  }
778
788
 
@@ -782,7 +792,7 @@ interface TickAuthCapsuleRef {
782
792
  intent?: string;
783
793
  mode?: string;
784
794
  verification?: {
785
- status: 'approved' | 'denied' | 'expired' | 'replay_rejected' | 'consumed' | 'revoked';
795
+ status: "approved" | "denied" | "expired" | "replay_rejected" | "consumed" | "revoked";
786
796
  reason?: string;
787
797
  };
788
798
  scope?: string[];
@@ -802,14 +812,14 @@ declare class TickAuthSensor implements AxisSensor {
802
812
  private readonly matchIntent;
803
813
  private readonly acceptTypes;
804
814
  constructor(options?: TickAuthSensorOptions);
805
- supports(input: SensorInput): boolean;
815
+ supports(input: SensorInput): Promise<SensorDecision>;
806
816
  run(input: SensorInput): Promise<SensorDecision>;
807
817
  }
808
818
 
809
819
  declare class TLVParseSensor implements AxisSensor {
810
820
  readonly name = "TLVParseSensor";
811
821
  readonly order: number;
812
- supports(input: SensorInput): boolean;
822
+ supports(input: SensorInput): Promise<SensorDecision>;
813
823
  run(input: SensorInput): Promise<SensorDecision>;
814
824
  private validateCanonicalTLV;
815
825
  }
@@ -824,7 +834,7 @@ declare class TpsSensor implements AxisSensor {
824
834
  private readonly maxDriftMs;
825
835
  private readonly resolver;
826
836
  constructor(options?: TpsSensorOptions);
827
- supports(input: SensorInput): boolean;
837
+ supports(input: SensorInput): Promise<SensorDecision>;
828
838
  run(input: SensorInput): Promise<SensorDecision>;
829
839
  }
830
840
 
@@ -832,7 +842,7 @@ declare class VarintHardeningSensor implements AxisSensor {
832
842
  readonly name = "VarintHardeningSensor";
833
843
  readonly order: number;
834
844
  private readonly MAX_VARINT_BYTES;
835
- supports(input: SensorInput): boolean;
845
+ supports(input: SensorInput): Promise<SensorDecision>;
836
846
  run(input: SensorInput): Promise<SensorDecision>;
837
847
  }
838
848
 
@@ -1,5 +1,5 @@
1
- import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-GBEI3Fab.js';
2
- import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-DbGBSsCG.js';
1
+ import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-DMW4rfRg.js';
2
+ import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-BJ-F1isr.js';
3
3
  import { AxisFrame } from '@nextera.one/axis-protocol';
4
4
  import * as z from 'zod';
5
5
 
@@ -143,10 +143,15 @@ declare const FALLBACK_CONTRACT: ExecutionContract;
143
143
 
144
144
  declare const ProofKindZ: z.ZodEnum<{
145
145
  NONE: "NONE";
146
- CAPSULE: "CAPSULE";
146
+ ANONYMOUS: "ANONYMOUS";
147
147
  PASSPORT: "PASSPORT";
148
- MTLS: "MTLS";
148
+ CAPSULE: "CAPSULE";
149
149
  JWT: "JWT";
150
+ CONTRACT: "CONTRACT";
151
+ WITNESS: "WITNESS";
152
+ MTLS: "MTLS";
153
+ DEVICE: "DEVICE";
154
+ AUTHORIZED: "AUTHORIZED";
150
155
  }>;
151
156
  type ProofKind = z.infer<typeof ProofKindZ>;
152
157
  declare const ProofPresenceInputZ: z.ZodObject<{
@@ -162,15 +167,20 @@ declare const ProofPresenceInputZ: z.ZodObject<{
162
167
  }>;
163
168
  requiredProof: z.ZodArray<z.ZodEnum<{
164
169
  NONE: "NONE";
165
- CAPSULE: "CAPSULE";
170
+ ANONYMOUS: "ANONYMOUS";
166
171
  PASSPORT: "PASSPORT";
167
- MTLS: "MTLS";
172
+ CAPSULE: "CAPSULE";
168
173
  JWT: "JWT";
174
+ CONTRACT: "CONTRACT";
175
+ WITNESS: "WITNESS";
176
+ MTLS: "MTLS";
177
+ DEVICE: "DEVICE";
178
+ AUTHORIZED: "AUTHORIZED";
169
179
  }>>;
170
180
  hasCapsule: z.ZodBoolean;
171
181
  hasPassportSignature: z.ZodBoolean;
172
182
  intent: z.ZodString;
173
- }, z.z.core.$strip>;
183
+ }, z.core.$strip>;
174
184
  type ProofPresenceInput = z.infer<typeof ProofPresenceInputZ>;
175
185
  declare const SensitivityLevelZ: z.ZodEnum<{
176
186
  LOW: "LOW";
@@ -203,9 +213,9 @@ declare const AxisContextZ: z.ZodObject<{
203
213
  allowIntents: z.ZodArray<z.ZodString>;
204
214
  limits: z.ZodOptional<z.ZodObject<{
205
215
  maxBodyBytes: z.ZodOptional<z.ZodNumber>;
206
- }, z.z.core.$strip>>;
216
+ }, z.core.$strip>>;
207
217
  scopes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
208
- }, z.z.core.$strip>;
218
+ }, z.core.$strip>;
209
219
  issuedAt: z.ZodNumber;
210
220
  expiresAt: z.ZodNumber;
211
221
  tier: z.ZodEnum<{
@@ -213,7 +223,7 @@ declare const AxisContextZ: z.ZodObject<{
213
223
  STANDARD: "STANDARD";
214
224
  PREMIUM: "PREMIUM";
215
225
  }>;
216
- }, z.z.core.$strip>>;
226
+ }, z.core.$strip>>;
217
227
  passport: z.ZodOptional<z.ZodObject<{
218
228
  id: z.ZodString;
219
229
  public_key: z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>;
@@ -225,9 +235,9 @@ declare const AxisContextZ: z.ZodObject<{
225
235
  }>;
226
236
  issuedAt: z.ZodNumber;
227
237
  expiresAt: z.ZodOptional<z.ZodNumber>;
228
- }, z.z.core.$strip>>;
238
+ }, z.core.$strip>>;
229
239
  meter: z.ZodOptional<z.ZodAny>;
230
- }, z.z.core.$strip>;
240
+ }, z.core.$strip>;
231
241
  type AxisContext = z.infer<typeof AxisContextZ>;
232
242
 
233
243
  declare const AXIS_META_KEY = "axis:axis";
@@ -602,14 +612,14 @@ interface RiskEvaluation {
602
612
  declare class AccessProfileResolverSensor implements AxisSensor {
603
613
  readonly name = "AccessProfileResolverSensor";
604
614
  readonly order: number;
605
- supports(): boolean;
615
+ supports(input: SensorInput): Promise<SensorDecision>;
606
616
  run(input: SensorInput): Promise<SensorDecision>;
607
617
  }
608
618
 
609
619
  declare class BodyBudgetSensor implements AxisSensor {
610
620
  readonly name = "BodyBudgetSensor";
611
621
  readonly order: number;
612
- supports(input: SensorInput): boolean;
622
+ supports(input: SensorInput): Promise<SensorDecision>;
613
623
  run(input: SensorInput): Promise<SensorDecision>;
614
624
  }
615
625
 
@@ -617,7 +627,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
617
627
  private readonly logger;
618
628
  readonly name = "CapabilityEnforcementSensor";
619
629
  readonly order: number;
620
- supports(input: SensorInput): boolean;
630
+ supports(input: SensorInput): Promise<SensorDecision>;
621
631
  run(input: SensorInput): Promise<SensorDecision>;
622
632
  private getRequiredCapabilities;
623
633
  }
@@ -625,7 +635,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
625
635
  declare class ChunkHashSensor implements AxisSensor {
626
636
  readonly name = "ChunkHashSensor";
627
637
  readonly order: number;
628
- supports(input: SensorInput): boolean;
638
+ supports(input: SensorInput): Promise<SensorDecision>;
629
639
  run(input: SensorInput): Promise<SensorDecision>;
630
640
  }
631
641
 
@@ -645,7 +655,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
645
655
  private readonly logger;
646
656
  readonly name = "ExecutionTimeoutSensor";
647
657
  readonly order: number;
648
- supports(input: SensorInput): boolean;
658
+ supports(): Promise<SensorDecision>;
649
659
  run(input: SensorInput): Promise<SensorDecision>;
650
660
  static isExpired(ctx: {
651
661
  deadline?: number;
@@ -658,14 +668,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
658
668
  declare class FrameBudgetSensor implements AxisSensor {
659
669
  readonly name = "FrameBudgetSensor";
660
670
  readonly order: number;
661
- supports(input: SensorInput): boolean;
671
+ supports(input: SensorInput): Promise<SensorDecision>;
662
672
  run(input: SensorInput): Promise<SensorDecision>;
663
673
  }
664
674
 
665
675
  declare class FrameHeaderSanitySensor implements AxisSensor {
666
676
  readonly name = "FrameHeaderSanitySensor";
667
677
  readonly order: number;
668
- supports(input: SensorInput): boolean;
678
+ supports(input: SensorInput): Promise<SensorDecision>;
669
679
  run(input: SensorInput): Promise<SensorDecision>;
670
680
  private bufferEqual;
671
681
  }
@@ -674,14 +684,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
674
684
  readonly name = "HeaderTLVLimitSensor";
675
685
  readonly order: number;
676
686
  private readonly MAX_TLVS;
677
- supports(input: SensorInput): boolean;
687
+ supports(input: SensorInput): Promise<SensorDecision>;
678
688
  run(input: SensorInput): Promise<SensorDecision>;
679
689
  }
680
690
 
681
691
  declare class IntentAllowlistSensor implements AxisSensor {
682
692
  readonly name = "IntentAllowlistSensor";
683
693
  readonly order: number;
684
- supports(input: SensorInput): boolean;
694
+ supports(input: SensorInput): Promise<SensorDecision>;
685
695
  run(input: SensorInput): Promise<SensorDecision>;
686
696
  }
687
697
 
@@ -690,7 +700,7 @@ declare class IntentRegistrySensor implements AxisSensor {
690
700
  readonly name = "IntentRegistrySensor";
691
701
  readonly order: number;
692
702
  constructor(router: IntentRouter);
693
- supports(input: SensorInput): boolean;
703
+ supports(): Promise<SensorDecision>;
694
704
  run(input: SensorInput): Promise<SensorDecision>;
695
705
  }
696
706
 
@@ -700,14 +710,14 @@ declare class LawEvaluationSensor implements AxisSensor {
700
710
  readonly name = "LawEvaluationSensor";
701
711
  readonly order: number;
702
712
  constructor(options?: LawEvaluationSensorOptions);
703
- supports(input: SensorInput): boolean;
713
+ supports(input: SensorInput): Promise<SensorDecision>;
704
714
  run(input: SensorInput): Promise<SensorDecision>;
705
715
  }
706
716
 
707
717
  declare class ProofPresenceSensor implements AxisSensor {
708
718
  readonly name = "ProofPresenceSensor";
709
719
  readonly order: number;
710
- supports(input: ProofPresenceInput): boolean;
720
+ supports(input: ProofPresenceInput): Promise<SensorDecision>;
711
721
  run(input: ProofPresenceInput): Promise<SensorDecision>;
712
722
  }
713
723
 
@@ -735,7 +745,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
735
745
  declare class ReceiptPolicySensor implements AxisSensor {
736
746
  readonly name = "ReceiptPolicySensor";
737
747
  readonly order: number;
738
- supports(): boolean;
748
+ supports(): Promise<SensorDecision>;
739
749
  run(): Promise<SensorDecision>;
740
750
  }
741
751
 
@@ -759,7 +769,7 @@ declare class RiskGateSensor implements AxisSensor {
759
769
  declare class SchemaValidationSensor implements AxisSensor {
760
770
  readonly name = "SchemaValidationSensor";
761
771
  readonly order: number;
762
- supports(input: any): boolean;
772
+ supports(input: any): Promise<SensorDecision>;
763
773
  run(input: any): Promise<{
764
774
  action: 'ALLOW';
765
775
  } | {
@@ -772,7 +782,7 @@ declare class SchemaValidationSensor implements AxisSensor {
772
782
  declare class StreamScopeSensor implements AxisSensor {
773
783
  readonly name = "StreamScopeSensor";
774
784
  readonly order: number;
775
- supports(): boolean;
785
+ supports(): Promise<SensorDecision>;
776
786
  run(): Promise<SensorDecision>;
777
787
  }
778
788
 
@@ -782,7 +792,7 @@ interface TickAuthCapsuleRef {
782
792
  intent?: string;
783
793
  mode?: string;
784
794
  verification?: {
785
- status: 'approved' | 'denied' | 'expired' | 'replay_rejected' | 'consumed' | 'revoked';
795
+ status: "approved" | "denied" | "expired" | "replay_rejected" | "consumed" | "revoked";
786
796
  reason?: string;
787
797
  };
788
798
  scope?: string[];
@@ -802,14 +812,14 @@ declare class TickAuthSensor implements AxisSensor {
802
812
  private readonly matchIntent;
803
813
  private readonly acceptTypes;
804
814
  constructor(options?: TickAuthSensorOptions);
805
- supports(input: SensorInput): boolean;
815
+ supports(input: SensorInput): Promise<SensorDecision>;
806
816
  run(input: SensorInput): Promise<SensorDecision>;
807
817
  }
808
818
 
809
819
  declare class TLVParseSensor implements AxisSensor {
810
820
  readonly name = "TLVParseSensor";
811
821
  readonly order: number;
812
- supports(input: SensorInput): boolean;
822
+ supports(input: SensorInput): Promise<SensorDecision>;
813
823
  run(input: SensorInput): Promise<SensorDecision>;
814
824
  private validateCanonicalTLV;
815
825
  }
@@ -824,7 +834,7 @@ declare class TpsSensor implements AxisSensor {
824
834
  private readonly maxDriftMs;
825
835
  private readonly resolver;
826
836
  constructor(options?: TpsSensorOptions);
827
- supports(input: SensorInput): boolean;
837
+ supports(input: SensorInput): Promise<SensorDecision>;
828
838
  run(input: SensorInput): Promise<SensorDecision>;
829
839
  }
830
840
 
@@ -832,7 +842,7 @@ declare class VarintHardeningSensor implements AxisSensor {
832
842
  readonly name = "VarintHardeningSensor";
833
843
  readonly order: number;
834
844
  private readonly MAX_VARINT_BYTES;
835
- supports(input: SensorInput): boolean;
845
+ supports(input: SensorInput): Promise<SensorDecision>;
836
846
  run(input: SensorInput): Promise<SensorDecision>;
837
847
  }
838
848
 
@@ -1,6 +1,6 @@
1
1
  import { c as CompiledIntent } from './idel.types-DuUAcOnQ.js';
2
2
  import { i as TimelineEvent } from './timeline.types-Cn0aqbUj.js';
3
- import { A as AxisSensor } from './axis-sensor-GBEI3Fab.js';
3
+ import { A as AxisSensor } from './axis-sensor-DMW4rfRg.js';
4
4
 
5
5
  interface ObservationStage {
6
6
  name: string;
@@ -1,6 +1,6 @@
1
1
  import { c as CompiledIntent } from './idel.types-DuUAcOnQ.mjs';
2
2
  import { i as TimelineEvent } from './timeline.types-Cn0aqbUj.mjs';
3
- import { A as AxisSensor } from './axis-sensor-GBEI3Fab.mjs';
3
+ import { A as AxisSensor } from './axis-sensor-DMW4rfRg.mjs';
4
4
 
5
5
  interface ObservationStage {
6
6
  name: string;
package/dist/index.d.mts CHANGED
@@ -1,19 +1,19 @@
1
- import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-ldPtIocV.mjs';
2
- export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-ldPtIocV.mjs';
1
+ import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-CZ3RXsBC.mjs';
2
+ export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-CZ3RXsBC.mjs';
3
3
  import { AxisFrame } from '@nextera.one/axis-protocol';
4
4
  export { AXIS_MAGIC, AXIS_VERSION, AxisBinaryFrame, AxisFrame, TLV as AxisTlvType, ERR_BAD_SIGNATURE, ERR_CONTRACT_VIOLATION, ERR_INVALID_PACKET, ERR_REPLAY_DETECTED, FLAG_BODY_TLV, FLAG_CHAIN_REQ, FLAG_HAS_WITNESS, MAX_BODY_LEN, MAX_FRAME_LEN, MAX_HDR_LEN, MAX_SIG_LEN, NCERT_ALG, NCERT_EXP, NCERT_ISSUER_KID, NCERT_KID, NCERT_NBF, NCERT_NODE_ID, NCERT_PAYLOAD, NCERT_PUB, NCERT_SCOPE, NCERT_SIG, PROOF_CAPSULE, PROOF_JWT, PROOF_LOOM, PROOF_MTLS, PROOF_NONE, PROOF_WITNESS, TLV, TLV_ACTOR_ID, TLV_AUD, TLV_BODY_ARR, TLV_BODY_OBJ, TLV_CAPSULE, TLV_EFFECT, TLV_ERROR_CODE, TLV_ERROR_MSG, TLV_INDEX, TLV_INTENT, TLV_KID, TLV_LOOM_PRESENCE_ID, TLV_LOOM_THREAD_HASH, TLV_LOOM_WRIT, TLV_NODE, TLV_NODE_CERT_HASH, TLV_NODE_KID, TLV_NONCE, TLV_OFFSET, TLV_OK, TLV_PID, TLV_LOOM_PRESENCE_ID as TLV_PRESENCE_ID, TLV_PREV_HASH, TLV_PROOF_REF, TLV_PROOF_TYPE, TLV_REALM, TLV_RECEIPT_HASH, TLV_RID, TLV_SHA256_CHUNK, TLV_LOOM_THREAD_HASH as TLV_THREAD_HASH, TLV_TRACE_ID, TLV_TS, TLV_UPLOAD_ID, TLV_LOOM_WRIT as TLV_WRIT, decodeArray, decodeFrame, decodeObject, decodeTLVs, decodeTLVsList, decodeVarint, encodeFrame, encodeTLVs, encodeVarint, getSignTarget, varintLength } from '@nextera.one/axis-protocol';
5
- import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-_S4fmVUJ.mjs';
6
- export { l as Anomaly, m as AnomalyLevel, E as ExpectedOutcome, F as Fabric, n as FabricCell, o as FabricDiff, p as FabricDiffEntry, q as FabricDiffKind, r as FabricEffect, s as FabricEffectResolver, t as FabricQuery, u as GrantMeta, v as GrantType, I as InMemoryPatternStore, K as Knot, w as KnotBreakRequest, x as KnotError, y as KnotStatus, z as KnotType, B as KnotValidationResult, C as LoomValidationResult, N as Needle, D as NeedleError, H as NeedleHandler, J as NeedleHandlerContext, M as NeedleHandlerResult, O as NeedlePhase, Q as NeedlePipelineConfig, S as NeedlePipelineResult, U as ObservationSensor, V as ObservationStage, X as ObservedDeed, Y as Pattern, Z as PatternConfidence, _ as PatternKind, $ as PatternMatch, a0 as PatternPrediction, a1 as PatternSignature, a2 as PatternStore, a3 as RevocationTargetType, a4 as Stitch, a5 as StitchKind, a6 as Thread, a7 as TruthStatus, a8 as TruthVerdict, a9 as WritHead, aa as WritSignature, ab as addStitchToKnot, ac as applyStitch, ad as assembleNeedle, ae as breakKnot, af as canonicalizeGrant, ag as canonicalizeWrit, ah as createFabric, ai as createObservation, aj as deriveAnchorReflection, ak as detectAnomalies, al as detectKnotPatterns, am as detectSequencePatterns, an as diffFabrics, ao as endStage, ap as finalizeObservation, aq as findKnotsForStitch, ar as forkFromKnot, as as formStitch, at as getDecisionPoints, au as getFabricValue, av as getIrreversibleKnots, aw as isKnotOpen, ax as isPointOfNoReturn, ay as lockCells, az as matchPatterns, aA as openKnot, aB as projectAt, aC as queryFabric, aD as recordOccurrence, aE as recordSensor, aF as runNeedlePipeline, aG as scoreTruth, aH as startStage, aI as tieKnot, aJ as validateKnot, aK as verifyObservation, aL as weave } from './index-_S4fmVUJ.mjs';
5
+ import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-DiuKGnQw.mjs';
6
+ export { l as Anomaly, m as AnomalyLevel, E as ExpectedOutcome, F as Fabric, n as FabricCell, o as FabricDiff, p as FabricDiffEntry, q as FabricDiffKind, r as FabricEffect, s as FabricEffectResolver, t as FabricQuery, u as GrantMeta, v as GrantType, I as InMemoryPatternStore, K as Knot, w as KnotBreakRequest, x as KnotError, y as KnotStatus, z as KnotType, B as KnotValidationResult, C as LoomValidationResult, N as Needle, D as NeedleError, H as NeedleHandler, J as NeedleHandlerContext, M as NeedleHandlerResult, O as NeedlePhase, Q as NeedlePipelineConfig, S as NeedlePipelineResult, U as ObservationSensor, V as ObservationStage, X as ObservedDeed, Y as Pattern, Z as PatternConfidence, _ as PatternKind, $ as PatternMatch, a0 as PatternPrediction, a1 as PatternSignature, a2 as PatternStore, a3 as RevocationTargetType, a4 as Stitch, a5 as StitchKind, a6 as Thread, a7 as TruthStatus, a8 as TruthVerdict, a9 as WritHead, aa as WritSignature, ab as addStitchToKnot, ac as applyStitch, ad as assembleNeedle, ae as breakKnot, af as canonicalizeGrant, ag as canonicalizeWrit, ah as createFabric, ai as createObservation, aj as deriveAnchorReflection, ak as detectAnomalies, al as detectKnotPatterns, am as detectSequencePatterns, an as diffFabrics, ao as endStage, ap as finalizeObservation, aq as findKnotsForStitch, ar as forkFromKnot, as as formStitch, at as getDecisionPoints, au as getFabricValue, av as getIrreversibleKnots, aw as isKnotOpen, ax as isPointOfNoReturn, ay as lockCells, az as matchPatterns, aA as openKnot, aB as projectAt, aC as queryFabric, aD as recordOccurrence, aE as recordSensor, aF as runNeedlePipeline, aG as scoreTruth, aH as startStage, aI as tieKnot, aJ as validateKnot, aK as verifyObservation, aL as weave } from './index-DiuKGnQw.mjs';
7
7
  export { AxisError, AxisFrameZ, computeReceiptHash, computeSignaturePayload, generateEd25519KeyPair, sha256, signFrame, verifyFrameSignature } from './core/index.mjs';
8
8
  export { Axis1FrameToEncode, encodeAxis1Frame } from './codec/axis1.encode.mjs';
9
9
  export { axis1SigningBytes } from './codec/axis1.signing.mjs';
10
- import { S as SensorInput, a as SensorDecision } from './axis-sensor-GBEI3Fab.mjs';
11
- export { b as AxisAlg, c as AxisCapsule, d as AxisCapsuleConstraints, e as AxisCapsulePayload, f as AxisJsonAlg, g as AxisJsonFrame, h as AxisJsonResponse, i as AxisJsonSig, j as AxisObservedContext, k as AxisPacket, l as AxisPostSensor, m as AxisPreSensor, n as AxisRequestContext, A as AxisSensor, o as AxisSensorInit, p as AxisSig, C as CapsuleMode, D as Decision, K as KeyStatus, q as SensorDecisions, r as SensorMinifiedDecision, s as SensorPhaseMetadata, t as normalizeSensorDecision } from './axis-sensor-GBEI3Fab.mjs';
10
+ import { S as SensorInput, a as SensorDecision } from './axis-sensor-DMW4rfRg.mjs';
11
+ export { b as AxisAlg, c as AxisCapsule, d as AxisCapsuleConstraints, e as AxisCapsulePayload, f as AxisJsonAlg, g as AxisJsonFrame, h as AxisJsonResponse, i as AxisJsonSig, j as AxisObservedContext, k as AxisPacket, l as AxisPostSensor, m as AxisPreSensor, n as AxisRequestContext, A as AxisSensor, o as AxisSensorInit, p as AxisSig, C as CapsuleMode, D as Decision, K as KeyStatus, q as SensorDecisions, r as SensorMinifiedDecision, s as SensorPhaseMetadata, t as normalizeSensorDecision } from './axis-sensor-DMW4rfRg.mjs';
12
12
  import { Axis1DecodedFrame } from './types/frame.mjs';
13
13
  export { decodeAxis1Frame } from './types/frame.mjs';
14
14
  export { InMemoryTimelineStore, TimelineEngine, TimelineStore } from './timeline/index.mjs';
15
15
  export { F as ForkRequest, a as ForkResult, R as ReplayDifference, b as ReplayRequest, c as ReplayResult, S as SimulatedSideEffect, d as SimulationRequest, e as SimulationResult, f as StateSnapshot, T as TimelineBranch, g as TimelineComparison, h as TimelineDomain, i as TimelineEvent, j as TimelineEventStatus, k as TimelineHandler, l as TimelineHandlerContext, m as TimelineHandlerResult } from './timeline.types-Cn0aqbUj.mjs';
16
- export { e as CCE_ERROR, h as CCE_PROTOCOL_VERSION, C as CceCapsuleClaimsType, q as CceError, a as CceExecutionContextType, s as CceHandler, t as CceHandlerContext, u as CceHandlerResult, x as CcePipelineConfig, y as CcePipelineResult, z as CcePolicyContext, A as CcePolicyDecision, B as CcePolicyEvaluator, b as CceRequestEnvelopeType, D as CceResponseEnvelopeType, I as CceWitnessRecordType, O as executeCcePipeline } from './cce-pipeline-B-zUBHo3.mjs';
16
+ export { e as CCE_ERROR, h as CCE_PROTOCOL_VERSION, C as CceCapsuleClaimsType, q as CceError, a as CceExecutionContextType, s as CceHandler, t as CceHandlerContext, u as CceHandlerResult, x as CcePipelineConfig, y as CcePipelineResult, z as CcePolicyContext, A as CcePolicyDecision, B as CcePolicyEvaluator, b as CceRequestEnvelopeType, D as CceResponseEnvelopeType, I as CceWitnessRecordType, O as executeCcePipeline } from './cce-pipeline-CBt56guN.mjs';
17
17
  export { IdelCompiler, IdelSchemaRegistry } from './idel/index.mjs';
18
18
  export { A as AlternativeIntent, C as ClarificationQuestion, a as CompilationError, b as CompilationResult, c as CompiledIntent, d as ConstraintKind, I as IntentConstraint, e as IntentParamSchema, f as IntentProposal, g as IntentRisk, h as IntentSchema, R as RiskLevel } from './idel.types-DuUAcOnQ.mjs';
19
19
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -1,19 +1,19 @@
1
- import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-CwXlBXJf.js';
2
- export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-CwXlBXJf.js';
1
+ import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, I as IntentTlvField, T as TlvValidatorFn, c as IntentRouter, O as ObserverDispatcherService, d as AxisChainEnvelope, e as AxisChainResult, f as AxisCapsuleRef, g as AxisChainStep, h as AxisContext, S as SensorRegistry } from './index-DEh3s2yx.js';
2
+ export { i as AXIS_ANONYMOUS_KEY, j as AXIS_META_KEY, k as AXIS_PUBLIC_KEY, l as AXIS_RATE_LIMIT_KEY, m as AccessProfileResolverSensor, n as Axis, o as AxisAnonymous, p as AxisChainEncryption, q as AxisChainRequest, r as AxisChainStatus, s as AxisChainStepResult, t as AxisChainStepStatus, u as AxisEffect, v as AxisExecutionMode, w as AxisIntentEnvelope, x as AxisIntentObserver, y as AxisIntentSensorBinding, z as AxisIntentSensorBindingOptions, B as AxisIntentSensorRef, D as AxisIntentSensorWhen, E as AxisKeyExchangeRef, F as AxisLawArticleSummary, G as AxisLawDecision, H as AxisLawEvaluationContext, J as AxisLawEvaluationResult, K as AxisLawEvaluator, L as AxisObserverBinding, M as AxisObserverBindingOptions, N as AxisObserverContext, P as AxisObserverDefinition, Q as AxisObserverEvent, R as AxisObserverRef, U as AxisObserverRegistration, V as AxisPublic, W as AxisRateLimit, X as AxisRateLimitConfig, Y as BodyBudgetSensor, Z as CAPSULE_POLICY_METADATA_KEY, _ as CONTRACT_METADATA_KEY, $ as CapabilityEnforcementSensor, a0 as Capsule, a1 as CapsulePolicy, a2 as CapsulePolicyOptions, a3 as CapsuleScopeMode, a4 as ChunkHashSensor, a5 as Contract, a6 as DEFAULT_CONTRACTS, a7 as EntropySensor, a8 as ExecutionContract, a9 as ExecutionTimeoutSensor, aa as FALLBACK_CONTRACT, ab as FrameBudgetSensor, ac as FrameHeaderSanitySensor, ad as HeaderTLVLimitSensor, ae as INTENT_METADATA_KEY, af as INTENT_ROUTES_KEY, ag as Intent, ah as IntentAllowlistSensor, ai as IntentKind, aj as IntentOptions, ak as IntentRegistrySensor, al as IntentRoute, am as LawEvaluationSensor, an as LawEvaluationSensorOptions, ao as OBSERVER_BINDINGS_KEY, ap as OBSERVER_METADATA_KEY, aq as Observer, ar as ObserverRegistry, as as ProofPresenceSensor, at as ProtocolStrictSensor, au as REQUIRED_PROOF_METADATA_KEY, av as ReceiptPolicySensor, aw as RegisteredChainConfig, ax as RequiredProof, ay as RequiredProofKind, az as RiskDecision, aA as RiskEvaluation, aB as RiskGateSensor, aC as RiskGateSensorOptions, aD as RiskSignal, aE as RiskSignalCollector, aF as SENSITIVITY_METADATA_KEY, aG as SchemaValidationSensor, aH as Sensitivity, aI as StreamScopeSensor, aJ as TLVParseSensor, aK as TLV_FIELDS_KEY, aL as TLV_VALIDATORS_KEY, aM as TickAuthCapsuleRef, aN as TickAuthSensor, aO as TickAuthSensorOptions, aP as TickAuthVerifier, aQ as TlvEnum, aR as TlvField, aS as TlvFieldKind, aT as TlvFieldMeta, aU as TlvFieldOptions, aV as TlvMinLen, aW as TlvRange, aX as TlvUtf8Pattern, aY as TlvValidate, aZ as TlvValidatorMeta, a_ as TpsSensor, a$ as TpsSensorOptions, b0 as VarintHardeningSensor, b1 as Witness, b2 as buildAxisLawEvaluationContext, b3 as toIntentSensorBinding, b4 as toObserverBinding } from './index-DEh3s2yx.js';
3
3
  import { AxisFrame } from '@nextera.one/axis-protocol';
4
4
  export { AXIS_MAGIC, AXIS_VERSION, AxisBinaryFrame, AxisFrame, TLV as AxisTlvType, ERR_BAD_SIGNATURE, ERR_CONTRACT_VIOLATION, ERR_INVALID_PACKET, ERR_REPLAY_DETECTED, FLAG_BODY_TLV, FLAG_CHAIN_REQ, FLAG_HAS_WITNESS, MAX_BODY_LEN, MAX_FRAME_LEN, MAX_HDR_LEN, MAX_SIG_LEN, NCERT_ALG, NCERT_EXP, NCERT_ISSUER_KID, NCERT_KID, NCERT_NBF, NCERT_NODE_ID, NCERT_PAYLOAD, NCERT_PUB, NCERT_SCOPE, NCERT_SIG, PROOF_CAPSULE, PROOF_JWT, PROOF_LOOM, PROOF_MTLS, PROOF_NONE, PROOF_WITNESS, TLV, TLV_ACTOR_ID, TLV_AUD, TLV_BODY_ARR, TLV_BODY_OBJ, TLV_CAPSULE, TLV_EFFECT, TLV_ERROR_CODE, TLV_ERROR_MSG, TLV_INDEX, TLV_INTENT, TLV_KID, TLV_LOOM_PRESENCE_ID, TLV_LOOM_THREAD_HASH, TLV_LOOM_WRIT, TLV_NODE, TLV_NODE_CERT_HASH, TLV_NODE_KID, TLV_NONCE, TLV_OFFSET, TLV_OK, TLV_PID, TLV_LOOM_PRESENCE_ID as TLV_PRESENCE_ID, TLV_PREV_HASH, TLV_PROOF_REF, TLV_PROOF_TYPE, TLV_REALM, TLV_RECEIPT_HASH, TLV_RID, TLV_SHA256_CHUNK, TLV_LOOM_THREAD_HASH as TLV_THREAD_HASH, TLV_TRACE_ID, TLV_TS, TLV_UPLOAD_ID, TLV_LOOM_WRIT as TLV_WRIT, decodeArray, decodeFrame, decodeObject, decodeTLVs, decodeTLVsList, decodeVarint, encodeFrame, encodeTLVs, encodeVarint, getSignTarget, varintLength } from '@nextera.one/axis-protocol';
5
- import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-l3Hhirqb.js';
6
- export { l as Anomaly, m as AnomalyLevel, E as ExpectedOutcome, F as Fabric, n as FabricCell, o as FabricDiff, p as FabricDiffEntry, q as FabricDiffKind, r as FabricEffect, s as FabricEffectResolver, t as FabricQuery, u as GrantMeta, v as GrantType, I as InMemoryPatternStore, K as Knot, w as KnotBreakRequest, x as KnotError, y as KnotStatus, z as KnotType, B as KnotValidationResult, C as LoomValidationResult, N as Needle, D as NeedleError, H as NeedleHandler, J as NeedleHandlerContext, M as NeedleHandlerResult, O as NeedlePhase, Q as NeedlePipelineConfig, S as NeedlePipelineResult, U as ObservationSensor, V as ObservationStage, X as ObservedDeed, Y as Pattern, Z as PatternConfidence, _ as PatternKind, $ as PatternMatch, a0 as PatternPrediction, a1 as PatternSignature, a2 as PatternStore, a3 as RevocationTargetType, a4 as Stitch, a5 as StitchKind, a6 as Thread, a7 as TruthStatus, a8 as TruthVerdict, a9 as WritHead, aa as WritSignature, ab as addStitchToKnot, ac as applyStitch, ad as assembleNeedle, ae as breakKnot, af as canonicalizeGrant, ag as canonicalizeWrit, ah as createFabric, ai as createObservation, aj as deriveAnchorReflection, ak as detectAnomalies, al as detectKnotPatterns, am as detectSequencePatterns, an as diffFabrics, ao as endStage, ap as finalizeObservation, aq as findKnotsForStitch, ar as forkFromKnot, as as formStitch, at as getDecisionPoints, au as getFabricValue, av as getIrreversibleKnots, aw as isKnotOpen, ax as isPointOfNoReturn, ay as lockCells, az as matchPatterns, aA as openKnot, aB as projectAt, aC as queryFabric, aD as recordOccurrence, aE as recordSensor, aF as runNeedlePipeline, aG as scoreTruth, aH as startStage, aI as tieKnot, aJ as validateKnot, aK as verifyObservation, aL as weave } from './index-l3Hhirqb.js';
5
+ import { A as AxisObservation, L as LoomReceipt, T as ThreadState, W as WritValidationResult, G as Grant, a as GrantCapability, P as PresenceDeclaration, b as PresenceChallenge, c as Writ, R as Revocation, d as WritBody, e as WritMeta, f as PresenceReceipt, g as GrantStatus, h as PresenceStatus, i as PresenceProof, j as GrantValidationResult, k as PresenceVerifyResult } from './index-DMjzq8YO.js';
6
+ export { l as Anomaly, m as AnomalyLevel, E as ExpectedOutcome, F as Fabric, n as FabricCell, o as FabricDiff, p as FabricDiffEntry, q as FabricDiffKind, r as FabricEffect, s as FabricEffectResolver, t as FabricQuery, u as GrantMeta, v as GrantType, I as InMemoryPatternStore, K as Knot, w as KnotBreakRequest, x as KnotError, y as KnotStatus, z as KnotType, B as KnotValidationResult, C as LoomValidationResult, N as Needle, D as NeedleError, H as NeedleHandler, J as NeedleHandlerContext, M as NeedleHandlerResult, O as NeedlePhase, Q as NeedlePipelineConfig, S as NeedlePipelineResult, U as ObservationSensor, V as ObservationStage, X as ObservedDeed, Y as Pattern, Z as PatternConfidence, _ as PatternKind, $ as PatternMatch, a0 as PatternPrediction, a1 as PatternSignature, a2 as PatternStore, a3 as RevocationTargetType, a4 as Stitch, a5 as StitchKind, a6 as Thread, a7 as TruthStatus, a8 as TruthVerdict, a9 as WritHead, aa as WritSignature, ab as addStitchToKnot, ac as applyStitch, ad as assembleNeedle, ae as breakKnot, af as canonicalizeGrant, ag as canonicalizeWrit, ah as createFabric, ai as createObservation, aj as deriveAnchorReflection, ak as detectAnomalies, al as detectKnotPatterns, am as detectSequencePatterns, an as diffFabrics, ao as endStage, ap as finalizeObservation, aq as findKnotsForStitch, ar as forkFromKnot, as as formStitch, at as getDecisionPoints, au as getFabricValue, av as getIrreversibleKnots, aw as isKnotOpen, ax as isPointOfNoReturn, ay as lockCells, az as matchPatterns, aA as openKnot, aB as projectAt, aC as queryFabric, aD as recordOccurrence, aE as recordSensor, aF as runNeedlePipeline, aG as scoreTruth, aH as startStage, aI as tieKnot, aJ as validateKnot, aK as verifyObservation, aL as weave } from './index-DMjzq8YO.js';
7
7
  export { AxisError, AxisFrameZ, computeReceiptHash, computeSignaturePayload, generateEd25519KeyPair, sha256, signFrame, verifyFrameSignature } from './core/index.js';
8
8
  export { Axis1FrameToEncode, encodeAxis1Frame } from './codec/axis1.encode.js';
9
9
  export { axis1SigningBytes } from './codec/axis1.signing.js';
10
- import { S as SensorInput, a as SensorDecision } from './axis-sensor-GBEI3Fab.js';
11
- export { b as AxisAlg, c as AxisCapsule, d as AxisCapsuleConstraints, e as AxisCapsulePayload, f as AxisJsonAlg, g as AxisJsonFrame, h as AxisJsonResponse, i as AxisJsonSig, j as AxisObservedContext, k as AxisPacket, l as AxisPostSensor, m as AxisPreSensor, n as AxisRequestContext, A as AxisSensor, o as AxisSensorInit, p as AxisSig, C as CapsuleMode, D as Decision, K as KeyStatus, q as SensorDecisions, r as SensorMinifiedDecision, s as SensorPhaseMetadata, t as normalizeSensorDecision } from './axis-sensor-GBEI3Fab.js';
10
+ import { S as SensorInput, a as SensorDecision } from './axis-sensor-DMW4rfRg.js';
11
+ export { b as AxisAlg, c as AxisCapsule, d as AxisCapsuleConstraints, e as AxisCapsulePayload, f as AxisJsonAlg, g as AxisJsonFrame, h as AxisJsonResponse, i as AxisJsonSig, j as AxisObservedContext, k as AxisPacket, l as AxisPostSensor, m as AxisPreSensor, n as AxisRequestContext, A as AxisSensor, o as AxisSensorInit, p as AxisSig, C as CapsuleMode, D as Decision, K as KeyStatus, q as SensorDecisions, r as SensorMinifiedDecision, s as SensorPhaseMetadata, t as normalizeSensorDecision } from './axis-sensor-DMW4rfRg.js';
12
12
  import { Axis1DecodedFrame } from './types/frame.js';
13
13
  export { decodeAxis1Frame } from './types/frame.js';
14
14
  export { InMemoryTimelineStore, TimelineEngine, TimelineStore } from './timeline/index.js';
15
15
  export { F as ForkRequest, a as ForkResult, R as ReplayDifference, b as ReplayRequest, c as ReplayResult, S as SimulatedSideEffect, d as SimulationRequest, e as SimulationResult, f as StateSnapshot, T as TimelineBranch, g as TimelineComparison, h as TimelineDomain, i as TimelineEvent, j as TimelineEventStatus, k as TimelineHandler, l as TimelineHandlerContext, m as TimelineHandlerResult } from './timeline.types-Cn0aqbUj.js';
16
- export { e as CCE_ERROR, h as CCE_PROTOCOL_VERSION, C as CceCapsuleClaimsType, q as CceError, a as CceExecutionContextType, s as CceHandler, t as CceHandlerContext, u as CceHandlerResult, x as CcePipelineConfig, y as CcePipelineResult, z as CcePolicyContext, A as CcePolicyDecision, B as CcePolicyEvaluator, b as CceRequestEnvelopeType, D as CceResponseEnvelopeType, I as CceWitnessRecordType, O as executeCcePipeline } from './cce-pipeline-DbGBSsCG.js';
16
+ export { e as CCE_ERROR, h as CCE_PROTOCOL_VERSION, C as CceCapsuleClaimsType, q as CceError, a as CceExecutionContextType, s as CceHandler, t as CceHandlerContext, u as CceHandlerResult, x as CcePipelineConfig, y as CcePipelineResult, z as CcePolicyContext, A as CcePolicyDecision, B as CcePolicyEvaluator, b as CceRequestEnvelopeType, D as CceResponseEnvelopeType, I as CceWitnessRecordType, O as executeCcePipeline } from './cce-pipeline-BJ-F1isr.js';
17
17
  export { IdelCompiler, IdelSchemaRegistry } from './idel/index.js';
18
18
  export { A as AlternativeIntent, C as ClarificationQuestion, a as CompilationError, b as CompilationResult, c as CompiledIntent, d as ConstraintKind, I as IntentConstraint, e as IntentParamSchema, f as IntentProposal, g as IntentRisk, h as IntentSchema, R as RiskLevel } from './idel.types-DuUAcOnQ.js';
19
19
  import 'zod';