@nextera.one/axis-server-sdk 2.0.0 → 2.1.1
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/README.md +52 -7
- package/dist/index.d.mts +445 -121
- package/dist/index.d.ts +445 -121
- package/dist/index.js +1734 -319
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1811 -392
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,148 @@
|
|
|
1
|
-
import { ModuleRef, DiscoveryService, MetadataScanner, Reflector } from '@nestjs/core';
|
|
2
1
|
import * as _nextera_one_axis_protocol from '@nextera.one/axis-protocol';
|
|
3
2
|
import { AxisFrame as AxisFrame$2, PROOF_LOOM, TLV_LOOM_PRESENCE_ID, TLV_LOOM_THREAD_HASH, TLV_LOOM_WRIT } from '@nextera.one/axis-protocol';
|
|
4
3
|
export { AXIS_MAGIC, AXIS_VERSION, AxisBinaryFrame, AxisFrame, TLV as AxisTlvType, BodyProfile, 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, ProofType, 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';
|
|
4
|
+
import { ModuleRef, DiscoveryService, Reflector, MetadataScanner } from '@nestjs/core';
|
|
5
5
|
export { A as AxisError, a as AxisFrameZ, c as computeReceiptHash, b as computeSignaturePayload, i as core, g as generateEd25519KeyPair, s as sha256, d as signFrame, v as verifyFrameSignature } from './index-VxXqZPuH.js';
|
|
6
6
|
export { Axis1FrameToEncode, encodeAxis1Frame } from './codec/axis1.encode.js';
|
|
7
7
|
export { axis1SigningBytes } from './codec/axis1.signing.js';
|
|
8
8
|
import { Axis1DecodedFrame } from './types/frame.js';
|
|
9
9
|
export { decodeAxis1Frame } from './types/frame.js';
|
|
10
|
-
import {
|
|
10
|
+
import { OnApplicationBootstrap, OnModuleInit } from '@nestjs/common';
|
|
11
11
|
import { ConfigService } from '@nestjs/config';
|
|
12
12
|
import * as z from 'zod';
|
|
13
13
|
|
|
14
|
+
type AxisExecutionMode = 'strict' | 'parallel' | 'best_effort' | 'atomic';
|
|
15
|
+
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';
|
|
16
|
+
interface AxisCapsuleRef {
|
|
17
|
+
capsuleId?: string;
|
|
18
|
+
scope?: string | string[];
|
|
19
|
+
scopeMode?: 'chain' | 'step' | 'chain+step';
|
|
20
|
+
proofRequired?: boolean;
|
|
21
|
+
metadata?: Record<string, unknown>;
|
|
22
|
+
}
|
|
23
|
+
interface AxisKeyExchangeRef {
|
|
24
|
+
profile?: string;
|
|
25
|
+
sessionId?: string;
|
|
26
|
+
clientKid?: string;
|
|
27
|
+
serverKid?: string;
|
|
28
|
+
algorithm?: string;
|
|
29
|
+
derivedKeyRef?: string;
|
|
30
|
+
required?: boolean;
|
|
31
|
+
metadata?: Record<string, unknown>;
|
|
32
|
+
}
|
|
33
|
+
interface AxisIntentEnvelope<TPayload = unknown> {
|
|
34
|
+
intent: string;
|
|
35
|
+
handler?: string;
|
|
36
|
+
payload: TPayload;
|
|
37
|
+
capsule?: AxisCapsuleRef;
|
|
38
|
+
keyExchange?: AxisKeyExchangeRef;
|
|
39
|
+
observerTags?: string[];
|
|
40
|
+
proofRequired?: boolean;
|
|
41
|
+
metadata?: Record<string, unknown>;
|
|
42
|
+
}
|
|
43
|
+
interface AxisChainStep<TInput = unknown> {
|
|
44
|
+
stepId: string;
|
|
45
|
+
intent: string;
|
|
46
|
+
handler?: string;
|
|
47
|
+
input?: TInput;
|
|
48
|
+
dependsOn?: string[];
|
|
49
|
+
onSuccess?: string[];
|
|
50
|
+
onFailure?: string[];
|
|
51
|
+
capsuleScope?: string | string[];
|
|
52
|
+
observerTags?: string[];
|
|
53
|
+
proofRequired?: boolean;
|
|
54
|
+
keyExchange?: AxisKeyExchangeRef;
|
|
55
|
+
metadata?: Record<string, unknown>;
|
|
56
|
+
}
|
|
57
|
+
interface AxisChainEncryption {
|
|
58
|
+
enabled?: boolean;
|
|
59
|
+
profile?: string;
|
|
60
|
+
keyExchange?: AxisKeyExchangeRef;
|
|
61
|
+
}
|
|
62
|
+
interface AxisChainEnvelope<TInput = unknown> {
|
|
63
|
+
chainId: string;
|
|
64
|
+
subject?: string;
|
|
65
|
+
issuer?: string;
|
|
66
|
+
issuedAtTps?: string | number;
|
|
67
|
+
expiresAtTps?: string | number;
|
|
68
|
+
mode: AxisExecutionMode;
|
|
69
|
+
signature?: string;
|
|
70
|
+
encryption?: AxisChainEncryption;
|
|
71
|
+
capsule?: AxisCapsuleRef;
|
|
72
|
+
keyExchange?: AxisKeyExchangeRef;
|
|
73
|
+
observerTags?: string[];
|
|
74
|
+
dynamic?: boolean;
|
|
75
|
+
metadata?: Record<string, unknown>;
|
|
76
|
+
steps: Array<AxisChainStep<TInput>>;
|
|
77
|
+
}
|
|
78
|
+
interface AxisChainRequest<TInput = unknown, TCapsule = Record<string, unknown>> {
|
|
79
|
+
envelope: AxisChainEnvelope<TInput>;
|
|
80
|
+
capsule?: TCapsule;
|
|
81
|
+
actorId?: string;
|
|
82
|
+
}
|
|
83
|
+
type AxisChainStepStatus = 'SUCCEEDED' | 'FAILED' | 'BLOCKED' | 'SKIPPED';
|
|
84
|
+
interface AxisChainStepResult<TOutput = unknown> {
|
|
85
|
+
stepId: string;
|
|
86
|
+
intent: string;
|
|
87
|
+
status: AxisChainStepStatus;
|
|
88
|
+
effect?: string;
|
|
89
|
+
output?: TOutput;
|
|
90
|
+
error?: string;
|
|
91
|
+
dependsOn?: string[];
|
|
92
|
+
startedAt: number;
|
|
93
|
+
finishedAt: number;
|
|
94
|
+
proofHash?: string;
|
|
95
|
+
observerTags?: string[];
|
|
96
|
+
metadata?: Record<string, unknown>;
|
|
97
|
+
}
|
|
98
|
+
type AxisChainStatus = 'SUCCEEDED' | 'FAILED' | 'PARTIAL';
|
|
99
|
+
interface AxisChainResult<TOutput = unknown> {
|
|
100
|
+
chainId: string;
|
|
101
|
+
mode: AxisExecutionMode;
|
|
102
|
+
status: AxisChainStatus;
|
|
103
|
+
completedSteps: number;
|
|
104
|
+
failedSteps: number;
|
|
105
|
+
blockedSteps: number;
|
|
106
|
+
skippedSteps: number;
|
|
107
|
+
startedAt: number;
|
|
108
|
+
finishedAt: number;
|
|
109
|
+
results: Array<AxisChainStepResult<TOutput>>;
|
|
110
|
+
rollback?: {
|
|
111
|
+
supported: boolean;
|
|
112
|
+
attempted: boolean;
|
|
113
|
+
reason?: string;
|
|
114
|
+
};
|
|
115
|
+
metadata?: Record<string, unknown>;
|
|
116
|
+
}
|
|
117
|
+
interface ChainOptions {
|
|
118
|
+
mode?: AxisExecutionMode;
|
|
119
|
+
allowPartial?: boolean;
|
|
120
|
+
dynamic?: boolean;
|
|
121
|
+
proofRequired?: boolean;
|
|
122
|
+
capsuleScope?: string | string[];
|
|
123
|
+
observerTags?: string[];
|
|
124
|
+
keyExchangeRequired?: boolean;
|
|
125
|
+
}
|
|
126
|
+
interface RegisteredChainConfig extends ChainOptions {
|
|
127
|
+
enabled: boolean;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
declare const CHAIN_METADATA_KEY = "axis:chain";
|
|
131
|
+
declare function Chain(options?: ChainOptions): MethodDecorator;
|
|
132
|
+
|
|
133
|
+
declare const CAPSULE_POLICY_METADATA_KEY = "axis:capsule:policy";
|
|
134
|
+
type CapsuleScopeMode = "all" | "any";
|
|
135
|
+
interface CapsulePolicyOptions {
|
|
136
|
+
required?: boolean;
|
|
137
|
+
scopes?: string | string[];
|
|
138
|
+
scopeMode?: CapsuleScopeMode;
|
|
139
|
+
intentBound?: boolean;
|
|
140
|
+
allowCapsuleRef?: boolean;
|
|
141
|
+
}
|
|
142
|
+
declare function CapsulePolicy(options?: CapsulePolicyOptions): ClassDecorator & MethodDecorator;
|
|
143
|
+
declare function normalizeCapsulePolicyOptions(options?: CapsulePolicyOptions): CapsulePolicyOptions;
|
|
144
|
+
declare function mergeCapsulePolicyOptions(base?: CapsulePolicyOptions, override?: CapsulePolicyOptions): CapsulePolicyOptions | undefined;
|
|
145
|
+
|
|
14
146
|
declare const HANDLER_METADATA_KEY = "axis:handler";
|
|
15
147
|
declare function Handler(intent?: string): ClassDecorator;
|
|
16
148
|
|
|
@@ -32,6 +164,7 @@ interface IntentRoute {
|
|
|
32
164
|
absolute?: boolean;
|
|
33
165
|
frame?: boolean;
|
|
34
166
|
kind?: IntentKind;
|
|
167
|
+
chain?: boolean | ChainOptions;
|
|
35
168
|
bodyProfile?: 'TLV_MAP' | 'RAW' | 'TLV_OBJ' | 'TLV_ARR';
|
|
36
169
|
tlv?: IntentTlvField[];
|
|
37
170
|
dto?: Function;
|
|
@@ -40,6 +173,7 @@ interface IntentOptions {
|
|
|
40
173
|
kind?: IntentKind;
|
|
41
174
|
absolute?: boolean;
|
|
42
175
|
frame?: boolean;
|
|
176
|
+
chain?: boolean | ChainOptions;
|
|
43
177
|
bodyProfile?: 'TLV_MAP' | 'RAW' | 'TLV_OBJ' | 'TLV_ARR';
|
|
44
178
|
tlv?: IntentTlvField[];
|
|
45
179
|
dto?: Function;
|
|
@@ -52,6 +186,28 @@ declare function IntentBody(decoder: (buf: Buffer) => any): MethodDecorator;
|
|
|
52
186
|
declare const INTENT_SENSORS_KEY = "axis:intent:sensors";
|
|
53
187
|
declare function IntentSensors(sensors: Function[]): MethodDecorator;
|
|
54
188
|
|
|
189
|
+
declare const OBSERVER_METADATA_KEY = "axis:observer";
|
|
190
|
+
declare const OBSERVER_BINDINGS_KEY = "axis:observer:bindings";
|
|
191
|
+
type AxisObserverRef = string | Function;
|
|
192
|
+
interface AxisObserverDefinition {
|
|
193
|
+
name?: string;
|
|
194
|
+
tags?: string[];
|
|
195
|
+
events?: AxisObserverEvent[];
|
|
196
|
+
intents?: string[];
|
|
197
|
+
handlers?: string[];
|
|
198
|
+
}
|
|
199
|
+
interface AxisObserverBinding {
|
|
200
|
+
refs: AxisObserverRef[];
|
|
201
|
+
tags?: string[];
|
|
202
|
+
events?: AxisObserverEvent[];
|
|
203
|
+
}
|
|
204
|
+
interface AxisObserverBindingOptions {
|
|
205
|
+
use: AxisObserverRef | AxisObserverRef[];
|
|
206
|
+
tags?: string[];
|
|
207
|
+
events?: AxisObserverEvent[];
|
|
208
|
+
}
|
|
209
|
+
declare function Observer(input?: AxisObserverDefinition | AxisObserverBindingOptions | AxisObserverRef | AxisObserverRef[]): ClassDecorator & MethodDecorator;
|
|
210
|
+
|
|
55
211
|
declare const HANDLER_SENSORS_KEY = "axis:handler:sensors";
|
|
56
212
|
declare function HandlerSensors(sensors: Function[]): ClassDecorator;
|
|
57
213
|
|
|
@@ -714,109 +870,7 @@ type CcePipelineResult = {
|
|
|
714
870
|
};
|
|
715
871
|
declare function executeCcePipeline(envelope: CceRequestEnvelope, config: CcePipelineConfig): Promise<CcePipelineResult>;
|
|
716
872
|
|
|
717
|
-
interface IntentProposal {
|
|
718
|
-
raw: string;
|
|
719
|
-
actor_id: string;
|
|
720
|
-
target?: string;
|
|
721
|
-
params?: Record<string, unknown>;
|
|
722
|
-
context?: Record<string, unknown>;
|
|
723
|
-
}
|
|
724
|
-
interface CompiledIntent {
|
|
725
|
-
intent: string;
|
|
726
|
-
actor_id: string;
|
|
727
|
-
target?: string;
|
|
728
|
-
params: Record<string, unknown>;
|
|
729
|
-
constraints: IntentConstraint[];
|
|
730
|
-
confidence: number;
|
|
731
|
-
alternatives: AlternativeIntent[];
|
|
732
|
-
needs_clarification: boolean;
|
|
733
|
-
clarifications: ClarificationQuestion[];
|
|
734
|
-
expected_outcome?: string;
|
|
735
|
-
fallback?: string;
|
|
736
|
-
risk: IntentRisk;
|
|
737
|
-
metadata: Record<string, unknown>;
|
|
738
|
-
}
|
|
739
|
-
type ConstraintKind = 'required_param' | 'type_check' | 'range' | 'pattern' | 'temporal' | 'spatial' | 'authority' | 'safety' | 'custom';
|
|
740
|
-
interface IntentConstraint {
|
|
741
|
-
kind: ConstraintKind;
|
|
742
|
-
field: string;
|
|
743
|
-
description: string;
|
|
744
|
-
satisfied: boolean;
|
|
745
|
-
value?: unknown;
|
|
746
|
-
expected?: unknown;
|
|
747
|
-
}
|
|
748
|
-
interface AlternativeIntent {
|
|
749
|
-
intent: string;
|
|
750
|
-
confidence: number;
|
|
751
|
-
reason: string;
|
|
752
|
-
}
|
|
753
|
-
interface ClarificationQuestion {
|
|
754
|
-
id: string;
|
|
755
|
-
question: string;
|
|
756
|
-
field: string;
|
|
757
|
-
options?: string[];
|
|
758
|
-
required: boolean;
|
|
759
|
-
}
|
|
760
|
-
type RiskLevel = 'none' | 'low' | 'medium' | 'high' | 'critical';
|
|
761
|
-
interface IntentRisk {
|
|
762
|
-
level: RiskLevel;
|
|
763
|
-
score: number;
|
|
764
|
-
factors: string[];
|
|
765
|
-
}
|
|
766
|
-
interface IntentParamSchema {
|
|
767
|
-
name: string;
|
|
768
|
-
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
769
|
-
required: boolean;
|
|
770
|
-
description?: string;
|
|
771
|
-
default?: unknown;
|
|
772
|
-
pattern?: string;
|
|
773
|
-
min?: number;
|
|
774
|
-
max?: number;
|
|
775
|
-
enum?: unknown[];
|
|
776
|
-
}
|
|
777
873
|
interface IntentSchema$2 {
|
|
778
|
-
intent: string;
|
|
779
|
-
description: string;
|
|
780
|
-
params: IntentParamSchema[];
|
|
781
|
-
required_scopes?: string[];
|
|
782
|
-
risk_level: RiskLevel;
|
|
783
|
-
has_side_effects: boolean;
|
|
784
|
-
reversible: boolean;
|
|
785
|
-
related?: string[];
|
|
786
|
-
tags?: string[];
|
|
787
|
-
}
|
|
788
|
-
interface CompilationResult {
|
|
789
|
-
ok: boolean;
|
|
790
|
-
compiled?: CompiledIntent;
|
|
791
|
-
errors: CompilationError[];
|
|
792
|
-
}
|
|
793
|
-
interface CompilationError {
|
|
794
|
-
code: string;
|
|
795
|
-
message: string;
|
|
796
|
-
field?: string;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
declare class IdelSchemaRegistry {
|
|
800
|
-
private schemas;
|
|
801
|
-
private aliases;
|
|
802
|
-
register(schema: IntentSchema$2): void;
|
|
803
|
-
registerAlias(alias: string, intent: string): void;
|
|
804
|
-
get(intent: string): IntentSchema$2 | undefined;
|
|
805
|
-
resolve(raw: string): IntentSchema$2 | undefined;
|
|
806
|
-
findCandidates(raw: string): Array<{
|
|
807
|
-
schema: IntentSchema$2;
|
|
808
|
-
score: number;
|
|
809
|
-
}>;
|
|
810
|
-
list(): IntentSchema$2[];
|
|
811
|
-
}
|
|
812
|
-
declare class IdelCompiler {
|
|
813
|
-
private readonly registry;
|
|
814
|
-
constructor(registry: IdelSchemaRegistry);
|
|
815
|
-
compile(proposal: IntentProposal): CompilationResult;
|
|
816
|
-
applyClarifications(compiled: CompiledIntent, answers: Record<string, unknown>): CompilationResult;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
interface IntentSchema$1 {
|
|
820
874
|
intent: string;
|
|
821
875
|
version: number;
|
|
822
876
|
bodyProfile: "TLV_MAP" | "RAW" | "TLV_OBJ" | "TLV_ARR";
|
|
@@ -839,7 +893,10 @@ interface AxisEffect {
|
|
|
839
893
|
}
|
|
840
894
|
declare class IntentRouter {
|
|
841
895
|
private readonly moduleRef?;
|
|
896
|
+
private readonly observerDispatcher?;
|
|
842
897
|
private readonly logger;
|
|
898
|
+
private readonly decoder;
|
|
899
|
+
private readonly encoder;
|
|
843
900
|
private static readonly BUILTIN_INTENTS;
|
|
844
901
|
private handlers;
|
|
845
902
|
private intentSensors;
|
|
@@ -847,32 +904,51 @@ declare class IntentRouter {
|
|
|
847
904
|
private intentSchemas;
|
|
848
905
|
private intentValidators;
|
|
849
906
|
private intentKinds;
|
|
907
|
+
private intentChains;
|
|
908
|
+
private intentObservers;
|
|
909
|
+
private intentCapsulePolicies;
|
|
850
910
|
private cceHandlers;
|
|
851
911
|
private ccePipelineConfig;
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
getSchema(intent: string): IntentSchema$1 | undefined;
|
|
912
|
+
constructor(moduleRef?: ModuleRef | undefined, observerDispatcher?: ObserverDispatcherService | undefined);
|
|
913
|
+
getSchema(intent: string): IntentSchema$2 | undefined;
|
|
855
914
|
getValidators(intent: string): Map<number, TlvValidatorFn[]> | undefined;
|
|
856
915
|
has(intent: string): boolean;
|
|
857
916
|
getRegisteredIntents(): string[];
|
|
858
|
-
configureIdel(compiler: IdelCompiler): void;
|
|
859
|
-
resolveIntent(proposal: IntentProposal): CompiledIntent;
|
|
860
|
-
routeIdel(proposal: IntentProposal, frame: AxisFrame$2): Promise<AxisEffect & {
|
|
861
|
-
compiled: CompiledIntent;
|
|
862
|
-
}>;
|
|
863
917
|
getIntentEntry(intent: string): {
|
|
864
|
-
schema?: IntentSchema$
|
|
918
|
+
schema?: IntentSchema$2;
|
|
865
919
|
validators?: Map<number, TlvValidatorFn[]>;
|
|
866
920
|
hasSensors: boolean;
|
|
867
921
|
builtin: boolean;
|
|
868
922
|
kind?: IntentKind;
|
|
923
|
+
chain?: RegisteredChainConfig;
|
|
924
|
+
capsulePolicy?: CapsulePolicyOptions;
|
|
925
|
+
observerCount: number;
|
|
869
926
|
} | null;
|
|
927
|
+
getChainConfig(intent: string): RegisteredChainConfig | undefined;
|
|
928
|
+
getObservers(intent: string): AxisObserverBinding[];
|
|
870
929
|
register(intent: string, handler: any): void;
|
|
871
930
|
registerHandler(instance: any): void;
|
|
872
931
|
route(frame: AxisFrame$2): Promise<AxisEffect>;
|
|
873
932
|
private logIntent;
|
|
874
|
-
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?: Function[]): void;
|
|
933
|
+
registerIntentMeta(intent: string, proto: object, methodName: string, handlerSensors?: Function[], handlerObservers?: AxisObserverBinding[]): void;
|
|
934
|
+
private emitIntentObservers;
|
|
875
935
|
private runIntentSensors;
|
|
936
|
+
private getEffectiveCapsulePolicy;
|
|
937
|
+
private enforceCapsulePolicy;
|
|
938
|
+
private executeChainRequest;
|
|
939
|
+
private parseIntentExecBody;
|
|
940
|
+
private parseChainRequestBody;
|
|
941
|
+
private isChainRequestLike;
|
|
942
|
+
private isChainEnvelopeLike;
|
|
943
|
+
private encodeJson;
|
|
944
|
+
private getActorIdFromFrame;
|
|
945
|
+
private getProofRefFromFrame;
|
|
946
|
+
private hasCapsuleReference;
|
|
947
|
+
private getHeaderValue;
|
|
948
|
+
private identifiersMatch;
|
|
949
|
+
private extractInlineCapsuleId;
|
|
950
|
+
private toInlineCapsuleRecord;
|
|
951
|
+
private toScopeList;
|
|
876
952
|
configureCce(config: Omit<CcePipelineConfig, "handlers">): void;
|
|
877
953
|
registerCceHandler(intent: string, handler: CceHandler): void;
|
|
878
954
|
hasCceHandler(intent: string): boolean;
|
|
@@ -880,6 +956,96 @@ declare class IntentRouter {
|
|
|
880
956
|
private storeSchema;
|
|
881
957
|
}
|
|
882
958
|
|
|
959
|
+
interface AxisObserverContext {
|
|
960
|
+
event: AxisObserverEvent;
|
|
961
|
+
timestamp: number;
|
|
962
|
+
intent?: string;
|
|
963
|
+
chainId?: string;
|
|
964
|
+
stepId?: string;
|
|
965
|
+
handler?: string;
|
|
966
|
+
frame?: AxisFrame$2;
|
|
967
|
+
envelope?: AxisChainEnvelope;
|
|
968
|
+
step?: AxisChainStep;
|
|
969
|
+
effect?: AxisEffect;
|
|
970
|
+
result?: AxisChainStepResult | AxisChainResult;
|
|
971
|
+
error?: string;
|
|
972
|
+
observerTags?: string[];
|
|
973
|
+
capsule?: AxisCapsuleRef;
|
|
974
|
+
keyExchange?: AxisKeyExchangeRef;
|
|
975
|
+
metadata?: Record<string, unknown>;
|
|
976
|
+
}
|
|
977
|
+
interface AxisIntentObserver {
|
|
978
|
+
readonly name: string;
|
|
979
|
+
supports?(context: AxisObserverContext): boolean;
|
|
980
|
+
observe(context: AxisObserverContext): Promise<void> | void;
|
|
981
|
+
}
|
|
982
|
+
interface AxisObserverRegistration {
|
|
983
|
+
name: string;
|
|
984
|
+
instance: AxisIntentObserver;
|
|
985
|
+
tags: string[];
|
|
986
|
+
events?: AxisObserverEvent[];
|
|
987
|
+
intents?: string[];
|
|
988
|
+
handlers?: string[];
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare class ObserverRegistry {
|
|
992
|
+
private readonly logger;
|
|
993
|
+
private readonly byName;
|
|
994
|
+
private readonly byType;
|
|
995
|
+
register(instance: AxisIntentObserver, meta?: AxisObserverDefinition): void;
|
|
996
|
+
resolve(ref: AxisObserverRef): AxisObserverRegistration | undefined;
|
|
997
|
+
list(): AxisObserverRegistration[];
|
|
998
|
+
clear(): void;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
declare class ObserverDispatcherService {
|
|
1002
|
+
private readonly registry;
|
|
1003
|
+
private readonly logger;
|
|
1004
|
+
constructor(registry: ObserverRegistry);
|
|
1005
|
+
dispatch(bindings: AxisObserverBinding[] | undefined, context: AxisObserverContext): Promise<void>;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
interface AxisChainExecutionOptions {
|
|
1009
|
+
actorId?: string;
|
|
1010
|
+
baseFrame?: Partial<AxisFrame$2>;
|
|
1011
|
+
}
|
|
1012
|
+
declare class AxisChainExecutor {
|
|
1013
|
+
private readonly router;
|
|
1014
|
+
private readonly observerDispatcher?;
|
|
1015
|
+
private readonly logger;
|
|
1016
|
+
private readonly encoder;
|
|
1017
|
+
private readonly decoder;
|
|
1018
|
+
constructor(router: IntentRouter, observerDispatcher?: ObserverDispatcherService | undefined);
|
|
1019
|
+
execute(envelope: AxisChainEnvelope, options?: AxisChainExecutionOptions): Promise<AxisChainResult>;
|
|
1020
|
+
private executeStep;
|
|
1021
|
+
private buildFrame;
|
|
1022
|
+
private validateEnvelope;
|
|
1023
|
+
private canRun;
|
|
1024
|
+
private blockStepsWithFailedDependencies;
|
|
1025
|
+
private markUnresolvedSteps;
|
|
1026
|
+
private buildSummary;
|
|
1027
|
+
private resolveStepInput;
|
|
1028
|
+
private lookupReference;
|
|
1029
|
+
private serializeInput;
|
|
1030
|
+
private decodeOutput;
|
|
1031
|
+
private computeProofHash;
|
|
1032
|
+
private collectChainBindings;
|
|
1033
|
+
private dispatch;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
declare const AXIS_EXECUTION_CONTEXT_KEY: unique symbol;
|
|
1037
|
+
interface AxisExecutionContext {
|
|
1038
|
+
metaIntent?: "INTENT.EXEC" | "CHAIN.EXEC";
|
|
1039
|
+
actorId?: string;
|
|
1040
|
+
inlineCapsule?: Record<string, unknown>;
|
|
1041
|
+
capsuleRef?: AxisCapsuleRef;
|
|
1042
|
+
chainEnvelope?: AxisChainEnvelope;
|
|
1043
|
+
chainStep?: AxisChainStep;
|
|
1044
|
+
}
|
|
1045
|
+
declare function getAxisExecutionContext(frame?: Partial<AxisFrame$2>): AxisExecutionContext | undefined;
|
|
1046
|
+
declare function withAxisExecutionContext<T extends object>(target: T, context: AxisExecutionContext): T;
|
|
1047
|
+
declare function mergeAxisExecutionContext(base?: AxisExecutionContext, override?: AxisExecutionContext): AxisExecutionContext | undefined;
|
|
1048
|
+
|
|
883
1049
|
declare const BAND: {
|
|
884
1050
|
readonly WIRE: 0;
|
|
885
1051
|
readonly IDENTITY: 40;
|
|
@@ -1594,6 +1760,15 @@ declare const AxisContext$1: (...dataOrPipes: unknown[]) => ParameterDecorator;
|
|
|
1594
1760
|
declare const AxisDemoPubkey: (...dataOrPipes: unknown[]) => ParameterDecorator;
|
|
1595
1761
|
declare const AxisFrame: (...dataOrPipes: unknown[]) => ParameterDecorator;
|
|
1596
1762
|
|
|
1763
|
+
declare class ObserverDiscoveryService implements OnApplicationBootstrap {
|
|
1764
|
+
private readonly discovery;
|
|
1765
|
+
private readonly reflector;
|
|
1766
|
+
private readonly registry;
|
|
1767
|
+
private readonly logger;
|
|
1768
|
+
constructor(discovery: DiscoveryService, reflector: Reflector, registry: ObserverRegistry);
|
|
1769
|
+
onApplicationBootstrap(): void;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1597
1772
|
declare class HandlerDiscoveryService implements OnModuleInit {
|
|
1598
1773
|
private readonly discovery;
|
|
1599
1774
|
private readonly scanner;
|
|
@@ -2004,7 +2179,7 @@ declare const IntentSchemaZ: z.ZodObject<{
|
|
|
2004
2179
|
}>>;
|
|
2005
2180
|
}, z.core.$strip>>;
|
|
2006
2181
|
}, z.core.$strip>;
|
|
2007
|
-
type IntentSchema = z.infer<typeof IntentSchemaZ>;
|
|
2182
|
+
type IntentSchema$1 = z.infer<typeof IntentSchemaZ>;
|
|
2008
2183
|
declare const WsHandshakeInputZ: z.ZodObject<{
|
|
2009
2184
|
clientId: z.ZodString;
|
|
2010
2185
|
isWs: z.ZodBoolean;
|
|
@@ -2506,6 +2681,108 @@ declare function executeLoomPipeline(writ: Writ, publicKeyHex: string, presence:
|
|
|
2506
2681
|
code: string;
|
|
2507
2682
|
};
|
|
2508
2683
|
|
|
2684
|
+
interface IntentProposal {
|
|
2685
|
+
raw: string;
|
|
2686
|
+
actor_id: string;
|
|
2687
|
+
target?: string;
|
|
2688
|
+
params?: Record<string, unknown>;
|
|
2689
|
+
context?: Record<string, unknown>;
|
|
2690
|
+
}
|
|
2691
|
+
interface CompiledIntent {
|
|
2692
|
+
intent: string;
|
|
2693
|
+
actor_id: string;
|
|
2694
|
+
target?: string;
|
|
2695
|
+
params: Record<string, unknown>;
|
|
2696
|
+
constraints: IntentConstraint[];
|
|
2697
|
+
confidence: number;
|
|
2698
|
+
alternatives: AlternativeIntent[];
|
|
2699
|
+
needs_clarification: boolean;
|
|
2700
|
+
clarifications: ClarificationQuestion[];
|
|
2701
|
+
expected_outcome?: string;
|
|
2702
|
+
fallback?: string;
|
|
2703
|
+
risk: IntentRisk;
|
|
2704
|
+
metadata: Record<string, unknown>;
|
|
2705
|
+
}
|
|
2706
|
+
type ConstraintKind = 'required_param' | 'type_check' | 'range' | 'pattern' | 'temporal' | 'spatial' | 'authority' | 'safety' | 'custom';
|
|
2707
|
+
interface IntentConstraint {
|
|
2708
|
+
kind: ConstraintKind;
|
|
2709
|
+
field: string;
|
|
2710
|
+
description: string;
|
|
2711
|
+
satisfied: boolean;
|
|
2712
|
+
value?: unknown;
|
|
2713
|
+
expected?: unknown;
|
|
2714
|
+
}
|
|
2715
|
+
interface AlternativeIntent {
|
|
2716
|
+
intent: string;
|
|
2717
|
+
confidence: number;
|
|
2718
|
+
reason: string;
|
|
2719
|
+
}
|
|
2720
|
+
interface ClarificationQuestion {
|
|
2721
|
+
id: string;
|
|
2722
|
+
question: string;
|
|
2723
|
+
field: string;
|
|
2724
|
+
options?: string[];
|
|
2725
|
+
required: boolean;
|
|
2726
|
+
}
|
|
2727
|
+
type RiskLevel = 'none' | 'low' | 'medium' | 'high' | 'critical';
|
|
2728
|
+
interface IntentRisk {
|
|
2729
|
+
level: RiskLevel;
|
|
2730
|
+
score: number;
|
|
2731
|
+
factors: string[];
|
|
2732
|
+
}
|
|
2733
|
+
interface IntentParamSchema {
|
|
2734
|
+
name: string;
|
|
2735
|
+
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
2736
|
+
required: boolean;
|
|
2737
|
+
description?: string;
|
|
2738
|
+
default?: unknown;
|
|
2739
|
+
pattern?: string;
|
|
2740
|
+
min?: number;
|
|
2741
|
+
max?: number;
|
|
2742
|
+
enum?: unknown[];
|
|
2743
|
+
}
|
|
2744
|
+
interface IntentSchema {
|
|
2745
|
+
intent: string;
|
|
2746
|
+
description: string;
|
|
2747
|
+
params: IntentParamSchema[];
|
|
2748
|
+
required_scopes?: string[];
|
|
2749
|
+
risk_level: RiskLevel;
|
|
2750
|
+
has_side_effects: boolean;
|
|
2751
|
+
reversible: boolean;
|
|
2752
|
+
related?: string[];
|
|
2753
|
+
tags?: string[];
|
|
2754
|
+
}
|
|
2755
|
+
interface CompilationResult {
|
|
2756
|
+
ok: boolean;
|
|
2757
|
+
compiled?: CompiledIntent;
|
|
2758
|
+
errors: CompilationError[];
|
|
2759
|
+
}
|
|
2760
|
+
interface CompilationError {
|
|
2761
|
+
code: string;
|
|
2762
|
+
message: string;
|
|
2763
|
+
field?: string;
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
declare class IdelSchemaRegistry {
|
|
2767
|
+
private schemas;
|
|
2768
|
+
private aliases;
|
|
2769
|
+
register(schema: IntentSchema): void;
|
|
2770
|
+
registerAlias(alias: string, intent: string): void;
|
|
2771
|
+
get(intent: string): IntentSchema | undefined;
|
|
2772
|
+
resolve(raw: string): IntentSchema | undefined;
|
|
2773
|
+
findCandidates(raw: string): Array<{
|
|
2774
|
+
schema: IntentSchema;
|
|
2775
|
+
score: number;
|
|
2776
|
+
}>;
|
|
2777
|
+
list(): IntentSchema[];
|
|
2778
|
+
}
|
|
2779
|
+
declare class IdelCompiler {
|
|
2780
|
+
private readonly registry;
|
|
2781
|
+
constructor(registry: IdelSchemaRegistry);
|
|
2782
|
+
compile(proposal: IntentProposal): CompilationResult;
|
|
2783
|
+
applyClarifications(compiled: CompiledIntent, answers: Record<string, unknown>): CompilationResult;
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2509
2786
|
type NeedlePhase = 'created' | 'validated' | 'executing' | 'observed' | 'stitched' | 'failed';
|
|
2510
2787
|
interface Needle {
|
|
2511
2788
|
needle_id: string;
|
|
@@ -3172,8 +3449,18 @@ declare namespace index$b {
|
|
|
3172
3449
|
declare const index$a_AxisDemoPubkey: typeof AxisDemoPubkey;
|
|
3173
3450
|
declare const index$a_AxisFrame: typeof AxisFrame;
|
|
3174
3451
|
declare const index$a_AxisIp: typeof AxisIp;
|
|
3452
|
+
type index$a_AxisObserverBinding = AxisObserverBinding;
|
|
3453
|
+
type index$a_AxisObserverBindingOptions = AxisObserverBindingOptions;
|
|
3454
|
+
type index$a_AxisObserverDefinition = AxisObserverDefinition;
|
|
3455
|
+
type index$a_AxisObserverRef = AxisObserverRef;
|
|
3175
3456
|
declare const index$a_AxisRaw: typeof AxisRaw;
|
|
3176
3457
|
type index$a_AxisRequestData = AxisRequestData;
|
|
3458
|
+
declare const index$a_CAPSULE_POLICY_METADATA_KEY: typeof CAPSULE_POLICY_METADATA_KEY;
|
|
3459
|
+
declare const index$a_CHAIN_METADATA_KEY: typeof CHAIN_METADATA_KEY;
|
|
3460
|
+
declare const index$a_CapsulePolicy: typeof CapsulePolicy;
|
|
3461
|
+
type index$a_CapsulePolicyOptions = CapsulePolicyOptions;
|
|
3462
|
+
type index$a_CapsuleScopeMode = CapsuleScopeMode;
|
|
3463
|
+
declare const index$a_Chain: typeof Chain;
|
|
3177
3464
|
type index$a_DtoSchema = DtoSchema;
|
|
3178
3465
|
declare const index$a_HANDLER_METADATA_KEY: typeof HANDLER_METADATA_KEY;
|
|
3179
3466
|
declare const index$a_Handler: typeof Handler;
|
|
@@ -3188,6 +3475,9 @@ type index$a_IntentOptions = IntentOptions;
|
|
|
3188
3475
|
type index$a_IntentRoute = IntentRoute;
|
|
3189
3476
|
declare const index$a_IntentSensors: typeof IntentSensors;
|
|
3190
3477
|
type index$a_IntentTlvField = IntentTlvField;
|
|
3478
|
+
declare const index$a_OBSERVER_BINDINGS_KEY: typeof OBSERVER_BINDINGS_KEY;
|
|
3479
|
+
declare const index$a_OBSERVER_METADATA_KEY: typeof OBSERVER_METADATA_KEY;
|
|
3480
|
+
declare const index$a_Observer: typeof Observer;
|
|
3191
3481
|
declare const index$a_SENSOR_METADATA_KEY: typeof SENSOR_METADATA_KEY;
|
|
3192
3482
|
declare const index$a_Sensor: typeof Sensor;
|
|
3193
3483
|
type index$a_SensorOptions = SensorOptions;
|
|
@@ -3207,8 +3497,10 @@ type index$a_TlvValidatorFn = TlvValidatorFn;
|
|
|
3207
3497
|
type index$a_TlvValidatorMeta = TlvValidatorMeta;
|
|
3208
3498
|
declare const index$a_buildDtoDecoder: typeof buildDtoDecoder;
|
|
3209
3499
|
declare const index$a_extractDtoSchema: typeof extractDtoSchema;
|
|
3500
|
+
declare const index$a_mergeCapsulePolicyOptions: typeof mergeCapsulePolicyOptions;
|
|
3501
|
+
declare const index$a_normalizeCapsulePolicyOptions: typeof normalizeCapsulePolicyOptions;
|
|
3210
3502
|
declare namespace index$a {
|
|
3211
|
-
export { AxisContext$1 as AxisContext, index$a_AxisDemoPubkey as AxisDemoPubkey, index$a_AxisFrame as AxisFrame, index$a_AxisIp as AxisIp, index$a_AxisRaw as AxisRaw, type index$a_AxisRequestData as AxisRequestData, type index$a_DtoSchema as DtoSchema, index$a_HANDLER_METADATA_KEY as HANDLER_METADATA_KEY, index$a_Handler as Handler, index$a_INTENT_BODY_KEY as INTENT_BODY_KEY, index$a_INTENT_METADATA_KEY as INTENT_METADATA_KEY, index$a_INTENT_ROUTES_KEY as INTENT_ROUTES_KEY, index$a_INTENT_SENSORS_KEY as INTENT_SENSORS_KEY, index$a_Intent as Intent, index$a_IntentBody as IntentBody, type index$a_IntentKind as IntentKind, type index$a_IntentOptions as IntentOptions, type index$a_IntentRoute as IntentRoute, index$a_IntentSensors as IntentSensors, type index$a_IntentTlvField as IntentTlvField, index$a_SENSOR_METADATA_KEY as SENSOR_METADATA_KEY, index$a_Sensor as Sensor, type index$a_SensorOptions as SensorOptions, type index$a_SensorPhase as SensorPhase, index$a_TLV_FIELDS_KEY as TLV_FIELDS_KEY, index$a_TLV_VALIDATORS_KEY as TLV_VALIDATORS_KEY, index$a_TlvEnum as TlvEnum, index$a_TlvField as TlvField, type index$a_TlvFieldKind as TlvFieldKind, type index$a_TlvFieldMeta as TlvFieldMeta, type index$a_TlvFieldOptions as TlvFieldOptions, index$a_TlvMinLen as TlvMinLen, index$a_TlvRange as TlvRange, index$a_TlvUtf8Pattern as TlvUtf8Pattern, index$a_TlvValidate as TlvValidate, type index$a_TlvValidatorFn as TlvValidatorFn, type index$a_TlvValidatorMeta as TlvValidatorMeta, index$a_buildDtoDecoder as buildDtoDecoder, index$a_extractDtoSchema as extractDtoSchema };
|
|
3503
|
+
export { AxisContext$1 as AxisContext, index$a_AxisDemoPubkey as AxisDemoPubkey, index$a_AxisFrame as AxisFrame, index$a_AxisIp as AxisIp, type index$a_AxisObserverBinding as AxisObserverBinding, type index$a_AxisObserverBindingOptions as AxisObserverBindingOptions, type index$a_AxisObserverDefinition as AxisObserverDefinition, type index$a_AxisObserverRef as AxisObserverRef, index$a_AxisRaw as AxisRaw, type index$a_AxisRequestData as AxisRequestData, index$a_CAPSULE_POLICY_METADATA_KEY as CAPSULE_POLICY_METADATA_KEY, index$a_CHAIN_METADATA_KEY as CHAIN_METADATA_KEY, index$a_CapsulePolicy as CapsulePolicy, type index$a_CapsulePolicyOptions as CapsulePolicyOptions, type index$a_CapsuleScopeMode as CapsuleScopeMode, index$a_Chain as Chain, type index$a_DtoSchema as DtoSchema, index$a_HANDLER_METADATA_KEY as HANDLER_METADATA_KEY, index$a_Handler as Handler, index$a_INTENT_BODY_KEY as INTENT_BODY_KEY, index$a_INTENT_METADATA_KEY as INTENT_METADATA_KEY, index$a_INTENT_ROUTES_KEY as INTENT_ROUTES_KEY, index$a_INTENT_SENSORS_KEY as INTENT_SENSORS_KEY, index$a_Intent as Intent, index$a_IntentBody as IntentBody, type index$a_IntentKind as IntentKind, type index$a_IntentOptions as IntentOptions, type index$a_IntentRoute as IntentRoute, index$a_IntentSensors as IntentSensors, type index$a_IntentTlvField as IntentTlvField, index$a_OBSERVER_BINDINGS_KEY as OBSERVER_BINDINGS_KEY, index$a_OBSERVER_METADATA_KEY as OBSERVER_METADATA_KEY, index$a_Observer as Observer, index$a_SENSOR_METADATA_KEY as SENSOR_METADATA_KEY, index$a_Sensor as Sensor, type index$a_SensorOptions as SensorOptions, type index$a_SensorPhase as SensorPhase, index$a_TLV_FIELDS_KEY as TLV_FIELDS_KEY, index$a_TLV_VALIDATORS_KEY as TLV_VALIDATORS_KEY, index$a_TlvEnum as TlvEnum, index$a_TlvField as TlvField, type index$a_TlvFieldKind as TlvFieldKind, type index$a_TlvFieldMeta as TlvFieldMeta, type index$a_TlvFieldOptions as TlvFieldOptions, index$a_TlvMinLen as TlvMinLen, index$a_TlvRange as TlvRange, index$a_TlvUtf8Pattern as TlvUtf8Pattern, index$a_TlvValidate as TlvValidate, type index$a_TlvValidatorFn as TlvValidatorFn, type index$a_TlvValidatorMeta as TlvValidatorMeta, index$a_buildDtoDecoder as buildDtoDecoder, index$a_extractDtoSchema as extractDtoSchema, index$a_mergeCapsulePolicyOptions as mergeCapsulePolicyOptions, index$a_normalizeCapsulePolicyOptions as normalizeCapsulePolicyOptions };
|
|
3212
3504
|
}
|
|
3213
3505
|
|
|
3214
3506
|
type index$9_ObservationQueueConfig = ObservationQueueConfig;
|
|
@@ -3234,10 +3526,32 @@ declare namespace index$9 {
|
|
|
3234
3526
|
export { type index$9_ObservationQueueConfig as ObservationQueueConfig, type index$9_ObservationQueueMessage as ObservationQueueMessage, type index$9_ObservationStreamEntry as ObservationStreamEntry, type index$9_ObservationWitnessSummary as ObservationWitnessSummary, type index$9_ObserverVerdict as ObserverVerdict, type index$9_ResponseContract as ResponseContract, index$9_ResponseObserver as ResponseObserver, type index$9_ResponseObserverContext as ResponseObserverContext, type index$9_UnsignedObservationWitness as UnsignedObservationWitness, index$9_buildQueueMessage as buildQueueMessage, index$9_buildUnsignedWitness as buildUnsignedWitness, index$9_canonicalizeObservation as canonicalizeObservation, index$9_decodeQueueMessage as decodeQueueMessage, index$9_encodeQueueMessage as encodeQueueMessage, index$9_hashObservation as hashObservation, index$9_parseAutoClaimEntries as parseAutoClaimEntries, index$9_parseStreamEntries as parseStreamEntries, index$9_stableJsonStringify as stableJsonStringify, index$9_verifyResponse as verifyResponse };
|
|
3235
3527
|
}
|
|
3236
3528
|
|
|
3529
|
+
declare const index$8_AXIS_EXECUTION_CONTEXT_KEY: typeof AXIS_EXECUTION_CONTEXT_KEY;
|
|
3530
|
+
type index$8_AxisCapsuleRef = AxisCapsuleRef;
|
|
3531
|
+
type index$8_AxisChainEncryption = AxisChainEncryption;
|
|
3532
|
+
type index$8_AxisChainEnvelope<TInput = unknown> = AxisChainEnvelope<TInput>;
|
|
3533
|
+
type index$8_AxisChainExecutionOptions = AxisChainExecutionOptions;
|
|
3534
|
+
type index$8_AxisChainExecutor = AxisChainExecutor;
|
|
3535
|
+
declare const index$8_AxisChainExecutor: typeof AxisChainExecutor;
|
|
3536
|
+
type index$8_AxisChainRequest<TInput = unknown, TCapsule = Record<string, unknown>> = AxisChainRequest<TInput, TCapsule>;
|
|
3537
|
+
type index$8_AxisChainResult<TOutput = unknown> = AxisChainResult<TOutput>;
|
|
3538
|
+
type index$8_AxisChainStatus = AxisChainStatus;
|
|
3539
|
+
type index$8_AxisChainStep<TInput = unknown> = AxisChainStep<TInput>;
|
|
3540
|
+
type index$8_AxisChainStepResult<TOutput = unknown> = AxisChainStepResult<TOutput>;
|
|
3541
|
+
type index$8_AxisChainStepStatus = AxisChainStepStatus;
|
|
3237
3542
|
type index$8_AxisDecoded = AxisDecoded;
|
|
3238
3543
|
type index$8_AxisEffect = AxisEffect;
|
|
3544
|
+
type index$8_AxisExecutionContext = AxisExecutionContext;
|
|
3545
|
+
type index$8_AxisExecutionMode = AxisExecutionMode;
|
|
3546
|
+
type index$8_AxisIntentEnvelope<TPayload = unknown> = AxisIntentEnvelope<TPayload>;
|
|
3547
|
+
type index$8_AxisIntentObserver = AxisIntentObserver;
|
|
3548
|
+
type index$8_AxisKeyExchangeRef = AxisKeyExchangeRef;
|
|
3239
3549
|
type index$8_AxisObservation = AxisObservation;
|
|
3550
|
+
type index$8_AxisObserverContext = AxisObserverContext;
|
|
3551
|
+
type index$8_AxisObserverEvent = AxisObserverEvent;
|
|
3552
|
+
type index$8_AxisObserverRegistration = AxisObserverRegistration;
|
|
3240
3553
|
declare const index$8_BAND: typeof BAND;
|
|
3554
|
+
type index$8_ChainOptions = ChainOptions;
|
|
3241
3555
|
type index$8_HandlerDiscoveryService = HandlerDiscoveryService;
|
|
3242
3556
|
declare const index$8_HandlerDiscoveryService: typeof HandlerDiscoveryService;
|
|
3243
3557
|
type index$8_IntentRouter = IntentRouter;
|
|
@@ -3248,8 +3562,15 @@ type index$8_ObservationSensor = ObservationSensor;
|
|
|
3248
3562
|
type index$8_ObservationStage = ObservationStage;
|
|
3249
3563
|
type index$8_ObservationStreamEntry = ObservationStreamEntry;
|
|
3250
3564
|
type index$8_ObservationWitnessSummary = ObservationWitnessSummary;
|
|
3565
|
+
type index$8_ObserverDiscoveryService = ObserverDiscoveryService;
|
|
3566
|
+
declare const index$8_ObserverDiscoveryService: typeof ObserverDiscoveryService;
|
|
3567
|
+
type index$8_ObserverDispatcherService = ObserverDispatcherService;
|
|
3568
|
+
declare const index$8_ObserverDispatcherService: typeof ObserverDispatcherService;
|
|
3569
|
+
type index$8_ObserverRegistry = ObserverRegistry;
|
|
3570
|
+
declare const index$8_ObserverRegistry: typeof ObserverRegistry;
|
|
3251
3571
|
type index$8_ObserverVerdict = ObserverVerdict;
|
|
3252
3572
|
declare const index$8_PRE_DECODE_BOUNDARY: typeof PRE_DECODE_BOUNDARY;
|
|
3573
|
+
type index$8_RegisteredChainConfig = RegisteredChainConfig;
|
|
3253
3574
|
type index$8_ResponseContract = ResponseContract;
|
|
3254
3575
|
declare const index$8_ResponseObserver: typeof ResponseObserver;
|
|
3255
3576
|
type index$8_ResponseObserverContext = ResponseObserverContext;
|
|
@@ -3267,15 +3588,18 @@ declare const index$8_decodeQueueMessage: typeof decodeQueueMessage;
|
|
|
3267
3588
|
declare const index$8_encodeQueueMessage: typeof encodeQueueMessage;
|
|
3268
3589
|
declare const index$8_endStage: typeof endStage;
|
|
3269
3590
|
declare const index$8_finalizeObservation: typeof finalizeObservation;
|
|
3591
|
+
declare const index$8_getAxisExecutionContext: typeof getAxisExecutionContext;
|
|
3270
3592
|
declare const index$8_hashObservation: typeof hashObservation;
|
|
3593
|
+
declare const index$8_mergeAxisExecutionContext: typeof mergeAxisExecutionContext;
|
|
3271
3594
|
declare const index$8_parseAutoClaimEntries: typeof parseAutoClaimEntries;
|
|
3272
3595
|
declare const index$8_parseStreamEntries: typeof parseStreamEntries;
|
|
3273
3596
|
declare const index$8_recordSensor: typeof recordSensor;
|
|
3274
3597
|
declare const index$8_stableJsonStringify: typeof stableJsonStringify;
|
|
3275
3598
|
declare const index$8_startStage: typeof startStage;
|
|
3276
3599
|
declare const index$8_verifyResponse: typeof verifyResponse;
|
|
3600
|
+
declare const index$8_withAxisExecutionContext: typeof withAxisExecutionContext;
|
|
3277
3601
|
declare namespace index$8 {
|
|
3278
|
-
export { type index$8_AxisDecoded as AxisDecoded, type index$8_AxisEffect as AxisEffect, type index$8_AxisObservation as AxisObservation, index$8_BAND as BAND, index$8_HandlerDiscoveryService as HandlerDiscoveryService, index$8_IntentRouter as IntentRouter, type IntentSchema$
|
|
3602
|
+
export { index$8_AXIS_EXECUTION_CONTEXT_KEY as AXIS_EXECUTION_CONTEXT_KEY, type index$8_AxisCapsuleRef as AxisCapsuleRef, type index$8_AxisChainEncryption as AxisChainEncryption, type index$8_AxisChainEnvelope as AxisChainEnvelope, type index$8_AxisChainExecutionOptions as AxisChainExecutionOptions, index$8_AxisChainExecutor as AxisChainExecutor, type index$8_AxisChainRequest as AxisChainRequest, type index$8_AxisChainResult as AxisChainResult, type index$8_AxisChainStatus as AxisChainStatus, type index$8_AxisChainStep as AxisChainStep, type index$8_AxisChainStepResult as AxisChainStepResult, type index$8_AxisChainStepStatus as AxisChainStepStatus, type index$8_AxisDecoded as AxisDecoded, type index$8_AxisEffect as AxisEffect, type index$8_AxisExecutionContext as AxisExecutionContext, type index$8_AxisExecutionMode as AxisExecutionMode, type index$8_AxisIntentEnvelope as AxisIntentEnvelope, type index$8_AxisIntentObserver as AxisIntentObserver, type index$8_AxisKeyExchangeRef as AxisKeyExchangeRef, type index$8_AxisObservation as AxisObservation, type index$8_AxisObserverContext as AxisObserverContext, type index$8_AxisObserverEvent as AxisObserverEvent, type index$8_AxisObserverRegistration as AxisObserverRegistration, index$8_BAND as BAND, type index$8_ChainOptions as ChainOptions, index$8_HandlerDiscoveryService as HandlerDiscoveryService, index$8_IntentRouter as IntentRouter, type IntentSchema$2 as IntentSchema, type index$8_ObservationQueueConfig as ObservationQueueConfig, type index$8_ObservationQueueMessage as ObservationQueueMessage, type index$8_ObservationSensor as ObservationSensor, type index$8_ObservationStage as ObservationStage, type index$8_ObservationStreamEntry as ObservationStreamEntry, type index$8_ObservationWitnessSummary as ObservationWitnessSummary, index$8_ObserverDiscoveryService as ObserverDiscoveryService, index$8_ObserverDispatcherService as ObserverDispatcherService, index$8_ObserverRegistry as ObserverRegistry, type index$8_ObserverVerdict as ObserverVerdict, index$8_PRE_DECODE_BOUNDARY as PRE_DECODE_BOUNDARY, type index$8_RegisteredChainConfig as RegisteredChainConfig, type index$8_ResponseContract as ResponseContract, index$8_ResponseObserver as ResponseObserver, type index$8_ResponseObserverContext as ResponseObserverContext, type index$8_SensorBand as SensorBand, index$8_SensorDiscoveryService as SensorDiscoveryService, index$8_SensorRegistry as SensorRegistry, type index$8_UnsignedObservationWitness as UnsignedObservationWitness, index$8_buildQueueMessage as buildQueueMessage, index$8_buildUnsignedWitness as buildUnsignedWitness, index$8_canonicalizeObservation as canonicalizeObservation, index$8_createObservation as createObservation, index$8_decodeQueueMessage as decodeQueueMessage, index$8_encodeQueueMessage as encodeQueueMessage, index$8_endStage as endStage, index$8_finalizeObservation as finalizeObservation, index$8_getAxisExecutionContext as getAxisExecutionContext, index$8_hashObservation as hashObservation, index$8_mergeAxisExecutionContext as mergeAxisExecutionContext, index$9 as observation, index$8_parseAutoClaimEntries as parseAutoClaimEntries, index$8_parseStreamEntries as parseStreamEntries, index$8_recordSensor as recordSensor, index$8_stableJsonStringify as stableJsonStringify, index$8_startStage as startStage, index$8_verifyResponse as verifyResponse, index$8_withAxisExecutionContext as withAxisExecutionContext };
|
|
3279
3603
|
}
|
|
3280
3604
|
|
|
3281
3605
|
type index$7_AlternativeIntent = AlternativeIntent;
|
|
@@ -3292,9 +3616,10 @@ type index$7_IntentConstraint = IntentConstraint;
|
|
|
3292
3616
|
type index$7_IntentParamSchema = IntentParamSchema;
|
|
3293
3617
|
type index$7_IntentProposal = IntentProposal;
|
|
3294
3618
|
type index$7_IntentRisk = IntentRisk;
|
|
3619
|
+
type index$7_IntentSchema = IntentSchema;
|
|
3295
3620
|
type index$7_RiskLevel = RiskLevel;
|
|
3296
3621
|
declare namespace index$7 {
|
|
3297
|
-
export { type index$7_AlternativeIntent as AlternativeIntent, type index$7_ClarificationQuestion as ClarificationQuestion, type index$7_CompilationError as CompilationError, type index$7_CompilationResult as CompilationResult, type index$7_CompiledIntent as CompiledIntent, type index$7_ConstraintKind as ConstraintKind, index$7_IdelCompiler as IdelCompiler, index$7_IdelSchemaRegistry as IdelSchemaRegistry, type index$7_IntentConstraint as IntentConstraint, type index$7_IntentParamSchema as IntentParamSchema, type index$7_IntentProposal as IntentProposal, type index$7_IntentRisk as IntentRisk, type
|
|
3622
|
+
export { type index$7_AlternativeIntent as AlternativeIntent, type index$7_ClarificationQuestion as ClarificationQuestion, type index$7_CompilationError as CompilationError, type index$7_CompilationResult as CompilationResult, type index$7_CompiledIntent as CompiledIntent, type index$7_ConstraintKind as ConstraintKind, index$7_IdelCompiler as IdelCompiler, index$7_IdelSchemaRegistry as IdelSchemaRegistry, type index$7_IntentConstraint as IntentConstraint, type index$7_IntentParamSchema as IntentParamSchema, type index$7_IntentProposal as IntentProposal, type index$7_IntentRisk as IntentRisk, type index$7_IntentSchema as IntentSchema, type index$7_RiskLevel as RiskLevel };
|
|
3298
3623
|
}
|
|
3299
3624
|
|
|
3300
3625
|
type index$6_Grant = Grant;
|
|
@@ -3477,7 +3802,6 @@ declare const index$4_IntentPolicyDecisionZ: typeof IntentPolicyDecisionZ;
|
|
|
3477
3802
|
type index$4_IntentPolicySensorInput = IntentPolicySensorInput;
|
|
3478
3803
|
declare const index$4_IntentPolicySensorInputZ: typeof IntentPolicySensorInputZ;
|
|
3479
3804
|
declare const index$4_IntentPolicyZ: typeof IntentPolicyZ;
|
|
3480
|
-
type index$4_IntentSchema = IntentSchema;
|
|
3481
3805
|
declare const index$4_IntentSchemaZ: typeof IntentSchemaZ;
|
|
3482
3806
|
type index$4_Passport = Passport;
|
|
3483
3807
|
declare const index$4_PassportZ: typeof PassportZ;
|
|
@@ -3520,7 +3844,7 @@ declare const index$4_WsHandshakeDecisionZ: typeof WsHandshakeDecisionZ;
|
|
|
3520
3844
|
type index$4_WsHandshakeInput = WsHandshakeInput;
|
|
3521
3845
|
declare const index$4_WsHandshakeInputZ: typeof WsHandshakeInputZ;
|
|
3522
3846
|
declare namespace index$4 {
|
|
3523
|
-
export { type index$4_AccessProfile as AccessProfile, index$4_AccessProfileZ as AccessProfileZ, type index$4_AxisContext as AxisContext, index$4_AxisContextZ as AxisContextZ, type index$4_AxisError as AxisError, index$4_AxisErrorZ as AxisErrorZ, type index$4_BodyBudgetInput as BodyBudgetInput, index$4_BodyBudgetInputZ as BodyBudgetInputZ, type index$4_BodyBudgetPolicy as BodyBudgetPolicy, index$4_BodyBudgetPolicyZ as BodyBudgetPolicyZ, index$4_BodyProfile as BodyProfile, type index$4_BodyProfileValidation as BodyProfileValidation, index$4_BodyProfileValidator as BodyProfileValidator, index$4_BodyProfileZ as BodyProfileZ, type index$4_Capsule as Capsule, type index$4_CapsuleClaims as CapsuleClaims, index$4_CapsuleClaimsZ as CapsuleClaimsZ, type index$4_CapsuleValidationResult as CapsuleValidationResult, index$4_CapsuleValidationResultZ as CapsuleValidationResultZ, type index$4_CapsuleVerifyResult as CapsuleVerifyResult, index$4_CapsuleVerifyResultZ as CapsuleVerifyResultZ, type index$4_CapsuleVerifySensorInput as CapsuleVerifySensorInput, index$4_CapsuleVerifySensorInputZ as CapsuleVerifySensorInputZ, index$4_CapsuleZ as CapsuleZ, type index$4_ChunkHashInput as ChunkHashInput, index$4_ChunkHashInputZ as ChunkHashInputZ, type index$4_CountryBlockDecision as CountryBlockDecision, index$4_CountryBlockDecisionZ as CountryBlockDecisionZ, type index$4_CountryBlockSensorInput as CountryBlockSensorInput, index$4_CountryBlockSensorInputZ as CountryBlockSensorInputZ, type index$4_EntropySensorInput as EntropySensorInput, index$4_EntropySensorInputZ as EntropySensorInputZ, index$4_ExecutionMetricsZ as ExecutionMetricsZ, type index$4_IPReputation as IPReputation, type index$4_IPReputationInput as IPReputationInput, index$4_IPReputationInputZ as IPReputationInputZ, index$4_IPReputationZ as IPReputationZ, type index$4_IntentPolicy as IntentPolicy, type index$4_IntentPolicyDecision as IntentPolicyDecision, index$4_IntentPolicyDecisionZ as IntentPolicyDecisionZ, type index$4_IntentPolicySensorInput as IntentPolicySensorInput, index$4_IntentPolicySensorInputZ as IntentPolicySensorInputZ, index$4_IntentPolicyZ as IntentPolicyZ, type
|
|
3847
|
+
export { type index$4_AccessProfile as AccessProfile, index$4_AccessProfileZ as AccessProfileZ, type index$4_AxisContext as AxisContext, index$4_AxisContextZ as AxisContextZ, type index$4_AxisError as AxisError, index$4_AxisErrorZ as AxisErrorZ, type index$4_BodyBudgetInput as BodyBudgetInput, index$4_BodyBudgetInputZ as BodyBudgetInputZ, type index$4_BodyBudgetPolicy as BodyBudgetPolicy, index$4_BodyBudgetPolicyZ as BodyBudgetPolicyZ, index$4_BodyProfile as BodyProfile, type index$4_BodyProfileValidation as BodyProfileValidation, index$4_BodyProfileValidator as BodyProfileValidator, index$4_BodyProfileZ as BodyProfileZ, type index$4_Capsule as Capsule, type index$4_CapsuleClaims as CapsuleClaims, index$4_CapsuleClaimsZ as CapsuleClaimsZ, type index$4_CapsuleValidationResult as CapsuleValidationResult, index$4_CapsuleValidationResultZ as CapsuleValidationResultZ, type index$4_CapsuleVerifyResult as CapsuleVerifyResult, index$4_CapsuleVerifyResultZ as CapsuleVerifyResultZ, type index$4_CapsuleVerifySensorInput as CapsuleVerifySensorInput, index$4_CapsuleVerifySensorInputZ as CapsuleVerifySensorInputZ, index$4_CapsuleZ as CapsuleZ, type index$4_ChunkHashInput as ChunkHashInput, index$4_ChunkHashInputZ as ChunkHashInputZ, type index$4_CountryBlockDecision as CountryBlockDecision, index$4_CountryBlockDecisionZ as CountryBlockDecisionZ, type index$4_CountryBlockSensorInput as CountryBlockSensorInput, index$4_CountryBlockSensorInputZ as CountryBlockSensorInputZ, type index$4_EntropySensorInput as EntropySensorInput, index$4_EntropySensorInputZ as EntropySensorInputZ, index$4_ExecutionMetricsZ as ExecutionMetricsZ, type index$4_IPReputation as IPReputation, type index$4_IPReputationInput as IPReputationInput, index$4_IPReputationInputZ as IPReputationInputZ, index$4_IPReputationZ as IPReputationZ, type index$4_IntentPolicy as IntentPolicy, type index$4_IntentPolicyDecision as IntentPolicyDecision, index$4_IntentPolicyDecisionZ as IntentPolicyDecisionZ, type index$4_IntentPolicySensorInput as IntentPolicySensorInput, index$4_IntentPolicySensorInputZ as IntentPolicySensorInputZ, index$4_IntentPolicyZ as IntentPolicyZ, type IntentSchema$1 as IntentSchema, index$4_IntentSchemaZ as IntentSchemaZ, type index$4_Passport as Passport, index$4_PassportZ as PassportZ, type index$4_ProofKind as ProofKind, index$4_ProofKindZ as ProofKindZ, type index$4_ProofPresenceInput as ProofPresenceInput, index$4_ProofPresenceInputZ as ProofPresenceInputZ, ProofType$1 as ProofType, type index$4_ProtocolStrictInput as ProtocolStrictInput, index$4_ProtocolStrictInputZ as ProtocolStrictInputZ, type index$4_RateLimitConfig as RateLimitConfig, index$4_RateLimitConfigZ as RateLimitConfigZ, type index$4_RateLimitInput as RateLimitInput, index$4_RateLimitInputZ as RateLimitInputZ, type index$4_RateLimitProfile as RateLimitProfile, index$4_RateLimitProfileZ as RateLimitProfileZ, type index$4_ScanBurstDecision as ScanBurstDecision, index$4_ScanBurstDecisionZ as ScanBurstDecisionZ, type index$4_ScanBurstSensorInput as ScanBurstSensorInput, index$4_ScanBurstSensorInputZ as ScanBurstSensorInputZ, type index$4_SchemaField as SchemaField, type index$4_SchemaFieldKind as SchemaFieldKind, index$4_SchemaFieldKindZ as SchemaFieldKindZ, index$4_SchemaFieldZ as SchemaFieldZ, type index$4_Scope as Scope, index$4_ScopeZ as ScopeZ, type index$4_SensitivityLevel as SensitivityLevel, index$4_SensitivityLevelZ as SensitivityLevelZ, type index$4_SensorChainInput as SensorChainInput, index$4_SensorChainInputZ as SensorChainInputZ, index$4_SensorDecisionWithMetadataZ as SensorDecisionWithMetadataZ, index$4_SensorDecisionZ as SensorDecisionZ, type index$4_SensorResult as SensorResult, index$4_SensorResultZ as SensorResultZ, type index$4_UploadSession as UploadSession, index$4_UploadSessionZ as UploadSessionZ, type index$4_UploadStatus as UploadStatus, index$4_UploadStatusZ as UploadStatusZ, type index$4_WsHandshakeDecision as WsHandshakeDecision, index$4_WsHandshakeDecisionZ as WsHandshakeDecisionZ, type index$4_WsHandshakeInput as WsHandshakeInput, index$4_WsHandshakeInputZ as WsHandshakeInputZ };
|
|
3524
3848
|
}
|
|
3525
3849
|
|
|
3526
3850
|
type index$3_AxisSensorChainService = AxisSensorChainService;
|
|
@@ -3805,4 +4129,4 @@ declare namespace index {
|
|
|
3805
4129
|
export { index_encodeAxisTlvDto as encodeAxisTlvDto };
|
|
3806
4130
|
}
|
|
3807
4131
|
|
|
3808
|
-
export { ATS1_HDR, ATS1_SCHEMA, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, type AlternativeIntent, type Anomaly, type AnomalyLevel, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisAlg$1 as AxisAlg, type AxisPacket as AxisBinaryPacket, type AxisCapsule, type AxisCapsuleConstraints, type AxisCapsulePayload, AxisContext$1 as AxisContext, type AxisCrudHandler, type AxisDecoded, AxisDemoPubkey, type AxisEffect, AxisFilesDownloadHandler, AxisFilesFinalizeHandler, type AxisHandler, type AxisHandlerInit, AxisIdDto, AxisIp, type AxisAlg as AxisJsonAlg, type AxisFrame$1 as AxisJsonFrame, type AxisResponse as AxisJsonResponse, type AxisSig as AxisJsonSig, type AxisLawArticleSummary, type AxisLawDecision, type AxisLawEvaluationContext, type AxisLawEvaluationResult, type AxisLawEvaluator, type AxisObservation, type AxisObservedContext, type AxisPacket$1 as AxisPacket, T as AxisPacketTags, AxisPartialType, type AxisPostSensor, type AxisPreSensor, AxisRaw, type AxisRequestContext, type AxisRequestData, AxisResponseDto, type AxisSensor, AxisSensorChainService, type AxisSensorInit, type AxisSig$1 as AxisSig, AxisTlvDto, BAND, CAPABILITIES, CCE_ERROR, CCE_PROTOCOL_VERSION, type Capability, type CapsuleMode, type CceCapsuleClaims as CceCapsuleClaimsType, CceError, type CceExecutionContext as CceExecutionContextType, type CceHandler, type CceHandlerContext, type CceHandlerResult, type CcePipelineConfig, type CcePipelineResult, type CcePolicyContext, type CcePolicyDecision, type CcePolicyEvaluator, type CceRequestEnvelope as CceRequestEnvelopeType, type CceResponseEnvelope as CceResponseEnvelopeType, type CceWitnessRecord as CceWitnessRecordType, type ChainResult, type ClarificationQuestion, type CompilationError, type CompilationResult, type CompiledIntent, type ConstraintKind, ContractViolationError, DEFAULT_CONTRACTS, DEFAULT_TIMEOUT, Decision, DiskUploadFileStore, type DtoSchema, type ExecutionContract, ExecutionMeter, type ExecutionMetrics, type ExpectedOutcome, FALLBACK_CONTRACT, type Fabric, type FabricCell, type FabricDiff, type FabricDiffEntry, type FabricDiffKind, type FabricEffect, type FabricEffectResolver, type FabricQuery, type ForkRequest, type ForkResult, type Grant, type GrantCapability, type GrantMeta, type GrantStatus, type GrantType, type GrantValidationResult, HANDLER_METADATA_KEY, HANDLER_SENSORS_KEY, Handler, HandlerDiscoveryService, HandlerSensors, INTENT_BODY_KEY, INTENT_METADATA_KEY, INTENT_REQUIREMENTS, INTENT_ROUTES_KEY, INTENT_SENSITIVITY_MAP, INTENT_SENSORS_KEY, INTENT_TIMEOUTS, IdelCompiler, IdelSchemaRegistry, InMemoryPatternStore, InMemoryTimelineStore, Intent, IntentBody, type IntentConstraint, type IntentDefinition, type IntentKind, type IntentOptions, type IntentParamSchema, type IntentProposal, type IntentRisk, type IntentRoute, IntentRouter, type IntentSchema
|
|
4132
|
+
export { ATS1_HDR, ATS1_SCHEMA, AXIS_EXECUTION_CONTEXT_KEY, AXIS_OPCODES, AXIS_UPLOAD_FILE_STORE, AXIS_UPLOAD_RECEIPT_SIGNER, AXIS_UPLOAD_SESSION_STORE, type AlternativeIntent, type Anomaly, type AnomalyLevel, ats1 as Ats1Codec, Axis1DecodedFrame, type AxisAlg$1 as AxisAlg, type AxisPacket as AxisBinaryPacket, type AxisCapsule, type AxisCapsuleConstraints, type AxisCapsulePayload, type AxisCapsuleRef, type AxisChainEncryption, type AxisChainEnvelope, AxisChainExecutor, type AxisChainRequest, type AxisChainResult, type AxisChainStatus, type AxisChainStep, type AxisChainStepResult, type AxisChainStepStatus, AxisContext$1 as AxisContext, type AxisCrudHandler, type AxisDecoded, AxisDemoPubkey, type AxisEffect, type AxisExecutionContext, type AxisExecutionMode, AxisFilesDownloadHandler, AxisFilesFinalizeHandler, type AxisHandler, type AxisHandlerInit, AxisIdDto, type AxisIntentEnvelope, type AxisIntentObserver, AxisIp, type AxisAlg as AxisJsonAlg, type AxisFrame$1 as AxisJsonFrame, type AxisResponse as AxisJsonResponse, type AxisSig as AxisJsonSig, type AxisKeyExchangeRef, type AxisLawArticleSummary, type AxisLawDecision, type AxisLawEvaluationContext, type AxisLawEvaluationResult, type AxisLawEvaluator, type AxisObservation, type AxisObservedContext, type AxisObserverBinding, type AxisObserverBindingOptions, type AxisObserverContext, type AxisObserverDefinition, type AxisObserverEvent, type AxisObserverRef, type AxisObserverRegistration, type AxisPacket$1 as AxisPacket, T as AxisPacketTags, AxisPartialType, type AxisPostSensor, type AxisPreSensor, AxisRaw, type AxisRequestContext, type AxisRequestData, AxisResponseDto, type AxisSensor, AxisSensorChainService, type AxisSensorInit, type AxisSig$1 as AxisSig, AxisTlvDto, BAND, CAPABILITIES, CAPSULE_POLICY_METADATA_KEY, CCE_ERROR, CCE_PROTOCOL_VERSION, CHAIN_METADATA_KEY, type Capability, type CapsuleMode, CapsulePolicy, type CapsulePolicyOptions, type CapsuleScopeMode, type CceCapsuleClaims as CceCapsuleClaimsType, CceError, type CceExecutionContext as CceExecutionContextType, type CceHandler, type CceHandlerContext, type CceHandlerResult, type CcePipelineConfig, type CcePipelineResult, type CcePolicyContext, type CcePolicyDecision, type CcePolicyEvaluator, type CceRequestEnvelope as CceRequestEnvelopeType, type CceResponseEnvelope as CceResponseEnvelopeType, type CceWitnessRecord as CceWitnessRecordType, Chain, type ChainOptions, type ChainResult, type ClarificationQuestion, type CompilationError, type CompilationResult, type CompiledIntent, type ConstraintKind, ContractViolationError, DEFAULT_CONTRACTS, DEFAULT_TIMEOUT, Decision, DiskUploadFileStore, type DtoSchema, type ExecutionContract, ExecutionMeter, type ExecutionMetrics, type ExpectedOutcome, FALLBACK_CONTRACT, type Fabric, type FabricCell, type FabricDiff, type FabricDiffEntry, type FabricDiffKind, type FabricEffect, type FabricEffectResolver, type FabricQuery, type ForkRequest, type ForkResult, type Grant, type GrantCapability, type GrantMeta, type GrantStatus, type GrantType, type GrantValidationResult, HANDLER_METADATA_KEY, HANDLER_SENSORS_KEY, Handler, HandlerDiscoveryService, HandlerSensors, INTENT_BODY_KEY, INTENT_METADATA_KEY, INTENT_REQUIREMENTS, INTENT_ROUTES_KEY, INTENT_SENSITIVITY_MAP, INTENT_SENSORS_KEY, INTENT_TIMEOUTS, IdelCompiler, IdelSchemaRegistry, InMemoryPatternStore, InMemoryTimelineStore, Intent, IntentBody, type IntentConstraint, type IntentDefinition, type IntentKind, type IntentOptions, type IntentParamSchema, type IntentProposal, type IntentRisk, type IntentRoute, IntentRouter, type IntentSchema, IntentSensitivity, IntentSensors, type IntentTlvField, type KeyStatus, type Knot, type KnotBreakRequest, type KnotError, type KnotStatus, type KnotType, type KnotValidationResult, type LawEvaluationSensorOptions, type LoomExecutionResult, type LoomReceipt, type LoomValidationResult, type Needle, type NeedleError, type NeedleHandler, type NeedleHandlerContext, type NeedleHandlerResult, type NeedlePhase, type NeedlePipelineConfig, type NeedlePipelineResult, OBSERVER_BINDINGS_KEY, OBSERVER_METADATA_KEY, type ObservationQueueConfig, type ObservationQueueMessage, type ObservationSensor, type ObservationStage, type ObservationStreamEntry, type ObservationWitnessSummary, type ObservedDeed, Observer, ObserverDiscoveryService, ObserverDispatcherService, ObserverRegistry, type ObserverVerdict, PRE_DECODE_BOUNDARY, PROOF_CAPABILITIES, type Pattern, type PatternConfidence, type PatternKind, type PatternMatch, type PatternPrediction, type PatternSignature, type PatternStore, type PresenceChallenge, type PresenceDeclaration, type PresenceProof, type PresenceReceipt, type PresenceStatus, type PresenceVerifyResult, RESPONSE_TAG_CREATED_AT, RESPONSE_TAG_CREATED_BY, RESPONSE_TAG_ID, RESPONSE_TAG_UPDATED_AT, RESPONSE_TAG_UPDATED_BY, type ReceiptEffect, type RegisteredChainConfig, type ReplayDifference, type ReplayRequest, type ReplayResult, type ResponseContract, ResponseObserver, type ResponseObserverContext, type Revocation, type RevocationTargetType, RiskDecision, type RiskEvaluation, RiskGateSensor, type RiskGateSensorOptions, type RiskLevel, type RiskSignal, type RiskSignalCollector, SENSOR_METADATA_KEY, Schema2002_PasskeyLoginOptionsRes, Schema2011_PasskeyLoginVerifyReq, Schema2012_PasskeyLoginVerifyRes, Schema2021_PasskeyRegisterOptionsReq, Sensor, type SensorBand, type SensorDecision, SensorDecisions, SensorDiscoveryService, type SensorInput, type SensorMinifiedDecision, type SensorOptions, type SensorPhase, type SensorPhaseMetadata, SensorRegistry, type SimulatedSideEffect, type SimulationRequest, type SimulationResult, type StateSnapshot, type Stitch, type StitchKind, TLV_FIELDS_KEY, TLV_VALIDATORS_KEY, type Thread, type ThreadState, type TickAuthCapsuleRef, TickAuthSensor, type TickAuthSensorOptions, type TickAuthVerifier, type TimelineBranch, type TimelineComparison, type TimelineDomain, TimelineEngine, type TimelineEvent, type TimelineEventStatus, type TimelineHandler, type TimelineHandlerContext, type TimelineHandlerResult, type TimelineStore, TlvEnum, TlvField, type TlvFieldKind, type TlvFieldMeta, type TlvFieldOptions, TlvMinLen, TlvRange, TlvUtf8Pattern, TlvValidate, type TlvValidatorFn, type TlvValidatorMeta, TpsSensor, type TpsSensorOptions, type TruthStatus, type TruthVerdict, type UnsignedObservationWitness, type UploadFileStat, type UploadFileStore, type UploadReceiptSigner, type UploadSessionRecord, type UploadSessionStatus, type UploadSessionStore, type Writ, type WritBody, type WritHead, type WritMeta, type WritSignature, type WritValidationResult, addStitchToKnot, applyStitch, assembleNeedle, b64urlDecode, b64urlDecodeString, b64urlEncode, b64urlEncodeString, breakKnot, buildAts1Hdr, buildAxisLawEvaluationContext, buildDtoDecoder, buildPacket, buildQueueMessage, buildReceiptHash, buildTLVs, buildUnsignedWitness, bytes, canAccessResource, canonicalJson, canonicalJsonExcluding, canonicalizeGrant, canonicalizeObservation, canonicalizeWrit, index$c as cce, classifyIntent, createFabric, createGrant, createObservation, createPresenceChallenge, createReceipt, createRevocation, createWrit, index$b as crypto, decodeQueueMessage, index$a as decorators, deriveAnchorReflection, detectAnomalies, detectKnotPatterns, detectSequencePatterns, diffFabrics, encVarint, encodeAxisTlvDto, encodeQueueMessage, endStage, index$8 as engine, executeCcePipeline, executeLoomPipeline, extractDtoSchema, finalizeObservation, findKnotsForStitch, forkFromKnot, formStitch, getAxisExecutionContext, getDecisionPoints, getFabricValue, getGrantStatus, getIrreversibleKnots, getPresenceStatus, grantCoversAction, hasScope, hashObservation, index$7 as idel, isAdminOpcode, isKnotOpen, isKnownOpcode, isPointOfNoReturn, isRevoked, isTimestampValid, lockCells, index$6 as loom, matchPatterns, mergeAxisExecutionContext, index$5 as needle, nonce16, normalizeSensorDecision, openKnot, packPasskeyLoginOptionsReq, packPasskeyLoginOptionsRes, packPasskeyLoginVerifyReq, packPasskeyLoginVerifyRes, packPasskeyRegisterOptionsReq, parseAutoClaimEntries, parseScope, parseStreamEntries, projectAt, queryFabric, recordOccurrence, recordSensor, renewPresence, resolveTimeout, runNeedlePipeline, index$4 as schemas, scoreTruth, index$3 as security, sensitivityName, index$2 as sensors, signPresenceChallenge, stableJsonStringify, startStage, tieKnot, index$1 as timeline, tlv, u64be, unpackPasskeyLoginOptionsReq, unpackPasskeyLoginVerifyReq, unpackPasskeyRegisterOptionsReq, updateThreadState, utf8, index as utils, validateFrameShape, validateGrant, validateKnot, validateWrit, varintU, verifyObservation, verifyPresenceProof, verifyReceiptChain, verifyResponse, weave, withAxisExecutionContext };
|