@nextera.one/axis-server-sdk 2.2.5 → 2.2.7

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.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
 
@@ -602,14 +602,14 @@ interface RiskEvaluation {
602
602
  declare class AccessProfileResolverSensor implements AxisSensor {
603
603
  readonly name = "AccessProfileResolverSensor";
604
604
  readonly order: number;
605
- supports(): boolean;
605
+ supports(input: SensorInput): Promise<SensorDecision>;
606
606
  run(input: SensorInput): Promise<SensorDecision>;
607
607
  }
608
608
 
609
609
  declare class BodyBudgetSensor implements AxisSensor {
610
610
  readonly name = "BodyBudgetSensor";
611
611
  readonly order: number;
612
- supports(input: SensorInput): boolean;
612
+ supports(input: SensorInput): Promise<SensorDecision>;
613
613
  run(input: SensorInput): Promise<SensorDecision>;
614
614
  }
615
615
 
@@ -617,7 +617,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
617
617
  private readonly logger;
618
618
  readonly name = "CapabilityEnforcementSensor";
619
619
  readonly order: number;
620
- supports(input: SensorInput): boolean;
620
+ supports(input: SensorInput): Promise<SensorDecision>;
621
621
  run(input: SensorInput): Promise<SensorDecision>;
622
622
  private getRequiredCapabilities;
623
623
  }
@@ -625,7 +625,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
625
625
  declare class ChunkHashSensor implements AxisSensor {
626
626
  readonly name = "ChunkHashSensor";
627
627
  readonly order: number;
628
- supports(input: SensorInput): boolean;
628
+ supports(input: SensorInput): Promise<SensorDecision>;
629
629
  run(input: SensorInput): Promise<SensorDecision>;
630
630
  }
631
631
 
@@ -645,7 +645,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
645
645
  private readonly logger;
646
646
  readonly name = "ExecutionTimeoutSensor";
647
647
  readonly order: number;
648
- supports(input: SensorInput): boolean;
648
+ supports(): Promise<SensorDecision>;
649
649
  run(input: SensorInput): Promise<SensorDecision>;
