@nextera.one/axis-server-sdk 2.3.6 → 2.3.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.
- package/dist/{axis-sensor-DMW4rfRg.d.mts → axis-sensor-BLUemDiZ.d.mts} +1 -1
- package/dist/{axis-sensor-DMW4rfRg.d.ts → axis-sensor-BLUemDiZ.d.ts} +1 -1
- package/dist/cce/index.d.mts +10 -10
- package/dist/cce/index.d.ts +10 -10
- package/dist/cce/index.js +42 -42
- package/dist/cce/index.js.map +1 -1
- package/dist/cce/index.mjs +42 -42
- package/dist/cce/index.mjs.map +1 -1
- package/dist/{cce-pipeline-CBt56guN.d.mts → cce-pipeline-By7ps8_F.d.mts} +1 -1
- package/dist/{cce-pipeline-BJ-F1isr.d.ts → cce-pipeline-CVeMpuKr.d.ts} +1 -1
- package/dist/{index-CffTWMtI.d.mts → index-Bdahn8mq.d.mts} +21 -21
- package/dist/{index-DiuKGnQw.d.mts → index-CXewlhg-.d.mts} +1 -1
- package/dist/{index-DMjzq8YO.d.ts → index-ChuwP1RU.d.ts} +1 -1
- package/dist/{index-CqAU2zlr.d.ts → index-DRnTsYrk.d.ts} +21 -21
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +39 -92
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -92
- package/dist/index.mjs.map +1 -1
- package/dist/needle/index.d.mts +2 -2
- package/dist/needle/index.d.ts +2 -2
- package/dist/needle/index.js.map +1 -1
- package/dist/needle/index.mjs.map +1 -1
- package/dist/sensors/index.d.mts +3 -3
- package/dist/sensors/index.d.ts +3 -3
- package/dist/sensors/index.js +39 -92
- package/dist/sensors/index.js.map +1 -1
- package/dist/sensors/index.mjs +39 -92
- package/dist/sensors/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-
|
|
1
|
+
import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-BLUemDiZ.mjs';
|
|
2
2
|
import * as z from 'zod';
|
|
3
3
|
import { AxisFrame } from '@nextera.one/axis-protocol';
|
|
4
|
-
import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-
|
|
4
|
+
import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-By7ps8_F.mjs';
|
|
5
5
|
|
|
6
6
|
type AxisExecutionMode = 'strict' | 'parallel' | 'best_effort' | 'atomic';
|
|
7
7
|
type AxisObserverEvent = 'intent.received' | 'intent.completed' | 'intent.failed' | 'chain.received' | 'chain.admitted' | 'chain.completed' | 'chain.failed' | 'chain.partial' | 'step.started' | 'step.completed' | 'step.failed' | 'step.blocked' | 'step.skipped' | 'signature.verified' | 'decryption.succeeded' | 'sensor.passed' | 'sensor.failed' | 'handler.completed' | 'proof.recorded';
|
|
@@ -654,14 +654,14 @@ interface RiskEvaluation {
|
|
|
654
654
|
declare class AccessProfileResolverSensor implements AxisSensor {
|
|
655
655
|
readonly name = "AccessProfileResolverSensor";
|
|
656
656
|
readonly order: number;
|
|
657
|
-
supports(input: SensorInput):
|
|
657
|
+
supports(input: SensorInput): boolean;
|
|
658
658
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
declare class BodyBudgetSensor implements AxisSensor {
|
|
662
662
|
readonly name = "BodyBudgetSensor";
|
|
663
663
|
readonly order: number;
|
|
664
|
-
supports(input: SensorInput):
|
|
664
|
+
supports(input: SensorInput): boolean;
|
|
665
665
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
666
666
|
}
|
|
667
667
|
|
|
@@ -669,7 +669,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
|
|
|
669
669
|
private readonly logger;
|
|
670
670
|
readonly name = "CapabilityEnforcementSensor";
|
|
671
671
|
readonly order: number;
|
|
672
|
-
supports(input: SensorInput):
|
|
672
|
+
supports(input: SensorInput): boolean;
|
|
673
673
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
674
674
|
private getRequiredCapabilities;
|
|
675
675
|
}
|
|
@@ -677,7 +677,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
|
|
|
677
677
|
declare class ChunkHashSensor implements AxisSensor {
|
|
678
678
|
readonly name = "ChunkHashSensor";
|
|
679
679
|
readonly order: number;
|
|
680
|
-
supports(input: SensorInput):
|
|
680
|
+
supports(input: SensorInput): boolean;
|
|
681
681
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
682
682
|
}
|
|
683
683
|
|
|
@@ -697,7 +697,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
|
|
|
697
697
|
private readonly logger;
|
|
698
698
|
readonly name = "ExecutionTimeoutSensor";
|
|
699
699
|
readonly order: number;
|
|
700
|
-
supports():
|
|
700
|
+
supports(): boolean;
|
|
701
701
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
702
702
|
static isExpired(ctx: {
|
|
703
703
|
deadline?: number;
|
|
@@ -710,14 +710,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
|
|
|
710
710
|
declare class FrameBudgetSensor implements AxisSensor {
|
|
711
711
|
readonly name = "FrameBudgetSensor";
|
|
712
712
|
readonly order: number;
|
|
713
|
-
supports(input: SensorInput):
|
|
713
|
+
supports(input: SensorInput): boolean;
|
|
714
714
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
717
|
declare class FrameHeaderSanitySensor implements AxisSensor {
|
|
718
718
|
readonly name = "FrameHeaderSanitySensor";
|
|
719
719
|
readonly order: number;
|
|
720
|
-
supports(input: SensorInput):
|
|
720
|
+
supports(input: SensorInput): boolean;
|
|
721
721
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
722
722
|
private bufferEqual;
|
|
723
723
|
}
|
|
@@ -726,14 +726,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
|
|
|
726
726
|
readonly name = "HeaderTLVLimitSensor";
|
|
727
727
|
readonly order: number;
|
|
728
728
|
private readonly MAX_TLVS;
|
|
729
|
-
supports(input: SensorInput):
|
|
729
|
+
supports(input: SensorInput): boolean;
|
|
730
730
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
declare class IntentAllowlistSensor implements AxisSensor {
|
|
734
734
|
readonly name = "IntentAllowlistSensor";
|
|
735
735
|
readonly order: number;
|
|
736
|
-
supports(input: SensorInput):
|
|
736
|
+
supports(input: SensorInput): boolean;
|
|
737
737
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
738
738
|
}
|
|
739
739
|
|
|
@@ -742,7 +742,7 @@ declare class IntentRegistrySensor implements AxisSensor {
|
|
|
742
742
|
readonly name = "IntentRegistrySensor";
|
|
743
743
|
readonly order: number;
|
|
744
744
|
constructor(router: IntentRouter);
|
|
745
|
-
supports():
|
|
745
|
+
supports(): boolean;
|
|
746
746
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
747
747
|
}
|
|
748
748
|
|
|
@@ -752,14 +752,14 @@ declare class LawEvaluationSensor implements AxisSensor {
|
|
|
752
752
|
readonly name = "LawEvaluationSensor";
|
|
753
753
|
readonly order: number;
|
|
754
754
|
constructor(options?: LawEvaluationSensorOptions);
|
|
755
|
-
supports(input: SensorInput):
|
|
755
|
+
supports(input: SensorInput): boolean;
|
|
756
756
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
757
757
|
}
|
|
758
758
|
|
|
759
759
|
declare class ProofPresenceSensor implements AxisSensor {
|
|
760
760
|
readonly name = "ProofPresenceSensor";
|
|
761
761
|
readonly order: number;
|
|
762
|
-
supports(input: ProofPresenceInput):
|
|
762
|
+
supports(input: ProofPresenceInput): boolean;
|
|
763
763
|
run(input: ProofPresenceInput): Promise<SensorDecision>;
|
|
764
764
|
}
|
|
765
765
|
|
|
@@ -787,7 +787,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
|
|
|
787
787
|
declare class ReceiptPolicySensor implements AxisSensor {
|
|
788
788
|
readonly name = "ReceiptPolicySensor";
|
|
789
789
|
readonly order: number;
|
|
790
|
-
supports():
|
|
790
|
+
supports(): boolean;
|
|
791
791
|
run(): Promise<SensorDecision>;
|
|
792
792
|
}
|
|
793
793
|
|
|
@@ -811,7 +811,7 @@ declare class RiskGateSensor implements AxisSensor {
|
|
|
811
811
|
declare class SchemaValidationSensor implements AxisSensor {
|
|
812
812
|
readonly name = "SchemaValidationSensor";
|
|
813
813
|
readonly order: number;
|
|
814
|
-
supports(input: any):
|
|
814
|
+
supports(input: any): boolean;
|
|
815
815
|
run(input: any): Promise<{
|
|
816
816
|
action: 'ALLOW';
|
|
817
817
|
} | {
|
|
@@ -824,7 +824,7 @@ declare class SchemaValidationSensor implements AxisSensor {
|
|
|
824
824
|
declare class StreamScopeSensor implements AxisSensor {
|
|
825
825
|
readonly name = "StreamScopeSensor";
|
|
826
826
|
readonly order: number;
|
|
827
|
-
supports():
|
|
827
|
+
supports(): boolean;
|
|
828
828
|
run(): Promise<SensorDecision>;
|
|
829
829
|
}
|
|
830
830
|
|
|
@@ -854,14 +854,14 @@ declare class TickAuthSensor implements AxisSensor {
|
|
|
854
854
|
private readonly matchIntent;
|
|
855
855
|
private readonly acceptTypes;
|
|
856
856
|
constructor(options?: TickAuthSensorOptions);
|
|
857
|
-
supports(input: SensorInput):
|
|
857
|
+
supports(input: SensorInput): boolean;
|
|
858
858
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
declare class TLVParseSensor implements AxisSensor {
|
|
862
862
|
readonly name = "TLVParseSensor";
|
|
863
863
|
readonly order: number;
|
|
864
|
-
supports(input: SensorInput):
|
|
864
|
+
supports(input: SensorInput): boolean;
|
|
865
865
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
866
866
|
private validateCanonicalTLV;
|
|
867
867
|
}
|
|
@@ -876,7 +876,7 @@ declare class TpsSensor implements AxisSensor {
|
|
|
876
876
|
private readonly maxDriftMs;
|
|
877
877
|
private readonly resolver;
|
|
878
878
|
constructor(options?: TpsSensorOptions);
|
|
879
|
-
supports(input: SensorInput):
|
|
879
|
+
supports(input: SensorInput): boolean;
|
|
880
880
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
881
881
|
}
|
|
882
882
|
|
|
@@ -884,7 +884,7 @@ declare class VarintHardeningSensor implements AxisSensor {
|
|
|
884
884
|
readonly name = "VarintHardeningSensor";
|
|
885
885
|
readonly order: number;
|
|
886
886
|
private readonly MAX_VARINT_BYTES;
|
|
887
|
-
supports(input: SensorInput):
|
|
887
|
+
supports(input: SensorInput): boolean;
|
|
888
888
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
889
889
|
}
|
|
890
890
|
|
|
@@ -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-
|
|
3
|
+
import { A as AxisSensor } from './axis-sensor-BLUemDiZ.mjs';
|
|
4
4
|
|
|
5
5
|
interface ObservationStage {
|
|
6
6
|
name: string;
|
|
@@ -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-
|
|
3
|
+
import { A as AxisSensor } from './axis-sensor-BLUemDiZ.js';
|
|
4
4
|
|
|
5
5
|
interface ObservationStage {
|
|
6
6
|
name: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-
|
|
1
|
+
import { A as AxisSensor, m as AxisPreSensor, l as AxisPostSensor, S as SensorInput, a as SensorDecision } from './axis-sensor-BLUemDiZ.js';
|
|
2
2
|
import * as z from 'zod';
|
|
3
3
|
import { AxisFrame } from '@nextera.one/axis-protocol';
|
|
4
|
-
import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-
|
|
4
|
+
import { x as CcePipelineConfig, s as CceHandler, b as CceRequestEnvelope, y as CcePipelineResult } from './cce-pipeline-CVeMpuKr.js';
|
|
5
5
|
|
|
6
6
|
type AxisExecutionMode = 'strict' | 'parallel' | 'best_effort' | 'atomic';
|
|
7
7
|
type AxisObserverEvent = 'intent.received' | 'intent.completed' | 'intent.failed' | 'chain.received' | 'chain.admitted' | 'chain.completed' | 'chain.failed' | 'chain.partial' | 'step.started' | 'step.completed' | 'step.failed' | 'step.blocked' | 'step.skipped' | 'signature.verified' | 'decryption.succeeded' | 'sensor.passed' | 'sensor.failed' | 'handler.completed' | 'proof.recorded';
|
|
@@ -654,14 +654,14 @@ interface RiskEvaluation {
|
|
|
654
654
|
declare class AccessProfileResolverSensor implements AxisSensor {
|
|
655
655
|
readonly name = "AccessProfileResolverSensor";
|
|
656
656
|
readonly order: number;
|
|
657
|
-
supports(input: SensorInput):
|
|
657
|
+
supports(input: SensorInput): boolean;
|
|
658
658
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
declare class BodyBudgetSensor implements AxisSensor {
|
|
662
662
|
readonly name = "BodyBudgetSensor";
|
|
663
663
|
readonly order: number;
|
|
664
|
-
supports(input: SensorInput):
|
|
664
|
+
supports(input: SensorInput): boolean;
|
|
665
665
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
666
666
|
}
|
|
667
667
|
|
|
@@ -669,7 +669,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
|
|
|
669
669
|
private readonly logger;
|
|
670
670
|
readonly name = "CapabilityEnforcementSensor";
|
|
671
671
|
readonly order: number;
|
|
672
|
-
supports(input: SensorInput):
|
|
672
|
+
supports(input: SensorInput): boolean;
|
|
673
673
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
674
674
|
private getRequiredCapabilities;
|
|
675
675
|
}
|
|
@@ -677,7 +677,7 @@ declare class CapabilityEnforcementSensor implements AxisSensor {
|
|
|
677
677
|
declare class ChunkHashSensor implements AxisSensor {
|
|
678
678
|
readonly name = "ChunkHashSensor";
|
|
679
679
|
readonly order: number;
|
|
680
|
-
supports(input: SensorInput):
|
|
680
|
+
supports(input: SensorInput): boolean;
|
|
681
681
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
682
682
|
}
|
|
683
683
|
|
|
@@ -697,7 +697,7 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
|
|
|
697
697
|
private readonly logger;
|
|
698
698
|
readonly name = "ExecutionTimeoutSensor";
|
|
699
699
|
readonly order: number;
|
|
700
|
-
supports():
|
|
700
|
+
supports(): boolean;
|
|
701
701
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
702
702
|
static isExpired(ctx: {
|
|
703
703
|
deadline?: number;
|
|
@@ -710,14 +710,14 @@ declare class ExecutionTimeoutSensor implements AxisSensor {
|
|
|
710
710
|
declare class FrameBudgetSensor implements AxisSensor {
|
|
711
711
|
readonly name = "FrameBudgetSensor";
|
|
712
712
|
readonly order: number;
|
|
713
|
-
supports(input: SensorInput):
|
|
713
|
+
supports(input: SensorInput): boolean;
|
|
714
714
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
717
|
declare class FrameHeaderSanitySensor implements AxisSensor {
|
|
718
718
|
readonly name = "FrameHeaderSanitySensor";
|
|
719
719
|
readonly order: number;
|
|
720
|
-
supports(input: SensorInput):
|
|
720
|
+
supports(input: SensorInput): boolean;
|
|
721
721
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
722
722
|
private bufferEqual;
|
|
723
723
|
}
|
|
@@ -726,14 +726,14 @@ declare class HeaderTLVLimitSensor implements AxisSensor {
|
|
|
726
726
|
readonly name = "HeaderTLVLimitSensor";
|
|
727
727
|
readonly order: number;
|
|
728
728
|
private readonly MAX_TLVS;
|
|
729
|
-
supports(input: SensorInput):
|
|
729
|
+
supports(input: SensorInput): boolean;
|
|
730
730
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
declare class IntentAllowlistSensor implements AxisSensor {
|
|
734
734
|
readonly name = "IntentAllowlistSensor";
|
|
735
735
|
readonly order: number;
|
|
736
|
-
supports(input: SensorInput):
|
|
736
|
+
supports(input: SensorInput): boolean;
|
|
737
737
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
738
738
|
}
|
|
739
739
|
|
|
@@ -742,7 +742,7 @@ declare class IntentRegistrySensor implements AxisSensor {
|
|
|
742
742
|
readonly name = "IntentRegistrySensor";
|
|
743
743
|
readonly order: number;
|
|
744
744
|
constructor(router: IntentRouter);
|
|
745
|
-
supports():
|
|
745
|
+
supports(): boolean;
|
|
746
746
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
747
747
|
}
|
|
748
748
|
|
|
@@ -752,14 +752,14 @@ declare class LawEvaluationSensor implements AxisSensor {
|
|
|
752
752
|
readonly name = "LawEvaluationSensor";
|
|
753
753
|
readonly order: number;
|
|
754
754
|
constructor(options?: LawEvaluationSensorOptions);
|
|
755
|
-
supports(input: SensorInput):
|
|
755
|
+
supports(input: SensorInput): boolean;
|
|
756
756
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
757
757
|
}
|
|
758
758
|
|
|
759
759
|
declare class ProofPresenceSensor implements AxisSensor {
|
|
760
760
|
readonly name = "ProofPresenceSensor";
|
|
761
761
|
readonly order: number;
|
|
762
|
-
supports(input: ProofPresenceInput):
|
|
762
|
+
supports(input: ProofPresenceInput): boolean;
|
|
763
763
|
run(input: ProofPresenceInput): Promise<SensorDecision>;
|
|
764
764
|
}
|
|
765
765
|
|
|
@@ -787,7 +787,7 @@ declare class ProtocolStrictSensor implements AxisSensor {
|
|
|
787
787
|
declare class ReceiptPolicySensor implements AxisSensor {
|
|
788
788
|
readonly name = "ReceiptPolicySensor";
|
|
789
789
|
readonly order: number;
|
|
790
|
-
supports():
|
|
790
|
+
supports(): boolean;
|
|
791
791
|
run(): Promise<SensorDecision>;
|
|
792
792
|
}
|
|
793
793
|
|
|
@@ -811,7 +811,7 @@ declare class RiskGateSensor implements AxisSensor {
|
|
|
811
811
|
declare class SchemaValidationSensor implements AxisSensor {
|
|
812
812
|
readonly name = "SchemaValidationSensor";
|
|
813
813
|
readonly order: number;
|
|
814
|
-
supports(input: any):
|
|
814
|
+
supports(input: any): boolean;
|
|
815
815
|
run(input: any): Promise<{
|
|
816
816
|
action: 'ALLOW';
|
|
817
817
|
} | {
|
|
@@ -824,7 +824,7 @@ declare class SchemaValidationSensor implements AxisSensor {
|
|
|
824
824
|
declare class StreamScopeSensor implements AxisSensor {
|
|
825
825
|
readonly name = "StreamScopeSensor";
|
|
826
826
|
readonly order: number;
|
|
827
|
-
supports():
|
|
827
|
+
supports(): boolean;
|
|
828
828
|
run(): Promise<SensorDecision>;
|
|
829
829
|
}
|
|
830
830
|
|
|
@@ -854,14 +854,14 @@ declare class TickAuthSensor implements AxisSensor {
|
|
|
854
854
|
private readonly matchIntent;
|
|
855
855
|
private readonly acceptTypes;
|
|
856
856
|
constructor(options?: TickAuthSensorOptions);
|
|
857
|
-
supports(input: SensorInput):
|
|
857
|
+
supports(input: SensorInput): boolean;
|
|
858
858
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
declare class TLVParseSensor implements AxisSensor {
|
|
862
862
|
readonly name = "TLVParseSensor";
|
|
863
863
|
readonly order: number;
|
|
864
|
-
supports(input: SensorInput):
|
|
864
|
+
supports(input: SensorInput): boolean;
|
|
865
865
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
866
866
|
private validateCanonicalTLV;
|
|
867
867
|
}
|
|
@@ -876,7 +876,7 @@ declare class TpsSensor implements AxisSensor {
|
|
|
876
876
|
private readonly maxDriftMs;
|
|
877
877
|
private readonly resolver;
|
|
878
878
|
constructor(options?: TpsSensorOptions);
|
|
879
|
-
supports(input: SensorInput):
|
|
879
|
+
supports(input: SensorInput): boolean;
|
|
880
880
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
881
881
|
}
|
|
882
882
|
|
|
@@ -884,7 +884,7 @@ declare class VarintHardeningSensor implements AxisSensor {
|
|
|
884
884
|
readonly name = "VarintHardeningSensor";
|
|
885
885
|
readonly order: number;
|
|
886
886
|
private readonly MAX_VARINT_BYTES;
|
|
887
|
-
supports(input: SensorInput):
|
|
887
|
+
supports(input: SensorInput): boolean;
|
|
888
888
|
run(input: SensorInput): Promise<SensorDecision>;
|
|
889
889
|
}
|
|
890
890
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, R as RequiredProofKind, 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-
|
|
2
|
-
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_AUTHORIZED_KEY, k as AXIS_META_KEY, l as AXIS_PUBLIC_KEY, m as AXIS_RATE_LIMIT_KEY, n as AccessProfileResolverSensor, o as Axis, p as AxisAnonymous, q as AxisAuthorized, r as AxisChainEncryption, s as AxisChainRequest, t as AxisChainStatus, u as AxisChainStepResult, v as AxisChainStepStatus, w as AxisEffect, x as AxisExecutionMode, y as AxisIntentEnvelope, z as AxisIntentObserver, B as AxisIntentSensorBinding, D as AxisIntentSensorBindingOptions, E as AxisIntentSensorRef, F as AxisIntentSensorWhen, G as AxisKeyExchangeRef, H as AxisLawArticleSummary, J as AxisLawDecision, K as AxisLawEvaluationContext, L as AxisLawEvaluationResult, M as AxisLawEvaluator, N as AxisObserverBinding, P as AxisObserverBindingOptions, Q as AxisObserverContext, U as AxisObserverDefinition, V as AxisObserverEvent, W as AxisObserverRef, X as AxisObserverRegistration, Y as AxisPublic, Z as AxisRateLimit, _ as AxisRateLimitConfig, $ as BodyBudgetSensor, a0 as CAPSULE_POLICY_METADATA_KEY, a1 as CONTRACT_METADATA_KEY, a2 as CapabilityEnforcementSensor, a3 as Capsule, a4 as CapsulePolicy, a5 as CapsulePolicyOptions, a6 as CapsuleScopeMode, a7 as ChunkHashSensor, a8 as Contract, a9 as DEFAULT_CONTRACTS, aa as EntropySensor, ab as ExecutionContract, ac as ExecutionTimeoutSensor, ad as FALLBACK_CONTRACT, ae as FrameBudgetSensor, af as FrameHeaderSanitySensor, ag as HeaderTLVLimitSensor, ah as INTENT_METADATA_KEY, ai as INTENT_ROUTES_KEY, aj as Intent, ak as IntentAllowlistSensor, al as IntentKind, am as IntentOptions, an as IntentRegistrySensor, ao as IntentRoute, ap as LawEvaluationSensor, aq as LawEvaluationSensorOptions, ar as OBSERVER_BINDINGS_KEY, as as OBSERVER_METADATA_KEY, at as Observer, au as ObserverRegistry, av as ProofPresenceSensor, aw as ProtocolStrictSensor, ax as REQUIRED_PROOF_METADATA_KEY, ay as ReceiptPolicySensor, az as RegisteredChainConfig, aA as RequiredProof, aB as RiskDecision, aC as RiskEvaluation, aD as RiskGateSensor, aE as RiskGateSensorOptions, aF as RiskSignal, aG as RiskSignalCollector, aH as SENSITIVITY_METADATA_KEY, aI as SchemaValidationSensor, aJ as Sensitivity, aK as StreamScopeSensor, aL as TLVParseSensor, aM as TLV_FIELDS_KEY, aN as TLV_VALIDATORS_KEY, aO as TickAuthCapsuleRef, aP as TickAuthSensor, aQ as TickAuthSensorOptions, aR as TickAuthVerifier, aS as TlvEnum, aT as TlvField, aU as TlvFieldKind, aV as TlvFieldMeta, aW as TlvFieldOptions, aX as TlvMinLen, aY as TlvRange, aZ as TlvUtf8Pattern, a_ as TlvValidate, a$ as TlvValidatorMeta, b0 as TpsSensor, b1 as TpsSensorOptions, b2 as VarintHardeningSensor, b3 as Witness, b4 as buildAxisLawEvaluationContext, b5 as toIntentSensorBinding, b6 as toObserverBinding } from './index-
|
|
1
|
+
import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, R as RequiredProofKind, 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-Bdahn8mq.mjs';
|
|
2
|
+
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_AUTHORIZED_KEY, k as AXIS_META_KEY, l as AXIS_PUBLIC_KEY, m as AXIS_RATE_LIMIT_KEY, n as AccessProfileResolverSensor, o as Axis, p as AxisAnonymous, q as AxisAuthorized, r as AxisChainEncryption, s as AxisChainRequest, t as AxisChainStatus, u as AxisChainStepResult, v as AxisChainStepStatus, w as AxisEffect, x as AxisExecutionMode, y as AxisIntentEnvelope, z as AxisIntentObserver, B as AxisIntentSensorBinding, D as AxisIntentSensorBindingOptions, E as AxisIntentSensorRef, F as AxisIntentSensorWhen, G as AxisKeyExchangeRef, H as AxisLawArticleSummary, J as AxisLawDecision, K as AxisLawEvaluationContext, L as AxisLawEvaluationResult, M as AxisLawEvaluator, N as AxisObserverBinding, P as AxisObserverBindingOptions, Q as AxisObserverContext, U as AxisObserverDefinition, V as AxisObserverEvent, W as AxisObserverRef, X as AxisObserverRegistration, Y as AxisPublic, Z as AxisRateLimit, _ as AxisRateLimitConfig, $ as BodyBudgetSensor, a0 as CAPSULE_POLICY_METADATA_KEY, a1 as CONTRACT_METADATA_KEY, a2 as CapabilityEnforcementSensor, a3 as Capsule, a4 as CapsulePolicy, a5 as CapsulePolicyOptions, a6 as CapsuleScopeMode, a7 as ChunkHashSensor, a8 as Contract, a9 as DEFAULT_CONTRACTS, aa as EntropySensor, ab as ExecutionContract, ac as ExecutionTimeoutSensor, ad as FALLBACK_CONTRACT, ae as FrameBudgetSensor, af as FrameHeaderSanitySensor, ag as HeaderTLVLimitSensor, ah as INTENT_METADATA_KEY, ai as INTENT_ROUTES_KEY, aj as Intent, ak as IntentAllowlistSensor, al as IntentKind, am as IntentOptions, an as IntentRegistrySensor, ao as IntentRoute, ap as LawEvaluationSensor, aq as LawEvaluationSensorOptions, ar as OBSERVER_BINDINGS_KEY, as as OBSERVER_METADATA_KEY, at as Observer, au as ObserverRegistry, av as ProofPresenceSensor, aw as ProtocolStrictSensor, ax as REQUIRED_PROOF_METADATA_KEY, ay as ReceiptPolicySensor, az as RegisteredChainConfig, aA as RequiredProof, aB as RiskDecision, aC as RiskEvaluation, aD as RiskGateSensor, aE as RiskGateSensorOptions, aF as RiskSignal, aG as RiskSignalCollector, aH as SENSITIVITY_METADATA_KEY, aI as SchemaValidationSensor, aJ as Sensitivity, aK as StreamScopeSensor, aL as TLVParseSensor, aM as TLV_FIELDS_KEY, aN as TLV_VALIDATORS_KEY, aO as TickAuthCapsuleRef, aP as TickAuthSensor, aQ as TickAuthSensorOptions, aR as TickAuthVerifier, aS as TlvEnum, aT as TlvField, aU as TlvFieldKind, aV as TlvFieldMeta, aW as TlvFieldOptions, aX as TlvMinLen, aY as TlvRange, aZ as TlvUtf8Pattern, a_ as TlvValidate, a$ as TlvValidatorMeta, b0 as TpsSensor, b1 as TpsSensorOptions, b2 as VarintHardeningSensor, b3 as Witness, b4 as buildAxisLawEvaluationContext, b5 as toIntentSensorBinding, b6 as toObserverBinding } from './index-Bdahn8mq.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-
|
|
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-
|
|
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-CXewlhg-.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-CXewlhg-.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-
|
|
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-
|
|
10
|
+
import { S as SensorInput, a as SensorDecision } from './axis-sensor-BLUemDiZ.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-BLUemDiZ.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-
|
|
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-By7ps8_F.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, R as RequiredProofKind, 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-
|
|
2
|
-
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_AUTHORIZED_KEY, k as AXIS_META_KEY, l as AXIS_PUBLIC_KEY, m as AXIS_RATE_LIMIT_KEY, n as AccessProfileResolverSensor, o as Axis, p as AxisAnonymous, q as AxisAuthorized, r as AxisChainEncryption, s as AxisChainRequest, t as AxisChainStatus, u as AxisChainStepResult, v as AxisChainStepStatus, w as AxisEffect, x as AxisExecutionMode, y as AxisIntentEnvelope, z as AxisIntentObserver, B as AxisIntentSensorBinding, D as AxisIntentSensorBindingOptions, E as AxisIntentSensorRef, F as AxisIntentSensorWhen, G as AxisKeyExchangeRef, H as AxisLawArticleSummary, J as AxisLawDecision, K as AxisLawEvaluationContext, L as AxisLawEvaluationResult, M as AxisLawEvaluator, N as AxisObserverBinding, P as AxisObserverBindingOptions, Q as AxisObserverContext, U as AxisObserverDefinition, V as AxisObserverEvent, W as AxisObserverRef, X as AxisObserverRegistration, Y as AxisPublic, Z as AxisRateLimit, _ as AxisRateLimitConfig, $ as BodyBudgetSensor, a0 as CAPSULE_POLICY_METADATA_KEY, a1 as CONTRACT_METADATA_KEY, a2 as CapabilityEnforcementSensor, a3 as Capsule, a4 as CapsulePolicy, a5 as CapsulePolicyOptions, a6 as CapsuleScopeMode, a7 as ChunkHashSensor, a8 as Contract, a9 as DEFAULT_CONTRACTS, aa as EntropySensor, ab as ExecutionContract, ac as ExecutionTimeoutSensor, ad as FALLBACK_CONTRACT, ae as FrameBudgetSensor, af as FrameHeaderSanitySensor, ag as HeaderTLVLimitSensor, ah as INTENT_METADATA_KEY, ai as INTENT_ROUTES_KEY, aj as Intent, ak as IntentAllowlistSensor, al as IntentKind, am as IntentOptions, an as IntentRegistrySensor, ao as IntentRoute, ap as LawEvaluationSensor, aq as LawEvaluationSensorOptions, ar as OBSERVER_BINDINGS_KEY, as as OBSERVER_METADATA_KEY, at as Observer, au as ObserverRegistry, av as ProofPresenceSensor, aw as ProtocolStrictSensor, ax as REQUIRED_PROOF_METADATA_KEY, ay as ReceiptPolicySensor, az as RegisteredChainConfig, aA as RequiredProof, aB as RiskDecision, aC as RiskEvaluation, aD as RiskGateSensor, aE as RiskGateSensorOptions, aF as RiskSignal, aG as RiskSignalCollector, aH as SENSITIVITY_METADATA_KEY, aI as SchemaValidationSensor, aJ as Sensitivity, aK as StreamScopeSensor, aL as TLVParseSensor, aM as TLV_FIELDS_KEY, aN as TLV_VALIDATORS_KEY, aO as TickAuthCapsuleRef, aP as TickAuthSensor, aQ as TickAuthSensorOptions, aR as TickAuthVerifier, aS as TlvEnum, aT as TlvField, aU as TlvFieldKind, aV as TlvFieldMeta, aW as TlvFieldOptions, aX as TlvMinLen, aY as TlvRange, aZ as TlvUtf8Pattern, a_ as TlvValidate, a$ as TlvValidatorMeta, b0 as TpsSensor, b1 as TpsSensorOptions, b2 as VarintHardeningSensor, b3 as Witness, b4 as buildAxisLawEvaluationContext, b5 as toIntentSensorBinding, b6 as toObserverBinding } from './index-
|
|
1
|
+
import { C as ChainOptions, A as AxisIntentSensorOptions, a as AxisObserverBindingInput, b as AxisIntentSensorBindingInput, R as RequiredProofKind, 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-DRnTsYrk.js';
|
|
2
|
+
export { i as AXIS_ANONYMOUS_KEY, j as AXIS_AUTHORIZED_KEY, k as AXIS_META_KEY, l as AXIS_PUBLIC_KEY, m as AXIS_RATE_LIMIT_KEY, n as AccessProfileResolverSensor, o as Axis, p as AxisAnonymous, q as AxisAuthorized, r as AxisChainEncryption, s as AxisChainRequest, t as AxisChainStatus, u as AxisChainStepResult, v as AxisChainStepStatus, w as AxisEffect, x as AxisExecutionMode, y as AxisIntentEnvelope, z as AxisIntentObserver, B as AxisIntentSensorBinding, D as AxisIntentSensorBindingOptions, E as AxisIntentSensorRef, F as AxisIntentSensorWhen, G as AxisKeyExchangeRef, H as AxisLawArticleSummary, J as AxisLawDecision, K as AxisLawEvaluationContext, L as AxisLawEvaluationResult, M as AxisLawEvaluator, N as AxisObserverBinding, P as AxisObserverBindingOptions, Q as AxisObserverContext, U as AxisObserverDefinition, V as AxisObserverEvent, W as AxisObserverRef, X as AxisObserverRegistration, Y as AxisPublic, Z as AxisRateLimit, _ as AxisRateLimitConfig, $ as BodyBudgetSensor, a0 as CAPSULE_POLICY_METADATA_KEY, a1 as CONTRACT_METADATA_KEY, a2 as CapabilityEnforcementSensor, a3 as Capsule, a4 as CapsulePolicy, a5 as CapsulePolicyOptions, a6 as CapsuleScopeMode, a7 as ChunkHashSensor, a8 as Contract, a9 as DEFAULT_CONTRACTS, aa as EntropySensor, ab as ExecutionContract, ac as ExecutionTimeoutSensor, ad as FALLBACK_CONTRACT, ae as FrameBudgetSensor, af as FrameHeaderSanitySensor, ag as HeaderTLVLimitSensor, ah as INTENT_METADATA_KEY, ai as INTENT_ROUTES_KEY, aj as Intent, ak as IntentAllowlistSensor, al as IntentKind, am as IntentOptions, an as IntentRegistrySensor, ao as IntentRoute, ap as LawEvaluationSensor, aq as LawEvaluationSensorOptions, ar as OBSERVER_BINDINGS_KEY, as as OBSERVER_METADATA_KEY, at as Observer, au as ObserverRegistry, av as ProofPresenceSensor, aw as ProtocolStrictSensor, ax as REQUIRED_PROOF_METADATA_KEY, ay as ReceiptPolicySensor, az as RegisteredChainConfig, aA as RequiredProof, aB as RiskDecision, aC as RiskEvaluation, aD as RiskGateSensor, aE as RiskGateSensorOptions, aF as RiskSignal, aG as RiskSignalCollector, aH as SENSITIVITY_METADATA_KEY, aI as SchemaValidationSensor, aJ as Sensitivity, aK as StreamScopeSensor, aL as TLVParseSensor, aM as TLV_FIELDS_KEY, aN as TLV_VALIDATORS_KEY, aO as TickAuthCapsuleRef, aP as TickAuthSensor, aQ as TickAuthSensorOptions, aR as TickAuthVerifier, aS as TlvEnum, aT as TlvField, aU as TlvFieldKind, aV as TlvFieldMeta, aW as TlvFieldOptions, aX as TlvMinLen, aY as TlvRange, aZ as TlvUtf8Pattern, a_ as TlvValidate, a$ as TlvValidatorMeta, b0 as TpsSensor, b1 as TpsSensorOptions, b2 as VarintHardeningSensor, b3 as Witness, b4 as buildAxisLawEvaluationContext, b5 as toIntentSensorBinding, b6 as toObserverBinding } from './index-DRnTsYrk.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-
|
|
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-
|
|
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-ChuwP1RU.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-ChuwP1RU.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-
|
|
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-
|
|
10
|
+
import { S as SensorInput, a as SensorDecision } from './axis-sensor-BLUemDiZ.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-BLUemDiZ.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-
|
|
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-CVeMpuKr.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';
|