650
650
  static isExpired(ctx: {
651
651
  deadline?: number;
@@ -658,14 +658,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
658
658
  declare class FrameBudgetSensor implements AxisSensor {
659
659
  readonly name = "FrameBudgetSensor";
660
660
  readonly order: number;
661
- supports(input: SensorInput): boolean;
661
+ supports(input: SensorInput): Promise<SensorDecision>;
662
662
  run(input: SensorInput): Promise<SensorDecision>;
663
663
  }
664
664
 
665
665
  declare class FrameHeaderSanitySensor implements AxisSensor {
666
666
  readonly name = "FrameHeaderSanitySensor";
667
667
  readonly order: number;
668
- supports(input: SensorInput): boolean;
668
+ supports(input: SensorInput): Promise<SensorDecision>;
669
669
  run(input: SensorInput): Promise<SensorDecision>;
670
670
  private bufferEqual;
671
671
  }
@@ -674,14 +674,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
674
674
  readonly name = "HeaderTLVLimitSensor";
675
675
  readonly order: number;
676
676
  private readonly MAX_TLVS;
677
- supports(input: SensorInput): boolean;
677
+ supports(input: SensorInput): Promise<SensorDecision>;
678
678
  run(input: SensorInput): Promise<SensorDecision>;
679
679
  }
680
680
 
681
681
  declare class IntentAllowlistSensor implements AxisSensor {
682
682
  readonly name = "IntentAllowlistSensor";
683
683
  readonly order: number;
684
- supports(input: SensorInput): boolean;
684
+ supports(input: SensorInput): Promise<SensorDecision>;
685
685
  run(input: SensorInput): Promise<SensorDecision>;
686
686
  }
687
687
 
@@ -690,7 +690,7 @@ declare class IntentRegistrySensor implements AxisSensor {
690
690
  readonly name = "IntentRegistrySensor";
691
691
  readonly order: number;
692
692
  constructor(router: IntentRouter);
693
- supports(input: SensorInput): boolean;
693
+ supports(): Promise<SensorDecision>;
694
694
  run(input: SensorInput): Promise<SensorDecision>;
695
695
  }
696
696
 
@@ -700,14 +700,14 @@ declare class LawEvaluationSensor implements AxisSensor {
700
700
  readonly name = "LawEvaluationSensor";
701
701
  readonly order: number;
702
702
  constructor(options?: LawEvaluationSensorOptions);
703
- supports(input: SensorInput): boolean;
703
+ supports(input: SensorInput): Promise<SensorDecision>;
704
704
  run(input: SensorInput): Promise<SensorDecision>;
705
705
  }
706
706
 
707
707
  declare class ProofPresenceSensor implements AxisSensor {
708
708
  readonly name = "ProofPresenceSensor";
709
709
  readonly order: number;
710
- supports(input: ProofPresenceInput): boolean;
710
+ supports(input: ProofPresenceInput): Promise<SensorDecision>;
711
711
  run(input: ProofPresenceInput): Promise<SensorDecision>;
712
712
  }
713
713
 
@@ -735,7 +735,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
735
735
  declare class ReceiptPolicySensor implements AxisSensor {
736
736
  readonly name = "ReceiptPolicySensor";
737
737
  readonly order: number;
738
- supports(): boolean;
738
+ supports(): Promise<SensorDecision>;
739
739
  run(): Promise<SensorDecision>;
740
740
  }
741
741
 
@@ -759,7 +759,7 @@ declare class RiskGateSensor implements AxisSensor {
759
759
  declare class SchemaValidationSensor implements AxisSensor {
760
760
  readonly name = "SchemaValidationSensor";
761
761
  readonly order: number;
762
- supports(input: any): boolean;
762
+ supports(input: any): Promise<SensorDecision>;
763
763
  run(input: any): Promise<{
764
764
  action: 'ALLOW';
765
765
  } | {
@@ -772,7 +772,7 @@ declare class SchemaValidationSensor implements AxisSensor {
772
772
  declare class StreamScopeSensor implements AxisSensor {
773
773
  readonly name = "StreamScopeSensor";
774
774
  readonly order: number;
775
- supports(): boolean;
775
+ supports(): Promise<SensorDecision>;
776
776
  run(): Promise<SensorDecision>;
777
777
  }
778
778
 
@@ -782,7 +782,7 @@ interface TickAuthCapsuleRef {
782
782
  intent?: string;
783
783
  mode?: string;
784
784
  verification?: {
785
- status: 'approved' | 'denied' | 'expired' | 'replay_rejected' | 'consumed' | 'revoked';
785
+ status: "approved" | "denied" | "expired" | "replay_rejected" | "consumed" | "revoked";
786
786
  reason?: string;
787
787
  };
788
788
  scope?: string[];
@@ -802,14 +802,14 @@ declare class TickAuthSensor implements AxisSensor {
802
802
  private readonly matchIntent;
803
803
  private readonly acceptTypes;
804
804
  constructor(options?: TickAuthSensorOptions);
805
- supports(input: SensorInput): boolean;
805
+ supports(input: SensorInput): Promise<SensorDecision>;
806
806
  run(input: SensorInput): Promise<SensorDecision>;
807
807
  }
808
808
 
809
809
  declare class TLVParseSensor implements AxisSensor {
810
810
  readonly name = "TLVParseSensor";
811
811
  readonly order: number;
812
- supports(input: SensorInput): boolean;
812
+ supports(input: SensorInput): Promise<SensorDecision>;
813
813
  run(input: SensorInput): Promise<SensorDecision>;
814
814
  private validateCanonicalTLV;
815
815
  }
@@ -824,7 +824,7 @@ declare class TpsSensor implements AxisSensor {
824
824
  private readonly maxDriftMs;
825
825
  private readonly resolver;
826
826
  constructor(options?: TpsSensorOptions);
827
- supports(input: SensorInput): boolean;
827
+ supports(input: SensorInput): Promise<SensorDecision>;
828
828
  run(input: SensorInput): Promise<SensorDecision>;
829
829
  }
830
830
 
@@ -832,7 +832,7 @@ declare class VarintHardeningSensor implements AxisSensor {
832
832
  readonly name = "VarintHardeningSensor";
833
833
  readonly order: number;
834
834
  private readonly MAX_VARINT_BYTES;
835
- supports(input: SensorInput): boolean;
835
+ supports(input: SensorInput): Promise<SensorDecision>;
836
836
  run(input: SensorInput): Promise<SensorDecision>;
837
837
  }
838
838
 
@@ -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
 
@@ -602,14 +602,14 @@ interface RiskEvaluation {
602
602
  declare class AccessProfileResolverSensor implements AxisSensor {
603
603
  readonly name = "AccessProfileResolverSensor";
604
604
  readonly order: number;
605
- supports(): boolean;
605
+ supports(input: SensorInput): Promise<SensorDecision>;
606
606
  run(input: SensorInput): Promise<SensorDecision>;
607
607
  }
608
608
 
609
609
  declare class BodyBudgetSensor implements AxisSensor {
610
610
  readonly name = "BodyBudgetSensor";
611
611
  readonly order: number;
612
- supports(input: SensorInput): boolean;
612
+ supports(input: SensorInput): Promise<SensorDecision>;
613
613
  run(input: SensorInput): Promise<SensorDecision>;
614
614
  }
615
615
 
@@ -617,7 +617,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
617
617
  private readonly logger;
618
618
  readonly name = "CapabilityEnforcementSensor";
619
619
  readonly order: number;
620
- supports(input: SensorInput): boolean;
620
+ supports(input: SensorInput): Promise<SensorDecision>;
621
621
  run(input: SensorInput): Promise<SensorDecision>;
622
622
  private getRequiredCapabilities;
623
623
  }
@@ -625,7 +625,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
625
625
  declare class ChunkHashSensor implements AxisSensor {
626
626
  readonly name = "ChunkHashSensor";
627
627
  readonly order: number;
628
- supports(input: SensorInput): boolean;
628
+ supports(input: SensorInput): Promise<SensorDecision>;
629
629
  run(input: SensorInput): Promise<SensorDecision>;
630
630
  }
631
631
 
@@ -645,7 +645,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
645
645
  private readonly logger;
646
646
  readonly name = "ExecutionTimeoutSensor";
647
647
  readonly order: number;
648
- supports(input: SensorInput): boolean;
648
+ supports(): Promise<SensorDecision>;
649
649
  run(input: SensorInput): Promise<SensorDecision>;
650
650
  static isExpired(ctx: {
651
651
  deadline?: number;
@@ -658,14 +658,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
658
658
  declare class FrameBudgetSensor implements AxisSensor {
659
659
  readonly name = "FrameBudgetSensor";
660
660
  readonly order: number;
661
- supports(input: SensorInput): boolean;
661
+ supports(input: SensorInput): Promise<SensorDecision>;
662
662
  run(input: SensorInput): Promise<SensorDecision>;
663
663
  }
664
664
 
665
665
  declare class FrameHeaderSanitySensor implements AxisSensor {
666
666
  readonly name = "FrameHeaderSanitySensor";
667
667
  readonly order: number;
668
- supports(input: SensorInput): boolean;
668
+ supports(input: SensorInput): Promise<SensorDecision>;
669
669
  run(input: SensorInput): Promise<SensorDecision>;
670
670
  private bufferEqual;
671
671
  }
@@ -674,14 +674,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
674
674
  readonly name = "HeaderTLVLimitSensor";
675
675
  readonly order: number;
676
676
  private readonly MAX_TLVS;
677
- supports(input: SensorInput): boolean;
677
+ supports(input: SensorInput): Promise<SensorDecision>;
678
678
  run(input: SensorInput): Promise<SensorDecision>;
679
679
  }
680
680
 
681
681
  declare class IntentAllowlistSensor implements AxisSensor {
682
682
  readonly name = "IntentAllowlistSensor";
683
683
  readonly order: number;
684
- supports(input: SensorInput): boolean;
684
+ supports(input: SensorInput): Promise<SensorDecision>;
685
685
  run(input: SensorInput): Promise<SensorDecision>;
686
686
  }
687
687
 
@@ -690,7 +690,7 @@ declare class IntentRegistrySensor implements AxisSensor {
690
690
  readonly name = "IntentRegistrySensor";
691
691
  readonly order: number;
692
692
  constructor(router: IntentRouter);
693
- supports(input: SensorInput): boolean;
693
+ supports(): Promise<SensorDecision>;
694
694
  run(input: SensorInput): Promise<SensorDecision>;
695
695
  }
696
696
 
@@ -700,14 +700,14 @@ declare class LawEvaluationSensor implements AxisSensor {
700
700
  readonly name = "LawEvaluationSensor";
701
701
  readonly order: number;
702
702
  constructor(options?: LawEvaluationSensorOptions);
703
- supports(input: SensorInput): boolean;
703
+ supports(input: SensorInput): Promise<SensorDecision>;
704
704
  run(input: SensorInput): Promise<SensorDecision>;
705
705
  }
706
706
 
707
707
  declare class ProofPresenceSensor implements AxisSensor {
708
708
  readonly name = "ProofPresenceSensor";
709
709
  readonly order: number;
710
- supports(input: ProofPresenceInput): boolean;
710
+ supports(input: ProofPresenceInput): Promise<SensorDecision>;
711
711
  run(input: ProofPresenceInput): Promise<SensorDecision>;
712
712
  }
713
713
 
@@ -735,7 +735,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
735
735
  declare class ReceiptPolicySensor implements AxisSensor {
736
736
  readonly name = "ReceiptPolicySensor";
737
737
  readonly order: number;
738
- supports(): boolean;
738
+ supports(): Promise<SensorDecision>;
739
739
  run(): Promise<SensorDecision>;
740
740
  }
741
741
 
@@ -759,7 +759,7 @@ declare class RiskGateSensor implements AxisSensor {
759
759
  declare class SchemaValidationSensor implements AxisSensor {
760
760
  readonly name = "SchemaValidationSensor";
761
761
  readonly order: number;
762
- supports(input: any): boolean;
762
+ supports(input: any): Promise<SensorDecision>;
763
763
  run(input: any): Promise<{
764
764
  action: 'ALLOW';
765
765
  } | {
@@ -772,7 +772,7 @@ declare class SchemaValidationSensor implements AxisSensor {
772
772
  declare class StreamScopeSensor implements AxisSensor {
773
773
  readonly name = "StreamScopeSensor";
774
774
  readonly order: number;
775
- supports(): boolean;
775
+ supports(): Promise<SensorDecision>;
776
776
  run(): Promise<SensorDecision>;
777
777
  }
778
778
 
@@ -782,7 +782,7 @@ interface TickAuthCapsuleRef {
782
782
  intent?: string;
783
783
  mode?: string;
784
784
  verification?: {
785
- status: 'approved' | 'denied' | 'expired' | 'replay_rejected' | 'consumed' | 'revoked';
785
+ status: "approved" | "denied" | "expired" | "replay_rejected" | "consumed" | "revoked";
786
786
  reason?: string;
787
787
  };
788
788
  scope?: string[];
@@ -802,14 +802,14 @@ declare class TickAuthSensor implements AxisSensor {
802
802
  private readonly matchIntent;
803
803
  private readonly acceptTypes;
804
804
  constructor(options?: TickAuthSensorOptions);
805
- supports(input: SensorInput): boolean;
805
+ supports(input: SensorInput): Promise<SensorDecision>;
806
806
  run(input: SensorInput): Promise<SensorDecision>;
807
807
  }
808
808
 
809
809
  declare class TLVParseSensor implements AxisSensor {
810
810
  readonly name = "TLVParseSensor";
811
811
  readonly order: number;
812
- supports(input: SensorInput): boolean;
812
+ supports(input: SensorInput): Promise<SensorDecision>;
813
813
  run(input: SensorInput): Promise<SensorDecision>;
814
814
  private validateCanonicalTLV;
815
815
  }
@@ -824,7 +824,7 @@ declare class TpsSensor implements AxisSensor {
824
824
  private readonly maxDriftMs;
825
825
  private readonly resolver;
826
826
  constructor(options?: TpsSensorOptions);
827
- supports(input: SensorInput): boolean;
827
+ supports(input: SensorInput): Promise<SensorDecision>;
828
828
  run(input: SensorInput): Promise<SensorDecision>;
829
829
  }
830
830
 
@@ -832,7 +832,7 @@ declare class VarintHardeningSensor implements AxisSensor {
832
832
  readonly name = "VarintHardeningSensor";
833
833
  readonly order: number;
834
834
  private readonly MAX_VARINT_BYTES;
835
- supports(input: SensorInput): boolean;
835
+ supports(input: SensorInput): Promise<SensorDecision>;
836
836
  run(input: SensorInput): Promise<SensorDecision>;
837
837
  }
838
838
 
@@ -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-BLK3AtRm.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-BLK3AtRm.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-BAoKsEOu.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-BAoKsEOu.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';